Class: Aws::ServiceDiscovery::Types::OperationSummary
- Inherits:
-
Struct
- Object
- Struct
- Aws::ServiceDiscovery::Types::OperationSummary
- Includes:
- Aws::Structure
- Defined in:
- 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.
[1]: docs.aws.amazon.com/cloud-map/latest/api/API_ListOperations.html
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.
2285 2286 2287 2288 2289 2290 |
# File 'lib/aws-sdk-servicediscovery/types.rb', line 2285 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`.
2285 2286 2287 2288 2289 2290 |
# File 'lib/aws-sdk-servicediscovery/types.rb', line 2285 class OperationSummary < Struct.new( :id, :status) SENSITIVE = [] include Aws::Structure end |