Class: Aws::Glue::Types::CreateBlueprintRequest

Inherits:
Struct
  • Object
show all
Includes:
Structure
Defined in:
lib/aws-sdk-glue/types.rb

Overview

Note:

When making an API call, you may pass CreateBlueprintRequest data as a hash:

{
  name: "OrchestrationNameString", # required
  description: "Generic512CharString",
  blueprint_location: "OrchestrationS3Location", # required
  tags: {
    "TagKey" => "TagValue",
  },
}

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#blueprint_locationString

Specifies a path in Amazon S3 where the blueprint is published.

Returns:

  • (String)


2954
2955
2956
2957
2958
2959
2960
2961
# File 'lib/aws-sdk-glue/types.rb', line 2954

class CreateBlueprintRequest < Struct.new(
  :name,
  :description,
  :blueprint_location,
  :tags)
  SENSITIVE = []
  include Aws::Structure
end

#descriptionString

A description of the blueprint.

Returns:

  • (String)


2954
2955
2956
2957
2958
2959
2960
2961
# File 'lib/aws-sdk-glue/types.rb', line 2954

class CreateBlueprintRequest < Struct.new(
  :name,
  :description,
  :blueprint_location,
  :tags)
  SENSITIVE = []
  include Aws::Structure
end

#nameString

The name of the blueprint.

Returns:

  • (String)


2954
2955
2956
2957
2958
2959
2960
2961
# File 'lib/aws-sdk-glue/types.rb', line 2954

class CreateBlueprintRequest < Struct.new(
  :name,
  :description,
  :blueprint_location,
  :tags)
  SENSITIVE = []
  include Aws::Structure
end

#tagsHash<String,String>

The tags to be applied to this blueprint.

Returns:

  • (Hash<String,String>)


2954
2955
2956
2957
2958
2959
2960
2961
# File 'lib/aws-sdk-glue/types.rb', line 2954

class CreateBlueprintRequest < Struct.new(
  :name,
  :description,
  :blueprint_location,
  :tags)
  SENSITIVE = []
  include Aws::Structure
end