Class: Aws::ServiceDiscovery::Types::OperationSummary
- Inherits:
-
Struct
- Object
- Struct
- Aws::ServiceDiscovery::Types::OperationSummary
- Defined in:
- gems/aws-sdk-servicediscovery/lib/aws-sdk-servicediscovery/types.rb
Overview
A complex type that contains information about an operation that matches the criteria that you specified in a ListOperations request.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#id ⇒ String
The ID for an operation.
-
#status ⇒ String
The status of the operation.
Instance Attribute Details
#id ⇒ String
The ID for an operation.
2333 2334 2335 2336 2337 2338 |
# File 'gems/aws-sdk-servicediscovery/lib/aws-sdk-servicediscovery/types.rb', line 2333 class OperationSummary < Struct.new( :id, :status) SENSITIVE = [] include Aws::Structure end |
#status ⇒ String
The status of the operation. Values include the following:
SUBMITTED: This is the initial state immediately after you submit a request.
PENDING: Cloud Map is performing the operation.
SUCCESS: The operation succeeded.
FAIL: The operation failed. For the failure reason, see
ErrorMessage
.
2333 2334 2335 2336 2337 2338 |
# File 'gems/aws-sdk-servicediscovery/lib/aws-sdk-servicediscovery/types.rb', line 2333 class OperationSummary < Struct.new( :id, :status) SENSITIVE = [] include Aws::Structure end |