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.AWS.S3.dll
Syntax (csharp)
public interface ITagFilterProperty
Syntax (vb)
Public Interface ITagFilterProperty
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.S3;
TagFilterProperty 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
System.String
Remarks
Value
The tag value.
string Value { get; }
Property Value
System.String