EcsLaunchTargetConfig
- class aws_cdk.aws_stepfunctions_tasks.EcsLaunchTargetConfig(*, parameters=None)
Bases:
object
Configuration options for the ECS launch type.
- Parameters:
parameters (
Optional
[Mapping
[str
,Any
]]) – Additional parameters to pass to the base task. Default: - No additional parameters passed- ExampleMetadata:
fixture=_generated
Example:
# The code below shows an example of how to instantiate this type. # The values are placeholders you should change. from aws_cdk import aws_stepfunctions_tasks as stepfunctions_tasks # parameters: Any ecs_launch_target_config = stepfunctions_tasks.EcsLaunchTargetConfig( parameters={ "parameters_key": parameters } )
Attributes
- parameters
Additional parameters to pass to the base task.
- Default:
No additional parameters passed