Class: Aws::ConnectCases::Types::Section
- Inherits:
-
Struct
- Object
- Struct
- Aws::ConnectCases::Types::Section
- Includes:
- Structure, Structure::Union
- Defined in:
- 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
Defined Under Namespace
Classes: FieldGroup, Unknown
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#field_group ⇒ Types::FieldGroup
Consists of a group of fields and associated properties.
-
#unknown ⇒ Object
Returns the value of attribute unknown.
Instance Attribute Details
#field_group ⇒ Types::FieldGroup
Consists of a group of fields and associated properties.
2331 2332 2333 2334 2335 2336 2337 2338 2339 2340 |
# File '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 |
#unknown ⇒ Object
Returns the value of attribute unknown
2331 2332 2333 |
# File 'lib/aws-sdk-connectcases/types.rb', line 2331 def unknown @unknown end |