Class SageMakerUpdateEndpoint

java.lang.Object
software.amazon.jsii.JsiiObject
software.constructs.Construct
software.amazon.awscdk.services.stepfunctions.State
software.amazon.awscdk.services.stepfunctions.TaskStateBase
software.amazon.awscdk.services.stepfunctions.tasks.SageMakerUpdateEndpoint
All Implemented Interfaces:
IChainable, INextable, software.amazon.jsii.JsiiSerializable, software.constructs.IConstruct, software.constructs.IDependable

@Generated(value="jsii-pacmak/1.96.0 (build 921e240)", date="2024-04-10T22:22:36.210Z") @Stability(Stable) public class SageMakerUpdateEndpoint extends TaskStateBase
A Step Functions Task to update a SageMaker endpoint.

Example:

 SageMakerUpdateEndpoint.Builder.create(this, "SagemakerEndpoint")
         .endpointName(JsonPath.stringAt("$.Endpoint.Name"))
         .endpointConfigName(JsonPath.stringAt("$.Endpoint.EndpointConfig"))
         .build();
 

See Also:
  • Constructor Details

    • SageMakerUpdateEndpoint

      protected SageMakerUpdateEndpoint(software.amazon.jsii.JsiiObjectRef objRef)
    • SageMakerUpdateEndpoint

      protected SageMakerUpdateEndpoint(software.amazon.jsii.JsiiObject.InitializationMode initializationMode)
    • SageMakerUpdateEndpoint

      @Stability(Stable) public SageMakerUpdateEndpoint(@NotNull software.constructs.Construct scope, @NotNull String id, @NotNull SageMakerUpdateEndpointProps props)
      Parameters:
      scope - This parameter is required.
      id - Descriptive identifier for this chainable. This parameter is required.
      props - This parameter is required.
  • Method Details