Class SageMakerCreateModel
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.SageMakerCreateModel
- All Implemented Interfaces:
IConstruct,IDependable,IConnectable,IGrantable,IChainable,INextable,software.amazon.jsii.JsiiSerializable,software.constructs.IConstruct
@Generated(value="jsii-pacmak/1.84.0 (build 5404dcf)",
date="2023-06-19T16:30:48.186Z")
@Stability(Stable)
public class SageMakerCreateModel
extends TaskStateBase
implements IGrantable, IConnectable
A Step Functions Task to create a SageMaker model.
Example:
SageMakerCreateModel.Builder.create(this, "Sagemaker")
.modelName("MyModel")
.primaryContainer(ContainerDefinition.Builder.create()
.image(DockerImage.fromJsonExpression(JsonPath.stringAt("$.Model.imageName")))
.mode(Mode.SINGLE_MODEL)
.modelS3Location(S3Location.fromJsonExpression("$.TrainingJob.ModelArtifacts.S3ModelArtifacts"))
.build())
.build();
-
Nested Class Summary
Nested ClassesNested classes/interfaces inherited from class software.amazon.jsii.JsiiObject
software.amazon.jsii.JsiiObject.InitializationModeNested classes/interfaces inherited from interface software.amazon.awscdk.services.stepfunctions.IChainable
IChainable.Jsii$DefaultNested classes/interfaces inherited from interface software.amazon.awscdk.services.ec2.IConnectable
IConnectable.Jsii$Default, IConnectable.Jsii$ProxyNested classes/interfaces inherited from interface software.amazon.awscdk.core.IConstruct
IConstruct.Jsii$DefaultNested classes/interfaces inherited from interface software.constructs.IConstruct
software.constructs.IConstruct.Jsii$DefaultNested classes/interfaces inherited from interface software.amazon.awscdk.services.iam.IGrantable
IGrantable.Jsii$Default, IGrantable.Jsii$ProxyNested classes/interfaces inherited from interface software.amazon.awscdk.services.stepfunctions.INextable
INextable.Jsii$Default -
Constructor Summary
ConstructorsModifierConstructorDescriptionprotectedSageMakerCreateModel(software.amazon.jsii.JsiiObject.InitializationMode initializationMode) protectedSageMakerCreateModel(software.amazon.jsii.JsiiObjectRef objRef) SageMakerCreateModel(software.constructs.Construct scope, String id, SageMakerCreateModelProps props) -
Method Summary
Modifier and TypeMethodDescriptionvoidaddSecurityGroup(ISecurityGroup securityGroup) Add the security group to all instances via the launch configuration security groups array.Allows specify security group connections for instances of this fleet.The principal to grant permissions to.getRole()The execution role for the Sagemaker Create Model API.protected TaskMetricsConfigprotected List<PolicyStatement>Methods inherited from class software.amazon.awscdk.services.stepfunctions.TaskStateBase
addCatch, 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.State
addBranch, 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.Construct
getNode, isConstruct, onPrepare, onSynthesize, onValidate, prepare, synthesize, validateMethods inherited from class software.constructs.Construct
toStringMethods inherited from class software.amazon.jsii.JsiiObject
jsiiAsyncCall, jsiiAsyncCall, jsiiCall, jsiiCall, jsiiGet, jsiiGet, jsiiSet, jsiiStaticCall, jsiiStaticCall, jsiiStaticGet, jsiiStaticGet, jsiiStaticSet, jsiiStaticSetMethods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, waitMethods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Constructor Details
-
SageMakerCreateModel
protected SageMakerCreateModel(software.amazon.jsii.JsiiObjectRef objRef) -
SageMakerCreateModel
protected SageMakerCreateModel(software.amazon.jsii.JsiiObject.InitializationMode initializationMode) -
SageMakerCreateModel
@Stability(Stable) public SageMakerCreateModel(@NotNull software.constructs.Construct scope, @NotNull String id, @NotNull SageMakerCreateModelProps props) - Parameters:
scope- This parameter is required.id- This parameter is required.props- This parameter is required.
-
-
Method Details
-
addSecurityGroup
Add the security group to all instances via the launch configuration security groups array.- Parameters:
securityGroup- : The security group to add. This parameter is required.
-
getConnections
Allows specify security group connections for instances of this fleet.- Specified by:
getConnectionsin interfaceIConnectable
-
getGrantPrincipal
The principal to grant permissions to.- Specified by:
getGrantPrincipalin interfaceIGrantable
-
getRole
The execution role for the Sagemaker Create Model API. -
getTaskMetrics
- Specified by:
getTaskMetricsin classTaskStateBase
-
getTaskPolicies
- Specified by:
getTaskPoliciesin classTaskStateBase
-