Class: Aws::FMS::Types::AssociateAdminAccountRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::FMS::Types::AssociateAdminAccountRequest
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-fms/types.rb
Overview
Note:
When making an API call, you may pass AssociateAdminAccountRequest data as a hash:
{
admin_account: "AWSAccountId", # required
}
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#admin_account ⇒ String
The AWS account ID to associate with AWS Firewall Manager as the AWS Firewall Manager administrator account.
Instance Attribute Details
#admin_account ⇒ String
The AWS account ID to associate with AWS Firewall Manager as the AWS Firewall Manager administrator account. This can be an AWS Organizations master account or a member account. For more information about AWS Organizations and master accounts, see [Managing the AWS Accounts in Your Organization].
[1]: docs.aws.amazon.com/organizations/latest/userguide/orgs_manage_accounts.html
181 182 183 184 185 |
# File 'lib/aws-sdk-fms/types.rb', line 181 class AssociateAdminAccountRequest < Struct.new( :admin_account) SENSITIVE = [] include Aws::Structure end |