Class: Aws::ConnectCases::Types::FieldAttributes

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

Direct Known Subclasses

Text, Unknown

Defined Under Namespace

Classes: Text, Unknown

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#textTypes::TextAttributes

Field attributes for Text field type.



1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
# File 'gems/aws-sdk-connectcases/lib/aws-sdk-connectcases/types.rb', line 1397

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

  class Text < FieldAttributes; end
  class Unknown < FieldAttributes; end
end

#unknownObject

Returns the value of attribute unknown

Returns:

  • (Object)

    the current value of unknown



1397
1398
1399
# File 'gems/aws-sdk-connectcases/lib/aws-sdk-connectcases/types.rb', line 1397

def unknown
  @unknown
end