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
When making an API call, you may pass UpdateOrganizationConfigurationRequest data as a hash:
{
auto_enable: false, # required
auto_enable_standards: "NONE", # accepts NONE, DEFAULT
}
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
.
44487 44488 44489 44490 44491 44492 |
# File 'gems/aws-sdk-securityhub/lib/aws-sdk-securityhub/types.rb', line 44487 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
.
44487 44488 44489 44490 44491 44492 |
# File 'gems/aws-sdk-securityhub/lib/aws-sdk-securityhub/types.rb', line 44487 class UpdateOrganizationConfigurationRequest < Struct.new( :auto_enable, :auto_enable_standards) SENSITIVE = [] include Aws::Structure end |