aws-cdk-lib.aws_stepfunctions_tasks.EcsLaunchTargetConfig

interface EcsLaunchTargetConfig

LanguageType name
.NETAmazon.CDK.AWS.StepFunctions.Tasks.EcsLaunchTargetConfig
Gogithub.com/aws/aws-cdk-go/awscdk/v2/awsstepfunctionstasks#EcsLaunchTargetConfig
Javasoftware.amazon.awscdk.services.stepfunctions.tasks.EcsLaunchTargetConfig
Pythonaws_cdk.aws_stepfunctions_tasks.EcsLaunchTargetConfig
TypeScript (source)aws-cdk-lib » aws_stepfunctions_tasks » EcsLaunchTargetConfig

Obtainable from EcsEc2LaunchTarget.bind(), EcsFargateLaunchTarget.bind()

Configuration options for the ECS launch type.

Example

// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_stepfunctions_tasks as stepfunctions_tasks } from 'aws-cdk-lib';

declare const parameters: any;
const ecsLaunchTargetConfig: stepfunctions_tasks.EcsLaunchTargetConfig = {
  parameters: {
    parametersKey: parameters,
  },
};

Properties

NameTypeDescription
parameters?{ [string]: any }Additional parameters to pass to the base task.

parameters?

Type: { [string]: any } (optional, default: No additional parameters passed)

Additional parameters to pass to the base task.