Class CfnTagSyncTaskProps
Properties for defining a CfnTagSyncTask.
Implements
Inherited Members
Namespace: Amazon.CDK.AWS.ResourceGroups
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class CfnTagSyncTaskProps : ICfnTagSyncTaskProps
Syntax (vb)
Public Class CfnTagSyncTaskProps Implements ICfnTagSyncTaskProps
Remarks
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.AWS.ResourceGroups;
var cfnTagSyncTaskProps = new CfnTagSyncTaskProps {
Group = "group",
RoleArn = "roleArn",
TagKey = "tagKey",
TagValue = "tagValue"
};
Synopsis
Constructors
| CfnTagSyncTaskProps() | Properties for defining a |
Properties
| Group | The Amazon resource name (ARN) or name of the application group for which you want to create a tag-sync task. |
| RoleArn | The Amazon resource name (ARN) of the role assumed by the service to tag and untag resources on your behalf. |
| TagKey | The tag key. |
| TagValue | The tag value. |
Constructors
CfnTagSyncTaskProps()
Properties for defining a CfnTagSyncTask.
public CfnTagSyncTaskProps()
Remarks
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.AWS.ResourceGroups;
var cfnTagSyncTaskProps = new CfnTagSyncTaskProps {
Group = "group",
RoleArn = "roleArn",
TagKey = "tagKey",
TagValue = "tagValue"
};
Properties
Group
The Amazon resource name (ARN) or name of the application group for which you want to create a tag-sync task.
public string Group { get; set; }
Property Value
Remarks
RoleArn
The Amazon resource name (ARN) of the role assumed by the service to tag and untag resources on your behalf.
public string RoleArn { get; set; }
Property Value
Remarks
TagKey
The tag key.
public string TagKey { get; set; }
Property Value
Remarks
TagValue
The tag value.
public string TagValue { get; set; }