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.
-
#encryption_configuration ⇒ Types::EncryptionConfiguration
Settings for configured server-side encryption.
-
#name ⇒ String
The name of the activity.
Instance Attribute Details
#activity_arn ⇒ String
The Amazon Resource Name (ARN) that identifies the activity.
665 666 667 668 669 670 671 672 |
# File 'lib/aws-sdk-states/types.rb', line 665 class DescribeActivityOutput < Struct.new( :activity_arn, :name, :creation_date, :encryption_configuration) SENSITIVE = [] include Aws::Structure end |
#creation_date ⇒ Time
The date the activity is created.
665 666 667 668 669 670 671 672 |
# File 'lib/aws-sdk-states/types.rb', line 665 class DescribeActivityOutput < Struct.new( :activity_arn, :name, :creation_date, :encryption_configuration) SENSITIVE = [] include Aws::Structure end |
#encryption_configuration ⇒ Types::EncryptionConfiguration
Settings for configured server-side encryption.
665 666 667 668 669 670 671 672 |
# File 'lib/aws-sdk-states/types.rb', line 665 class DescribeActivityOutput < Struct.new( :activity_arn, :name, :creation_date, :encryption_configuration) 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 _.
665 666 667 668 669 670 671 672 |
# File 'lib/aws-sdk-states/types.rb', line 665 class DescribeActivityOutput < Struct.new( :activity_arn, :name, :creation_date, :encryption_configuration) SENSITIVE = [] include Aws::Structure end |