Class: Aws::SecurityIR::Types::BatchGetMemberAccountDetailsRequest

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

Overview

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#account_idsArray<String>

Optional element to query the membership relationship status to a provided list of account IDs.

AWS account ID's may appear less than 12 characters and need to be zero-prepended. An example would be 123123123 which is nine digits, and with zero-prepend would be 000123123123. Not zero-prepending to 12 digits could result in errors.

Returns:

  • (Array<String>)


44
45
46
47
48
49
# File 'gems/aws-sdk-securityir/lib/aws-sdk-securityir/types.rb', line 44

class BatchGetMemberAccountDetailsRequest < Struct.new(
  :membership_id,
  :account_ids)
  SENSITIVE = []
  include Aws::Structure
end

#membership_idString

Required element used in combination with BatchGetMemberAccountDetails to identify the membership ID to query.

Returns:

  • (String)


44
45
46
47
48
49
# File 'gems/aws-sdk-securityir/lib/aws-sdk-securityir/types.rb', line 44

class BatchGetMemberAccountDetailsRequest < Struct.new(
  :membership_id,
  :account_ids)
  SENSITIVE = []
  include Aws::Structure
end