interface CfnDataAutomationLibraryMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.Bedrock.CfnDataAutomationLibraryMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsbedrock#CfnDataAutomationLibraryMixinProps |
Java | software.amazon.awscdk.cfnpropertymixins.services.bedrock.CfnDataAutomationLibraryMixinProps |
Python | aws_cdk.cfn_property_mixins.aws_bedrock.CfnDataAutomationLibraryMixinProps |
TypeScript | @aws-cdk/cfn-property-mixins » aws_bedrock » CfnDataAutomationLibraryMixinProps |
Properties for CfnDataAutomationLibraryPropsMixin.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_bedrock as bedrock } from '@aws-cdk/cfn-property-mixins';
const cfnDataAutomationLibraryMixinProps: bedrock.CfnDataAutomationLibraryMixinProps = {
encryptionConfiguration: {
kmsEncryptionContext: {
kmsEncryptionContextKey: 'kmsEncryptionContext',
},
kmsKeyId: 'kmsKeyId',
},
libraryDescription: 'libraryDescription',
libraryName: 'libraryName',
tags: [{
key: 'key',
value: 'value',
}],
};
Properties
| Name | Type | Description |
|---|---|---|
| encryption | IResolvable | Encryption | KMS Encryption Configuration. |
| library | string | Description of the DataAutomationLibrary. |
| library | string | Name of the DataAutomationLibrary. |
| tags? | Cfn[] | List of tags. |
encryptionConfiguration?
Type:
IResolvable | Encryption
(optional)
KMS Encryption Configuration.
libraryDescription?
Type:
string
(optional)
Description of the DataAutomationLibrary.
libraryName?
Type:
string
(optional)
Name of the DataAutomationLibrary.
tags?
Type:
Cfn[]
(optional)
List of tags.

.NET
Go
Java
Python
TypeScript