Class: Aws::SecurityHub::Types::UpdateSecurityHubConfigurationRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::SecurityHub::Types::UpdateSecurityHubConfigurationRequest
- Defined in:
- gems/aws-sdk-securityhub/lib/aws-sdk-securityhub/types.rb
Overview
Note:
When making an API call, you may pass UpdateSecurityHubConfigurationRequest data as a hash:
{
auto_enable_controls: false,
}
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#auto_enable_controls ⇒ Boolean
Whether to automatically enable new controls when they are added to standards that are enabled.
Instance Attribute Details
#auto_enable_controls ⇒ Boolean
Whether to automatically enable new controls when they are added to standards that are enabled.
By default, this is set to true
, and new controls are enabled
automatically. To not automatically enable new controls, set this to
false
.
44516 44517 44518 44519 44520 |
# File 'gems/aws-sdk-securityhub/lib/aws-sdk-securityhub/types.rb', line 44516 class UpdateSecurityHubConfigurationRequest < Struct.new( :auto_enable_controls) SENSITIVE = [] include Aws::Structure end |