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
Note:
When making an API call, you may pass ActivityType data as a hash:
{
name: "Name", # required
version: "Version", # required
}
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>
353 354 355 356 357 358 |
# File 'lib/aws-sdk-swf/types.rb', line 353 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>
353 354 355 356 357 358 |
# File 'lib/aws-sdk-swf/types.rb', line 353 class ActivityType < Struct.new( :name, :version) SENSITIVE = [] include Aws::Structure end |