interface CfnDataAutomationLibraryProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.Bedrock.CfnDataAutomationLibraryProps |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsbedrock#CfnDataAutomationLibraryProps |
Java | software.amazon.awscdk.services.bedrock.CfnDataAutomationLibraryProps |
Python | aws_cdk.aws_bedrock.CfnDataAutomationLibraryProps |
TypeScript | aws-cdk-lib » aws_bedrock » CfnDataAutomationLibraryProps |
Properties for defining a CfnDataAutomationLibrary.
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-lib';
const cfnDataAutomationLibraryProps: bedrock.CfnDataAutomationLibraryProps = {
libraryName: 'libraryName',
// the properties below are optional
encryptionConfiguration: {
kmsKeyId: 'kmsKeyId',
// the properties below are optional
kmsEncryptionContext: {
kmsEncryptionContextKey: 'kmsEncryptionContext',
},
},
libraryDescription: 'libraryDescription',
tags: [{
key: 'key',
value: 'value',
}],
};
Properties
| Name | Type | Description |
|---|---|---|
| library | string | Name of the DataAutomationLibrary. |
| encryption | IResolvable | Encryption | KMS Encryption Configuration. |
| library | string | Description of the DataAutomationLibrary. |
| tags? | Cfn[] | List of tags. |
libraryName
Type:
string
Name of the DataAutomationLibrary.
encryptionConfiguration?
Type:
IResolvable | Encryption
(optional)
KMS Encryption Configuration.
libraryDescription?
Type:
string
(optional)
Description of the DataAutomationLibrary.
tags?
Type:
Cfn[]
(optional)
List of tags.

.NET
Go
Java
Python
TypeScript