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>)


15291
15292
15293
15294
15295
15296
15297
15298
15299
15300
# File 'gems/aws-sdk-connect/lib/aws-sdk-connect/types.rb', line 15291

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



15291
15292
15293
# File 'gems/aws-sdk-connect/lib/aws-sdk-connect/types.rb', line 15291

def unknown
  @unknown
end