Class: Aws::SSMIncidents::Types::Integration

Inherits:
Struct
  • Object
show all
Defined in:
gems/aws-sdk-ssmincidents/lib/aws-sdk-ssmincidents/types.rb

Overview

Note:

Integration is a union - when making an API calls you must set exactly one of the members.

Note:

Integration is a union - when returned from an API call exactly one value will be set and the returned type will be a subclass of Integration corresponding to the set member.

Information about third-party services integrated into a response plan.

Direct Known Subclasses

PagerDutyConfiguration, Unknown

Defined Under Namespace

Classes: PagerDutyConfiguration, Unknown

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#pager_duty_configurationTypes::PagerDutyConfiguration

Information about the PagerDuty service where the response plan creates an incident.



1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
# File 'gems/aws-sdk-ssmincidents/lib/aws-sdk-ssmincidents/types.rb', line 1289

class Integration < Struct.new(
  :pager_duty_configuration,
  :unknown)
  SENSITIVE = []
  include Aws::Structure
  include Aws::Structure::Union

  class PagerDutyConfiguration < Integration; end
  class Unknown < Integration; end
end

#unknownObject

Returns the value of attribute unknown

Returns:

  • (Object)

    the current value of unknown



1289
1290
1291
# File 'gems/aws-sdk-ssmincidents/lib/aws-sdk-ssmincidents/types.rb', line 1289

def unknown
  @unknown
end