Class: Aws::States::Types::DescribeActivityOutput
- Inherits:
-
Struct
- Object
- Struct
- Aws::States::Types::DescribeActivityOutput
- Includes:
- Aws::Structure
- Defined in:
- lib/aws-sdk-states/types.rb
Overview
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#activity_arn ⇒ String
The Amazon Resource Name (ARN) that identifies the activity.
-
#creation_date ⇒ Time
The date the activity is created.
-
#name ⇒ String
The name of the activity.
Instance Attribute Details
#activity_arn ⇒ String
The Amazon Resource Name (ARN) that identifies the activity.
517 518 519 520 521 522 523 |
# File 'lib/aws-sdk-states/types.rb', line 517 class DescribeActivityOutput < Struct.new( :activity_arn, :name, :creation_date) SENSITIVE = [] include Aws::Structure end |
#creation_date ⇒ Time
The date the activity is created.
517 518 519 520 521 522 523 |
# File 'lib/aws-sdk-states/types.rb', line 517 class DescribeActivityOutput < Struct.new( :activity_arn, :name, :creation_date) SENSITIVE = [] include Aws::Structure end |
#name ⇒ String
The name of the activity.
A name must not contain:
-
white space
-
brackets `< > { } [ ]`
-
wildcard characters `? *`
-
special characters “ “ # % \ ^ | ~ ` $ & , ; : / “
-
control characters (`U+0000-001F`, `U+007F-009F`)
To enable logging with CloudWatch Logs, the name should only contain 0-9, A-Z, a-z, - and _.
517 518 519 520 521 522 523 |
# File 'lib/aws-sdk-states/types.rb', line 517 class DescribeActivityOutput < Struct.new( :activity_arn, :name, :creation_date) SENSITIVE = [] include Aws::Structure end |