Class: Aws::ServiceDiscovery::Types::OperationSummary

Inherits:
Struct
  • Object
show all
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.

Instance Attribute Summary collapse

Instance Attribute Details

#idString

The ID for an operation.

Returns:

  • (String)


2026
2027
2028
2029
2030
# File 'lib/aws-sdk-servicediscovery/types.rb', line 2026

class OperationSummary < Struct.new(
  :id,
  :status)
  include Aws::Structure
end

#statusString

The status of the operation. Values include the following:

  • SUBMITTED: This is the initial state immediately after you submit a request.

  • PENDING: AWS Cloud Map is performing the operation.

  • SUCCESS: The operation succeeded.

  • FAIL: The operation failed. For the failure reason, see ‘ErrorMessage`.

Returns:

  • (String)


2026
2027
2028
2029
2030
# File 'lib/aws-sdk-servicediscovery/types.rb', line 2026

class OperationSummary < Struct.new(
  :id,
  :status)
  include Aws::Structure
end