Class SageMakerCreateEndpoint

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.SageMakerCreateEndpoint
All Implemented Interfaces:
IChainable, INextable, software.amazon.jsii.JsiiSerializable, software.constructs.IConstruct, software.constructs.IDependable

@Generated(value="jsii-pacmak/1.98.0 (build 00b106d)", date="2024-05-08T21:35:14.621Z") @Stability(Stable) public class SageMakerCreateEndpoint extends TaskStateBase
A Step Functions Task to create a SageMaker endpoint.

Example:

 SageMakerCreateEndpoint.Builder.create(this, "SagemakerEndpoint")
         .endpointName(JsonPath.stringAt("$.EndpointName"))
         .endpointConfigName(JsonPath.stringAt("$.EndpointConfigName"))
         .build();
 

See Also:
  • Constructor Details

    • SageMakerCreateEndpoint

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

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

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