Class CfnS3TableIntegration.EncryptionConfigProperty
Encryption configuration for the S3 Table Integration.
Implements
Inherited Members
Namespace: Amazon.CDK.AWS.ObservabilityAdmin
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class CfnS3TableIntegration.EncryptionConfigProperty : CfnS3TableIntegration.IEncryptionConfigProperty
Syntax (vb)
Public Class CfnS3TableIntegration.EncryptionConfigProperty Implements CfnS3TableIntegration.IEncryptionConfigProperty
Remarks
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.ObservabilityAdmin;
var encryptionConfigProperty = new EncryptionConfigProperty {
SseAlgorithm = "sseAlgorithm",
// the properties below are optional
KmsKeyArn = "kmsKeyArn"
};
Synopsis
Constructors
| EncryptionConfigProperty() | Encryption configuration for the S3 Table Integration. |
Properties
| KmsKeyArn | The ARN of the KMS key used to encrypt the S3 Table Integration. |
| SseAlgorithm | The server-side encryption algorithm used to encrypt the S3 Table(s) data. |
Constructors
EncryptionConfigProperty()
Encryption configuration for the S3 Table Integration.
public EncryptionConfigProperty()
Remarks
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.ObservabilityAdmin;
var encryptionConfigProperty = new EncryptionConfigProperty {
SseAlgorithm = "sseAlgorithm",
// the properties below are optional
KmsKeyArn = "kmsKeyArn"
};
Properties
KmsKeyArn
The ARN of the KMS key used to encrypt the S3 Table Integration.
public string? KmsKeyArn { get; set; }
Property Value
Remarks
SseAlgorithm
The server-side encryption algorithm used to encrypt the S3 Table(s) data.
public string SseAlgorithm { get; set; }