Class: Aws::Connect::Types::PrimaryValue
- Inherits:
-
Struct
- Object
- Struct
- Aws::Connect::Types::PrimaryValue
- Defined in:
- gems/aws-sdk-connect/lib/aws-sdk-connect/types.rb
Overview
Represents a primary key value used to identify a specific record in a data table. Primary values are used in combination to create unique record identifiers when a table has multiple primary attributes.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#attribute_name ⇒ String
The name of the primary attribute that this value belongs to.
-
#value ⇒ String
The actual value for the primary attribute.
Instance Attribute Details
#attribute_name ⇒ String
The name of the primary attribute that this value belongs to.
24290 24291 24292 24293 24294 24295 |
# File 'gems/aws-sdk-connect/lib/aws-sdk-connect/types.rb', line 24290 class PrimaryValue < Struct.new( :attribute_name, :value) SENSITIVE = [] include Aws::Structure end |
#value ⇒ String
The actual value for the primary attribute. Must be provided as a string regardless of the attribute's value type. Primary values cannot be expressions and must be explicitly specified.
24290 24291 24292 24293 24294 24295 |
# File 'gems/aws-sdk-connect/lib/aws-sdk-connect/types.rb', line 24290 class PrimaryValue < Struct.new( :attribute_name, :value) SENSITIVE = [] include Aws::Structure end |