Show / Hide Table of Contents

Interface CfnBucket.IBucketEncryptionProperty

Specifies default encryption for a bucket using server-side encryption with Amazon S3-managed keys (SSE-S3), AWS KMS-managed keys (SSE-KMS), or dual-layer server-side encryption with KMS-managed keys (DSSE-KMS).

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

For information about the Amazon S3 default encryption feature, see Amazon S3 Default Encryption for S3 Buckets in the Amazon S3 User Guide .

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-bucket-bucketencryption.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 bucketEncryptionProperty = new BucketEncryptionProperty {
                 ServerSideEncryptionConfiguration = new [] { new ServerSideEncryptionRuleProperty {
                     BlockedEncryptionTypes = new BlockedEncryptionTypesProperty {
                         EncryptionType = new [] { "encryptionType" }
                     },
                     BucketKeyEnabled = false,
                     ServerSideEncryptionByDefault = new ServerSideEncryptionByDefaultProperty {
                         SseAlgorithm = "sseAlgorithm",

                         // the properties below are optional
                         KmsMasterKeyId = "kmsMasterKeyId"
                     }
                 } }
             };

Synopsis

Properties

ServerSideEncryptionConfiguration

Specifies the default server-side-encryption configuration.

Properties

ServerSideEncryptionConfiguration

Specifies the default server-side-encryption configuration.

object ServerSideEncryptionConfiguration { get; }
Property Value

object

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-bucket-bucketencryption.html#cfn-s3-bucket-bucketencryption-serversideencryptionconfiguration

Type union: either IResolvable or (either IResolvable or CfnBucket.IServerSideEncryptionRuleProperty)[]

Back to top Generated by DocFX