Class CfnBucket.TagFilterProperty
Specifies tags to use to identify a subset of objects for an Amazon S3 bucket.
Inheritance
System.Object
CfnBucket.TagFilterProperty
Implements
Namespace: Amazon.CDK.AWS.S3
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class TagFilterProperty : Object, CfnBucket.ITagFilterProperty
Syntax (vb)
Public Class TagFilterProperty
Inherits Object
Implements CfnBucket.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;
var tagFilterProperty = new TagFilterProperty {
Key = "key",
Value = "value"
};
Synopsis
Constructors
TagFilterProperty() |
Properties
Key | The tag key. |
Value | The tag value. |
Constructors
TagFilterProperty()
public TagFilterProperty()
Properties
Key
The tag key.
public string Key { get; set; }
Property Value
System.String
Remarks
Value
The tag value.
public string Value { get; set; }
Property Value
System.String