Class: Aws::ConnectCases::Types::Section

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

Overview

Note:

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

Note:

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

This represents a sections within a panel or tab of the page layout.

Direct Known Subclasses

FieldGroup, Unknown

Defined Under Namespace

Classes: FieldGroup, Unknown

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#field_groupTypes::FieldGroup

Consists of a group of fields and associated properties.

Returns:



2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
# File 'gems/aws-sdk-connectcases/lib/aws-sdk-connectcases/types.rb', line 2331

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

  class FieldGroup < Section; end
  class Unknown < Section; end
end

#unknownObject

Returns the value of attribute unknown

Returns:

  • (Object)

    the current value of unknown



2331
2332
2333
# File 'gems/aws-sdk-connectcases/lib/aws-sdk-connectcases/types.rb', line 2331

def unknown
  @unknown
end