Class CfnDataSource.ServerSideEncryptionConfigurationProperty
Contains the configuration for server-side encryption.
Inherited Members
Namespace: Amazon.CDK.AWS.Bedrock
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class CfnDataSource.ServerSideEncryptionConfigurationProperty : CfnDataSource.IServerSideEncryptionConfigurationProperty
Syntax (vb)
Public Class CfnDataSource.ServerSideEncryptionConfigurationProperty Implements CfnDataSource.IServerSideEncryptionConfigurationProperty
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.Bedrock;
var serverSideEncryptionConfigurationProperty = new ServerSideEncryptionConfigurationProperty {
KmsKeyArn = "kmsKeyArn"
};
Synopsis
Constructors
| ServerSideEncryptionConfigurationProperty() | Contains the configuration for server-side encryption. |
Properties
| KmsKeyArn | The Amazon Resource Name (ARN) of the AWS key used to encrypt the resource. |
Constructors
ServerSideEncryptionConfigurationProperty()
Contains the configuration for server-side encryption.
public ServerSideEncryptionConfigurationProperty()
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.Bedrock;
var serverSideEncryptionConfigurationProperty = new ServerSideEncryptionConfigurationProperty {
KmsKeyArn = "kmsKeyArn"
};
Properties
KmsKeyArn
The Amazon Resource Name (ARN) of the AWS key used to encrypt the resource.
public string? KmsKeyArn { get; set; }