Class: Aws::SWF::Types::DescribeActivityTypeInput
- Inherits:
-
Struct
- Object
- Struct
- Aws::SWF::Types::DescribeActivityTypeInput
- Includes:
- Aws::Structure
- Defined in:
- lib/aws-sdk-swf/types.rb
Overview
Note:
When making an API call, you may pass DescribeActivityTypeInput data as a hash:
{
domain: "DomainName", # required
activity_type: { # required
name: "Name", # required
version: "Version", # required
},
}
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#activity_type ⇒ Types::ActivityType
The activity type to get information about.
-
#domain ⇒ String
The name of the domain in which the activity type is registered.
Instance Attribute Details
#activity_type ⇒ Types::ActivityType
The activity type to get information about. Activity types are identified by the ‘name` and `version` that were supplied when the activity was registered.
2090 2091 2092 2093 2094 2095 |
# File 'lib/aws-sdk-swf/types.rb', line 2090 class DescribeActivityTypeInput < Struct.new( :domain, :activity_type) SENSITIVE = [] include Aws::Structure end |
#domain ⇒ String
The name of the domain in which the activity type is registered.
2090 2091 2092 2093 2094 2095 |
# File 'lib/aws-sdk-swf/types.rb', line 2090 class DescribeActivityTypeInput < Struct.new( :domain, :activity_type) SENSITIVE = [] include Aws::Structure end |