Class: Aws::Inspector::Types::AddAttributesToFindingsRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::Inspector::Types::AddAttributesToFindingsRequest
- Defined in:
- gems/aws-sdk-inspector/lib/aws-sdk-inspector/types.rb
Overview
Note:
When making an API call, you may pass AddAttributesToFindingsRequest data as a hash:
{
finding_arns: ["Arn"], # required
attributes: [ # required
{
key: "AttributeKey", # required
value: "AttributeValue",
},
],
}
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#attributes ⇒ Array<Types::Attribute>
The array of attributes that you want to assign to specified findings.
-
#finding_arns ⇒ Array<String>
The ARNs that specify the findings that you want to assign attributes to.
Instance Attribute Details
#attributes ⇒ Array<Types::Attribute>
The array of attributes that you want to assign to specified findings.
62 63 64 65 66 67 |
# File 'gems/aws-sdk-inspector/lib/aws-sdk-inspector/types.rb', line 62 class AddAttributesToFindingsRequest < Struct.new( :finding_arns, :attributes) SENSITIVE = [] include Aws::Structure end |
#finding_arns ⇒ Array<String>
The ARNs that specify the findings that you want to assign attributes to.
62 63 64 65 66 67 |
# File 'gems/aws-sdk-inspector/lib/aws-sdk-inspector/types.rb', line 62 class AddAttributesToFindingsRequest < Struct.new( :finding_arns, :attributes) SENSITIVE = [] include Aws::Structure end |