Show / Hide Table of Contents

Interface CfnBucket.ISourceSelectionCriteriaProperty

A container that describes additional filters for identifying the source objects that you want to replicate.

Namespace: Amazon.CDK.AWS.S3
Assembly: Amazon.CDK.AWS.S3.dll
Syntax (csharp)
public interface ISourceSelectionCriteriaProperty
Syntax (vb)
Public Interface ISourceSelectionCriteriaProperty
Remarks

You can choose to enable or disable the replication of these objects.

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

SourceSelectionCriteriaProperty sourceSelectionCriteriaProperty = new SourceSelectionCriteriaProperty {
    ReplicaModifications = new ReplicaModificationsProperty {
        Status = "status"
    },
    SseKmsEncryptedObjects = new SseKmsEncryptedObjectsProperty {
        Status = "status"
    }
};

Synopsis

Properties

ReplicaModifications

A filter that you can specify for selection for modifications on replicas.

SseKmsEncryptedObjects

A container for filter information for the selection of Amazon S3 objects encrypted with AWS KMS.

Properties

ReplicaModifications

A filter that you can specify for selection for modifications on replicas.

virtual object ReplicaModifications { get; }
Property Value

System.Object

Remarks

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

SseKmsEncryptedObjects

A container for filter information for the selection of Amazon S3 objects encrypted with AWS KMS.

virtual object SseKmsEncryptedObjects { get; }
Property Value

System.Object

Remarks

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

Back to top Generated by DocFX