Class: Aws::Glue::Types::UpdateBlueprintRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::Glue::Types::UpdateBlueprintRequest
- Defined in:
- gems/aws-sdk-glue/lib/aws-sdk-glue/types.rb
Overview
Note:
When making an API call, you may pass UpdateBlueprintRequest data as a hash:
{
name: "OrchestrationNameString", # required
description: "Generic512CharString",
blueprint_location: "OrchestrationS3Location", # required
}
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#blueprint_location ⇒ String
Specifies a path in Amazon S3 where the blueprint is published.
-
#description ⇒ String
A description of the blueprint.
-
#name ⇒ String
The name of the blueprint.
Instance Attribute Details
#blueprint_location ⇒ String
Specifies a path in Amazon S3 where the blueprint is published.
23566 23567 23568 23569 23570 23571 23572 |
# File 'gems/aws-sdk-glue/lib/aws-sdk-glue/types.rb', line 23566 class UpdateBlueprintRequest < Struct.new( :name, :description, :blueprint_location) SENSITIVE = [] include Aws::Structure end |
#description ⇒ String
A description of the blueprint.
23566 23567 23568 23569 23570 23571 23572 |
# File 'gems/aws-sdk-glue/lib/aws-sdk-glue/types.rb', line 23566 class UpdateBlueprintRequest < Struct.new( :name, :description, :blueprint_location) SENSITIVE = [] include Aws::Structure end |
#name ⇒ String
The name of the blueprint.
23566 23567 23568 23569 23570 23571 23572 |
# File 'gems/aws-sdk-glue/lib/aws-sdk-glue/types.rb', line 23566 class UpdateBlueprintRequest < Struct.new( :name, :description, :blueprint_location) SENSITIVE = [] include Aws::Structure end |