Class: Aws::Connect::Types::PredefinedAttributeValues
- Inherits:
-
Struct
- Object
- Struct
- Aws::Connect::Types::PredefinedAttributeValues
- 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
Defined Under Namespace
Classes: StringList, Unknown
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#string_list ⇒ Array<String>
Predefined attribute values of type string list.
-
#unknown ⇒ Object
Returns the value of attribute unknown.
Instance Attribute Details
#string_list ⇒ Array<String>
Predefined attribute values of type string list.
17053 17054 17055 17056 17057 17058 17059 17060 17061 17062 |
# File 'gems/aws-sdk-connect/lib/aws-sdk-connect/types.rb', line 17053 class PredefinedAttributeValues < Struct.new( :string_list, :unknown) SENSITIVE = [] include Aws::Structure include Aws::Structure::Union class StringList < PredefinedAttributeValues; end class Unknown < PredefinedAttributeValues; end end |
#unknown ⇒ Object
Returns the value of attribute unknown
17053 17054 17055 |
# File 'gems/aws-sdk-connect/lib/aws-sdk-connect/types.rb', line 17053 def unknown @unknown end |