Class: Aws::SecurityIR::Types::CaseMetadataEntry
- Inherits:
-
Struct
- Object
- Struct
- Aws::SecurityIR::Types::CaseMetadataEntry
- Defined in:
- gems/aws-sdk-securityir/lib/aws-sdk-securityir/types.rb
Overview
Represents a single metadata entry associated with a case. Each entry consists of a key-value pair that provides additional contextual information about the case, such as classification tags, custom attributes, or system-generated properties.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#key ⇒ String
The identifier for the metadata field.
-
#value ⇒ String
The value associated with the metadata key.
Instance Attribute Details
#key ⇒ String
The identifier for the metadata field. This key uniquely identifies the type of metadata being stored, such as "severity", "category", or "assignee".
164 165 166 167 168 169 |
# File 'gems/aws-sdk-securityir/lib/aws-sdk-securityir/types.rb', line 164 class CaseMetadataEntry < Struct.new( :key, :value) SENSITIVE = [] include Aws::Structure end |
#value ⇒ String
The value associated with the metadata key. This contains the actual data for the metadata field identified by the key.
164 165 166 167 168 169 |
# File 'gems/aws-sdk-securityir/lib/aws-sdk-securityir/types.rb', line 164 class CaseMetadataEntry < Struct.new( :key, :value) SENSITIVE = [] include Aws::Structure end |