Class: Aws::SWF::Types::ActivityType
- Inherits:
-
Struct
- Object
- Struct
- Aws::SWF::Types::ActivityType
- Includes:
- Aws::Structure
- Defined in:
- lib/aws-sdk-swf/types.rb
Overview
Represents an activity type.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#name ⇒ String
The name of this activity.
-
#version ⇒ String
The version of this activity.
Instance Attribute Details
#name ⇒ String
The name of this activity.
<note markdown=“1”> The combination of activity type name and version must be unique within a domain.
</note>
345 346 347 348 349 350 |
# File 'lib/aws-sdk-swf/types.rb', line 345 class ActivityType < Struct.new( :name, :version) SENSITIVE = [] include Aws::Structure end |
#version ⇒ String
The version of this activity.
<note markdown=“1”> The combination of activity type name and version must be unique with in a domain.
</note>
345 346 347 348 349 350 |
# File 'lib/aws-sdk-swf/types.rb', line 345 class ActivityType < Struct.new( :name, :version) SENSITIVE = [] include Aws::Structure end |