Class: Aws::FMS::Types::AccountScope

Inherits:
Struct
  • Object
show all
Defined in:
gems/aws-sdk-fms/lib/aws-sdk-fms/types.rb

Overview

Configures the accounts within the administrator's Organizations organization that the specified Firewall Manager administrator can apply policies to.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#accountsArray<String>

The list of accounts within the organization that the specified Firewall Manager administrator either can or cannot apply policies to, based on the value of ExcludeSpecifiedAccounts. If ExcludeSpecifiedAccounts is set to true, then the Firewall Manager administrator can apply policies to all members of the organization except for the accounts in this list. If ExcludeSpecifiedAccounts is set to false, then the Firewall Manager administrator can only apply policies to the accounts in this list.

Returns:

  • (Array<String>)


51
52
53
54
55
56
57
# File 'gems/aws-sdk-fms/lib/aws-sdk-fms/types.rb', line 51

class AccountScope < Struct.new(
  :accounts,
  :all_accounts_enabled,
  :exclude_specified_accounts)
  SENSITIVE = []
  include Aws::Structure
end

#all_accounts_enabledBoolean

A boolean value that indicates if the administrator can apply policies to all accounts within an organization. If true, the administrator can apply policies to all accounts within the organization. You can either enable management of all accounts through this operation, or you can specify a list of accounts to manage in AccountScope$Accounts. You cannot specify both.

Returns:

  • (Boolean)


51
52
53
54
55
56
57
# File 'gems/aws-sdk-fms/lib/aws-sdk-fms/types.rb', line 51

class AccountScope < Struct.new(
  :accounts,
  :all_accounts_enabled,
  :exclude_specified_accounts)
  SENSITIVE = []
  include Aws::Structure
end

#exclude_specified_accountsBoolean

A boolean value that excludes the accounts in AccountScope$Accounts from the administrator's scope. If true, the Firewall Manager administrator can apply policies to all members of the organization except for the accounts listed in AccountScope$Accounts. You can either specify a list of accounts to exclude by AccountScope$Accounts, or you can enable management of all accounts by AccountScope$AllAccountsEnabled. You cannot specify both.

Returns:

  • (Boolean)


51
52
53
54
55
56
57
# File 'gems/aws-sdk-fms/lib/aws-sdk-fms/types.rb', line 51

class AccountScope < Struct.new(
  :accounts,
  :all_accounts_enabled,
  :exclude_specified_accounts)
  SENSITIVE = []
  include Aws::Structure
end