interface StudioEncryptionConfigurationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.NimbleStudio.CfnStudioPropsMixin.StudioEncryptionConfigurationProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsnimblestudio#CfnStudioPropsMixin_StudioEncryptionConfigurationProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.nimblestudio.CfnStudioPropsMixin.StudioEncryptionConfigurationProperty |
Python | aws_cdk.cfn_property_mixins.aws_nimblestudio.CfnStudioPropsMixin.StudioEncryptionConfigurationProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_nimblestudio » 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 { aws_nimblestudio as nimblestudio } from '@aws-cdk/cfn-property-mixins';
const studioEncryptionConfigurationProperty: nimblestudio.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