Class: Aws::SecurityHub::Types::StandardsSubscriptionRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::SecurityHub::Types::StandardsSubscriptionRequest
- Defined in:
- gems/aws-sdk-securityhub/lib/aws-sdk-securityhub/types.rb
Overview
Note:
When making an API call, you may pass StandardsSubscriptionRequest data as a hash:
{
standards_arn: "NonEmptyString", # required
standards_input: {
"NonEmptyString" => "NonEmptyString",
},
}
The standard that you want to enable.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#standards_arn ⇒ String
The ARN of the standard that you want to enable.
-
#standards_input ⇒ Hash<String,String>
A key-value pair of input for the standard.
Instance Attribute Details
#standards_arn ⇒ String
The ARN of the standard that you want to enable. To view the list of
available standards and their ARNs, use the DescribeStandards
operation.
42585 42586 42587 42588 42589 42590 |
# File 'gems/aws-sdk-securityhub/lib/aws-sdk-securityhub/types.rb', line 42585 class StandardsSubscriptionRequest < Struct.new( :standards_arn, :standards_input) SENSITIVE = [] include Aws::Structure end |
#standards_input ⇒ Hash<String,String>
A key-value pair of input for the standard.
42585 42586 42587 42588 42589 42590 |
# File 'gems/aws-sdk-securityhub/lib/aws-sdk-securityhub/types.rb', line 42585 class StandardsSubscriptionRequest < Struct.new( :standards_arn, :standards_input) SENSITIVE = [] include Aws::Structure end |