Interface CfnDataAutomationLibraryMixinProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnDataAutomationLibraryMixinProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.127.0 (build 2117ad5)",
date="2026-04-14T18:32:09.204Z")
@Stability(Stable)
public interface CfnDataAutomationLibraryMixinProps
extends software.amazon.jsii.JsiiSerializable
Properties for CfnDataAutomationLibraryPropsMixin.
Example:
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import software.amazon.awscdk.cfnpropertymixins.services.bedrock.*;
CfnDataAutomationLibraryMixinProps cfnDataAutomationLibraryMixinProps = CfnDataAutomationLibraryMixinProps.builder()
.encryptionConfiguration(EncryptionConfigurationProperty.builder()
.kmsEncryptionContext(Map.of(
"kmsEncryptionContextKey", "kmsEncryptionContext"))
.kmsKeyId("kmsKeyId")
.build())
.libraryDescription("libraryDescription")
.libraryName("libraryName")
.tags(List.of(CfnTag.builder()
.key("key")
.value("value")
.build()))
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnDataAutomationLibraryMixinPropsstatic final classAn implementation forCfnDataAutomationLibraryMixinProps -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getEncryptionConfiguration
KMS Encryption Configuration.Returns union: either
IResolvableorCfnDataAutomationLibraryPropsMixin.EncryptionConfigurationProperty- See Also:
-
getLibraryDescription
Description of the DataAutomationLibrary.- See Also:
-
getLibraryName
Name of the DataAutomationLibrary.- See Also:
-
getTags
List of tags.- See Also:
-
builder
-