Show / Hide Table of Contents

Class EcsLaunchTargetConfig

Configuration options for the ECS launch type.

Inheritance
System.Object
EcsLaunchTargetConfig
Implements
IEcsLaunchTargetConfig
Namespace: Amazon.CDK.AWS.StepFunctions.Tasks
Assembly: Amazon.CDK.AWS.StepFunctions.Tasks.dll
Syntax (csharp)
public class EcsLaunchTargetConfig : Object, IEcsLaunchTargetConfig
Syntax (vb)
Public Class EcsLaunchTargetConfig
    Inherits Object
    Implements IEcsLaunchTargetConfig
Remarks

ExampleMetadata: fixture=_generated

Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.AWS.StepFunctions.Tasks;

var parameters;

var ecsLaunchTargetConfig = new EcsLaunchTargetConfig {
    Parameters = new Dictionary<string, object> {
        { "parametersKey", parameters }
    }
};

Synopsis

Constructors

EcsLaunchTargetConfig()

Properties

Parameters

Additional parameters to pass to the base task.

Constructors

EcsLaunchTargetConfig()

public EcsLaunchTargetConfig()

Properties

Parameters

Additional parameters to pass to the base task.

public IDictionary<string, object> Parameters { get; set; }
Property Value

System.Collections.Generic.IDictionary<System.String, System.Object>

Remarks

Default: - No additional parameters passed

Implements

IEcsLaunchTargetConfig
Back to top Generated by DocFX