package awsstepfunctionstasks import ( "github.com/aws/aws-cdk-go/awscdk/v2/awsecs" "github.com/aws/aws-cdk-go/awscdk/v2/awsstepfunctions" ) // Basic properties for ECS Tasks. // // Example: // // The code below shows an example of how to instantiate this type. // // The values are placeholders you should change. // import "github.com/aws/aws-cdk-go/awscdk" // import "github.com/aws/aws-cdk-go/awscdk" // import "github.com/aws/aws-cdk-go/awscdk" // // var cluster cluster // var containerDefinition containerDefinition // var taskDefinition taskDefinition // // commonEcsRunTaskProps := &CommonEcsRunTaskProps{ // Cluster: cluster, // TaskDefinition: taskDefinition, // // // the properties below are optional // ContainerOverrides: []containerOverride{ // &containerOverride{ // ContainerDefinition: containerDefinition, // // // the properties below are optional // Command: []*string{ // jsii.String("command"), // }, // Cpu: jsii.Number(123), // Environment: []taskEnvironmentVariable{ // &taskEnvironmentVariable{ // Name: jsii.String("name"), // Value: jsii.String("value"), // }, // }, // MemoryLimit: jsii.Number(123), // MemoryReservation: jsii.Number(123), // }, // }, // IntegrationPattern: awscdk.Aws_stepfunctions.ServiceIntegrationPattern_FIRE_AND_FORGET, // } // type CommonEcsRunTaskProps struct { // The topic to run the task on. Cluster awsecs.ICluster `field:"required" json:"cluster" yaml:"cluster"` // Task Definition used for running tasks in the service. // // Note: this must be TaskDefinition, and not ITaskDefinition, // as it requires properties that are not known for imported task definitions // If you want to run a RunTask with an imported task definition, // consider using CustomState. TaskDefinition awsecs.TaskDefinition `field:"required" json:"taskDefinition" yaml:"taskDefinition"` // Container setting overrides. // // Key is the name of the container to override, value is the // values you want to override. ContainerOverrides *[]*ContainerOverride `field:"optional" json:"containerOverrides" yaml:"containerOverrides"` // The service integration pattern indicates different ways to call RunTask in ECS. // // The valid value for Lambda is FIRE_AND_FORGET, SYNC and WAIT_FOR_TASK_TOKEN. IntegrationPattern awsstepfunctions.ServiceIntegrationPattern `field:"optional" json:"integrationPattern" yaml:"integrationPattern"` }