interface CfnTagSyncTaskProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.ResourceGroups.CfnTagSyncTaskProps |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsresourcegroups#CfnTagSyncTaskProps |
Java | software.amazon.awscdk.services.resourcegroups.CfnTagSyncTaskProps |
Python | aws_cdk.aws_resourcegroups.CfnTagSyncTaskProps |
TypeScript | aws-cdk-lib » aws_resourcegroups » CfnTagSyncTaskProps |
Properties for defining a CfnTagSyncTask.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_resourcegroups as resourcegroups } from 'aws-cdk-lib';
const cfnTagSyncTaskProps: resourcegroups.CfnTagSyncTaskProps = {
group: 'group',
roleArn: 'roleArn',
tagKey: 'tagKey',
tagValue: 'tagValue',
};
Properties
| Name | Type | Description |
|---|---|---|
| group | string | The Amazon resource name (ARN) or name of the application group for which you want to create a tag-sync task. |
| role | string | The Amazon resource name (ARN) of the role assumed by the service to tag and untag resources on your behalf. |
| tag | string | The tag key. |
| tag | string | The tag value. |
group
Type:
string
The Amazon resource name (ARN) or name of the application group for which you want to create a tag-sync task.
roleArn
Type:
string
The Amazon resource name (ARN) of the role assumed by the service to tag and untag resources on your behalf.
tagKey
Type:
string
The tag key.
tagValue
Type:
string
The tag value.

.NET
Go
Java
Python
TypeScript