Class: Aws::Connect::Types::PredefinedAttributeValues

Inherits:
Struct
  • Object
show all
Defined in:
gems/aws-sdk-connect/lib/aws-sdk-connect/types.rb

Overview

Note:

PredefinedAttributeValues is a union - when making an API calls you must set exactly one of the members.

Note:

PredefinedAttributeValues is a union - when returned from an API call exactly one value will be set and the returned type will be a subclass of PredefinedAttributeValues corresponding to the set member.

Information about values of a predefined attribute.

Direct Known Subclasses

StringList, Unknown

Defined Under Namespace

Classes: StringList, Unknown

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#string_listArray<String>

Predefined attribute values of type string list.

Returns:

  • (Array<String>)


14095
14096
14097
14098
14099
14100
14101
14102
14103
14104
# File 'gems/aws-sdk-connect/lib/aws-sdk-connect/types.rb', line 14095

class PredefinedAttributeValues < Struct.new(
  :string_list,
  :unknown)
  SENSITIVE = []
  include Aws::Structure
  include Aws::Structure::Union

  class StringList < PredefinedAttributeValues; end
  class Unknown < PredefinedAttributeValues; end
end

#unknownObject

Returns the value of attribute unknown

Returns:

  • (Object)

    the current value of unknown



14095
14096
14097
# File 'gems/aws-sdk-connect/lib/aws-sdk-connect/types.rb', line 14095

def unknown
  @unknown
end