Class: Aws::SSMIncidents::Types::Integration
- Inherits:
-
Struct
- Object
- Struct
- Aws::SSMIncidents::Types::Integration
- 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
Defined Under Namespace
Classes: PagerDutyConfiguration, Unknown
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#pager_duty_configuration ⇒ Types::PagerDutyConfiguration
Information about the PagerDuty service where the response plan creates an incident.
-
#unknown ⇒ Object
Returns the value of attribute unknown.
Instance Attribute Details
#pager_duty_configuration ⇒ Types::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 |
#unknown ⇒ Object
Returns the value of attribute unknown
1289 1290 1291 |
# File 'gems/aws-sdk-ssmincidents/lib/aws-sdk-ssmincidents/types.rb', line 1289 def unknown @unknown end |