Show / Hide Table of Contents

Interface CfnBucket.IReplicationRuleAndOperatorProperty

A container for specifying rule filters.

Namespace: Amazon.CDK.AWS.S3
Assembly: Amazon.CDK.AWS.S3.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:

    Link: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-bucket-replicationruleandoperator.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;
    
    ReplicationRuleAndOperatorProperty 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

    Link: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-bucket-replicationruleandoperator.html#cfn-s3-bucket-replicationruleandoperator-prefix

    TagFilters

    An array of tags containing key and value pairs.

    virtual object TagFilters { get; }
    Property Value

    System.Object

    Remarks

    Link: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-bucket-replicationruleandoperator.html#cfn-s3-bucket-replicationruleandoperator-tagfilters

    Back to top Generated by DocFX