Show / Hide Table of Contents

Class SageMakerCreateEndpointConfig

A Step Functions Task to create a SageMaker endpoint configuration.

Inheritance
object
State
TaskStateBase
SageMakerCreateEndpointConfig
Implements
IChainable
INextable
Inherited Members
TaskStateBase.AddCatch(IChainable, ICatchProps)
TaskStateBase.AddRetry(IRetryProps)
TaskStateBase.Metric(string, IMetricOptions)
TaskStateBase.MetricFailed(IMetricOptions)
TaskStateBase.MetricHeartbeatTimedOut(IMetricOptions)
TaskStateBase.MetricRunTime(IMetricOptions)
TaskStateBase.MetricScheduled(IMetricOptions)
TaskStateBase.MetricScheduleTime(IMetricOptions)
TaskStateBase.MetricStarted(IMetricOptions)
TaskStateBase.MetricSucceeded(IMetricOptions)
TaskStateBase.MetricTime(IMetricOptions)
TaskStateBase.MetricTimedOut(IMetricOptions)
TaskStateBase.Next(IChainable)
TaskStateBase.ToStateJson(QueryLanguage?)
TaskStateBase.WhenBoundToGraph(StateGraph)
TaskStateBase.EndStates
State.FilterNextables(State[])
State.FindReachableEndStates(State, IFindStateOptions)
State.FindReachableStates(State, IFindStateOptions)
State.PrefixStates(IConstruct, string)
State.AddBranch(StateGraph)
State.AddChoice(Condition, State, IChoiceTransitionOptions)
State.AddItemProcessor(StateGraph, IProcessorConfig)
State.AddIterator(StateGraph)
State.AddPrefix(string)
State.BindToGraph(StateGraph)
State.MakeDefault(State)
State.MakeNext(State)
State.RenderAssign(QueryLanguage?)
State.RenderBranches()
State.RenderChoices(QueryLanguage?)
State.RenderInputOutput()
State.RenderItemProcessor()
State.RenderIterator()
State.RenderNextEnd()
State.RenderQueryLanguage(QueryLanguage?)
State.RenderResultSelector()
State.RenderRetryCatch(QueryLanguage?)
State.ValidateState()
State.Branches
State.Id
State.StartState
State.StateId
State.Arguments
State.Assign
State.Comment
State.InputPath
State.OutputPath
State.Outputs
State.Parameters
State.QueryLanguage
State.ResultPath
State.ResultSelector
State.StateName
State.DefaultChoice
State.Iteration
State.Processor
State.ProcessorConfig
State.ProcessorMode
Namespace: Amazon.CDK.AWS.StepFunctions.Tasks
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class SageMakerCreateEndpointConfig : TaskStateBase, IChainable, INextable
Syntax (vb)
Public Class SageMakerCreateEndpointConfig Inherits TaskStateBase Implements IChainable, INextable
Remarks

See: https://docs.aws.amazon.com/step-functions/latest/dg/connect-sagemaker.html

ExampleMetadata: infused

Examples
new SageMakerCreateEndpointConfig(this, "SagemakerEndpointConfig", new SageMakerCreateEndpointConfigProps {
                 EndpointConfigName = "MyEndpointConfig",
                 ProductionVariants = new [] { new ProductionVariant {
                     InitialInstanceCount = 2,
                     InstanceType = InstanceType.Of(InstanceClass.M5, InstanceSize.XLARGE),
                     ModelName = "MyModel",
                     VariantName = "awesome-variant"
                 } }
             });

Synopsis

Constructors

SageMakerCreateEndpointConfig(Construct, string, ISageMakerCreateEndpointConfigProps)

A Step Functions Task to create a SageMaker endpoint configuration.

Properties

PROPERTY_INJECTION_ID

Uniquely identifies this class.

TaskMetrics

A Step Functions Task to create a SageMaker endpoint configuration.

TaskPolicies

A Step Functions Task to create a SageMaker endpoint configuration.

Methods

JsonPath(Construct, string, ISageMakerCreateEndpointConfigJsonPathProps)

A Step Functions Task using JSONPath to create a SageMaker endpoint configuration.

Jsonata(Construct, string, ISageMakerCreateEndpointConfigJsonataProps)

A Step Functions Task using JSONata to create a SageMaker endpoint configuration.

Constructors

SageMakerCreateEndpointConfig(Construct, string, ISageMakerCreateEndpointConfigProps)

A Step Functions Task to create a SageMaker endpoint configuration.

public SageMakerCreateEndpointConfig(Construct scope, string id, ISageMakerCreateEndpointConfigProps props)
Parameters
scope Construct
id string

Descriptive identifier for this chainable.

props ISageMakerCreateEndpointConfigProps
Remarks

See: https://docs.aws.amazon.com/step-functions/latest/dg/connect-sagemaker.html

ExampleMetadata: infused

Properties

PROPERTY_INJECTION_ID

Uniquely identifies this class.

public static string PROPERTY_INJECTION_ID { get; }
Property Value

string

Remarks

See: https://docs.aws.amazon.com/step-functions/latest/dg/connect-sagemaker.html

ExampleMetadata: infused

TaskMetrics

A Step Functions Task to create a SageMaker endpoint configuration.

protected override ITaskMetricsConfig? TaskMetrics { get; }
Property Value

ITaskMetricsConfig

Overrides
TaskStateBase.TaskMetrics
Remarks

See: https://docs.aws.amazon.com/step-functions/latest/dg/connect-sagemaker.html

ExampleMetadata: infused

TaskPolicies

A Step Functions Task to create a SageMaker endpoint configuration.

protected override PolicyStatement[]? TaskPolicies { get; }
Property Value

PolicyStatement[]

Overrides
TaskStateBase.TaskPolicies
Remarks

See: https://docs.aws.amazon.com/step-functions/latest/dg/connect-sagemaker.html

ExampleMetadata: infused

Methods

JsonPath(Construct, string, ISageMakerCreateEndpointConfigJsonPathProps)

A Step Functions Task using JSONPath to create a SageMaker endpoint configuration.

public static SageMakerCreateEndpointConfig JsonPath(Construct scope, string id, ISageMakerCreateEndpointConfigJsonPathProps props)
Parameters
scope Construct
id string
props ISageMakerCreateEndpointConfigJsonPathProps
Returns

SageMakerCreateEndpointConfig

Remarks

See: https://docs.aws.amazon.com/step-functions/latest/dg/connect-sagemaker.html

Jsonata(Construct, string, ISageMakerCreateEndpointConfigJsonataProps)

A Step Functions Task using JSONata to create a SageMaker endpoint configuration.

public static SageMakerCreateEndpointConfig Jsonata(Construct scope, string id, ISageMakerCreateEndpointConfigJsonataProps props)
Parameters
scope Construct
id string
props ISageMakerCreateEndpointConfigJsonataProps
Returns

SageMakerCreateEndpointConfig

Remarks

See: https://docs.aws.amazon.com/step-functions/latest/dg/connect-sagemaker.html

Implements

IChainable
INextable
Back to top Generated by DocFX