Class: Aws::SMS::Types::NotificationContext
- Inherits:
-
Struct
- Object
- Struct
- Aws::SMS::Types::NotificationContext
- Defined in:
- gems/aws-sdk-sms/lib/aws-sdk-sms/types.rb
Overview
Note:
When making an API call, you may pass NotificationContext data as a hash:
{
validation_id: "ValidationId",
status: "READY_FOR_VALIDATION", # accepts READY_FOR_VALIDATION, PENDING, IN_PROGRESS, SUCCEEDED, FAILED
status_message: "ValidationStatusMessage",
}
Contains the status of validating an application.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#status ⇒ String
The status of the validation.
-
#status_message ⇒ String
The status message.
-
#validation_id ⇒ String
The ID of the validation.
Instance Attribute Details
#status ⇒ String
The status of the validation.
1316 1317 1318 1319 1320 1321 1322 |
# File 'gems/aws-sdk-sms/lib/aws-sdk-sms/types.rb', line 1316 class NotificationContext < Struct.new( :validation_id, :status, :status_message) SENSITIVE = [] include Aws::Structure end |
#status_message ⇒ String
The status message.
1316 1317 1318 1319 1320 1321 1322 |
# File 'gems/aws-sdk-sms/lib/aws-sdk-sms/types.rb', line 1316 class NotificationContext < Struct.new( :validation_id, :status, :status_message) SENSITIVE = [] include Aws::Structure end |
#validation_id ⇒ String
The ID of the validation.
1316 1317 1318 1319 1320 1321 1322 |
# File 'gems/aws-sdk-sms/lib/aws-sdk-sms/types.rb', line 1316 class NotificationContext < Struct.new( :validation_id, :status, :status_message) SENSITIVE = [] include Aws::Structure end |