interface SourceSelectionCriteriaProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.S3.Mixins.CfnBucketPropsMixin.SourceSelectionCriteriaProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awss3/mixins#CfnBucketPropsMixin_SourceSelectionCriteriaProperty |
Java | software.amazon.awscdk.mixins.preview.services.s3.mixins.CfnBucketPropsMixin.SourceSelectionCriteriaProperty |
Python | aws_cdk.mixins_preview.aws_s3.mixins.CfnBucketPropsMixin.SourceSelectionCriteriaProperty |
TypeScript | @aws-cdk/mixins-preview » aws_s3 » mixins » CfnBucketPropsMixin » SourceSelectionCriteriaProperty |
A container that describes additional filters for identifying the source objects that you want to replicate.
You can choose to enable or disable the replication of these objects.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { mixins as s3_mixins } from '@aws-cdk/mixins-preview/aws-s3';
const sourceSelectionCriteriaProperty: s3_mixins.CfnBucketPropsMixin.SourceSelectionCriteriaProperty = {
replicaModifications: {
status: 'status',
},
sseKmsEncryptedObjects: {
status: 'status',
},
};
Properties
| Name | Type | Description |
|---|---|---|
| replica | IResolvable | Replica | A filter that you can specify for selection for modifications on replicas. |
| sse | IResolvable | Sse | A container for filter information for the selection of Amazon S3 objects encrypted with AWS KMS. |
replicaModifications?
Type:
IResolvable | Replica
(optional)
A filter that you can specify for selection for modifications on replicas.
sseKmsEncryptedObjects?
Type:
IResolvable | Sse
(optional)
A container for filter information for the selection of Amazon S3 objects encrypted with AWS KMS.

.NET
Go
Java
Python
TypeScript