Class: Aws::SecurityHub::Types::Policy
- Inherits:
-
Struct
- Object
- Struct
- Aws::SecurityHub::Types::Policy
- Defined in:
- gems/aws-sdk-securityhub/lib/aws-sdk-securityhub/types.rb
Overview
Policy is a union - when making an API calls you must set exactly one of the members.
Policy is a union - when returned from an API call exactly one value will be set and the returned type will be a subclass of Policy corresponding to the set member.
An object that defines how Security Hub is configured. It includes whether Security Hub is enabled or disabled, a list of enabled security standards, a list of enabled or disabled security controls, and a list of custom parameter values for specified controls. If you provide a list of security controls that are enabled in the configuration policy, Security Hub disables all other controls (including newly released controls). If you provide a list of security controls that are disabled in the configuration policy, Security Hub enables all other controls (including newly released controls).
Direct Known Subclasses
Defined Under Namespace
Classes: SecurityHub, Unknown
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#security_hub ⇒ Types::SecurityHubPolicy
The Amazon Web Services service that the configuration policy applies to.
-
#unknown ⇒ Object
Returns the value of attribute unknown.
Instance Attribute Details
#security_hub ⇒ Types::SecurityHubPolicy
The Amazon Web Services service that the configuration policy applies to.
27644 27645 27646 27647 27648 27649 27650 27651 27652 27653 |
# File 'gems/aws-sdk-securityhub/lib/aws-sdk-securityhub/types.rb', line 27644 class Policy < Struct.new( :security_hub, :unknown) SENSITIVE = [] include Aws::Structure include Aws::Structure::Union class SecurityHub < Policy; end class Unknown < Policy; end end |
#unknown ⇒ Object
Returns the value of attribute unknown
27644 27645 27646 |
# File 'gems/aws-sdk-securityhub/lib/aws-sdk-securityhub/types.rb', line 27644 def unknown @unknown end |