Class: Aws::SageMaker::Types::CreateEndpointInput

Inherits:
Struct
  • Object
show all
Includes:
Aws::Structure
Defined in:
lib/aws-sdk-sagemaker/types.rb

Overview

Note:

When making an API call, you may pass CreateEndpointInput data as a hash:

{
  endpoint_name: "EndpointName", # required
  endpoint_config_name: "EndpointConfigName", # required
  tags: [
    {
      key: "TagKey", # required
      value: "TagValue", # required
    },
  ],
}

Instance Attribute Summary collapse

Instance Attribute Details

#endpoint_config_nameString

The name of an endpoint configuration. For more information, see [CreateEndpointConfig].

[1]: docs.aws.amazon.com/sagemaker/latest/dg/API_CreateEndpointConfig.html

Returns:

  • (String)


1460
1461
1462
1463
1464
1465
# File 'lib/aws-sdk-sagemaker/types.rb', line 1460

class CreateEndpointInput < Struct.new(
  :endpoint_name,
  :endpoint_config_name,
  :tags)
  include Aws::Structure
end

#endpoint_nameString

The name of the endpoint. The name must be unique within an AWS Region in your AWS account.

Returns:

  • (String)


1460
1461
1462
1463
1464
1465
# File 'lib/aws-sdk-sagemaker/types.rb', line 1460

class CreateEndpointInput < Struct.new(
  :endpoint_name,
  :endpoint_config_name,
  :tags)
  include Aws::Structure
end

#tagsArray<Types::Tag>

An array of key-value pairs. For more information, see [Using Cost Allocation Tags]in the *AWS Billing and Cost Management User Guide*.

[1]: docs.aws.amazon.com/awsaccountbilling/latest/aboutv2/cost-alloc-tags.html#allocation-what

Returns:



1460
1461
1462
1463
1464
1465
# File 'lib/aws-sdk-sagemaker/types.rb', line 1460

class CreateEndpointInput < Struct.new(
  :endpoint_name,
  :endpoint_config_name,
  :tags)
  include Aws::Structure
end