Class: Aws::ConnectCases::Types::FieldAttributes
- Inherits:
-
Struct
- Object
- Struct
- Aws::ConnectCases::Types::FieldAttributes
- Defined in:
- gems/aws-sdk-connectcases/lib/aws-sdk-connectcases/types.rb
Overview
Note:
FieldAttributes is a union - when making an API calls you must set exactly one of the members.
Note:
FieldAttributes is a union - when returned from an API call exactly one value will be set and the returned type will be a subclass of FieldAttributes corresponding to the set member.
Union of field attributes.
Defined Under Namespace
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#text ⇒ Types::TextAttributes
Field attributes for Text field type.
-
#unknown ⇒ Object
Returns the value of attribute unknown.
Instance Attribute Details
#text ⇒ Types::TextAttributes
Field attributes for Text field type.
1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 |
# File 'gems/aws-sdk-connectcases/lib/aws-sdk-connectcases/types.rb', line 1473 class FieldAttributes < Struct.new( :text, :unknown) SENSITIVE = [] include Aws::Structure include Aws::Structure::Union class Text < FieldAttributes; end class Unknown < FieldAttributes; end end |
#unknown ⇒ Object
Returns the value of attribute unknown
1473 1474 1475 |
# File 'gems/aws-sdk-connectcases/lib/aws-sdk-connectcases/types.rb', line 1473 def unknown @unknown end |