Class: Aws::CloudWatchOmni::Types::CreateAlertOutput
- Inherits:
-
Struct
- Object
- Struct
- Aws::CloudWatchOmni::Types::CreateAlertOutput
- Defined in:
- gems/aws-sdk-cloudwatchomni/lib/aws-sdk-cloudwatchomni/types.rb
Overview
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#alert ⇒ Types::Alert
The alert that was created.
-
#alert_arn ⇒ String
Deprecated.
Instance Attribute Details
#alert ⇒ Types::Alert
The alert that was created. The same Alert shape GetAlert returns,
so a caller need not read the alert back to learn its timestamps or
its minted alert id.
alert.state is absent here — see the state member of
Alert. Every other member is populated exactly as GetAlert
populates it.
922 923 924 925 926 927 |
# File 'gems/aws-sdk-cloudwatchomni/lib/aws-sdk-cloudwatchomni/types.rb', line 922 class CreateAlertOutput < Struct.new( :alert_arn, :alert) SENSITIVE = [] include Aws::Structure end |
#alert_arn ⇒ String
Deprecated. Use alert.alertArn, which carries the same value. Kept
so an existing caller keeps working while it moves to alert.
922 923 924 925 926 927 |
# File 'gems/aws-sdk-cloudwatchomni/lib/aws-sdk-cloudwatchomni/types.rb', line 922 class CreateAlertOutput < Struct.new( :alert_arn, :alert) SENSITIVE = [] include Aws::Structure end |