Class CfnStorageLensPropsMixin.EncryptionProperty
This resource contains the type of server-side encryption used to encrypt an Amazon S3 Storage Lens metrics export.
Implements
Inherited Members
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 .
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 .
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
Remarks
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; }