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

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

Instance Attribute Details

#idString

The ID for an operation.

Returns:

  • (String)


2283
2284
2285
2286
2287
2288
# File 'gems/aws-sdk-servicediscovery/lib/aws-sdk-servicediscovery/types.rb', line 2283

class OperationSummary < Struct.new(
  :id,
  :status)
  SENSITIVE = []
  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: Cloud Map is performing the operation.

  • SUCCESS: The operation succeeded.

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

Returns:

  • (String)


2283
2284
2285
2286
2287
2288
# File 'gems/aws-sdk-servicediscovery/lib/aws-sdk-servicediscovery/types.rb', line 2283

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