interface StudioEncryptionConfigurationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.NimbleStudio.Mixins.CfnStudioPropsMixin.StudioEncryptionConfigurationProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsnimblestudio/mixins#CfnStudioPropsMixin_StudioEncryptionConfigurationProperty |
Java | software.amazon.awscdk.mixins.preview.services.nimblestudio.mixins.CfnStudioPropsMixin.StudioEncryptionConfigurationProperty |
Python | aws_cdk.mixins_preview.aws_nimblestudio.mixins.CfnStudioPropsMixin.StudioEncryptionConfigurationProperty |
TypeScript | @aws-cdk/mixins-preview » aws_nimblestudio » mixins » CfnStudioPropsMixin » StudioEncryptionConfigurationProperty |
<p>Configuration of the encryption method that is used for the studio.
.Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { mixins as nimblestudio_mixins } from '@aws-cdk/mixins-preview/aws-nimblestudio';
const studioEncryptionConfigurationProperty: nimblestudio_mixins.CfnStudioPropsMixin.StudioEncryptionConfigurationProperty = {
keyArn: 'keyArn',
keyType: 'keyType',
};
Properties
| Name | Type | Description |
|---|---|---|
| key | string | The ARN for a KMS key that is used to encrypt studio data. . |
| key | string | The type of KMS key that is used to encrypt studio data. . |
keyArn?
Type:
string
(optional)
<p>The ARN for a KMS key that is used to encrypt studio data.
.keyType?
Type:
string
(optional)
<p>The type of KMS key that is used to encrypt studio data.
.
.NET
Go
Java
Python
TypeScript