Show / Hide Table of Contents

Interface CfnBucket.ITagFilterProperty

Specifies tags to use to identify a subset of objects for an Amazon S3 bucket.

Namespace: Amazon.CDK.AWS.S3
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public interface CfnBucket.ITagFilterProperty
Syntax (vb)
Public Interface CfnBucket.ITagFilterProperty
Remarks

For more information, see Categorizing your storage using tags in the Amazon Simple Storage Service User Guide .

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-bucket-tagfilter.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.S3;

             var tagFilterProperty = new TagFilterProperty {
                 Key = "key",
                 Value = "value"
             };

Synopsis

Properties

Key

The tag key.

Value

The tag value.

Properties

Key

The tag key.

string Key { get; }
Property Value

string

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-bucket-tagfilter.html#cfn-s3-bucket-tagfilter-key

Value

The tag value.

string Value { get; }
Property Value

string

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-bucket-tagfilter.html#cfn-s3-bucket-tagfilter-value

Back to top Generated by DocFX