Interface CfnBucket.IReplicationRuleAndOperatorProperty
A container for specifying rule filters.
Namespace: Amazon.CDK.AWS.S3
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public interface IReplicationRuleAndOperatorProperty
Syntax (vb)
Public Interface IReplicationRuleAndOperatorProperty
Remarks
The filters determine the subset of objects to which the rule applies. This element is required only if you specify more than one filter.
For example:
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 replicationRuleAndOperatorProperty = new ReplicationRuleAndOperatorProperty {
Prefix = "prefix",
TagFilters = new [] { new TagFilterProperty {
Key = "key",
Value = "value"
} }
};
Synopsis
Properties
Prefix | An object key name prefix that identifies the subset of objects to which the rule applies. |
TagFilters | An array of tags containing key and value pairs. |
Properties
Prefix
An object key name prefix that identifies the subset of objects to which the rule applies.
virtual string Prefix { get; }
Property Value
System.String
Remarks
TagFilters
An array of tags containing key and value pairs.
virtual object TagFilters { get; }
Property Value
System.Object