CfnDataAutomationLibraryMixinProps
- class aws_cdk.cfn_property_mixins.aws_bedrock.CfnDataAutomationLibraryMixinProps(*, encryption_configuration=None, library_description=None, library_name=None, tags=None)
Bases:
objectProperties for CfnDataAutomationLibraryPropsMixin.
- Parameters:
encryption_configuration (
Union[IResolvable,EncryptionConfigurationProperty,Dict[str,Any],None]) – KMS Encryption Configuration.library_description (
Optional[str]) – Description of the DataAutomationLibrary.library_name (
Optional[str]) – Name of the DataAutomationLibrary.tags (
Optional[Sequence[Union[CfnTag,Dict[str,Any]]]]) – List of tags.
- See:
- 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.cfn_property_mixins import aws_bedrock as bedrock cfn_data_automation_library_mixin_props = bedrock.CfnDataAutomationLibraryMixinProps( encryption_configuration=bedrock.CfnDataAutomationLibraryPropsMixin.EncryptionConfigurationProperty( kms_encryption_context={ "kms_encryption_context_key": "kmsEncryptionContext" }, kms_key_id="kmsKeyId" ), library_description="libraryDescription", library_name="libraryName", tags=[CfnTag( key="key", value="value" )] )
Attributes
- encryption_configuration
KMS Encryption Configuration.
- library_description
Description of the DataAutomationLibrary.
- library_name
Name of the DataAutomationLibrary.