Class: Aws::SWF::Types::ActivityType
- Inherits:
-
Struct
- Object
- Struct
- Aws::SWF::Types::ActivityType
- Defined in:
- gems/aws-sdk-swf/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.
353 354 355 356 357 358 |
# File 'gems/aws-sdk-swf/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.
353 354 355 356 357 358 |
# File 'gems/aws-sdk-swf/lib/aws-sdk-swf/types.rb', line 353 class ActivityType < Struct.new( :name, :version) SENSITIVE = [] include Aws::Structure end |