interface TaskSetReference
Language | Type name |
---|---|
![]() | Amazon.CDK.AWS.ECS.TaskSetReference |
![]() | github.com/aws/aws-cdk-go/awscdk/v2/awsecs#TaskSetReference |
![]() | software.amazon.awscdk.services.ecs.TaskSetReference |
![]() | aws_cdk.aws_ecs.TaskSetReference |
![]() | aws-cdk-lib » aws_ecs » TaskSetReference |
A reference to a TaskSet resource.
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';
const taskSetReference: ecs.TaskSetReference = {
cluster: 'cluster',
service: 'service',
taskSetId: 'taskSetId',
};
Properties
Name | Type | Description |
---|---|---|
cluster | string | The Cluster of the TaskSet resource. |
service | string | The Service of the TaskSet resource. |
task | string | The Id of the TaskSet resource. |
cluster
Type:
string
The Cluster of the TaskSet resource.
service
Type:
string
The Service of the TaskSet resource.
taskSetId
Type:
string
The Id of the TaskSet resource.