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.
3320 3321 3322 3323 3324 3325 3326 3327 3328 3329 |
# File 'lib/aws-sdk-connectcases/types.rb', line 3320 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
3320 3321 3322 |
# File 'lib/aws-sdk-connectcases/types.rb', line 3320 def unknown @unknown end |