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 .
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
Remarks
Value
The tag value.
string Value { get; }