You are viewing documentation for version 2 of the AWS SDK for Ruby. Version 3 documentation can be found here.

Class: Aws::SageMaker::Types::UpdateEndpointWeightsAndCapacitiesInput

Inherits:
Struct
  • Object
show all
Defined in:
(unknown)

Overview

Note:

When passing UpdateEndpointWeightsAndCapacitiesInput as input to an Aws::Client method, you can use a vanilla Hash:

{
  endpoint_name: "EndpointName", # required
  desired_weights_and_capacities: [ # required
    {
      variant_name: "VariantName", # required
      desired_weight: 1.0,
      desired_instance_count: 1,
    },
  ],
}

Instance Attribute Summary collapse

Instance Attribute Details

#desired_weights_and_capacitiesArray<Types::DesiredWeightAndCapacity>

An object that provides new capacity and weight values for a variant.

Returns:

#endpoint_nameString

The name of an existing Amazon SageMaker endpoint.

Returns:

  • (String)

    The name of an existing Amazon SageMaker endpoint.