Class: Aws::SageMaker::Types::UpdateEndpointInput

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 UpdateEndpointInput data as a hash:

{
  endpoint_name: "EndpointName", # required
  endpoint_config_name: "EndpointConfigName", # required
}

Instance Attribute Summary collapse

Instance Attribute Details

#endpoint_config_nameString

The name of the new endpoint configuration.

Returns:

  • (String)


11263
11264
11265
11266
11267
# File 'lib/aws-sdk-sagemaker/types.rb', line 11263

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

#endpoint_nameString

The name of the endpoint whose configuration you want to update.

Returns:

  • (String)


11263
11264
11265
11266
11267
# File 'lib/aws-sdk-sagemaker/types.rb', line 11263

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