Class: Aws::ConnectCases::Types::Section
- Inherits:
-
Struct
- Object
- Struct
- Aws::ConnectCases::Types::Section
- 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
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.
2858 2859 2860 2861 2862 2863 2864 2865 2866 2867 |
# File 'gems/aws-sdk-connectcases/lib/aws-sdk-connectcases/types.rb', line 2858 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
2858 2859 2860 |
# File 'gems/aws-sdk-connectcases/lib/aws-sdk-connectcases/types.rb', line 2858 def unknown @unknown end |