Show / Hide Table of Contents

Class CfnStorageLensPropsMixin.EncryptionProperty

This resource contains the type of server-side encryption used to encrypt an Amazon S3 Storage Lens metrics export.

Inheritance
object
CfnStorageLensPropsMixin.EncryptionProperty
Implements
CfnStorageLensPropsMixin.IEncryptionProperty
Inherited Members
object.GetType()
object.MemberwiseClone()
object.ToString()
object.Equals(object)
object.Equals(object, object)
object.ReferenceEquals(object, object)
object.GetHashCode()
Namespace: Amazon.CDK.Mixins.Preview.AWS.S3.Mixins
Assembly: Amazon.CDK.Mixins.Preview.dll
Syntax (csharp)
public class CfnStorageLensPropsMixin.EncryptionProperty : CfnStorageLensPropsMixin.IEncryptionProperty
Syntax (vb)
Public Class CfnStorageLensPropsMixin.EncryptionProperty Implements CfnStorageLensPropsMixin.IEncryptionProperty
Remarks

For valid values, see the StorageLensDataExportEncryption in the Amazon S3 API Reference .

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-storagelens-encryption.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.Mixins.Preview.AWS.S3.Mixins;

             var sses3;

             var encryptionProperty = new EncryptionProperty {
                 Ssekms = new SSEKMSProperty {
                     KeyId = "keyId"
                 },
                 Sses3 = sses3
             };

Synopsis

Constructors

EncryptionProperty()

This resource contains the type of server-side encryption used to encrypt an Amazon S3 Storage Lens metrics export.

Properties

Ssekms

Specifies the use of AWS Key Management Service keys (SSE-KMS) to encrypt the S3 Storage Lens metrics export file.

Sses3

Specifies the use of an Amazon S3-managed key (SSE-S3) to encrypt the S3 Storage Lens metrics export file.

Constructors

EncryptionProperty()

This resource contains the type of server-side encryption used to encrypt an Amazon S3 Storage Lens metrics export.

public EncryptionProperty()
Remarks

For valid values, see the StorageLensDataExportEncryption in the Amazon S3 API Reference .

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-storagelens-encryption.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.Mixins.Preview.AWS.S3.Mixins;

             var sses3;

             var encryptionProperty = new EncryptionProperty {
                 Ssekms = new SSEKMSProperty {
                     KeyId = "keyId"
                 },
                 Sses3 = sses3
             };

Properties

Ssekms

Specifies the use of AWS Key Management Service keys (SSE-KMS) to encrypt the S3 Storage Lens metrics export file.

public object? Ssekms { get; set; }
Property Value

object

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-storagelens-encryption.html#cfn-s3-storagelens-encryption-ssekms

Type union: either IResolvable or CfnStorageLensPropsMixin.ISSEKMSProperty

Sses3

Specifies the use of an Amazon S3-managed key (SSE-S3) to encrypt the S3 Storage Lens metrics export file.

public object? Sses3 { get; set; }
Property Value

object

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-storagelens-encryption.html#cfn-s3-storagelens-encryption-sses3

Implements

CfnStorageLensPropsMixin.IEncryptionProperty
Back to top Generated by DocFX