Class: Aws::ConnectCases::Types::RelatedItemTypeFilter
- Inherits:
-
Struct
- Object
- Struct
- Aws::ConnectCases::Types::RelatedItemTypeFilter
- Defined in:
- gems/aws-sdk-connectcases/lib/aws-sdk-connectcases/types.rb
Overview
Note:
RelatedItemTypeFilter is a union - when making an API calls you must set exactly one of the members.
The list of types of related items and their parameters to use for filtering.
Defined Under Namespace
Classes: Comment, Contact, File, Unknown
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#comment ⇒ Types::CommentFilter
A filter for related items of type
Comment
. -
#contact ⇒ Types::ContactFilter
A filter for related items of type
Contact
. -
#file ⇒ Types::FileFilter
A filter for related items of this type of
File
. -
#unknown ⇒ Object
Returns the value of attribute unknown.
Instance Attribute Details
#comment ⇒ Types::CommentFilter
A filter for related items of type Comment
.
2075 2076 2077 2078 2079 2080 2081 2082 2083 2084 2085 2086 2087 2088 |
# File 'gems/aws-sdk-connectcases/lib/aws-sdk-connectcases/types.rb', line 2075 class RelatedItemTypeFilter < Struct.new( :comment, :contact, :file, :unknown) SENSITIVE = [] include Aws::Structure include Aws::Structure::Union class Comment < RelatedItemTypeFilter; end class Contact < RelatedItemTypeFilter; end class File < RelatedItemTypeFilter; end class Unknown < RelatedItemTypeFilter; end end |
#contact ⇒ Types::ContactFilter
A filter for related items of type Contact
.
2075 2076 2077 2078 2079 2080 2081 2082 2083 2084 2085 2086 2087 2088 |
# File 'gems/aws-sdk-connectcases/lib/aws-sdk-connectcases/types.rb', line 2075 class RelatedItemTypeFilter < Struct.new( :comment, :contact, :file, :unknown) SENSITIVE = [] include Aws::Structure include Aws::Structure::Union class Comment < RelatedItemTypeFilter; end class Contact < RelatedItemTypeFilter; end class File < RelatedItemTypeFilter; end class Unknown < RelatedItemTypeFilter; end end |
#file ⇒ Types::FileFilter
A filter for related items of this type of File
.
2075 2076 2077 2078 2079 2080 2081 2082 2083 2084 2085 2086 2087 2088 |
# File 'gems/aws-sdk-connectcases/lib/aws-sdk-connectcases/types.rb', line 2075 class RelatedItemTypeFilter < Struct.new( :comment, :contact, :file, :unknown) SENSITIVE = [] include Aws::Structure include Aws::Structure::Union class Comment < RelatedItemTypeFilter; end class Contact < RelatedItemTypeFilter; end class File < RelatedItemTypeFilter; end class Unknown < RelatedItemTypeFilter; end end |
#unknown ⇒ Object
Returns the value of attribute unknown
2075 2076 2077 |
# File 'gems/aws-sdk-connectcases/lib/aws-sdk-connectcases/types.rb', line 2075 def unknown @unknown end |