Class: Aws::SecurityIR::Types::BatchGetMemberAccountDetailsRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::SecurityIR::Types::BatchGetMemberAccountDetailsRequest
- Includes:
- Aws::Structure
- Defined in:
- lib/aws-sdk-securityir/types.rb
Overview
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#account_ids ⇒ Array<String>
Optional element to query the membership relationship status to a provided list of account IDs.
-
#membership_id ⇒ String
Required element used in combination with BatchGetMemberAccountDetails to identify the membership ID to query.
Instance Attribute Details
#account_ids ⇒ Array<String>
Optional element to query the membership relationship status to a provided list of account IDs.
<note markdown=“1”> 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.
</note>
44 45 46 47 48 49 |
# File 'lib/aws-sdk-securityir/types.rb', line 44 class BatchGetMemberAccountDetailsRequest < Struct.new( :membership_id, :account_ids) SENSITIVE = [] include Aws::Structure end |
#membership_id ⇒ String
Required element used in combination with BatchGetMemberAccountDetails to identify the membership ID to query.
44 45 46 47 48 49 |
# File 'lib/aws-sdk-securityir/types.rb', line 44 class BatchGetMemberAccountDetailsRequest < Struct.new( :membership_id, :account_ids) SENSITIVE = [] include Aws::Structure end |