Class: Aws::SecurityHub::Types::VulnerabilityVendor
- Inherits:
-
Struct
- Object
- Struct
- Aws::SecurityHub::Types::VulnerabilityVendor
- Defined in:
- gems/aws-sdk-securityhub/lib/aws-sdk-securityhub/types.rb
Overview
When making an API call, you may pass VulnerabilityVendor data as a hash:
{
name: "NonEmptyString", # required
url: "NonEmptyString",
vendor_severity: "NonEmptyString",
vendor_created_at: "NonEmptyString",
vendor_updated_at: "NonEmptyString",
}
A vendor that generates a vulnerability report.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#name ⇒ String
The name of the vendor.
-
#url ⇒ String
The URL of the vulnerability advisory.
-
#vendor_created_at ⇒ String
Indicates when the vulnerability advisory was created.
-
#vendor_severity ⇒ String
The severity that the vendor assigned to the vulnerability.
-
#vendor_updated_at ⇒ String
Indicates when the vulnerability advisory was last updated.
Instance Attribute Details
#name ⇒ String
The name of the vendor.
26816 26817 26818 26819 26820 26821 26822 26823 26824 |
# File 'gems/aws-sdk-securityhub/lib/aws-sdk-securityhub/types.rb', line 26816 class VulnerabilityVendor < Struct.new( :name, :url, :vendor_severity, :vendor_created_at, :vendor_updated_at) SENSITIVE = [] include Aws::Structure end |
#url ⇒ String
The URL of the vulnerability advisory.
26816 26817 26818 26819 26820 26821 26822 26823 26824 |
# File 'gems/aws-sdk-securityhub/lib/aws-sdk-securityhub/types.rb', line 26816 class VulnerabilityVendor < Struct.new( :name, :url, :vendor_severity, :vendor_created_at, :vendor_updated_at) SENSITIVE = [] include Aws::Structure end |
#vendor_created_at ⇒ String
Indicates when the vulnerability advisory was created.
Uses the date-time
format specified in RFC 3339 section 5.6,
Internet Date/Time Format. The value cannot contain spaces. For
example, 2020-03-22T13:22:13.933Z
.
26816 26817 26818 26819 26820 26821 26822 26823 26824 |
# File 'gems/aws-sdk-securityhub/lib/aws-sdk-securityhub/types.rb', line 26816 class VulnerabilityVendor < Struct.new( :name, :url, :vendor_severity, :vendor_created_at, :vendor_updated_at) SENSITIVE = [] include Aws::Structure end |
#vendor_severity ⇒ String
The severity that the vendor assigned to the vulnerability.
26816 26817 26818 26819 26820 26821 26822 26823 26824 |
# File 'gems/aws-sdk-securityhub/lib/aws-sdk-securityhub/types.rb', line 26816 class VulnerabilityVendor < Struct.new( :name, :url, :vendor_severity, :vendor_created_at, :vendor_updated_at) SENSITIVE = [] include Aws::Structure end |
#vendor_updated_at ⇒ String
Indicates when the vulnerability advisory was last updated.
Uses the date-time
format specified in RFC 3339 section 5.6,
Internet Date/Time Format. The value cannot contain spaces. For
example, 2020-03-22T13:22:13.933Z
.
26816 26817 26818 26819 26820 26821 26822 26823 26824 |
# File 'gems/aws-sdk-securityhub/lib/aws-sdk-securityhub/types.rb', line 26816 class VulnerabilityVendor < Struct.new( :name, :url, :vendor_severity, :vendor_created_at, :vendor_updated_at) SENSITIVE = [] include Aws::Structure end |