Class: Aws::Connect::Types::PrimaryValue

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

Instance Attribute Details

#attribute_nameString

The name of the primary attribute that this value belongs to.

Returns:

  • (String)


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

#valueString

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.

Returns:

  • (String)


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