Class: Aws::SecurityHub::Types::Standard
- Inherits:
-
Struct
- Object
- Struct
- Aws::SecurityHub::Types::Standard
- Defined in:
- gems/aws-sdk-securityhub/lib/aws-sdk-securityhub/types.rb
Overview
Provides information about a specific standard.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#description ⇒ String
A description of the standard.
-
#enabled_by_default ⇒ Boolean
Whether the standard is enabled by default.
-
#name ⇒ String
The name of the standard.
-
#standards_arn ⇒ String
The ARN of a standard.
Instance Attribute Details
#description ⇒ String
A description of the standard.
42454 42455 42456 42457 42458 42459 42460 42461 |
# File 'gems/aws-sdk-securityhub/lib/aws-sdk-securityhub/types.rb', line 42454 class Standard < Struct.new( :standards_arn, :name, :description, :enabled_by_default) SENSITIVE = [] include Aws::Structure end |
#enabled_by_default ⇒ Boolean
Whether the standard is enabled by default. When Security Hub is enabled from the console, if a standard is enabled by default, the check box for that standard is selected by default.
When Security Hub is enabled using the EnableSecurityHub
API
operation, the standard is enabled by default unless
EnableDefaultStandards
is set to false
.
42454 42455 42456 42457 42458 42459 42460 42461 |
# File 'gems/aws-sdk-securityhub/lib/aws-sdk-securityhub/types.rb', line 42454 class Standard < Struct.new( :standards_arn, :name, :description, :enabled_by_default) SENSITIVE = [] include Aws::Structure end |
#name ⇒ String
The name of the standard.
42454 42455 42456 42457 42458 42459 42460 42461 |
# File 'gems/aws-sdk-securityhub/lib/aws-sdk-securityhub/types.rb', line 42454 class Standard < Struct.new( :standards_arn, :name, :description, :enabled_by_default) SENSITIVE = [] include Aws::Structure end |
#standards_arn ⇒ String
The ARN of a standard.
42454 42455 42456 42457 42458 42459 42460 42461 |
# File 'gems/aws-sdk-securityhub/lib/aws-sdk-securityhub/types.rb', line 42454 class Standard < Struct.new( :standards_arn, :name, :description, :enabled_by_default) SENSITIVE = [] include Aws::Structure end |