batchGetMemberAccountDetails
inline suspend fun SecurityIrClient.batchGetMemberAccountDetails(crossinline block: BatchGetMemberAccountDetailsRequest.Builder.() -> Unit): BatchGetMemberAccountDetailsResponse
Provides information on whether the supplied account IDs are associated with a membership.
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.
Samples
fun main() {
//sampleStart
// Invoke BatchGetMemberAccountDetails
val resp = securityIrClient.batchGetMemberAccountDetails {
membershipId = "m-abcd1234efgh"
accountIds = listOf<String>(
"123412341234"
)
}
//sampleEnd
}