interface CfnPrimaryTaskSetMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.ECS.CfnPrimaryTaskSetMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsecs#CfnPrimaryTaskSetMixinProps |
Java | software.amazon.awscdk.cfnpropertymixins.services.ecs.CfnPrimaryTaskSetMixinProps |
Python | aws_cdk.cfn_property_mixins.aws_ecs.CfnPrimaryTaskSetMixinProps |
TypeScript | @aws-cdk/cfn-property-mixins » aws_ecs » 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 { aws_ecs as ecs } from '@aws-cdk/cfn-property-mixins';
const cfnPrimaryTaskSetMixinProps: ecs.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