Class: Aws::SecurityHub::Types::AwsSecurityFindingIdentifier
- Inherits:
-
Struct
- Object
- Struct
- Aws::SecurityHub::Types::AwsSecurityFindingIdentifier
- Defined in:
- gems/aws-sdk-securityhub/lib/aws-sdk-securityhub/types.rb
Overview
Note:
When making an API call, you may pass AwsSecurityFindingIdentifier data as a hash:
{
id: "NonEmptyString", # required
product_arn: "NonEmptyString", # required
}
Identifies a finding to update using BatchUpdateFindings
.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#id ⇒ String
The identifier of the finding that was specified by the finding provider.
-
#product_arn ⇒ String
The ARN generated by Security Hub that uniquely identifies a product that generates findings.
Instance Attribute Details
#id ⇒ String
The identifier of the finding that was specified by the finding provider.
13400 13401 13402 13403 13404 13405 |
# File 'gems/aws-sdk-securityhub/lib/aws-sdk-securityhub/types.rb', line 13400 class AwsSecurityFindingIdentifier < Struct.new( :id, :product_arn) SENSITIVE = [] include Aws::Structure end |
#product_arn ⇒ String
The ARN generated by Security Hub that uniquely identifies a product that generates findings. This can be the ARN for a third-party product that is integrated with Security Hub, or the ARN for a custom integration.
13400 13401 13402 13403 13404 13405 |
# File 'gems/aws-sdk-securityhub/lib/aws-sdk-securityhub/types.rb', line 13400 class AwsSecurityFindingIdentifier < Struct.new( :id, :product_arn) SENSITIVE = [] include Aws::Structure end |