aws-sdk-notifications 1.1.0 → 1.2.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/CHANGELOG.md +5 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-notifications/client.rb +803 -113
- data/lib/aws-sdk-notifications/client_api.rb +521 -0
- data/lib/aws-sdk-notifications/types.rb +1632 -390
- data/lib/aws-sdk-notifications.rb +1 -1
- data/sig/client.rbs +169 -0
- data/sig/types.rbs +299 -0
- metadata +2 -2
data/sig/client.rbs
CHANGED
@@ -87,6 +87,26 @@ module Aws
|
|
87
87
|
) -> _AssociateChannelResponseSuccess
|
88
88
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _AssociateChannelResponseSuccess
|
89
89
|
|
90
|
+
interface _AssociateManagedNotificationAccountContactResponseSuccess
|
91
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::AssociateManagedNotificationAccountContactResponse]
|
92
|
+
end
|
93
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Notifications/Client.html#associate_managed_notification_account_contact-instance_method
|
94
|
+
def associate_managed_notification_account_contact: (
|
95
|
+
contact_identifier: ("ACCOUNT_PRIMARY" | "ACCOUNT_ALTERNATE_BILLING" | "ACCOUNT_ALTERNATE_OPERATIONS" | "ACCOUNT_ALTERNATE_SECURITY"),
|
96
|
+
managed_notification_configuration_arn: ::String
|
97
|
+
) -> _AssociateManagedNotificationAccountContactResponseSuccess
|
98
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _AssociateManagedNotificationAccountContactResponseSuccess
|
99
|
+
|
100
|
+
interface _AssociateManagedNotificationAdditionalChannelResponseSuccess
|
101
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::AssociateManagedNotificationAdditionalChannelResponse]
|
102
|
+
end
|
103
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Notifications/Client.html#associate_managed_notification_additional_channel-instance_method
|
104
|
+
def associate_managed_notification_additional_channel: (
|
105
|
+
channel_arn: ::String,
|
106
|
+
managed_notification_configuration_arn: ::String
|
107
|
+
) -> _AssociateManagedNotificationAdditionalChannelResponseSuccess
|
108
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _AssociateManagedNotificationAdditionalChannelResponseSuccess
|
109
|
+
|
90
110
|
interface _CreateEventRuleResponseSuccess
|
91
111
|
include ::Seahorse::Client::_ResponseSuccess[Types::CreateEventRuleResponse]
|
92
112
|
def arn: () -> ::String
|
@@ -146,6 +166,14 @@ module Aws
|
|
146
166
|
) -> _DeregisterNotificationHubResponseSuccess
|
147
167
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DeregisterNotificationHubResponseSuccess
|
148
168
|
|
169
|
+
interface _DisableNotificationsAccessForOrganizationResponseSuccess
|
170
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::DisableNotificationsAccessForOrganizationResponse]
|
171
|
+
end
|
172
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Notifications/Client.html#disable_notifications_access_for_organization-instance_method
|
173
|
+
def disable_notifications_access_for_organization: (
|
174
|
+
) -> _DisableNotificationsAccessForOrganizationResponseSuccess
|
175
|
+
| (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DisableNotificationsAccessForOrganizationResponseSuccess
|
176
|
+
|
149
177
|
interface _DisassociateChannelResponseSuccess
|
150
178
|
include ::Seahorse::Client::_ResponseSuccess[Types::DisassociateChannelResponse]
|
151
179
|
end
|
@@ -156,6 +184,34 @@ module Aws
|
|
156
184
|
) -> _DisassociateChannelResponseSuccess
|
157
185
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DisassociateChannelResponseSuccess
|
158
186
|
|
187
|
+
interface _DisassociateManagedNotificationAccountContactResponseSuccess
|
188
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::DisassociateManagedNotificationAccountContactResponse]
|
189
|
+
end
|
190
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Notifications/Client.html#disassociate_managed_notification_account_contact-instance_method
|
191
|
+
def disassociate_managed_notification_account_contact: (
|
192
|
+
contact_identifier: ("ACCOUNT_PRIMARY" | "ACCOUNT_ALTERNATE_BILLING" | "ACCOUNT_ALTERNATE_OPERATIONS" | "ACCOUNT_ALTERNATE_SECURITY"),
|
193
|
+
managed_notification_configuration_arn: ::String
|
194
|
+
) -> _DisassociateManagedNotificationAccountContactResponseSuccess
|
195
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DisassociateManagedNotificationAccountContactResponseSuccess
|
196
|
+
|
197
|
+
interface _DisassociateManagedNotificationAdditionalChannelResponseSuccess
|
198
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::DisassociateManagedNotificationAdditionalChannelResponse]
|
199
|
+
end
|
200
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Notifications/Client.html#disassociate_managed_notification_additional_channel-instance_method
|
201
|
+
def disassociate_managed_notification_additional_channel: (
|
202
|
+
channel_arn: ::String,
|
203
|
+
managed_notification_configuration_arn: ::String
|
204
|
+
) -> _DisassociateManagedNotificationAdditionalChannelResponseSuccess
|
205
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DisassociateManagedNotificationAdditionalChannelResponseSuccess
|
206
|
+
|
207
|
+
interface _EnableNotificationsAccessForOrganizationResponseSuccess
|
208
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::EnableNotificationsAccessForOrganizationResponse]
|
209
|
+
end
|
210
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Notifications/Client.html#enable_notifications_access_for_organization-instance_method
|
211
|
+
def enable_notifications_access_for_organization: (
|
212
|
+
) -> _EnableNotificationsAccessForOrganizationResponseSuccess
|
213
|
+
| (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _EnableNotificationsAccessForOrganizationResponseSuccess
|
214
|
+
|
159
215
|
interface _GetEventRuleResponseSuccess
|
160
216
|
include ::Seahorse::Client::_ResponseSuccess[Types::GetEventRuleResponse]
|
161
217
|
def arn: () -> ::String
|
@@ -174,6 +230,48 @@ module Aws
|
|
174
230
|
) -> _GetEventRuleResponseSuccess
|
175
231
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetEventRuleResponseSuccess
|
176
232
|
|
233
|
+
interface _GetManagedNotificationChildEventResponseSuccess
|
234
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::GetManagedNotificationChildEventResponse]
|
235
|
+
def arn: () -> ::String
|
236
|
+
def managed_notification_configuration_arn: () -> ::String
|
237
|
+
def creation_time: () -> ::Time
|
238
|
+
def content: () -> Types::ManagedNotificationChildEvent
|
239
|
+
end
|
240
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Notifications/Client.html#get_managed_notification_child_event-instance_method
|
241
|
+
def get_managed_notification_child_event: (
|
242
|
+
arn: ::String,
|
243
|
+
?locale: ("de_DE" | "en_CA" | "en_US" | "en_UK" | "es_ES" | "fr_CA" | "fr_FR" | "id_ID" | "it_IT" | "ja_JP" | "ko_KR" | "pt_BR" | "tr_TR" | "zh_CN" | "zh_TW")
|
244
|
+
) -> _GetManagedNotificationChildEventResponseSuccess
|
245
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetManagedNotificationChildEventResponseSuccess
|
246
|
+
|
247
|
+
interface _GetManagedNotificationConfigurationResponseSuccess
|
248
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::GetManagedNotificationConfigurationResponse]
|
249
|
+
def arn: () -> ::String
|
250
|
+
def name: () -> ::String
|
251
|
+
def description: () -> ::String
|
252
|
+
def category: () -> ::String
|
253
|
+
def sub_category: () -> ::String
|
254
|
+
end
|
255
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Notifications/Client.html#get_managed_notification_configuration-instance_method
|
256
|
+
def get_managed_notification_configuration: (
|
257
|
+
arn: ::String
|
258
|
+
) -> _GetManagedNotificationConfigurationResponseSuccess
|
259
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetManagedNotificationConfigurationResponseSuccess
|
260
|
+
|
261
|
+
interface _GetManagedNotificationEventResponseSuccess
|
262
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::GetManagedNotificationEventResponse]
|
263
|
+
def arn: () -> ::String
|
264
|
+
def managed_notification_configuration_arn: () -> ::String
|
265
|
+
def creation_time: () -> ::Time
|
266
|
+
def content: () -> Types::ManagedNotificationEvent
|
267
|
+
end
|
268
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Notifications/Client.html#get_managed_notification_event-instance_method
|
269
|
+
def get_managed_notification_event: (
|
270
|
+
arn: ::String,
|
271
|
+
?locale: ("de_DE" | "en_CA" | "en_US" | "en_UK" | "es_ES" | "fr_CA" | "fr_FR" | "id_ID" | "it_IT" | "ja_JP" | "ko_KR" | "pt_BR" | "tr_TR" | "zh_CN" | "zh_TW")
|
272
|
+
) -> _GetManagedNotificationEventResponseSuccess
|
273
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetManagedNotificationEventResponseSuccess
|
274
|
+
|
177
275
|
interface _GetNotificationConfigurationResponseSuccess
|
178
276
|
include ::Seahorse::Client::_ResponseSuccess[Types::GetNotificationConfigurationResponse]
|
179
277
|
def arn: () -> ::String
|
@@ -203,6 +301,15 @@ module Aws
|
|
203
301
|
) -> _GetNotificationEventResponseSuccess
|
204
302
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetNotificationEventResponseSuccess
|
205
303
|
|
304
|
+
interface _GetNotificationsAccessForOrganizationResponseSuccess
|
305
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::GetNotificationsAccessForOrganizationResponse]
|
306
|
+
def notifications_access_for_organization: () -> Types::NotificationsAccessForOrganization
|
307
|
+
end
|
308
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Notifications/Client.html#get_notifications_access_for_organization-instance_method
|
309
|
+
def get_notifications_access_for_organization: (
|
310
|
+
) -> _GetNotificationsAccessForOrganizationResponseSuccess
|
311
|
+
| (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetNotificationsAccessForOrganizationResponseSuccess
|
312
|
+
|
206
313
|
interface _ListChannelsResponseSuccess
|
207
314
|
include ::Seahorse::Client::_ResponseSuccess[Types::ListChannelsResponse]
|
208
315
|
def next_token: () -> ::String
|
@@ -229,6 +336,68 @@ module Aws
|
|
229
336
|
) -> _ListEventRulesResponseSuccess
|
230
337
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListEventRulesResponseSuccess
|
231
338
|
|
339
|
+
interface _ListManagedNotificationChannelAssociationsResponseSuccess
|
340
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::ListManagedNotificationChannelAssociationsResponse]
|
341
|
+
def next_token: () -> ::String
|
342
|
+
def channel_associations: () -> ::Array[Types::ManagedNotificationChannelAssociationSummary]
|
343
|
+
end
|
344
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Notifications/Client.html#list_managed_notification_channel_associations-instance_method
|
345
|
+
def list_managed_notification_channel_associations: (
|
346
|
+
managed_notification_configuration_arn: ::String,
|
347
|
+
?max_results: ::Integer,
|
348
|
+
?next_token: ::String
|
349
|
+
) -> _ListManagedNotificationChannelAssociationsResponseSuccess
|
350
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListManagedNotificationChannelAssociationsResponseSuccess
|
351
|
+
|
352
|
+
interface _ListManagedNotificationChildEventsResponseSuccess
|
353
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::ListManagedNotificationChildEventsResponse]
|
354
|
+
def next_token: () -> ::String
|
355
|
+
def managed_notification_child_events: () -> ::Array[Types::ManagedNotificationChildEventOverview]
|
356
|
+
end
|
357
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Notifications/Client.html#list_managed_notification_child_events-instance_method
|
358
|
+
def list_managed_notification_child_events: (
|
359
|
+
aggregate_managed_notification_event_arn: ::String,
|
360
|
+
?start_time: ::Time,
|
361
|
+
?end_time: ::Time,
|
362
|
+
?locale: ("de_DE" | "en_CA" | "en_US" | "en_UK" | "es_ES" | "fr_CA" | "fr_FR" | "id_ID" | "it_IT" | "ja_JP" | "ko_KR" | "pt_BR" | "tr_TR" | "zh_CN" | "zh_TW"),
|
363
|
+
?max_results: ::Integer,
|
364
|
+
?related_account: ::String,
|
365
|
+
?organizational_unit_id: ::String,
|
366
|
+
?next_token: ::String
|
367
|
+
) -> _ListManagedNotificationChildEventsResponseSuccess
|
368
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListManagedNotificationChildEventsResponseSuccess
|
369
|
+
|
370
|
+
interface _ListManagedNotificationConfigurationsResponseSuccess
|
371
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::ListManagedNotificationConfigurationsResponse]
|
372
|
+
def next_token: () -> ::String
|
373
|
+
def managed_notification_configurations: () -> ::Array[Types::ManagedNotificationConfigurationStructure]
|
374
|
+
end
|
375
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Notifications/Client.html#list_managed_notification_configurations-instance_method
|
376
|
+
def list_managed_notification_configurations: (
|
377
|
+
?channel_identifier: ::String,
|
378
|
+
?max_results: ::Integer,
|
379
|
+
?next_token: ::String
|
380
|
+
) -> _ListManagedNotificationConfigurationsResponseSuccess
|
381
|
+
| (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListManagedNotificationConfigurationsResponseSuccess
|
382
|
+
|
383
|
+
interface _ListManagedNotificationEventsResponseSuccess
|
384
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::ListManagedNotificationEventsResponse]
|
385
|
+
def next_token: () -> ::String
|
386
|
+
def managed_notification_events: () -> ::Array[Types::ManagedNotificationEventOverview]
|
387
|
+
end
|
388
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Notifications/Client.html#list_managed_notification_events-instance_method
|
389
|
+
def list_managed_notification_events: (
|
390
|
+
?start_time: ::Time,
|
391
|
+
?end_time: ::Time,
|
392
|
+
?locale: ("de_DE" | "en_CA" | "en_US" | "en_UK" | "es_ES" | "fr_CA" | "fr_FR" | "id_ID" | "it_IT" | "ja_JP" | "ko_KR" | "pt_BR" | "tr_TR" | "zh_CN" | "zh_TW"),
|
393
|
+
?source: ::String,
|
394
|
+
?max_results: ::Integer,
|
395
|
+
?next_token: ::String,
|
396
|
+
?organizational_unit_id: ::String,
|
397
|
+
?related_account: ::String
|
398
|
+
) -> _ListManagedNotificationEventsResponseSuccess
|
399
|
+
| (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListManagedNotificationEventsResponseSuccess
|
400
|
+
|
232
401
|
interface _ListNotificationConfigurationsResponseSuccess
|
233
402
|
include ::Seahorse::Client::_ResponseSuccess[Types::ListNotificationConfigurationsResponse]
|
234
403
|
def next_token: () -> ::String
|
data/sig/types.rbs
CHANGED
@@ -13,6 +13,27 @@ module Aws::Notifications
|
|
13
13
|
SENSITIVE: []
|
14
14
|
end
|
15
15
|
|
16
|
+
class AggregationDetail
|
17
|
+
attr_accessor summarization_dimensions: ::Array[Types::SummarizationDimensionDetail]
|
18
|
+
SENSITIVE: []
|
19
|
+
end
|
20
|
+
|
21
|
+
class AggregationKey
|
22
|
+
attr_accessor name: ::String
|
23
|
+
attr_accessor value: ::String
|
24
|
+
SENSITIVE: []
|
25
|
+
end
|
26
|
+
|
27
|
+
class AggregationSummary
|
28
|
+
attr_accessor event_count: ::Integer
|
29
|
+
attr_accessor aggregated_by: ::Array[Types::AggregationKey]
|
30
|
+
attr_accessor aggregated_accounts: Types::SummarizationDimensionOverview
|
31
|
+
attr_accessor aggregated_regions: Types::SummarizationDimensionOverview
|
32
|
+
attr_accessor aggregated_organizational_units: Types::SummarizationDimensionOverview
|
33
|
+
attr_accessor additional_summarization_dimensions: ::Array[Types::SummarizationDimensionOverview]
|
34
|
+
SENSITIVE: []
|
35
|
+
end
|
36
|
+
|
16
37
|
class AssociateChannelRequest
|
17
38
|
attr_accessor arn: ::String
|
18
39
|
attr_accessor notification_configuration_arn: ::String
|
@@ -22,6 +43,24 @@ module Aws::Notifications
|
|
22
43
|
class AssociateChannelResponse < Aws::EmptyStructure
|
23
44
|
end
|
24
45
|
|
46
|
+
class AssociateManagedNotificationAccountContactRequest
|
47
|
+
attr_accessor contact_identifier: ("ACCOUNT_PRIMARY" | "ACCOUNT_ALTERNATE_BILLING" | "ACCOUNT_ALTERNATE_OPERATIONS" | "ACCOUNT_ALTERNATE_SECURITY")
|
48
|
+
attr_accessor managed_notification_configuration_arn: ::String
|
49
|
+
SENSITIVE: []
|
50
|
+
end
|
51
|
+
|
52
|
+
class AssociateManagedNotificationAccountContactResponse < Aws::EmptyStructure
|
53
|
+
end
|
54
|
+
|
55
|
+
class AssociateManagedNotificationAdditionalChannelRequest
|
56
|
+
attr_accessor channel_arn: ::String
|
57
|
+
attr_accessor managed_notification_configuration_arn: ::String
|
58
|
+
SENSITIVE: []
|
59
|
+
end
|
60
|
+
|
61
|
+
class AssociateManagedNotificationAdditionalChannelResponse < Aws::EmptyStructure
|
62
|
+
end
|
63
|
+
|
25
64
|
class ConflictException
|
26
65
|
attr_accessor message: ::String
|
27
66
|
attr_accessor resource_id: ::String
|
@@ -91,6 +130,12 @@ module Aws::Notifications
|
|
91
130
|
SENSITIVE: []
|
92
131
|
end
|
93
132
|
|
133
|
+
class DisableNotificationsAccessForOrganizationRequest < Aws::EmptyStructure
|
134
|
+
end
|
135
|
+
|
136
|
+
class DisableNotificationsAccessForOrganizationResponse < Aws::EmptyStructure
|
137
|
+
end
|
138
|
+
|
94
139
|
class DisassociateChannelRequest
|
95
140
|
attr_accessor arn: ::String
|
96
141
|
attr_accessor notification_configuration_arn: ::String
|
@@ -100,6 +145,30 @@ module Aws::Notifications
|
|
100
145
|
class DisassociateChannelResponse < Aws::EmptyStructure
|
101
146
|
end
|
102
147
|
|
148
|
+
class DisassociateManagedNotificationAccountContactRequest
|
149
|
+
attr_accessor contact_identifier: ("ACCOUNT_PRIMARY" | "ACCOUNT_ALTERNATE_BILLING" | "ACCOUNT_ALTERNATE_OPERATIONS" | "ACCOUNT_ALTERNATE_SECURITY")
|
150
|
+
attr_accessor managed_notification_configuration_arn: ::String
|
151
|
+
SENSITIVE: []
|
152
|
+
end
|
153
|
+
|
154
|
+
class DisassociateManagedNotificationAccountContactResponse < Aws::EmptyStructure
|
155
|
+
end
|
156
|
+
|
157
|
+
class DisassociateManagedNotificationAdditionalChannelRequest
|
158
|
+
attr_accessor channel_arn: ::String
|
159
|
+
attr_accessor managed_notification_configuration_arn: ::String
|
160
|
+
SENSITIVE: []
|
161
|
+
end
|
162
|
+
|
163
|
+
class DisassociateManagedNotificationAdditionalChannelResponse < Aws::EmptyStructure
|
164
|
+
end
|
165
|
+
|
166
|
+
class EnableNotificationsAccessForOrganizationRequest < Aws::EmptyStructure
|
167
|
+
end
|
168
|
+
|
169
|
+
class EnableNotificationsAccessForOrganizationResponse < Aws::EmptyStructure
|
170
|
+
end
|
171
|
+
|
103
172
|
class EventRuleStatusSummary
|
104
173
|
attr_accessor status: ("ACTIVE" | "INACTIVE" | "CREATING" | "UPDATING" | "DELETING")
|
105
174
|
attr_accessor reason: ::String
|
@@ -137,6 +206,48 @@ module Aws::Notifications
|
|
137
206
|
SENSITIVE: []
|
138
207
|
end
|
139
208
|
|
209
|
+
class GetManagedNotificationChildEventRequest
|
210
|
+
attr_accessor arn: ::String
|
211
|
+
attr_accessor locale: ("de_DE" | "en_CA" | "en_US" | "en_UK" | "es_ES" | "fr_CA" | "fr_FR" | "id_ID" | "it_IT" | "ja_JP" | "ko_KR" | "pt_BR" | "tr_TR" | "zh_CN" | "zh_TW")
|
212
|
+
SENSITIVE: []
|
213
|
+
end
|
214
|
+
|
215
|
+
class GetManagedNotificationChildEventResponse
|
216
|
+
attr_accessor arn: ::String
|
217
|
+
attr_accessor managed_notification_configuration_arn: ::String
|
218
|
+
attr_accessor creation_time: ::Time
|
219
|
+
attr_accessor content: Types::ManagedNotificationChildEvent
|
220
|
+
SENSITIVE: []
|
221
|
+
end
|
222
|
+
|
223
|
+
class GetManagedNotificationConfigurationRequest
|
224
|
+
attr_accessor arn: ::String
|
225
|
+
SENSITIVE: []
|
226
|
+
end
|
227
|
+
|
228
|
+
class GetManagedNotificationConfigurationResponse
|
229
|
+
attr_accessor arn: ::String
|
230
|
+
attr_accessor name: ::String
|
231
|
+
attr_accessor description: ::String
|
232
|
+
attr_accessor category: ::String
|
233
|
+
attr_accessor sub_category: ::String
|
234
|
+
SENSITIVE: []
|
235
|
+
end
|
236
|
+
|
237
|
+
class GetManagedNotificationEventRequest
|
238
|
+
attr_accessor arn: ::String
|
239
|
+
attr_accessor locale: ("de_DE" | "en_CA" | "en_US" | "en_UK" | "es_ES" | "fr_CA" | "fr_FR" | "id_ID" | "it_IT" | "ja_JP" | "ko_KR" | "pt_BR" | "tr_TR" | "zh_CN" | "zh_TW")
|
240
|
+
SENSITIVE: []
|
241
|
+
end
|
242
|
+
|
243
|
+
class GetManagedNotificationEventResponse
|
244
|
+
attr_accessor arn: ::String
|
245
|
+
attr_accessor managed_notification_configuration_arn: ::String
|
246
|
+
attr_accessor creation_time: ::Time
|
247
|
+
attr_accessor content: Types::ManagedNotificationEvent
|
248
|
+
SENSITIVE: []
|
249
|
+
end
|
250
|
+
|
140
251
|
class GetNotificationConfigurationRequest
|
141
252
|
attr_accessor arn: ::String
|
142
253
|
SENSITIVE: []
|
@@ -166,6 +277,14 @@ module Aws::Notifications
|
|
166
277
|
SENSITIVE: []
|
167
278
|
end
|
168
279
|
|
280
|
+
class GetNotificationsAccessForOrganizationRequest < Aws::EmptyStructure
|
281
|
+
end
|
282
|
+
|
283
|
+
class GetNotificationsAccessForOrganizationResponse
|
284
|
+
attr_accessor notifications_access_for_organization: Types::NotificationsAccessForOrganization
|
285
|
+
SENSITIVE: []
|
286
|
+
end
|
287
|
+
|
169
288
|
class InternalServerException
|
170
289
|
attr_accessor message: ::String
|
171
290
|
SENSITIVE: []
|
@@ -197,6 +316,68 @@ module Aws::Notifications
|
|
197
316
|
SENSITIVE: []
|
198
317
|
end
|
199
318
|
|
319
|
+
class ListManagedNotificationChannelAssociationsRequest
|
320
|
+
attr_accessor managed_notification_configuration_arn: ::String
|
321
|
+
attr_accessor max_results: ::Integer
|
322
|
+
attr_accessor next_token: ::String
|
323
|
+
SENSITIVE: []
|
324
|
+
end
|
325
|
+
|
326
|
+
class ListManagedNotificationChannelAssociationsResponse
|
327
|
+
attr_accessor next_token: ::String
|
328
|
+
attr_accessor channel_associations: ::Array[Types::ManagedNotificationChannelAssociationSummary]
|
329
|
+
SENSITIVE: []
|
330
|
+
end
|
331
|
+
|
332
|
+
class ListManagedNotificationChildEventsRequest
|
333
|
+
attr_accessor aggregate_managed_notification_event_arn: ::String
|
334
|
+
attr_accessor start_time: ::Time
|
335
|
+
attr_accessor end_time: ::Time
|
336
|
+
attr_accessor locale: ("de_DE" | "en_CA" | "en_US" | "en_UK" | "es_ES" | "fr_CA" | "fr_FR" | "id_ID" | "it_IT" | "ja_JP" | "ko_KR" | "pt_BR" | "tr_TR" | "zh_CN" | "zh_TW")
|
337
|
+
attr_accessor max_results: ::Integer
|
338
|
+
attr_accessor related_account: ::String
|
339
|
+
attr_accessor organizational_unit_id: ::String
|
340
|
+
attr_accessor next_token: ::String
|
341
|
+
SENSITIVE: []
|
342
|
+
end
|
343
|
+
|
344
|
+
class ListManagedNotificationChildEventsResponse
|
345
|
+
attr_accessor next_token: ::String
|
346
|
+
attr_accessor managed_notification_child_events: ::Array[Types::ManagedNotificationChildEventOverview]
|
347
|
+
SENSITIVE: []
|
348
|
+
end
|
349
|
+
|
350
|
+
class ListManagedNotificationConfigurationsRequest
|
351
|
+
attr_accessor channel_identifier: ::String
|
352
|
+
attr_accessor max_results: ::Integer
|
353
|
+
attr_accessor next_token: ::String
|
354
|
+
SENSITIVE: []
|
355
|
+
end
|
356
|
+
|
357
|
+
class ListManagedNotificationConfigurationsResponse
|
358
|
+
attr_accessor next_token: ::String
|
359
|
+
attr_accessor managed_notification_configurations: ::Array[Types::ManagedNotificationConfigurationStructure]
|
360
|
+
SENSITIVE: []
|
361
|
+
end
|
362
|
+
|
363
|
+
class ListManagedNotificationEventsRequest
|
364
|
+
attr_accessor start_time: ::Time
|
365
|
+
attr_accessor end_time: ::Time
|
366
|
+
attr_accessor locale: ("de_DE" | "en_CA" | "en_US" | "en_UK" | "es_ES" | "fr_CA" | "fr_FR" | "id_ID" | "it_IT" | "ja_JP" | "ko_KR" | "pt_BR" | "tr_TR" | "zh_CN" | "zh_TW")
|
367
|
+
attr_accessor source: ::String
|
368
|
+
attr_accessor max_results: ::Integer
|
369
|
+
attr_accessor next_token: ::String
|
370
|
+
attr_accessor organizational_unit_id: ::String
|
371
|
+
attr_accessor related_account: ::String
|
372
|
+
SENSITIVE: []
|
373
|
+
end
|
374
|
+
|
375
|
+
class ListManagedNotificationEventsResponse
|
376
|
+
attr_accessor next_token: ::String
|
377
|
+
attr_accessor managed_notification_events: ::Array[Types::ManagedNotificationEventOverview]
|
378
|
+
SENSITIVE: []
|
379
|
+
end
|
380
|
+
|
200
381
|
class ListNotificationConfigurationsRequest
|
201
382
|
attr_accessor event_rule_source: ::String
|
202
383
|
attr_accessor channel_arn: ::String
|
@@ -252,6 +433,104 @@ module Aws::Notifications
|
|
252
433
|
SENSITIVE: []
|
253
434
|
end
|
254
435
|
|
436
|
+
class ManagedNotificationChannelAssociationSummary
|
437
|
+
attr_accessor channel_identifier: ::String
|
438
|
+
attr_accessor channel_type: ("MOBILE" | "CHATBOT" | "EMAIL" | "ACCOUNT_CONTACT")
|
439
|
+
attr_accessor override_option: ("ENABLED" | "DISABLED")
|
440
|
+
SENSITIVE: []
|
441
|
+
end
|
442
|
+
|
443
|
+
class ManagedNotificationChildEvent
|
444
|
+
attr_accessor schema_version: ("v1.0")
|
445
|
+
attr_accessor id: ::String
|
446
|
+
attr_accessor message_components: Types::MessageComponents
|
447
|
+
attr_accessor source_event_detail_url: ::String
|
448
|
+
attr_accessor source_event_detail_url_display_text: ::String
|
449
|
+
attr_accessor notification_type: ("ALERT" | "WARNING" | "ANNOUNCEMENT" | "INFORMATIONAL")
|
450
|
+
attr_accessor event_status: ("HEALTHY" | "UNHEALTHY")
|
451
|
+
attr_accessor aggregate_managed_notification_event_arn: ::String
|
452
|
+
attr_accessor start_time: ::Time
|
453
|
+
attr_accessor end_time: ::Time
|
454
|
+
attr_accessor text_parts: ::Hash[::String, Types::TextPartValue]
|
455
|
+
attr_accessor organizational_unit_id: ::String
|
456
|
+
attr_accessor aggregation_detail: Types::AggregationDetail
|
457
|
+
SENSITIVE: []
|
458
|
+
end
|
459
|
+
|
460
|
+
class ManagedNotificationChildEventOverview
|
461
|
+
attr_accessor arn: ::String
|
462
|
+
attr_accessor managed_notification_configuration_arn: ::String
|
463
|
+
attr_accessor related_account: ::String
|
464
|
+
attr_accessor creation_time: ::Time
|
465
|
+
attr_accessor child_event: Types::ManagedNotificationChildEventSummary
|
466
|
+
attr_accessor aggregate_managed_notification_event_arn: ::String
|
467
|
+
attr_accessor organizational_unit_id: ::String
|
468
|
+
SENSITIVE: []
|
469
|
+
end
|
470
|
+
|
471
|
+
class ManagedNotificationChildEventSummary
|
472
|
+
attr_accessor schema_version: ("v1.0")
|
473
|
+
attr_accessor source_event_metadata: Types::ManagedSourceEventMetadataSummary
|
474
|
+
attr_accessor message_components: Types::MessageComponentsSummary
|
475
|
+
attr_accessor aggregation_detail: Types::AggregationDetail
|
476
|
+
attr_accessor event_status: ("HEALTHY" | "UNHEALTHY")
|
477
|
+
attr_accessor notification_type: ("ALERT" | "WARNING" | "ANNOUNCEMENT" | "INFORMATIONAL")
|
478
|
+
SENSITIVE: []
|
479
|
+
end
|
480
|
+
|
481
|
+
class ManagedNotificationConfigurationStructure
|
482
|
+
attr_accessor arn: ::String
|
483
|
+
attr_accessor name: ::String
|
484
|
+
attr_accessor description: ::String
|
485
|
+
SENSITIVE: []
|
486
|
+
end
|
487
|
+
|
488
|
+
class ManagedNotificationEvent
|
489
|
+
attr_accessor schema_version: ("v1.0")
|
490
|
+
attr_accessor id: ::String
|
491
|
+
attr_accessor message_components: Types::MessageComponents
|
492
|
+
attr_accessor source_event_detail_url: ::String
|
493
|
+
attr_accessor source_event_detail_url_display_text: ::String
|
494
|
+
attr_accessor notification_type: ("ALERT" | "WARNING" | "ANNOUNCEMENT" | "INFORMATIONAL")
|
495
|
+
attr_accessor event_status: ("HEALTHY" | "UNHEALTHY")
|
496
|
+
attr_accessor aggregation_event_type: ("AGGREGATE" | "CHILD" | "NONE")
|
497
|
+
attr_accessor aggregation_summary: Types::AggregationSummary
|
498
|
+
attr_accessor start_time: ::Time
|
499
|
+
attr_accessor end_time: ::Time
|
500
|
+
attr_accessor text_parts: ::Hash[::String, Types::TextPartValue]
|
501
|
+
attr_accessor organizational_unit_id: ::String
|
502
|
+
SENSITIVE: []
|
503
|
+
end
|
504
|
+
|
505
|
+
class ManagedNotificationEventOverview
|
506
|
+
attr_accessor arn: ::String
|
507
|
+
attr_accessor managed_notification_configuration_arn: ::String
|
508
|
+
attr_accessor related_account: ::String
|
509
|
+
attr_accessor creation_time: ::Time
|
510
|
+
attr_accessor notification_event: Types::ManagedNotificationEventSummary
|
511
|
+
attr_accessor aggregation_event_type: ("AGGREGATE" | "CHILD" | "NONE")
|
512
|
+
attr_accessor organizational_unit_id: ::String
|
513
|
+
attr_accessor aggregation_summary: Types::AggregationSummary
|
514
|
+
attr_accessor aggregated_notification_regions: ::Array[::String]
|
515
|
+
SENSITIVE: []
|
516
|
+
end
|
517
|
+
|
518
|
+
class ManagedNotificationEventSummary
|
519
|
+
attr_accessor schema_version: ("v1.0")
|
520
|
+
attr_accessor source_event_metadata: Types::ManagedSourceEventMetadataSummary
|
521
|
+
attr_accessor message_components: Types::MessageComponentsSummary
|
522
|
+
attr_accessor event_status: ("HEALTHY" | "UNHEALTHY")
|
523
|
+
attr_accessor notification_type: ("ALERT" | "WARNING" | "ANNOUNCEMENT" | "INFORMATIONAL")
|
524
|
+
SENSITIVE: []
|
525
|
+
end
|
526
|
+
|
527
|
+
class ManagedSourceEventMetadataSummary
|
528
|
+
attr_accessor event_origin_region: ::String
|
529
|
+
attr_accessor source: ::String
|
530
|
+
attr_accessor event_type: ::String
|
531
|
+
SENSITIVE: []
|
532
|
+
end
|
533
|
+
|
255
534
|
class MediaElement
|
256
535
|
attr_accessor media_id: ::String
|
257
536
|
attr_accessor type: ("IMAGE")
|
@@ -294,6 +573,7 @@ module Aws::Notifications
|
|
294
573
|
attr_accessor event_status: ("HEALTHY" | "UNHEALTHY")
|
295
574
|
attr_accessor aggregation_event_type: ("AGGREGATE" | "CHILD" | "NONE")
|
296
575
|
attr_accessor aggregate_notification_event_arn: ::String
|
576
|
+
attr_accessor aggregation_summary: Types::AggregationSummary
|
297
577
|
attr_accessor start_time: ::Time
|
298
578
|
attr_accessor end_time: ::Time
|
299
579
|
attr_accessor text_parts: ::Hash[::String, Types::TextPartValue]
|
@@ -309,6 +589,7 @@ module Aws::Notifications
|
|
309
589
|
attr_accessor notification_event: Types::NotificationEventSummary
|
310
590
|
attr_accessor aggregation_event_type: ("AGGREGATE" | "CHILD" | "NONE")
|
311
591
|
attr_accessor aggregate_notification_event_arn: ::String
|
592
|
+
attr_accessor aggregation_summary: Types::AggregationSummary
|
312
593
|
SENSITIVE: []
|
313
594
|
end
|
314
595
|
|
@@ -335,6 +616,11 @@ module Aws::Notifications
|
|
335
616
|
SENSITIVE: []
|
336
617
|
end
|
337
618
|
|
619
|
+
class NotificationsAccessForOrganization
|
620
|
+
attr_accessor access_status: ("ENABLED" | "DISABLED" | "PENDING")
|
621
|
+
SENSITIVE: []
|
622
|
+
end
|
623
|
+
|
338
624
|
class RegisterNotificationHubRequest
|
339
625
|
attr_accessor notification_hub_region: ::String
|
340
626
|
SENSITIVE: []
|
@@ -390,6 +676,19 @@ module Aws::Notifications
|
|
390
676
|
SENSITIVE: []
|
391
677
|
end
|
392
678
|
|
679
|
+
class SummarizationDimensionDetail
|
680
|
+
attr_accessor name: ::String
|
681
|
+
attr_accessor value: ::String
|
682
|
+
SENSITIVE: []
|
683
|
+
end
|
684
|
+
|
685
|
+
class SummarizationDimensionOverview
|
686
|
+
attr_accessor name: ::String
|
687
|
+
attr_accessor count: ::Integer
|
688
|
+
attr_accessor sample_values: ::Array[::String]
|
689
|
+
SENSITIVE: []
|
690
|
+
end
|
691
|
+
|
393
692
|
class TagResourceRequest
|
394
693
|
attr_accessor arn: ::String
|
395
694
|
attr_accessor tags: ::Hash[::String, ::String]
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: aws-sdk-notifications
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.
|
4
|
+
version: 1.2.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Amazon Web Services
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2025-01-
|
11
|
+
date: 2025-01-17 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-core
|