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.
23772 23773 23774 23775 23776 23777 |
# File 'gems/aws-sdk-connect/lib/aws-sdk-connect/types.rb', line 23772 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.
23772 23773 23774 23775 23776 23777 |
# File 'gems/aws-sdk-connect/lib/aws-sdk-connect/types.rb', line 23772 class PrimaryValue < Struct.new( :attribute_name, :value) SENSITIVE = [] include Aws::Structure end |