Class: Aws::DataZone::Types::AccountSource
- Inherits:
-
Struct
- Object
- Struct
- Aws::DataZone::Types::AccountSource
- Defined in:
- gems/aws-sdk-datazone/lib/aws-sdk-datazone/types.rb
Overview
AccountSource is a union - when making an API calls you must set exactly one of the members.
AccountSource is a union - when returned from an API call exactly one value will be set and the returned type will be a subclass of AccountSource corresponding to the set member.
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.
Direct Known Subclasses
Defined Under Namespace
Classes: Accounts, CustomAccountPoolHandler, Unknown
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#accounts ⇒ Array<Types::AccountInfo>
The static list of accounts within an account pool.
-
#custom_account_pool_handler ⇒ Types::CustomAccountPoolHandler
The custom Amazon Web Services Lambda handler within an account pool.
-
#unknown ⇒ Object
Returns the value of attribute unknown.
Instance Attribute Details
#accounts ⇒ Array<Types::AccountInfo>
The static list of accounts within an account pool.
362 363 364 365 366 367 368 369 370 371 372 373 |
# File 'gems/aws-sdk-datazone/lib/aws-sdk-datazone/types.rb', line 362 class AccountSource < Struct.new( :accounts, :custom_account_pool_handler, :unknown) SENSITIVE = [] include Aws::Structure include Aws::Structure::Union class Accounts < AccountSource; end class CustomAccountPoolHandler < AccountSource; end class Unknown < AccountSource; end end |
#custom_account_pool_handler ⇒ Types::CustomAccountPoolHandler
The custom Amazon Web Services Lambda handler within an account pool.
362 363 364 365 366 367 368 369 370 371 372 373 |
# File 'gems/aws-sdk-datazone/lib/aws-sdk-datazone/types.rb', line 362 class AccountSource < Struct.new( :accounts, :custom_account_pool_handler, :unknown) SENSITIVE = [] include Aws::Structure include Aws::Structure::Union class Accounts < AccountSource; end class CustomAccountPoolHandler < AccountSource; end class Unknown < AccountSource; end end |
#unknown ⇒ Object
Returns the value of attribute unknown
362 363 364 |
# File 'gems/aws-sdk-datazone/lib/aws-sdk-datazone/types.rb', line 362 def unknown @unknown end |