Class: Aws::SecurityHub::Types::Note
- Inherits:
-
Struct
- Object
- Struct
- Aws::SecurityHub::Types::Note
- Defined in:
- gems/aws-sdk-securityhub/lib/aws-sdk-securityhub/types.rb
Overview
Note:
When making an API call, you may pass Note data as a hash:
{
text: "NonEmptyString", # required
updated_by: "NonEmptyString", # required
updated_at: "NonEmptyString", # required
}
A user-defined note added to a finding.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#text ⇒ String
The text of a note.
-
#updated_at ⇒ String
The timestamp of when the note was updated.
-
#updated_by ⇒ String
The principal that created a note.
Instance Attribute Details
#text ⇒ String
The text of a note.
20425 20426 20427 20428 20429 20430 20431 |
# File 'gems/aws-sdk-securityhub/lib/aws-sdk-securityhub/types.rb', line 20425 class Note < Struct.new( :text, :updated_by, :updated_at) SENSITIVE = [] include Aws::Structure end |
#updated_at ⇒ String
The timestamp of when the note was 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
.
20425 20426 20427 20428 20429 20430 20431 |
# File 'gems/aws-sdk-securityhub/lib/aws-sdk-securityhub/types.rb', line 20425 class Note < Struct.new( :text, :updated_by, :updated_at) SENSITIVE = [] include Aws::Structure end |