AccountSource

sealed class AccountSource

The source of accounts for the account pool. In the current release, it's either a static list of accounts provided by the customer or a custom Amazon Web Services Lambda handler.

Inheritors

Types

Link copied to clipboard
data class Accounts(val value: List<AccountInfo>) : AccountSource

The static list of accounts within an account pool.

Link copied to clipboard

The custom Amazon Web Services Lambda handler within an account pool.

Link copied to clipboard

Functions

Link copied to clipboard

Casts this AccountSource as a Accounts and retrieves its kotlin.collections.List value. Throws an exception if the AccountSource is not a Accounts.

Link copied to clipboard

Casts this AccountSource as a Accounts and retrieves its kotlin.collections.List value. Returns null if the AccountSource is not a Accounts.