Class: Aws::ConnectCases::Types::SlaInputContent

Inherits:
Struct
  • Object
show all
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

SlaInputConfiguration, Unknown

Defined Under Namespace

Classes: SlaInputConfiguration, Unknown

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#sla_input_configurationTypes::SlaInputConfiguration

Represents an input SLA configuration.



3517
3518
3519
3520
3521
3522
3523
3524
3525
3526
# File 'gems/aws-sdk-connectcases/lib/aws-sdk-connectcases/types.rb', line 3517

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

#unknownObject

Returns the value of attribute unknown

Returns:

  • (Object)

    the current value of unknown



3517
3518
3519
# File 'gems/aws-sdk-connectcases/lib/aws-sdk-connectcases/types.rb', line 3517

def unknown
  @unknown
end