Show / Hide Table of Contents

Class SageMakerCreateEndpoint

A Step Functions Task to create a SageMaker endpoint.

Inheritance
object
State
TaskStateBase
SageMakerCreateEndpoint
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 SageMakerCreateEndpoint : TaskStateBase, IChainable, INextable
Syntax (vb)
Public Class SageMakerCreateEndpoint Inherits TaskStateBase Implements IChainable, INextable
Remarks

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

ExampleMetadata: infused

Examples
new SageMakerCreateEndpoint(this, "SagemakerEndpoint", new SageMakerCreateEndpointProps {
                 EndpointName = JsonPath.StringAt("$.EndpointName"),
                 EndpointConfigName = JsonPath.StringAt("$.EndpointConfigName")
             });

Synopsis

Constructors

SageMakerCreateEndpoint(Construct, string, ISageMakerCreateEndpointProps)

A Step Functions Task to create a SageMaker endpoint.

Properties

TaskMetrics

A Step Functions Task to create a SageMaker endpoint.

TaskPolicies

A Step Functions Task to create a SageMaker endpoint.

Methods

JsonPath(Construct, string, ISageMakerCreateEndpointJsonPathProps)

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

Jsonata(Construct, string, ISageMakerCreateEndpointJsonataProps)

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

Constructors

SageMakerCreateEndpoint(Construct, string, ISageMakerCreateEndpointProps)

A Step Functions Task to create a SageMaker endpoint.

public SageMakerCreateEndpoint(Construct scope, string id, ISageMakerCreateEndpointProps props)
Parameters
scope Construct
id string

Descriptive identifier for this chainable.

props ISageMakerCreateEndpointProps
Remarks

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

ExampleMetadata: infused

Properties

TaskMetrics

A Step Functions Task to create a SageMaker endpoint.

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.

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, ISageMakerCreateEndpointJsonPathProps)

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

public static SageMakerCreateEndpoint JsonPath(Construct scope, string id, ISageMakerCreateEndpointJsonPathProps props)
Parameters
scope Construct
id string
props ISageMakerCreateEndpointJsonPathProps
Returns

SageMakerCreateEndpoint

Remarks

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

Jsonata(Construct, string, ISageMakerCreateEndpointJsonataProps)

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

public static SageMakerCreateEndpoint Jsonata(Construct scope, string id, ISageMakerCreateEndpointJsonataProps props)
Parameters
scope Construct
id string
props ISageMakerCreateEndpointJsonataProps
Returns

SageMakerCreateEndpoint

Remarks

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

Implements

IChainable
INextable
Back to top Generated by DocFX