Class: Aws::ConnectCases::Types::LayoutContent
- Inherits:
-
Struct
- Object
- Struct
- Aws::ConnectCases::Types::LayoutContent
- Defined in:
- gems/aws-sdk-connectcases/lib/aws-sdk-connectcases/types.rb
Overview
Note:
LayoutContent is a union - when making an API calls you must set exactly one of the members.
Note:
LayoutContent is a union - when returned from an API call exactly one value will be set and the returned type will be a subclass of LayoutContent corresponding to the set member.
Object to store union of different versions of layout content.
Defined Under Namespace
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#basic ⇒ Types::BasicLayout
Content specific to
BasicLayout
type. -
#unknown ⇒ Object
Returns the value of attribute unknown.
Instance Attribute Details
#basic ⇒ Types::BasicLayout
Content specific to BasicLayout
type. It configures fields in the
top panel and More Info tab of Cases user interface.
1987 1988 1989 1990 1991 1992 1993 1994 1995 1996 |
# File 'gems/aws-sdk-connectcases/lib/aws-sdk-connectcases/types.rb', line 1987 class LayoutContent < Struct.new( :basic, :unknown) SENSITIVE = [] include Aws::Structure include Aws::Structure::Union class Basic < LayoutContent; end class Unknown < LayoutContent; end end |
#unknown ⇒ Object
Returns the value of attribute unknown
1987 1988 1989 |
# File 'gems/aws-sdk-connectcases/lib/aws-sdk-connectcases/types.rb', line 1987 def unknown @unknown end |