Class: Aws::Glue::Types::GetBlueprintRunRequest

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 GetBlueprintRunRequest data as a hash:

{
  blueprint_name: "OrchestrationNameString", # required
  run_id: "IdString", # required
}

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#blueprint_nameString

The name of the blueprint.

Returns:

  • (String)


7511
7512
7513
7514
7515
7516
# File 'lib/aws-sdk-glue/types.rb', line 7511

class GetBlueprintRunRequest < Struct.new(
  :blueprint_name,
  :run_id)
  SENSITIVE = []
  include Aws::Structure
end

#run_idString

The run ID for the blueprint run you want to retrieve.

Returns:

  • (String)


7511
7512
7513
7514
7515
7516
# File 'lib/aws-sdk-glue/types.rb', line 7511

class GetBlueprintRunRequest < Struct.new(
  :blueprint_name,
  :run_id)
  SENSITIVE = []
  include Aws::Structure
end