Class CfnBlueprint

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

@Generated(value="jsii-pacmak/1.138.0 (build 0ca7ee8)", date="2026-08-10T14:51:04.328Z") @Stability(Stable) public class CfnBlueprint extends CfnResource implements IInspectable, IBlueprintRef, ITaggableV2
Resource Type definition for AWS::Glue::Blueprint.

Registers a blueprint with AWS Glue.

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.glue.*;
 CfnBlueprint cfnBlueprint = CfnBlueprint.Builder.create(this, "MyCfnBlueprint")
         .blueprintLocation("blueprintLocation")
         .name("name")
         // the properties below are optional
         .description("description")
         .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

    • CfnBlueprint

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

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

      @Stability(Stable) public CfnBlueprint(@NotNull software.constructs.Construct scope, @NotNull String id, @NotNull CfnBlueprintProps props)
      Create a new AWS::Glue::Blueprint.

      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

    • arnForBlueprint

      @Stability(Stable) @NotNull public static String arnForBlueprint(@NotNull IBlueprintRef resource)
      Parameters:
      resource - This parameter is required.
    • isCfnBlueprint

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

      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.
    • getAttrArn

      @Stability(Stable) @NotNull public String getAttrArn()
      The Amazon Resource Name (ARN) of the blueprint.
    • getAttrCreatedOn

      @Stability(Stable) @NotNull public String getAttrCreatedOn()
      The date and time the blueprint was registered.
    • getAttrLastModifiedOn

      @Stability(Stable) @NotNull public String getAttrLastModifiedOn()
      The date and time the blueprint was last modified.
    • getAttrParameterSpec

      @Stability(Stable) @NotNull public String getAttrParameterSpec()
      A JSON string that indicates the list of parameter specifications for the blueprint.
    • getAttrStatus

      @Stability(Stable) @NotNull public String getAttrStatus()
      The status of the blueprint registration.
    • getBlueprintRef

      @Stability(Stable) @NotNull public BlueprintReference getBlueprintRef()
      A reference to a Blueprint resource.
      Specified by:
      getBlueprintRef in interface IBlueprintRef
    • 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
    • getCfnPropertyNames

      @Stability(Stable) @NotNull protected Map<String,String> getCfnPropertyNames()
      Overrides:
      getCfnPropertyNames in class CfnResource
    • getBlueprintLocation

      @Stability(Stable) @NotNull public String getBlueprintLocation()
      Specifies a path in Amazon S3 where the blueprint is published.
    • setBlueprintLocation

      @Stability(Stable) public void setBlueprintLocation(@NotNull String value)
      Specifies a path in Amazon S3 where the blueprint is published.
    • getName

      @Stability(Stable) @NotNull public String getName()
      The name of the blueprint.
    • setName

      @Stability(Stable) public void setName(@NotNull String value)
      The name of the blueprint.
    • getDescription

      @Stability(Stable) @Nullable public String getDescription()
      A description of the blueprint.
    • setDescription

      @Stability(Stable) public void setDescription(@Nullable String value)
      A description of the blueprint.
    • getTags

      @Stability(Stable) @Nullable public List<CfnTag> getTags()
      The tags to be applied to this blueprint.
    • setTags

      @Stability(Stable) public void setTags(@Nullable List<CfnTag> value)
      The tags to be applied to this blueprint.