Show / Hide Table of Contents

Class EksCall

Call a EKS endpoint as a Task.

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

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

ExampleMetadata: infused

Examples
using Amazon.CDK.AWS.EKS;
             using Amazon.CDK.LambdaLayer.KubectlV35;


             var myEksCluster = new Cluster(this, "my sample cluster", new ClusterProps {
                 Version = KubernetesVersion.V1_35,
                 ClusterName = "myEksCluster",
                 KubectlLayer = new KubectlV35Layer(this, "kubectl")
             });

             new EksCall(this, "Call a EKS Endpoint", new EksCallProps {
                 Cluster = myEksCluster,
                 HttpMethod = HttpMethods.GET,
                 HttpPath = "/api/v1/namespaces/default/pods"
             });

Synopsis

Constructors

EksCall(Construct, string, IEksCallProps)

Call a EKS endpoint as a Task.

Properties

TaskMetrics

No policies are required due to eks:call is an Http service integration and does not call and EKS API directly.

TaskPolicies

Call a EKS endpoint as a Task.

Methods

JsonPath(Construct, string, IEksCallJsonPathProps)

Call a EKS endpoint as a Task that using JSONPath.

Jsonata(Construct, string, IEksCallJsonataProps)

Call a EKS endpoint as a Task that using JSONata.

Constructors

EksCall(Construct, string, IEksCallProps)

Call a EKS endpoint as a Task.

public EksCall(Construct scope, string id, IEksCallProps props)
Parameters
scope Construct
id string

Descriptive identifier for this chainable.

props IEksCallProps
Remarks

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

ExampleMetadata: infused

Properties

TaskMetrics

No policies are required due to eks:call is an Http service integration and does not call and EKS API directly.

protected override ITaskMetricsConfig? TaskMetrics { get; }
Property Value

ITaskMetricsConfig

Overrides
TaskStateBase.TaskMetrics
Remarks

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

TaskPolicies

Call a EKS endpoint as a Task.

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

PolicyStatement[]

Overrides
TaskStateBase.TaskPolicies
Remarks

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

ExampleMetadata: infused

Methods

JsonPath(Construct, string, IEksCallJsonPathProps)

Call a EKS endpoint as a Task that using JSONPath.

public static EksCall JsonPath(Construct scope, string id, IEksCallJsonPathProps props)
Parameters
scope Construct
id string
props IEksCallJsonPathProps
Returns

EksCall

Remarks

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

Jsonata(Construct, string, IEksCallJsonataProps)

Call a EKS endpoint as a Task that using JSONata.

public static EksCall Jsonata(Construct scope, string id, IEksCallJsonataProps props)
Parameters
scope Construct
id string
props IEksCallJsonataProps
Returns

EksCall

Remarks

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

Implements

IChainable
INextable
Back to top Generated by DocFX