Show / Hide Table of Contents

Class CfnTagSyncTaskProps

Properties for defining a CfnTagSyncTask.

Inheritance
object
CfnTagSyncTaskProps
Implements
ICfnTagSyncTaskProps
Inherited Members
object.GetType()
object.MemberwiseClone()
object.ToString()
object.Equals(object)
object.Equals(object, object)
object.ReferenceEquals(object, object)
object.GetHashCode()
Namespace: Amazon.CDK.AWS.ResourceGroups
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class CfnTagSyncTaskProps : ICfnTagSyncTaskProps
Syntax (vb)
Public Class CfnTagSyncTaskProps Implements ICfnTagSyncTaskProps
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-resourcegroups-tagsynctask.html

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 CfnTagSyncTask.

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

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-resourcegroups-tagsynctask.html

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

string

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-resourcegroups-tagsynctask.html#cfn-resourcegroups-tagsynctask-group

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

string

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-resourcegroups-tagsynctask.html#cfn-resourcegroups-tagsynctask-rolearn

TagKey

The tag key.

public string TagKey { get; set; }
Property Value

string

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-resourcegroups-tagsynctask.html#cfn-resourcegroups-tagsynctask-tagkey

TagValue

The tag value.

public string TagValue { get; set; }
Property Value

string

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-resourcegroups-tagsynctask.html#cfn-resourcegroups-tagsynctask-tagvalue

Implements

ICfnTagSyncTaskProps
Back to top Generated by DocFX