Class: Aws::SageMaker::Types::CreateEndpointInput
- Inherits:
 - 
      Struct
      
        
- Object
 - Struct
 - Aws::SageMaker::Types::CreateEndpointInput
 
 
- Includes:
 - Aws::Structure
 
- Defined in:
 - lib/aws-sdk-sagemaker/types.rb
 
Overview
Constant Summary collapse
- SENSITIVE =
 []
Instance Attribute Summary collapse
- 
  
    
      #deployment_config  ⇒ Types::DeploymentConfig 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The deployment configuration for an endpoint, which contains the desired deployment strategy and rollback configurations.
 - 
  
    
      #endpoint_config_name  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The name of an endpoint configuration.
 - 
  
    
      #endpoint_name  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The name of the endpoint.The name must be unique within an Amazon Web Services Region in your Amazon Web Services account.
 - 
  
    
      #tags  ⇒ Array<Types::Tag> 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
An array of key-value pairs.
 
Instance Attribute Details
#deployment_config ⇒ Types::DeploymentConfig
The deployment configuration for an endpoint, which contains the desired deployment strategy and rollback configurations.
      7114 7115 7116 7117 7118 7119 7120 7121  | 
    
      # File 'lib/aws-sdk-sagemaker/types.rb', line 7114 class CreateEndpointInput < Struct.new( :endpoint_name, :endpoint_config_name, :deployment_config, :tags) SENSITIVE = [] include Aws::Structure end  | 
  
#endpoint_config_name ⇒ String
The name of an endpoint configuration. For more information, see [CreateEndpointConfig].
[1]: docs.aws.amazon.com/sagemaker/latest/APIReference/API_CreateEndpointConfig.html
      7114 7115 7116 7117 7118 7119 7120 7121  | 
    
      # File 'lib/aws-sdk-sagemaker/types.rb', line 7114 class CreateEndpointInput < Struct.new( :endpoint_name, :endpoint_config_name, :deployment_config, :tags) SENSITIVE = [] include Aws::Structure end  | 
  
#endpoint_name ⇒ String
The name of the endpoint.The name must be unique within an Amazon Web Services Region in your Amazon Web Services account. The name is case-insensitive in ‘CreateEndpoint`, but the case is preserved and must be matched in [InvokeEndpoint].
[1]: docs.aws.amazon.com/sagemaker/latest/APIReference/API_runtime_InvokeEndpoint.html
      7114 7115 7116 7117 7118 7119 7120 7121  | 
    
      # File 'lib/aws-sdk-sagemaker/types.rb', line 7114 class CreateEndpointInput < Struct.new( :endpoint_name, :endpoint_config_name, :deployment_config, :tags) SENSITIVE = [] include Aws::Structure end  | 
  
#tags ⇒ Array<Types::Tag>
An array of key-value pairs. You can use tags to categorize your Amazon Web Services resources in different ways, for example, by purpose, owner, or environment. For more information, see [Tagging Amazon Web Services Resources].
      7114 7115 7116 7117 7118 7119 7120 7121  | 
    
      # File 'lib/aws-sdk-sagemaker/types.rb', line 7114 class CreateEndpointInput < Struct.new( :endpoint_name, :endpoint_config_name, :deployment_config, :tags) SENSITIVE = [] include Aws::Structure end  |