Class: Aws::Glue::Types::GetWorkflowRequest

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

{
  name: "NameString", # required
  include_graph: false,
}

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#include_graphBoolean

Specifies whether to include a graph when returning the workflow resource metadata.

Returns:

  • (Boolean)


9417
9418
9419
9420
9421
9422
# File 'lib/aws-sdk-glue/types.rb', line 9417

class GetWorkflowRequest < Struct.new(
  :name,
  :include_graph)
  SENSITIVE = []
  include Aws::Structure
end

#nameString

The name of the workflow to retrieve.

Returns:

  • (String)


9417
9418
9419
9420
9421
9422
# File 'lib/aws-sdk-glue/types.rb', line 9417

class GetWorkflowRequest < Struct.new(
  :name,
  :include_graph)
  SENSITIVE = []
  include Aws::Structure
end