Show / Hide Table of Contents

Class SageMakerUpdateEndpoint

A Step Functions Task to update a SageMaker endpoint.

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

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

ExampleMetadata: infused

Examples
new SageMakerUpdateEndpoint(this, "SagemakerEndpoint", new SageMakerUpdateEndpointProps {
                 EndpointName = JsonPath.StringAt("$.Endpoint.Name"),
                 EndpointConfigName = JsonPath.StringAt("$.Endpoint.EndpointConfig")
             });

Synopsis

Constructors

SageMakerUpdateEndpoint(Construct, string, ISageMakerUpdateEndpointProps)

A Step Functions Task to update a SageMaker endpoint.

Properties

TaskMetrics

A Step Functions Task to update a SageMaker endpoint.

TaskPolicies

A Step Functions Task to update a SageMaker endpoint.

Methods

JsonPath(Construct, string, ISageMakerUpdateEndpointJsonPathProps)

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

Jsonata(Construct, string, ISageMakerUpdateEndpointJsonataProps)

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

Constructors

SageMakerUpdateEndpoint(Construct, string, ISageMakerUpdateEndpointProps)

A Step Functions Task to update a SageMaker endpoint.

public SageMakerUpdateEndpoint(Construct scope, string id, ISageMakerUpdateEndpointProps props)
Parameters
scope Construct
id string

Descriptive identifier for this chainable.

props ISageMakerUpdateEndpointProps
Remarks

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

ExampleMetadata: infused

Properties

TaskMetrics

A Step Functions Task to update 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 update 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, ISageMakerUpdateEndpointJsonPathProps)

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

public static SageMakerUpdateEndpoint JsonPath(Construct scope, string id, ISageMakerUpdateEndpointJsonPathProps props)
Parameters
scope Construct
id string
props ISageMakerUpdateEndpointJsonPathProps
Returns

SageMakerUpdateEndpoint

Remarks

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

Jsonata(Construct, string, ISageMakerUpdateEndpointJsonataProps)

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

public static SageMakerUpdateEndpoint Jsonata(Construct scope, string id, ISageMakerUpdateEndpointJsonataProps props)
Parameters
scope Construct
id string
props ISageMakerUpdateEndpointJsonataProps
Returns

SageMakerUpdateEndpoint

Remarks

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

Implements

IChainable
INextable
Back to top Generated by DocFX