Class: Aws::SecurityHub::Types::UpdateOrganizationConfigurationRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::SecurityHub::Types::UpdateOrganizationConfigurationRequest
- Defined in:
- gems/aws-sdk-securityhub/lib/aws-sdk-securityhub/types.rb
Overview
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#auto_enable ⇒ Boolean
Whether to automatically enable Security Hub for new accounts in the organization.
-
#auto_enable_standards ⇒ String
Whether to automatically enable Security Hub [default standards][1] for new member accounts in the organization.
Instance Attribute Details
#auto_enable ⇒ Boolean
Whether to automatically enable Security Hub for new accounts in the organization.
By default, this is false
, and new accounts are not added
automatically.
To automatically enable Security Hub for new accounts, set this to
true
.
25949 25950 25951 25952 25953 25954 |
# File 'gems/aws-sdk-securityhub/lib/aws-sdk-securityhub/types.rb', line 25949 class UpdateOrganizationConfigurationRequest < Struct.new( :auto_enable, :auto_enable_standards) SENSITIVE = [] include Aws::Structure end |
#auto_enable_standards ⇒ String
Whether to automatically enable Security Hub default standards for new member accounts in the organization.
By default, this parameter is equal to DEFAULT
, and new member
accounts are automatically enabled with default Security Hub
standards.
To opt out of enabling default standards for new member accounts,
set this parameter equal to NONE
.
25949 25950 25951 25952 25953 25954 |
# File 'gems/aws-sdk-securityhub/lib/aws-sdk-securityhub/types.rb', line 25949 class UpdateOrganizationConfigurationRequest < Struct.new( :auto_enable, :auto_enable_standards) SENSITIVE = [] include Aws::Structure end |