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.
2923 2924 2925 2926 2927 2928 2929 2930 2931 2932 |
# File 'gems/aws-sdk-connectcases/lib/aws-sdk-connectcases/types.rb', line 2923 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
2923 2924 2925 |
# File 'gems/aws-sdk-connectcases/lib/aws-sdk-connectcases/types.rb', line 2923 def unknown @unknown end |