interface CfnPrimaryTaskSetMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.ECS.Mixins.CfnPrimaryTaskSetMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsecs/mixins#CfnPrimaryTaskSetMixinProps |
Java | software.amazon.awscdk.mixins.preview.services.ecs.mixins.CfnPrimaryTaskSetMixinProps |
Python | aws_cdk.mixins_preview.aws_ecs.mixins.CfnPrimaryTaskSetMixinProps |
TypeScript | @aws-cdk/mixins-preview » aws_ecs » mixins » CfnPrimaryTaskSetMixinProps |
Properties for CfnPrimaryTaskSetPropsMixin.
See also: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-primarytaskset.html
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { mixins as ecs_mixins } from '@aws-cdk/mixins-preview/aws-ecs';
const cfnPrimaryTaskSetMixinProps: ecs_mixins.CfnPrimaryTaskSetMixinProps = {
cluster: 'cluster',
service: 'service',
taskSetId: 'taskSetId',
};
Properties
| Name | Type | Description |
|---|---|---|
| cluster? | string | The short name or full Amazon Resource Name (ARN) of the cluster that hosts the service that the task set exists in. |
| service? | string | The short name or full Amazon Resource Name (ARN) of the service that the task set exists in. |
| task | string | The short name or full Amazon Resource Name (ARN) of the task set to set as the primary task set in the deployment. |
cluster?
Type:
string
(optional)
The short name or full Amazon Resource Name (ARN) of the cluster that hosts the service that the task set exists in.
service?
Type:
string
(optional)
The short name or full Amazon Resource Name (ARN) of the service that the task set exists in.
taskSetId?
Type:
string
(optional)
The short name or full Amazon Resource Name (ARN) of the task set to set as the primary task set in the deployment.

.NET
Go
Java
Python
TypeScript