Class: Aws::SWF::Types::ActivityTypeDetail
- Inherits:
-
Struct
- Object
- Struct
- Aws::SWF::Types::ActivityTypeDetail
- Includes:
- Aws::Structure
- Defined in:
- lib/aws-sdk-swf/types.rb
Overview
Detailed information about an activity type.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#configuration ⇒ Types::ActivityTypeConfiguration
The configuration settings registered with the activity type.
-
#type_info ⇒ Types::ActivityTypeInfo
General information about the activity type.
Instance Attribute Details
#configuration ⇒ Types::ActivityTypeConfiguration
The configuration settings registered with the activity type.
458 459 460 461 462 463 |
# File 'lib/aws-sdk-swf/types.rb', line 458 class ActivityTypeDetail < Struct.new( :type_info, :configuration) SENSITIVE = [] include Aws::Structure end |
#type_info ⇒ Types::ActivityTypeInfo
General information about the activity type.
The status of activity type (returned in the ActivityTypeInfo structure) can be one of the following.
-
‘REGISTERED` – The type is registered and available. Workers supporting this type should be running.
-
‘DEPRECATED` – The type was deprecated using DeprecateActivityType, but is still in use. You should keep workers supporting this type running. You cannot create new tasks of this type.
458 459 460 461 462 463 |
# File 'lib/aws-sdk-swf/types.rb', line 458 class ActivityTypeDetail < Struct.new( :type_info, :configuration) SENSITIVE = [] include Aws::Structure end |