Class: Aws::States::Types::ActivityListItem

Inherits:
Struct
  • Object
show all
Includes:
Aws::Structure
Defined in:
lib/aws-sdk-states/types.rb

Overview

Contains details about an activity.

Instance Attribute Summary collapse

Instance Attribute Details

#activity_arnString

The Amazon Resource Name (ARN) that identifies the activity.

Returns:

  • (String)


57
58
59
60
61
62
# File 'lib/aws-sdk-states/types.rb', line 57

class ActivityListItem < Struct.new(
  :activity_arn,
  :name,
  :creation_date)
  include Aws::Structure
end

#creation_dateTime

The date the activity is created.

Returns:

  • (Time)


57
58
59
60
61
62
# File 'lib/aws-sdk-states/types.rb', line 57

class ActivityListItem < Struct.new(
  :activity_arn,
  :name,
  :creation_date)
  include Aws::Structure
end

#nameString

The name of the activity.

A name must not contain:

  • whitespace

  • brackets ‘< > { } [ ]`

  • wildcard characters ‘? *`

  • special characters “ “ # % \ ^ | ~ ‘ $ & , ; : / “

  • control characters (‘U+0000-001F`, `U+007F-009F`)

Returns:

  • (String)


57
58
59
60
61
62
# File 'lib/aws-sdk-states/types.rb', line 57

class ActivityListItem < Struct.new(
  :activity_arn,
  :name,
  :creation_date)
  include Aws::Structure
end