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.

[1]: docs.aws.amazon.com/cloud-map/latest/api/API_ListOperations.html

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 '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 'lib/aws-sdk-servicediscovery/types.rb', line 2283

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