Class: Aws::Glue::Types::StartBlueprintRunRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::Glue::Types::StartBlueprintRunRequest
- Defined in:
- gems/aws-sdk-glue/lib/aws-sdk-glue/types.rb
Overview
Note:
When making an API call, you may pass StartBlueprintRunRequest data as a hash:
{
blueprint_name: "OrchestrationNameString", # required
parameters: "BlueprintParameters",
role_arn: "OrchestrationIAMRoleArn", # required
}
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#blueprint_name ⇒ String
The name of the blueprint.
-
#parameters ⇒ String
Specifies the parameters as a
BlueprintParameters
object. -
#role_arn ⇒ String
Specifies the IAM role used to create the workflow.
Instance Attribute Details
#blueprint_name ⇒ String
The name of the blueprint.
21911 21912 21913 21914 21915 21916 21917 |
# File 'gems/aws-sdk-glue/lib/aws-sdk-glue/types.rb', line 21911 class StartBlueprintRunRequest < Struct.new( :blueprint_name, :parameters, :role_arn) SENSITIVE = [] include Aws::Structure end |
#parameters ⇒ String
Specifies the parameters as a BlueprintParameters
object.
21911 21912 21913 21914 21915 21916 21917 |
# File 'gems/aws-sdk-glue/lib/aws-sdk-glue/types.rb', line 21911 class StartBlueprintRunRequest < Struct.new( :blueprint_name, :parameters, :role_arn) SENSITIVE = [] include Aws::Structure end |
#role_arn ⇒ String
Specifies the IAM role used to create the workflow.
21911 21912 21913 21914 21915 21916 21917 |
# File 'gems/aws-sdk-glue/lib/aws-sdk-glue/types.rb', line 21911 class StartBlueprintRunRequest < Struct.new( :blueprint_name, :parameters, :role_arn) SENSITIVE = [] include Aws::Structure end |