interface EcsRunTaskBaseProps
Language | Type name |
---|---|
![]() | Amazon.CDK.AWS.Scheduler.Targets.EcsRunTaskBaseProps |
![]() | github.com/aws/aws-cdk-go/awscdk/v2/awsschedulertargets#EcsRunTaskBaseProps |
![]() | software.amazon.awscdk.services.scheduler.targets.EcsRunTaskBaseProps |
![]() | aws_cdk.aws_scheduler_targets.EcsRunTaskBaseProps |
![]() | aws-cdk-lib » aws_scheduler_targets » EcsRunTaskBaseProps |
Parameters for scheduling ECS Run Task (common to EC2 and Fargate launch types).
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import * as cdk from 'aws-cdk-lib';
import { aws_ec2 as ec2 } from 'aws-cdk-lib';
import { aws_ecs as ecs } from 'aws-cdk-lib';
import { aws_iam as iam } from 'aws-cdk-lib';
import { aws_scheduler as scheduler } from 'aws-cdk-lib';
import { aws_scheduler_targets as scheduler_targets } from 'aws-cdk-lib';
import { aws_sqs as sqs } from 'aws-cdk-lib';
declare const queue: sqs.Queue;
declare const role: iam.Role;
declare const scheduleTargetInput: scheduler.ScheduleTargetInput;
declare const securityGroup: ec2.SecurityGroup;
declare const subnet: ec2.Subnet;
declare const subnetFilter: ec2.SubnetFilter;
declare const taskDefinition: ecs.TaskDefinition;
const ecsRunTaskBaseProps: scheduler_targets.EcsRunTaskBaseProps = {
taskDefinition: taskDefinition,
// the properties below are optional
capacityProviderStrategies: [{
capacityProvider: 'capacityProvider',
// the properties below are optional
base: 123,
weight: 123,
}],
deadLetterQueue: queue,
enableEcsManagedTags: false,
enableExecuteCommand: false,
group: 'group',
input: scheduleTargetInput,
maxEventAge: cdk.Duration.minutes(30),
propagateTags: false,
referenceId: 'referenceId',
retryAttempts: 123,
role: role,
securityGroups: [securityGroup],
tags: [{
key: 'key',
value: 'value',
}],
taskCount: 123,
vpcSubnets: {
availabilityZones: ['availabilityZones'],
onePerAz: false,
subnetFilters: [subnetFilter],
subnetGroupName: 'subnetGroupName',
subnets: [subnet],
subnetType: ec2.SubnetType.PRIVATE_ISOLATED,
},
};
Properties
Name | Type | Description |
---|---|---|
task | Task | The task definition to use for scheduled tasks. |
capacity | Capacity [] | The capacity provider strategy to use for the task. |
dead | IQueue | The SQS queue to be used as deadLetterQueue. |
enable | boolean | Specifies whether to enable Amazon ECS managed tags for the task. |
enable | boolean | Whether to enable execute command functionality for the containers in this task. |
group? | string | Specifies an ECS task group for the task. |
input? | Schedule | Input passed to the target. |
max | Duration | The maximum age of a request that Scheduler sends to a target for processing. |
propagate | boolean | Specifies whether to propagate the tags from the task definition to the task. |
reference | string | The reference ID to use for the task. |
retry | number | The maximum number of times to retry when the target returns an error. |
role? | IRole | An execution role is an IAM role that EventBridge Scheduler assumes in order to interact with other AWS services on your behalf. |
security | ISecurity [] | The security groups associated with the task. |
tags? | Tag [] | The metadata that you apply to the task to help you categorize and organize them. |
task | number | The number of tasks to create based on TaskDefinition. |
vpc | Subnet | The subnets associated with the task. |
taskDefinition
Type:
Task
The task definition to use for scheduled tasks.
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 a Universal target.
capacityProviderStrategies?
Type:
Capacity
[]
(optional, default: No capacity provider strategy)
The capacity provider strategy to use for the task.
deadLetterQueue?
Type:
IQueue
(optional, default: no dead-letter queue)
The SQS queue to be used as deadLetterQueue.
The events not successfully delivered are automatically retried for a specified period of time, depending on the retry policy of the target. If an event is not delivered before all retry attempts are exhausted, it will be sent to the dead letter queue.
enableEcsManagedTags?
Type:
boolean
(optional, default: false)
Specifies whether to enable Amazon ECS managed tags for the task.
enableExecuteCommand?
Type:
boolean
(optional, default: false)
Whether to enable execute command functionality for the containers in this task.
If true, this enables execute command functionality on all containers in the task.
group?
Type:
string
(optional, default: No group)
Specifies an ECS task group for the task.
input?
Type:
Schedule
(optional, default: no input.)
Input passed to the target.
maxEventAge?
Type:
Duration
(optional, default: Duration.hours(24))
The maximum age of a request that Scheduler sends to a target for processing.
Minimum value of 60. Maximum value of 86400.
propagateTags?
Type:
boolean
(optional, default: No tag propagation)
Specifies whether to propagate the tags from the task definition to the task.
If no value is specified, the tags are not propagated.
referenceId?
Type:
string
(optional, default: No reference ID.)
The reference ID to use for the task.
retryAttempts?
Type:
number
(optional, default: 185)
The maximum number of times to retry when the target returns an error.
Minimum value of 0. Maximum value of 185.
role?
Type:
IRole
(optional, default: created by target)
An execution role is an IAM role that EventBridge Scheduler assumes in order to interact with other AWS services on your behalf.
If none provided templates target will automatically create an IAM role with all the minimum necessary permissions to interact with the templated target. If you wish you may specify your own IAM role, then the templated targets will grant minimal required permissions.
securityGroups?
Type:
ISecurity
[]
(optional, default: The security group for the VPC is used.)
The security groups associated with the task.
These security groups must all be in the same VPC. Controls inbound and outbound network access for the task.
tags?
Type:
Tag
[]
(optional, default: No tags)
The metadata that you apply to the task to help you categorize and organize them.
Each tag consists of a key and an optional value, both of which you define.
taskCount?
Type:
number
(optional, default: 1)
The number of tasks to create based on TaskDefinition.
vpcSubnets?
Type:
Subnet
(optional, default: all private subnets of the VPC are selected.)
The subnets associated with the task.
These subnets must all be in the same VPC. The task will be launched in these subnets.