Class: Aws::SecurityIR::Types::CaseMetadataEntry

Inherits:
Struct
  • Object
show all
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

Instance Attribute Details

#keyString

The identifier for the metadata field. This key uniquely identifies the type of metadata being stored, such as "severity", "category", or "assignee".

Returns:

  • (String)


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

#valueString

The value associated with the metadata key. This contains the actual data for the metadata field identified by the key.

Returns:

  • (String)


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