Class: Aws::SSMIncidents::Types::ItemIdentifier
- Inherits:
-
Struct
- Object
- Struct
- Aws::SSMIncidents::Types::ItemIdentifier
- Defined in:
- gems/aws-sdk-ssmincidents/lib/aws-sdk-ssmincidents/types.rb
Overview
Note:
When making an API call, you may pass ItemIdentifier data as a hash:
{
type: "ANALYSIS", # required, accepts ANALYSIS, INCIDENT, METRIC, PARENT, ATTACHMENT, OTHER, AUTOMATION, INVOLVED_RESOURCE
value: { # required
arn: "Arn",
metric_definition: "MetricDefinition",
url: "Url",
},
}
Details and type of a related item.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#type ⇒ String
The type of related item.
-
#value ⇒ Types::ItemValue
Details about the related item.
Instance Attribute Details
#type ⇒ String
The type of related item.
1179 1180 1181 1182 1183 1184 |
# File 'gems/aws-sdk-ssmincidents/lib/aws-sdk-ssmincidents/types.rb', line 1179 class ItemIdentifier < Struct.new( :type, :value) SENSITIVE = [] include Aws::Structure end |
#value ⇒ Types::ItemValue
Details about the related item.
1179 1180 1181 1182 1183 1184 |
# File 'gems/aws-sdk-ssmincidents/lib/aws-sdk-ssmincidents/types.rb', line 1179 class ItemIdentifier < Struct.new( :type, :value) SENSITIVE = [] include Aws::Structure end |