Class: Aws::AppRunner::Types::OperationSummary
- Inherits:
-
Struct
- Object
- Struct
- Aws::AppRunner::Types::OperationSummary
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-apprunner/types.rb
Overview
Provides summary information for an operation that occurred on an App Runner service.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#ended_at ⇒ Time
The time when the operation ended.
-
#id ⇒ String
A unique ID of this operation.
-
#started_at ⇒ Time
The time when the operation started.
-
#status ⇒ String
The current state of the operation.
-
#target_arn ⇒ String
The Amazon Resource Name (ARN) of the resource that the operation acted on (for example, an App Runner service).
-
#type ⇒ String
The type of operation.
-
#updated_at ⇒ Time
The time when the operation was last updated.
Instance Attribute Details
#ended_at ⇒ Time
The time when the operation ended. It’s in the Unix time stamp format.
2340 2341 2342 2343 2344 2345 2346 2347 2348 2349 2350 |
# File 'lib/aws-sdk-apprunner/types.rb', line 2340 class OperationSummary < Struct.new( :id, :type, :status, :target_arn, :started_at, :ended_at, :updated_at) SENSITIVE = [] include Aws::Structure end |
#id ⇒ String
A unique ID of this operation. It’s unique in the scope of the App Runner service.
2340 2341 2342 2343 2344 2345 2346 2347 2348 2349 2350 |
# File 'lib/aws-sdk-apprunner/types.rb', line 2340 class OperationSummary < Struct.new( :id, :type, :status, :target_arn, :started_at, :ended_at, :updated_at) SENSITIVE = [] include Aws::Structure end |
#started_at ⇒ Time
The time when the operation started. It’s in the Unix time stamp format.
2340 2341 2342 2343 2344 2345 2346 2347 2348 2349 2350 |
# File 'lib/aws-sdk-apprunner/types.rb', line 2340 class OperationSummary < Struct.new( :id, :type, :status, :target_arn, :started_at, :ended_at, :updated_at) SENSITIVE = [] include Aws::Structure end |
#status ⇒ String
The current state of the operation.
2340 2341 2342 2343 2344 2345 2346 2347 2348 2349 2350 |
# File 'lib/aws-sdk-apprunner/types.rb', line 2340 class OperationSummary < Struct.new( :id, :type, :status, :target_arn, :started_at, :ended_at, :updated_at) SENSITIVE = [] include Aws::Structure end |
#target_arn ⇒ String
The Amazon Resource Name (ARN) of the resource that the operation acted on (for example, an App Runner service).
2340 2341 2342 2343 2344 2345 2346 2347 2348 2349 2350 |
# File 'lib/aws-sdk-apprunner/types.rb', line 2340 class OperationSummary < Struct.new( :id, :type, :status, :target_arn, :started_at, :ended_at, :updated_at) SENSITIVE = [] include Aws::Structure end |
#type ⇒ String
The type of operation. It indicates a specific action that occured.
2340 2341 2342 2343 2344 2345 2346 2347 2348 2349 2350 |
# File 'lib/aws-sdk-apprunner/types.rb', line 2340 class OperationSummary < Struct.new( :id, :type, :status, :target_arn, :started_at, :ended_at, :updated_at) SENSITIVE = [] include Aws::Structure end |
#updated_at ⇒ Time
The time when the operation was last updated. It’s in the Unix time stamp format.
2340 2341 2342 2343 2344 2345 2346 2347 2348 2349 2350 |
# File 'lib/aws-sdk-apprunner/types.rb', line 2340 class OperationSummary < Struct.new( :id, :type, :status, :target_arn, :started_at, :ended_at, :updated_at) SENSITIVE = [] include Aws::Structure end |