Class CfnDataAutomationLibrary

java.lang.Object
software.amazon.jsii.JsiiObject
software.constructs.Construct
All Implemented Interfaces:
IInspectable, IDataAutomationLibraryRef, IEnvironmentAware, ITaggableV2, software.amazon.jsii.JsiiSerializable, software.constructs.IConstruct, software.constructs.IDependable

@Generated(value="jsii-pacmak/1.127.0 (build 2117ad5)", date="2026-04-14T18:31:49.765Z") @Stability(Stable) public class CfnDataAutomationLibrary extends CfnResource implements IInspectable, IDataAutomationLibraryRef, ITaggableV2
Resource Type definition for AWS::Bedrock::DataAutomationLibrary.

Example:

 // The code below shows an example of how to instantiate this type.
 // The values are placeholders you should change.
 import software.amazon.awscdk.services.bedrock.*;
 CfnDataAutomationLibrary cfnDataAutomationLibrary = CfnDataAutomationLibrary.Builder.create(this, "MyCfnDataAutomationLibrary")
         .libraryName("libraryName")
         // the properties below are optional
         .encryptionConfiguration(EncryptionConfigurationProperty.builder()
                 .kmsKeyId("kmsKeyId")
                 // the properties below are optional
                 .kmsEncryptionContext(Map.of(
                         "kmsEncryptionContextKey", "kmsEncryptionContext"))
                 .build())
         .libraryDescription("libraryDescription")
         .tags(List.of(CfnTag.builder()
                 .key("key")
                 .value("value")
                 .build()))
         .build();
 

See Also:
  • Field Details

    • CFN_RESOURCE_TYPE_NAME

      @Stability(Stable) public static final String CFN_RESOURCE_TYPE_NAME
      The CloudFormation resource type name for this resource class.
  • Constructor Details

    • CfnDataAutomationLibrary

      protected CfnDataAutomationLibrary(software.amazon.jsii.JsiiObjectRef objRef)
    • CfnDataAutomationLibrary

      protected CfnDataAutomationLibrary(software.amazon.jsii.JsiiObject.InitializationMode initializationMode)
    • CfnDataAutomationLibrary

      @Stability(Stable) public CfnDataAutomationLibrary(@NotNull software.constructs.Construct scope, @NotNull String id, @NotNull CfnDataAutomationLibraryProps props)
      Create a new AWS::Bedrock::DataAutomationLibrary.

      Parameters:
      scope - Scope in which this resource is defined. This parameter is required.
      id - Construct identifier for this resource (unique in its scope). This parameter is required.
      props - Resource properties. This parameter is required.
  • Method Details

    • isCfnDataAutomationLibrary

      @Stability(Stable) @NotNull public static Boolean isCfnDataAutomationLibrary(@NotNull Object x)
      Checks whether the given object is a CfnDataAutomationLibrary.

      Parameters:
      x - This parameter is required.
    • inspect

      @Stability(Stable) public void inspect(@NotNull TreeInspector inspector)
      Examines the CloudFormation resource and discloses attributes.

      Specified by:
      inspect in interface IInspectable
      Parameters:
      inspector - tree inspector to collect and process attributes. This parameter is required.
    • renderProperties

      @Stability(Stable) @NotNull protected Map<String,Object> renderProperties(@NotNull Map<String,Object> props)
      Overrides:
      renderProperties in class CfnResource
      Parameters:
      props - This parameter is required.
    • getAttrCreationTime

      @Stability(Stable) @NotNull public String getAttrCreationTime()
      Time Stamp.
    • getAttrEntityTypes

      @Stability(Stable) @NotNull public IResolvable getAttrEntityTypes()
      List of info for each entity type in the DataAutomationLibrary.
    • getAttrLibraryArn

      @Stability(Stable) @NotNull public String getAttrLibraryArn()
      ARN generated at the server side when a DataAutomationLibrary is created.
    • getAttrStatus

      @Stability(Stable) @NotNull public String getAttrStatus()
      Status of DataAutomationLibrary.
    • getCdkTagManager

      @Stability(Stable) @NotNull public TagManager getCdkTagManager()
      Tag Manager which manages the tags for this resource.
      Specified by:
      getCdkTagManager in interface ITaggableV2
    • getCfnProperties

      @Stability(Stable) @NotNull protected Map<String,Object> getCfnProperties()
      Overrides:
      getCfnProperties in class CfnResource
    • getDataAutomationLibraryRef

      @Stability(Stable) @NotNull public DataAutomationLibraryReference getDataAutomationLibraryRef()
      A reference to a DataAutomationLibrary resource.
      Specified by:
      getDataAutomationLibraryRef in interface IDataAutomationLibraryRef
    • getLibraryName

      @Stability(Stable) @NotNull public String getLibraryName()
      Name of the DataAutomationLibrary.
    • setLibraryName

      @Stability(Stable) public void setLibraryName(@NotNull String value)
      Name of the DataAutomationLibrary.
    • getEncryptionConfiguration

      @Stability(Stable) @Nullable public Object getEncryptionConfiguration()
      KMS Encryption Configuration.

      Returns union: either IResolvable or CfnDataAutomationLibrary.EncryptionConfigurationProperty

    • setEncryptionConfiguration

      @Stability(Stable) public void setEncryptionConfiguration(@Nullable IResolvable value)
      KMS Encryption Configuration.
    • setEncryptionConfiguration

      @Stability(Stable) public void setEncryptionConfiguration(@Nullable CfnDataAutomationLibrary.EncryptionConfigurationProperty value)
      KMS Encryption Configuration.
    • getLibraryDescription

      @Stability(Stable) @Nullable public String getLibraryDescription()
      Description of the DataAutomationLibrary.
    • setLibraryDescription

      @Stability(Stable) public void setLibraryDescription(@Nullable String value)
      Description of the DataAutomationLibrary.
    • getTags

      @Stability(Stable) @Nullable public List<CfnTag> getTags()
      List of tags.
    • setTags

      @Stability(Stable) public void setTags(@Nullable List<CfnTag> value)
      List of tags.