Class SageMakerCreateEndpointConfig

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

@Generated(value="jsii-pacmak/1.94.0 (build b380f01)", date="2024-02-23T02:06:40.657Z") @Stability(Stable) public class SageMakerCreateEndpointConfig extends TaskStateBase
A Step Functions Task to create a SageMaker endpoint configuration.

Example:

 SageMakerCreateEndpointConfig.Builder.create(this, "SagemakerEndpointConfig")
         .endpointConfigName("MyEndpointConfig")
         .productionVariants(List.of(ProductionVariant.builder()
                 .initialInstanceCount(2)
                 .instanceType(InstanceType.of(InstanceClass.M5, InstanceSize.XLARGE))
                 .modelName("MyModel")
                 .variantName("awesome-variant")
                 .build()))
         .build();
 

See Also:
  • Constructor Details

    • SageMakerCreateEndpointConfig

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

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

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