Class: Aws::ConnectCases::Types::SlaInputContent
- Inherits:
-
Struct
- Object
- Struct
- Aws::ConnectCases::Types::SlaInputContent
- Defined in:
- gems/aws-sdk-connectcases/lib/aws-sdk-connectcases/types.rb
Overview
Note:
SlaInputContent is a union - when making an API calls you must set exactly one of the members.
Represents the content of an SLA.
Direct Known Subclasses
Defined Under Namespace
Classes: SlaInputConfiguration, Unknown
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#sla_input_configuration ⇒ Types::SlaInputConfiguration
Represents an input SLA configuration.
-
#unknown ⇒ Object
Returns the value of attribute unknown.
Instance Attribute Details
#sla_input_configuration ⇒ Types::SlaInputConfiguration
Represents an input SLA configuration.
3077 3078 3079 3080 3081 3082 3083 3084 3085 3086 |
# File 'gems/aws-sdk-connectcases/lib/aws-sdk-connectcases/types.rb', line 3077 class SlaInputContent < Struct.new( :sla_input_configuration, :unknown) SENSITIVE = [] include Aws::Structure include Aws::Structure::Union class SlaInputConfiguration < SlaInputContent; end class Unknown < SlaInputContent; end end |
#unknown ⇒ Object
Returns the value of attribute unknown
3077 3078 3079 |
# File 'gems/aws-sdk-connectcases/lib/aws-sdk-connectcases/types.rb', line 3077 def unknown @unknown end |