Class: Aws::SecurityHub::Types::OrganizationConfiguration
- Inherits:
-
Struct
- Object
- Struct
- Aws::SecurityHub::Types::OrganizationConfiguration
- Defined in:
- gems/aws-sdk-securityhub/lib/aws-sdk-securityhub/types.rb
Overview
Provides information about the way an organization is configured in Security Hub.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#configuration_type ⇒ String
Indicates whether the organization uses local or central configuration.
-
#status ⇒ String
Describes whether central configuration could be enabled as the
ConfigurationType
for the organization. -
#status_message ⇒ String
Provides an explanation if the value of
Status
is equal toFAILED
whenConfigurationType
is equal toCENTRAL
.
Instance Attribute Details
#configuration_type ⇒ String
Indicates whether the organization uses local or central configuration.
If you use local configuration, the Security Hub delegated
administrator can set AutoEnable
to true
and
AutoEnableStandards
to DEFAULT
. This automatically enables
Security Hub and default security standards in new organization
accounts. These new account settings must be set separately in each
Amazon Web Services Region, and settings may be different in each
Region.
If you use central configuration, the delegated administrator can create configuration policies. Configuration policies can be used to configure Security Hub, security standards, and security controls in multiple accounts and Regions. If you want new organization accounts to use a specific configuration, you can create a configuration policy and associate it with the root or specific organizational units (OUs). New accounts will inherit the policy from the root or their assigned OU.
26566 26567 26568 26569 26570 26571 26572 |
# File 'gems/aws-sdk-securityhub/lib/aws-sdk-securityhub/types.rb', line 26566 class OrganizationConfiguration < Struct.new( :configuration_type, :status, :status_message) SENSITIVE = [] include Aws::Structure end |
#status ⇒ String
Describes whether central configuration could be enabled as the
ConfigurationType
for the organization. If your
ConfigurationType
is local configuration, then the value of
Status
is always ENABLED
.
26566 26567 26568 26569 26570 26571 26572 |
# File 'gems/aws-sdk-securityhub/lib/aws-sdk-securityhub/types.rb', line 26566 class OrganizationConfiguration < Struct.new( :configuration_type, :status, :status_message) SENSITIVE = [] include Aws::Structure end |
#status_message ⇒ String
Provides an explanation if the value of Status
is equal to
FAILED
when ConfigurationType
is equal to CENTRAL
.
26566 26567 26568 26569 26570 26571 26572 |
# File 'gems/aws-sdk-securityhub/lib/aws-sdk-securityhub/types.rb', line 26566 class OrganizationConfiguration < Struct.new( :configuration_type, :status, :status_message) SENSITIVE = [] include Aws::Structure end |