CfnDataAutomationLibraryProps

class aws_cdk.aws_bedrock.CfnDataAutomationLibraryProps(*, library_name, encryption_configuration=None, library_description=None, tags=None)

Bases: object

Properties for defining a CfnDataAutomationLibrary.

Parameters:
  • library_name (str) – Name of the DataAutomationLibrary.

  • encryption_configuration (Union[IResolvable, EncryptionConfigurationProperty, Dict[str, Any], None]) – KMS Encryption Configuration.

  • library_description (Optional[str]) – Description of the DataAutomationLibrary.

  • tags (Optional[Sequence[Union[CfnTag, Dict[str, Any]]]]) – List of tags.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-bedrock-dataautomationlibrary.html

ExampleMetadata:

fixture=_generated

Example:

from aws_cdk import CfnTag
# The code below shows an example of how to instantiate this type.
# The values are placeholders you should change.
from aws_cdk import aws_bedrock as bedrock

cfn_data_automation_library_props = bedrock.CfnDataAutomationLibraryProps(
    library_name="libraryName",

    # the properties below are optional
    encryption_configuration=bedrock.CfnDataAutomationLibrary.EncryptionConfigurationProperty(
        kms_key_id="kmsKeyId",

        # the properties below are optional
        kms_encryption_context={
            "kms_encryption_context_key": "kmsEncryptionContext"
        }
    ),
    library_description="libraryDescription",
    tags=[CfnTag(
        key="key",
        value="value"
    )]
)

Attributes

encryption_configuration

KMS Encryption Configuration.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-bedrock-dataautomationlibrary.html#cfn-bedrock-dataautomationlibrary-encryptionconfiguration

library_description

Description of the DataAutomationLibrary.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-bedrock-dataautomationlibrary.html#cfn-bedrock-dataautomationlibrary-librarydescription

library_name

Name of the DataAutomationLibrary.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-bedrock-dataautomationlibrary.html#cfn-bedrock-dataautomationlibrary-libraryname

tags

List of tags.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-bedrock-dataautomationlibrary.html#cfn-bedrock-dataautomationlibrary-tags