Class: Aws::SWF::Types::DeprecateWorkflowTypeInput
- Inherits:
-
Struct
- Object
- Struct
- Aws::SWF::Types::DeprecateWorkflowTypeInput
- Includes:
- Aws::Structure
- Defined in:
- lib/aws-sdk-swf/types.rb
Overview
Note:
When making an API call, you may pass DeprecateWorkflowTypeInput data as a hash:
{
domain: "DomainName", # required
workflow_type: { # required
name: "Name", # required
version: "Version", # required
},
}
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#domain ⇒ String
The name of the domain in which the workflow type is registered.
-
#workflow_type ⇒ Types::WorkflowType
The workflow type to deprecate.
Instance Attribute Details
#domain ⇒ String
The name of the domain in which the workflow type is registered.
2062 2063 2064 2065 2066 2067 |
# File 'lib/aws-sdk-swf/types.rb', line 2062 class DeprecateWorkflowTypeInput < Struct.new( :domain, :workflow_type) SENSITIVE = [] include Aws::Structure end |
#workflow_type ⇒ Types::WorkflowType
The workflow type to deprecate.
2062 2063 2064 2065 2066 2067 |
# File 'lib/aws-sdk-swf/types.rb', line 2062 class DeprecateWorkflowTypeInput < Struct.new( :domain, :workflow_type) SENSITIVE = [] include Aws::Structure end |