Class: Aws::Detective::Types::UnprocessedAccount

Inherits:
Struct
  • Object
show all
Defined in:
gems/aws-sdk-detective/lib/aws-sdk-detective/types.rb

Overview

A member account that was included in a request but for which the request could not be processed.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#account_idString

The Amazon Web Services account identifier of the member account that was not processed.

Returns:

  • (String)


1792
1793
1794
1795
1796
1797
# File 'gems/aws-sdk-detective/lib/aws-sdk-detective/types.rb', line 1792

class UnprocessedAccount < Struct.new(
  :account_id,
  :reason)
  SENSITIVE = []
  include Aws::Structure
end

#reasonString

The reason that the member account request could not be processed.

Returns:

  • (String)


1792
1793
1794
1795
1796
1797
# File 'gems/aws-sdk-detective/lib/aws-sdk-detective/types.rb', line 1792

class UnprocessedAccount < Struct.new(
  :account_id,
  :reason)
  SENSITIVE = []
  include Aws::Structure
end