Class SageMakerCreateEndpointConfig
java.lang.Object
software.amazon.jsii.JsiiObject
software.constructs.Construct
software.amazon.awscdk.core.Construct
software.amazon.awscdk.services.stepfunctions.State
software.amazon.awscdk.services.stepfunctions.TaskStateBase
software.amazon.awscdk.services.stepfunctions.tasks.SageMakerCreateEndpointConfig
- 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();
 - 
Nested Class SummaryNested ClassesModifier and TypeClassDescriptionstatic final classA fluent builder forSageMakerCreateEndpointConfig.Nested classes/interfaces inherited from class software.amazon.jsii.JsiiObjectsoftware.amazon.jsii.JsiiObject.InitializationModeNested classes/interfaces inherited from interface software.amazon.awscdk.services.stepfunctions.IChainableIChainable.Jsii$DefaultNested classes/interfaces inherited from interface software.amazon.awscdk.core.IConstructIConstruct.Jsii$DefaultNested classes/interfaces inherited from interface software.constructs.IConstructsoftware.constructs.IConstruct.Jsii$DefaultNested classes/interfaces inherited from interface software.amazon.awscdk.services.stepfunctions.INextableINextable.Jsii$Default
- 
Constructor SummaryConstructorsModifierConstructorDescriptionprotectedSageMakerCreateEndpointConfig(software.amazon.jsii.JsiiObject.InitializationMode initializationMode) protectedSageMakerCreateEndpointConfig(software.amazon.jsii.JsiiObjectRef objRef) SageMakerCreateEndpointConfig(software.constructs.Construct scope, String id, SageMakerCreateEndpointConfigProps props) 
- 
Method SummaryMethods inherited from class software.amazon.awscdk.services.stepfunctions.TaskStateBaseaddCatch, addCatch, addRetry, addRetry, getEndStates, metric, metric, metricFailed, metricFailed, metricHeartbeatTimedOut, metricHeartbeatTimedOut, metricRunTime, metricRunTime, metricScheduled, metricScheduled, metricScheduleTime, metricScheduleTime, metricStarted, metricStarted, metricSucceeded, metricSucceeded, metricTime, metricTime, metricTimedOut, metricTimedOut, next, toStateJson, whenBoundToGraphMethods inherited from class software.amazon.awscdk.services.stepfunctions.StateaddBranch, addChoice, addIterator, addPrefix, bindToGraph, filterNextables, findReachableEndStates, findReachableEndStates, findReachableStates, findReachableStates, getBranches, getComment, getDefaultChoice, getId, getInputPath, getIteration, getOutputPath, getParameters, getResultPath, getResultSelector, getStartState, getStateId, makeDefault, makeNext, prefixStates, renderBranches, renderChoices, renderInputOutput, renderIterator, renderNextEnd, renderResultSelector, renderRetryCatch, setDefaultChoice, setIterationMethods inherited from class software.amazon.awscdk.core.ConstructgetNode, isConstruct, onPrepare, onSynthesize, onValidate, prepare, synthesize, validateMethods inherited from class software.constructs.ConstructtoStringMethods inherited from class software.amazon.jsii.JsiiObjectjsiiAsyncCall, jsiiAsyncCall, jsiiCall, jsiiCall, jsiiGet, jsiiGet, jsiiSet, jsiiStaticCall, jsiiStaticCall, jsiiStaticGet, jsiiStaticGet, jsiiStaticSet, jsiiStaticSetMethods inherited from class java.lang.Objectclone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, waitMethods inherited from interface software.amazon.jsii.JsiiSerializable$jsii$toJson
- 
Constructor Details- 
SageMakerCreateEndpointConfigprotected SageMakerCreateEndpointConfig(software.amazon.jsii.JsiiObjectRef objRef) 
- 
SageMakerCreateEndpointConfigprotected 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- 
getTaskMetrics- Specified by:
- getTaskMetricsin class- TaskStateBase
 
- 
getTaskPolicies- Specified by:
- getTaskPoliciesin class- TaskStateBase
 
 
-