aws-cdk-lib.aws_stepfunctions_tasks.EcsFargateLaunchTargetOptions

interface EcsFargateLaunchTargetOptions

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

Properties to define an ECS service.

Example

// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_ecs as ecs } from 'aws-cdk-lib';
import { aws_stepfunctions_tasks as stepfunctions_tasks } from 'aws-cdk-lib';
const ecsFargateLaunchTargetOptions: stepfunctions_tasks.EcsFargateLaunchTargetOptions = {
  platformVersion: ecs.FargatePlatformVersion.LATEST,
};

Properties

NameTypeDescription
platformVersionFargatePlatformVersionRefers to a specific runtime environment for Fargate task infrastructure.

platformVersion

Type: FargatePlatformVersion

Refers to a specific runtime environment for Fargate task infrastructure.

Fargate platform version is a combination of the kernel and container runtime versions.

See also: https://docs.aws.amazon.com/AmazonECS/latest/developerguide/platform_versions.html