Class: Aws::GuardDuty::Types::OrganizationAdditionalConfiguration
- Inherits:
-
Struct
- Object
- Struct
- Aws::GuardDuty::Types::OrganizationAdditionalConfiguration
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-guardduty/types.rb
Overview
A list of additional configurations which will be configured for the organization.
Additional configuration applies to only GuardDuty Runtime Monitoring protection plan.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#auto_enable ⇒ String
The status of the additional configuration that will be configured for the organization.
-
#name ⇒ String
The name of the additional configuration that will be configured for the organization.
Instance Attribute Details
#auto_enable ⇒ String
The status of the additional configuration that will be configured for the organization. Use one of the following values to configure the feature status for the entire organization:
-
‘NEW`: Indicates that when a new account joins the organization, they will have the additional configuration enabled automatically.
-
‘ALL`: Indicates that all accounts in the organization have the additional configuration enabled automatically. This includes `NEW` accounts that join the organization and accounts that may have been suspended or removed from the organization in GuardDuty.
It may take up to 24 hours to update the configuration for all the member accounts.
-
‘NONE`: Indicates that the additional configuration will not be automatically enabled for any account in the organization. The administrator must manage the additional configuration for each account individually.
7326 7327 7328 7329 7330 7331 |
# File 'lib/aws-sdk-guardduty/types.rb', line 7326 class OrganizationAdditionalConfiguration < Struct.new( :name, :auto_enable) SENSITIVE = [] include Aws::Structure end |
#name ⇒ String
The name of the additional configuration that will be configured for the organization. These values are applicable to only Runtime Monitoring protection plan.
7326 7327 7328 7329 7330 7331 |
# File 'lib/aws-sdk-guardduty/types.rb', line 7326 class OrganizationAdditionalConfiguration < Struct.new( :name, :auto_enable) SENSITIVE = [] include Aws::Structure end |