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.Lib.dll
Syntax (csharp)
public interface CfnBucket.ISourceSelectionCriteriaProperty
Syntax (vb)
Public Interface CfnBucket.ISourceSelectionCriteriaProperty
Remarks

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

See: 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;

             var 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.

object? ReplicaModifications { get; }
Property Value

object

Remarks

See: 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.

object? SseKmsEncryptedObjects { get; }
Property Value

object

Remarks

See: 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