Class: Aws::SecurityHub::Types::BatchEnableStandardsRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::SecurityHub::Types::BatchEnableStandardsRequest
- Defined in:
- gems/aws-sdk-securityhub/lib/aws-sdk-securityhub/types.rb
Overview
Note:
When making an API call, you may pass BatchEnableStandardsRequest data as a hash:
{
standards_subscription_requests: [ # required
{
standards_arn: "NonEmptyString", # required
standards_input: {
"NonEmptyString" => "NonEmptyString",
},
},
],
}
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#standards_subscription_requests ⇒ Array<Types::StandardsSubscriptionRequest>
The list of standards checks to enable.
Instance Attribute Details
#standards_subscription_requests ⇒ Array<Types::StandardsSubscriptionRequest>
The list of standards checks to enable.
13948 13949 13950 13951 13952 |
# File 'gems/aws-sdk-securityhub/lib/aws-sdk-securityhub/types.rb', line 13948 class BatchEnableStandardsRequest < Struct.new( :standards_subscription_requests) SENSITIVE = [] include Aws::Structure end |