AWS Fundamentals Logo
AWS Fundamentals
AWS::Glue::Blueprint

Glue Blueprint

Resource Type definition for AWS::Glue::Blueprint. Registers a blueprint with AWS Glue.

Properties

4 configurable properties. 2 required. Click a row to see details.

Filter:
PropertyTypeFlags
BlueprintLocation
string
Required
Name
string
RequiredCreate-only
Description
string
Tags
Array<Tag>

Return Values

Values returned after the resource is created. Access these with Fn::GetAtt.

AttributeTypeDescription
ArnstringThe Amazon Resource Name (ARN) of the blueprint.
CreatedOnstringThe date and time the blueprint was registered.
LastModifiedOnstringThe date and time the blueprint was last modified.
ParameterSpecstringA JSON string that indicates the list of parameter specifications for the blueprint.
StatusstringThe status of the blueprint registration.

Sample CloudFormation Template

A minimal template with required properties and common optional ones.

template.yaml
AWSTemplateFormatVersion: "2010-09-09"
Description: Sample template for AWS::Glue::Blueprint

Resources:
  MyResource:
    Type: AWS::Glue::Blueprint
    Properties:
      Name: "my-name"
      BlueprintLocation: "value"
      Tags:
        - Key: Environment
          Value: Production
      Description: !Ref "AWS::StackName"

Required IAM Permissions

Permissions CloudFormation needs in your IAM role to manage this resource.

create

glue:CreateBlueprintglue:GetBlueprintglue:TagResourceglue:GetTagss3:GetObject

read

glue:GetBlueprintglue:GetTags

update

glue:UpdateBlueprintglue:GetBlueprintglue:TagResourceglue:UntagResourceglue:GetTagss3:GetObject

delete

glue:DeleteBlueprintglue:GetBlueprint

list

glue:ListBlueprints

Learn AWS the Practical Way

Our bi-weekly newsletter teaches hands-on AWS fundamentals. No certification fluff - just practical knowledge.

Subscribe to Newsletter

Quick Facts

ServiceGlue
Properties9
Required2
TaggingSupported
Primary IDArn

Supported Operations

CreateReadUpdateDeleteList

Immutable After Creation

These properties cannot be changed after the resource is created. Updating them triggers a replacement.

Name

External Links