Class SageMakerCreateEndpointConfig

java.lang.Object
software.amazon.jsii.JsiiObject
software.constructs.Construct
All Implemented Interfaces:
IConstruct, IDependable, IChainable, INextable, software.amazon.jsii.JsiiSerializable, software.constructs.IConstruct

@Generated(value="jsii-pacmak/1.84.0 (build 5404dcf)", date="2023-06-19T16:30:48.182Z") @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 - This parameter is required.
      props - This parameter is required.
  • Method Details