aws-sdk-sesv2 1.43.0 → 1.45.0

Sign up to get free protection for your applications and to get access to all the features.
data/sig/client.rbs ADDED
@@ -0,0 +1,1508 @@
1
+ # WARNING ABOUT GENERATED CODE
2
+ #
3
+ # This file is generated. See the contributing guide for more information:
4
+ # https://github.com/aws/aws-sdk-ruby/blob/version-3/CONTRIBUTING.md
5
+ #
6
+ # WARNING ABOUT GENERATED CODE
7
+
8
+ module Aws
9
+ module SESV2
10
+ class Client < ::Seahorse::Client::Base
11
+ include ::Aws::ClientStubs
12
+
13
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/SESV2/Client.html#initialize-instance_method
14
+ def self.new: (
15
+ ?credentials: untyped,
16
+ ?region: String,
17
+ ?access_key_id: String,
18
+ ?active_endpoint_cache: bool,
19
+ ?adaptive_retry_wait_to_fill: bool,
20
+ ?client_side_monitoring: bool,
21
+ ?client_side_monitoring_client_id: String,
22
+ ?client_side_monitoring_host: String,
23
+ ?client_side_monitoring_port: Integer,
24
+ ?client_side_monitoring_publisher: untyped,
25
+ ?convert_params: bool,
26
+ ?correct_clock_skew: bool,
27
+ ?defaults_mode: String,
28
+ ?disable_host_prefix_injection: bool,
29
+ ?disable_request_compression: bool,
30
+ ?endpoint: String,
31
+ ?endpoint_cache_max_entries: Integer,
32
+ ?endpoint_cache_max_threads: Integer,
33
+ ?endpoint_cache_poll_interval: Integer,
34
+ ?endpoint_discovery: bool,
35
+ ?ignore_configured_endpoint_urls: bool,
36
+ ?log_formatter: untyped,
37
+ ?log_level: Symbol,
38
+ ?logger: untyped,
39
+ ?max_attempts: Integer,
40
+ ?profile: String,
41
+ ?request_min_compression_size_bytes: Integer,
42
+ ?retry_backoff: Proc,
43
+ ?retry_base_delay: Float,
44
+ ?retry_jitter: (:none | :equal | :full | ^(Integer) -> Integer),
45
+ ?retry_limit: Integer,
46
+ ?retry_max_delay: Integer,
47
+ ?retry_mode: ("legacy" | "standard" | "adaptive"),
48
+ ?sdk_ua_app_id: String,
49
+ ?secret_access_key: String,
50
+ ?session_token: String,
51
+ ?stub_responses: untyped,
52
+ ?token_provider: untyped,
53
+ ?use_dualstack_endpoint: bool,
54
+ ?use_fips_endpoint: bool,
55
+ ?validate_params: bool,
56
+ ?endpoint_provider: untyped,
57
+ ?http_proxy: String,
58
+ ?http_open_timeout: (Float | Integer),
59
+ ?http_read_timeout: (Float | Integer),
60
+ ?http_idle_timeout: (Float | Integer),
61
+ ?http_continue_timeout: (Float | Integer),
62
+ ?ssl_timeout: (Float | Integer | nil),
63
+ ?http_wire_trace: bool,
64
+ ?ssl_verify_peer: bool,
65
+ ?ssl_ca_bundle: String,
66
+ ?ssl_ca_directory: String,
67
+ ?ssl_ca_store: String,
68
+ ?on_chunk_received: Proc,
69
+ ?on_chunk_sent: Proc,
70
+ ?raise_response_errors: bool
71
+ ) -> instance
72
+ | (?Hash[Symbol, untyped]) -> instance
73
+
74
+
75
+ interface _BatchGetMetricDataResponseSuccess
76
+ include ::Seahorse::Client::_ResponseSuccess[Types::BatchGetMetricDataResponse]
77
+ def results: () -> ::Array[Types::MetricDataResult]
78
+ def errors: () -> ::Array[Types::MetricDataError]
79
+ end
80
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/SESV2/Client.html#batch_get_metric_data-instance_method
81
+ def batch_get_metric_data: (
82
+ queries: Array[
83
+ {
84
+ id: ::String,
85
+ namespace: ("VDM"),
86
+ metric: ("SEND" | "COMPLAINT" | "PERMANENT_BOUNCE" | "TRANSIENT_BOUNCE" | "OPEN" | "CLICK" | "DELIVERY" | "DELIVERY_OPEN" | "DELIVERY_CLICK" | "DELIVERY_COMPLAINT"),
87
+ dimensions: Hash[("EMAIL_IDENTITY" | "CONFIGURATION_SET" | "ISP"), ::String]?,
88
+ start_date: ::Time,
89
+ end_date: ::Time
90
+ },
91
+ ]
92
+ ) -> _BatchGetMetricDataResponseSuccess
93
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _BatchGetMetricDataResponseSuccess
94
+
95
+ interface _CancelExportJobResponseSuccess
96
+ include ::Seahorse::Client::_ResponseSuccess[Types::CancelExportJobResponse]
97
+ end
98
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/SESV2/Client.html#cancel_export_job-instance_method
99
+ def cancel_export_job: (
100
+ job_id: ::String
101
+ ) -> _CancelExportJobResponseSuccess
102
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CancelExportJobResponseSuccess
103
+
104
+ interface _CreateConfigurationSetResponseSuccess
105
+ include ::Seahorse::Client::_ResponseSuccess[Types::CreateConfigurationSetResponse]
106
+ end
107
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/SESV2/Client.html#create_configuration_set-instance_method
108
+ def create_configuration_set: (
109
+ configuration_set_name: ::String,
110
+ ?tracking_options: {
111
+ custom_redirect_domain: ::String
112
+ },
113
+ ?delivery_options: {
114
+ tls_policy: ("REQUIRE" | "OPTIONAL")?,
115
+ sending_pool_name: ::String?
116
+ },
117
+ ?reputation_options: {
118
+ reputation_metrics_enabled: bool?,
119
+ last_fresh_start: ::Time?
120
+ },
121
+ ?sending_options: {
122
+ sending_enabled: bool?
123
+ },
124
+ ?tags: Array[
125
+ {
126
+ key: ::String,
127
+ value: ::String
128
+ },
129
+ ],
130
+ ?suppression_options: {
131
+ suppressed_reasons: Array[("BOUNCE" | "COMPLAINT")]?
132
+ },
133
+ ?vdm_options: {
134
+ dashboard_options: {
135
+ engagement_metrics: ("ENABLED" | "DISABLED")?
136
+ }?,
137
+ guardian_options: {
138
+ optimized_shared_delivery: ("ENABLED" | "DISABLED")?
139
+ }?
140
+ }
141
+ ) -> _CreateConfigurationSetResponseSuccess
142
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateConfigurationSetResponseSuccess
143
+
144
+ interface _CreateConfigurationSetEventDestinationResponseSuccess
145
+ include ::Seahorse::Client::_ResponseSuccess[Types::CreateConfigurationSetEventDestinationResponse]
146
+ end
147
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/SESV2/Client.html#create_configuration_set_event_destination-instance_method
148
+ def create_configuration_set_event_destination: (
149
+ configuration_set_name: ::String,
150
+ event_destination_name: ::String,
151
+ event_destination: {
152
+ enabled: bool?,
153
+ matching_event_types: Array[("SEND" | "REJECT" | "BOUNCE" | "COMPLAINT" | "DELIVERY" | "OPEN" | "CLICK" | "RENDERING_FAILURE" | "DELIVERY_DELAY" | "SUBSCRIPTION")]?,
154
+ kinesis_firehose_destination: {
155
+ iam_role_arn: ::String,
156
+ delivery_stream_arn: ::String
157
+ }?,
158
+ cloud_watch_destination: {
159
+ dimension_configurations: Array[
160
+ {
161
+ dimension_name: ::String,
162
+ dimension_value_source: ("MESSAGE_TAG" | "EMAIL_HEADER" | "LINK_TAG"),
163
+ default_dimension_value: ::String
164
+ },
165
+ ]
166
+ }?,
167
+ sns_destination: {
168
+ topic_arn: ::String
169
+ }?,
170
+ pinpoint_destination: {
171
+ application_arn: ::String?
172
+ }?
173
+ }
174
+ ) -> _CreateConfigurationSetEventDestinationResponseSuccess
175
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateConfigurationSetEventDestinationResponseSuccess
176
+
177
+ interface _CreateContactResponseSuccess
178
+ include ::Seahorse::Client::_ResponseSuccess[Types::CreateContactResponse]
179
+ end
180
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/SESV2/Client.html#create_contact-instance_method
181
+ def create_contact: (
182
+ contact_list_name: ::String,
183
+ email_address: ::String,
184
+ ?topic_preferences: Array[
185
+ {
186
+ topic_name: ::String,
187
+ subscription_status: ("OPT_IN" | "OPT_OUT")
188
+ },
189
+ ],
190
+ ?unsubscribe_all: bool,
191
+ ?attributes_data: ::String
192
+ ) -> _CreateContactResponseSuccess
193
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateContactResponseSuccess
194
+
195
+ interface _CreateContactListResponseSuccess
196
+ include ::Seahorse::Client::_ResponseSuccess[Types::CreateContactListResponse]
197
+ end
198
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/SESV2/Client.html#create_contact_list-instance_method
199
+ def create_contact_list: (
200
+ contact_list_name: ::String,
201
+ ?topics: Array[
202
+ {
203
+ topic_name: ::String,
204
+ display_name: ::String,
205
+ description: ::String?,
206
+ default_subscription_status: ("OPT_IN" | "OPT_OUT")
207
+ },
208
+ ],
209
+ ?description: ::String,
210
+ ?tags: Array[
211
+ {
212
+ key: ::String,
213
+ value: ::String
214
+ },
215
+ ]
216
+ ) -> _CreateContactListResponseSuccess
217
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateContactListResponseSuccess
218
+
219
+ interface _CreateCustomVerificationEmailTemplateResponseSuccess
220
+ include ::Seahorse::Client::_ResponseSuccess[Types::CreateCustomVerificationEmailTemplateResponse]
221
+ end
222
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/SESV2/Client.html#create_custom_verification_email_template-instance_method
223
+ def create_custom_verification_email_template: (
224
+ template_name: ::String,
225
+ from_email_address: ::String,
226
+ template_subject: ::String,
227
+ template_content: ::String,
228
+ success_redirection_url: ::String,
229
+ failure_redirection_url: ::String
230
+ ) -> _CreateCustomVerificationEmailTemplateResponseSuccess
231
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateCustomVerificationEmailTemplateResponseSuccess
232
+
233
+ interface _CreateDedicatedIpPoolResponseSuccess
234
+ include ::Seahorse::Client::_ResponseSuccess[Types::CreateDedicatedIpPoolResponse]
235
+ end
236
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/SESV2/Client.html#create_dedicated_ip_pool-instance_method
237
+ def create_dedicated_ip_pool: (
238
+ pool_name: ::String,
239
+ ?tags: Array[
240
+ {
241
+ key: ::String,
242
+ value: ::String
243
+ },
244
+ ],
245
+ ?scaling_mode: ("STANDARD" | "MANAGED")
246
+ ) -> _CreateDedicatedIpPoolResponseSuccess
247
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateDedicatedIpPoolResponseSuccess
248
+
249
+ interface _CreateDeliverabilityTestReportResponseSuccess
250
+ include ::Seahorse::Client::_ResponseSuccess[Types::CreateDeliverabilityTestReportResponse]
251
+ def report_id: () -> ::String
252
+ def deliverability_test_status: () -> ("IN_PROGRESS" | "COMPLETED")
253
+ end
254
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/SESV2/Client.html#create_deliverability_test_report-instance_method
255
+ def create_deliverability_test_report: (
256
+ ?report_name: ::String,
257
+ from_email_address: ::String,
258
+ content: {
259
+ simple: {
260
+ subject: {
261
+ data: ::String,
262
+ charset: ::String?
263
+ },
264
+ body: {
265
+ text: {
266
+ data: ::String,
267
+ charset: ::String?
268
+ }?,
269
+ html: {
270
+ data: ::String,
271
+ charset: ::String?
272
+ }?
273
+ },
274
+ headers: Array[
275
+ {
276
+ name: ::String,
277
+ value: ::String
278
+ },
279
+ ]?
280
+ }?,
281
+ raw: {
282
+ data: ::String
283
+ }?,
284
+ template: {
285
+ template_name: ::String?,
286
+ template_arn: ::String?,
287
+ template_data: ::String?,
288
+ headers: Array[
289
+ {
290
+ name: ::String,
291
+ value: ::String
292
+ },
293
+ ]?
294
+ }?
295
+ },
296
+ ?tags: Array[
297
+ {
298
+ key: ::String,
299
+ value: ::String
300
+ },
301
+ ]
302
+ ) -> _CreateDeliverabilityTestReportResponseSuccess
303
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateDeliverabilityTestReportResponseSuccess
304
+
305
+ interface _CreateEmailIdentityResponseSuccess
306
+ include ::Seahorse::Client::_ResponseSuccess[Types::CreateEmailIdentityResponse]
307
+ def identity_type: () -> ("EMAIL_ADDRESS" | "DOMAIN" | "MANAGED_DOMAIN")
308
+ def verified_for_sending_status: () -> bool
309
+ def dkim_attributes: () -> Types::DkimAttributes
310
+ end
311
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/SESV2/Client.html#create_email_identity-instance_method
312
+ def create_email_identity: (
313
+ email_identity: ::String,
314
+ ?tags: Array[
315
+ {
316
+ key: ::String,
317
+ value: ::String
318
+ },
319
+ ],
320
+ ?dkim_signing_attributes: {
321
+ domain_signing_selector: ::String?,
322
+ domain_signing_private_key: ::String?,
323
+ next_signing_key_length: ("RSA_1024_BIT" | "RSA_2048_BIT")?
324
+ },
325
+ ?configuration_set_name: ::String
326
+ ) -> _CreateEmailIdentityResponseSuccess
327
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateEmailIdentityResponseSuccess
328
+
329
+ interface _CreateEmailIdentityPolicyResponseSuccess
330
+ include ::Seahorse::Client::_ResponseSuccess[Types::CreateEmailIdentityPolicyResponse]
331
+ end
332
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/SESV2/Client.html#create_email_identity_policy-instance_method
333
+ def create_email_identity_policy: (
334
+ email_identity: ::String,
335
+ policy_name: ::String,
336
+ policy: ::String
337
+ ) -> _CreateEmailIdentityPolicyResponseSuccess
338
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateEmailIdentityPolicyResponseSuccess
339
+
340
+ interface _CreateEmailTemplateResponseSuccess
341
+ include ::Seahorse::Client::_ResponseSuccess[Types::CreateEmailTemplateResponse]
342
+ end
343
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/SESV2/Client.html#create_email_template-instance_method
344
+ def create_email_template: (
345
+ template_name: ::String,
346
+ template_content: {
347
+ subject: ::String?,
348
+ text: ::String?,
349
+ html: ::String?
350
+ }
351
+ ) -> _CreateEmailTemplateResponseSuccess
352
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateEmailTemplateResponseSuccess
353
+
354
+ interface _CreateExportJobResponseSuccess
355
+ include ::Seahorse::Client::_ResponseSuccess[Types::CreateExportJobResponse]
356
+ def job_id: () -> ::String
357
+ end
358
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/SESV2/Client.html#create_export_job-instance_method
359
+ def create_export_job: (
360
+ export_data_source: {
361
+ metrics_data_source: {
362
+ dimensions: Hash[("EMAIL_IDENTITY" | "CONFIGURATION_SET" | "ISP"), Array[::String]],
363
+ namespace: ("VDM"),
364
+ metrics: Array[
365
+ {
366
+ name: ("SEND" | "COMPLAINT" | "PERMANENT_BOUNCE" | "TRANSIENT_BOUNCE" | "OPEN" | "CLICK" | "DELIVERY" | "DELIVERY_OPEN" | "DELIVERY_CLICK" | "DELIVERY_COMPLAINT")?,
367
+ aggregation: ("RATE" | "VOLUME")?
368
+ },
369
+ ],
370
+ start_date: ::Time,
371
+ end_date: ::Time
372
+ }?,
373
+ message_insights_data_source: {
374
+ start_date: ::Time,
375
+ end_date: ::Time,
376
+ include: {
377
+ from_email_address: Array[::String]?,
378
+ destination: Array[::String]?,
379
+ subject: Array[::String]?,
380
+ isp: Array[::String]?,
381
+ last_delivery_event: Array[("SEND" | "DELIVERY" | "TRANSIENT_BOUNCE" | "PERMANENT_BOUNCE" | "UNDETERMINED_BOUNCE" | "COMPLAINT")]?,
382
+ last_engagement_event: Array[("OPEN" | "CLICK")]?
383
+ }?,
384
+ exclude: {
385
+ from_email_address: Array[::String]?,
386
+ destination: Array[::String]?,
387
+ subject: Array[::String]?,
388
+ isp: Array[::String]?,
389
+ last_delivery_event: Array[("SEND" | "DELIVERY" | "TRANSIENT_BOUNCE" | "PERMANENT_BOUNCE" | "UNDETERMINED_BOUNCE" | "COMPLAINT")]?,
390
+ last_engagement_event: Array[("OPEN" | "CLICK")]?
391
+ }?,
392
+ max_results: ::Integer?
393
+ }?
394
+ },
395
+ export_destination: {
396
+ data_format: ("CSV" | "JSON"),
397
+ s3_url: ::String?
398
+ }
399
+ ) -> _CreateExportJobResponseSuccess
400
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateExportJobResponseSuccess
401
+
402
+ interface _CreateImportJobResponseSuccess
403
+ include ::Seahorse::Client::_ResponseSuccess[Types::CreateImportJobResponse]
404
+ def job_id: () -> ::String
405
+ end
406
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/SESV2/Client.html#create_import_job-instance_method
407
+ def create_import_job: (
408
+ import_destination: {
409
+ suppression_list_destination: {
410
+ suppression_list_import_action: ("DELETE" | "PUT")
411
+ }?,
412
+ contact_list_destination: {
413
+ contact_list_name: ::String,
414
+ contact_list_import_action: ("DELETE" | "PUT")
415
+ }?
416
+ },
417
+ import_data_source: {
418
+ s3_url: ::String,
419
+ data_format: ("CSV" | "JSON")
420
+ }
421
+ ) -> _CreateImportJobResponseSuccess
422
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateImportJobResponseSuccess
423
+
424
+ interface _DeleteConfigurationSetResponseSuccess
425
+ include ::Seahorse::Client::_ResponseSuccess[Types::DeleteConfigurationSetResponse]
426
+ end
427
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/SESV2/Client.html#delete_configuration_set-instance_method
428
+ def delete_configuration_set: (
429
+ configuration_set_name: ::String
430
+ ) -> _DeleteConfigurationSetResponseSuccess
431
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DeleteConfigurationSetResponseSuccess
432
+
433
+ interface _DeleteConfigurationSetEventDestinationResponseSuccess
434
+ include ::Seahorse::Client::_ResponseSuccess[Types::DeleteConfigurationSetEventDestinationResponse]
435
+ end
436
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/SESV2/Client.html#delete_configuration_set_event_destination-instance_method
437
+ def delete_configuration_set_event_destination: (
438
+ configuration_set_name: ::String,
439
+ event_destination_name: ::String
440
+ ) -> _DeleteConfigurationSetEventDestinationResponseSuccess
441
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DeleteConfigurationSetEventDestinationResponseSuccess
442
+
443
+ interface _DeleteContactResponseSuccess
444
+ include ::Seahorse::Client::_ResponseSuccess[Types::DeleteContactResponse]
445
+ end
446
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/SESV2/Client.html#delete_contact-instance_method
447
+ def delete_contact: (
448
+ contact_list_name: ::String,
449
+ email_address: ::String
450
+ ) -> _DeleteContactResponseSuccess
451
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DeleteContactResponseSuccess
452
+
453
+ interface _DeleteContactListResponseSuccess
454
+ include ::Seahorse::Client::_ResponseSuccess[Types::DeleteContactListResponse]
455
+ end
456
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/SESV2/Client.html#delete_contact_list-instance_method
457
+ def delete_contact_list: (
458
+ contact_list_name: ::String
459
+ ) -> _DeleteContactListResponseSuccess
460
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DeleteContactListResponseSuccess
461
+
462
+ interface _DeleteCustomVerificationEmailTemplateResponseSuccess
463
+ include ::Seahorse::Client::_ResponseSuccess[Types::DeleteCustomVerificationEmailTemplateResponse]
464
+ end
465
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/SESV2/Client.html#delete_custom_verification_email_template-instance_method
466
+ def delete_custom_verification_email_template: (
467
+ template_name: ::String
468
+ ) -> _DeleteCustomVerificationEmailTemplateResponseSuccess
469
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DeleteCustomVerificationEmailTemplateResponseSuccess
470
+
471
+ interface _DeleteDedicatedIpPoolResponseSuccess
472
+ include ::Seahorse::Client::_ResponseSuccess[Types::DeleteDedicatedIpPoolResponse]
473
+ end
474
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/SESV2/Client.html#delete_dedicated_ip_pool-instance_method
475
+ def delete_dedicated_ip_pool: (
476
+ pool_name: ::String
477
+ ) -> _DeleteDedicatedIpPoolResponseSuccess
478
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DeleteDedicatedIpPoolResponseSuccess
479
+
480
+ interface _DeleteEmailIdentityResponseSuccess
481
+ include ::Seahorse::Client::_ResponseSuccess[Types::DeleteEmailIdentityResponse]
482
+ end
483
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/SESV2/Client.html#delete_email_identity-instance_method
484
+ def delete_email_identity: (
485
+ email_identity: ::String
486
+ ) -> _DeleteEmailIdentityResponseSuccess
487
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DeleteEmailIdentityResponseSuccess
488
+
489
+ interface _DeleteEmailIdentityPolicyResponseSuccess
490
+ include ::Seahorse::Client::_ResponseSuccess[Types::DeleteEmailIdentityPolicyResponse]
491
+ end
492
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/SESV2/Client.html#delete_email_identity_policy-instance_method
493
+ def delete_email_identity_policy: (
494
+ email_identity: ::String,
495
+ policy_name: ::String
496
+ ) -> _DeleteEmailIdentityPolicyResponseSuccess
497
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DeleteEmailIdentityPolicyResponseSuccess
498
+
499
+ interface _DeleteEmailTemplateResponseSuccess
500
+ include ::Seahorse::Client::_ResponseSuccess[Types::DeleteEmailTemplateResponse]
501
+ end
502
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/SESV2/Client.html#delete_email_template-instance_method
503
+ def delete_email_template: (
504
+ template_name: ::String
505
+ ) -> _DeleteEmailTemplateResponseSuccess
506
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DeleteEmailTemplateResponseSuccess
507
+
508
+ interface _DeleteSuppressedDestinationResponseSuccess
509
+ include ::Seahorse::Client::_ResponseSuccess[Types::DeleteSuppressedDestinationResponse]
510
+ end
511
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/SESV2/Client.html#delete_suppressed_destination-instance_method
512
+ def delete_suppressed_destination: (
513
+ email_address: ::String
514
+ ) -> _DeleteSuppressedDestinationResponseSuccess
515
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DeleteSuppressedDestinationResponseSuccess
516
+
517
+ interface _GetAccountResponseSuccess
518
+ include ::Seahorse::Client::_ResponseSuccess[Types::GetAccountResponse]
519
+ def dedicated_ip_auto_warmup_enabled: () -> bool
520
+ def enforcement_status: () -> ::String
521
+ def production_access_enabled: () -> bool
522
+ def send_quota: () -> Types::SendQuota
523
+ def sending_enabled: () -> bool
524
+ def suppression_attributes: () -> Types::SuppressionAttributes
525
+ def details: () -> Types::AccountDetails
526
+ def vdm_attributes: () -> Types::VdmAttributes
527
+ end
528
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/SESV2/Client.html#get_account-instance_method
529
+ def get_account: (
530
+ ) -> _GetAccountResponseSuccess
531
+ | (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetAccountResponseSuccess
532
+
533
+ interface _GetBlacklistReportsResponseSuccess
534
+ include ::Seahorse::Client::_ResponseSuccess[Types::GetBlacklistReportsResponse]
535
+ def blacklist_report: () -> ::Hash[::String, ::Array[Types::BlacklistEntry]]
536
+ end
537
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/SESV2/Client.html#get_blacklist_reports-instance_method
538
+ def get_blacklist_reports: (
539
+ blacklist_item_names: Array[::String]
540
+ ) -> _GetBlacklistReportsResponseSuccess
541
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetBlacklistReportsResponseSuccess
542
+
543
+ interface _GetConfigurationSetResponseSuccess
544
+ include ::Seahorse::Client::_ResponseSuccess[Types::GetConfigurationSetResponse]
545
+ def configuration_set_name: () -> ::String
546
+ def tracking_options: () -> Types::TrackingOptions
547
+ def delivery_options: () -> Types::DeliveryOptions
548
+ def reputation_options: () -> Types::ReputationOptions
549
+ def sending_options: () -> Types::SendingOptions
550
+ def tags: () -> ::Array[Types::Tag]
551
+ def suppression_options: () -> Types::SuppressionOptions
552
+ def vdm_options: () -> Types::VdmOptions
553
+ end
554
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/SESV2/Client.html#get_configuration_set-instance_method
555
+ def get_configuration_set: (
556
+ configuration_set_name: ::String
557
+ ) -> _GetConfigurationSetResponseSuccess
558
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetConfigurationSetResponseSuccess
559
+
560
+ interface _GetConfigurationSetEventDestinationsResponseSuccess
561
+ include ::Seahorse::Client::_ResponseSuccess[Types::GetConfigurationSetEventDestinationsResponse]
562
+ def event_destinations: () -> ::Array[Types::EventDestination]
563
+ end
564
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/SESV2/Client.html#get_configuration_set_event_destinations-instance_method
565
+ def get_configuration_set_event_destinations: (
566
+ configuration_set_name: ::String
567
+ ) -> _GetConfigurationSetEventDestinationsResponseSuccess
568
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetConfigurationSetEventDestinationsResponseSuccess
569
+
570
+ interface _GetContactResponseSuccess
571
+ include ::Seahorse::Client::_ResponseSuccess[Types::GetContactResponse]
572
+ def contact_list_name: () -> ::String
573
+ def email_address: () -> ::String
574
+ def topic_preferences: () -> ::Array[Types::TopicPreference]
575
+ def topic_default_preferences: () -> ::Array[Types::TopicPreference]
576
+ def unsubscribe_all: () -> bool
577
+ def attributes_data: () -> ::String
578
+ def created_timestamp: () -> ::Time
579
+ def last_updated_timestamp: () -> ::Time
580
+ end
581
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/SESV2/Client.html#get_contact-instance_method
582
+ def get_contact: (
583
+ contact_list_name: ::String,
584
+ email_address: ::String
585
+ ) -> _GetContactResponseSuccess
586
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetContactResponseSuccess
587
+
588
+ interface _GetContactListResponseSuccess
589
+ include ::Seahorse::Client::_ResponseSuccess[Types::GetContactListResponse]
590
+ def contact_list_name: () -> ::String
591
+ def topics: () -> ::Array[Types::Topic]
592
+ def description: () -> ::String
593
+ def created_timestamp: () -> ::Time
594
+ def last_updated_timestamp: () -> ::Time
595
+ def tags: () -> ::Array[Types::Tag]
596
+ end
597
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/SESV2/Client.html#get_contact_list-instance_method
598
+ def get_contact_list: (
599
+ contact_list_name: ::String
600
+ ) -> _GetContactListResponseSuccess
601
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetContactListResponseSuccess
602
+
603
+ interface _GetCustomVerificationEmailTemplateResponseSuccess
604
+ include ::Seahorse::Client::_ResponseSuccess[Types::GetCustomVerificationEmailTemplateResponse]
605
+ def template_name: () -> ::String
606
+ def from_email_address: () -> ::String
607
+ def template_subject: () -> ::String
608
+ def template_content: () -> ::String
609
+ def success_redirection_url: () -> ::String
610
+ def failure_redirection_url: () -> ::String
611
+ end
612
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/SESV2/Client.html#get_custom_verification_email_template-instance_method
613
+ def get_custom_verification_email_template: (
614
+ template_name: ::String
615
+ ) -> _GetCustomVerificationEmailTemplateResponseSuccess
616
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetCustomVerificationEmailTemplateResponseSuccess
617
+
618
+ interface _GetDedicatedIpResponseSuccess
619
+ include ::Seahorse::Client::_ResponseSuccess[Types::GetDedicatedIpResponse]
620
+ def dedicated_ip: () -> Types::DedicatedIp
621
+ end
622
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/SESV2/Client.html#get_dedicated_ip-instance_method
623
+ def get_dedicated_ip: (
624
+ ip: ::String
625
+ ) -> _GetDedicatedIpResponseSuccess
626
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetDedicatedIpResponseSuccess
627
+
628
+ interface _GetDedicatedIpPoolResponseSuccess
629
+ include ::Seahorse::Client::_ResponseSuccess[Types::GetDedicatedIpPoolResponse]
630
+ def dedicated_ip_pool: () -> Types::DedicatedIpPool
631
+ end
632
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/SESV2/Client.html#get_dedicated_ip_pool-instance_method
633
+ def get_dedicated_ip_pool: (
634
+ pool_name: ::String
635
+ ) -> _GetDedicatedIpPoolResponseSuccess
636
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetDedicatedIpPoolResponseSuccess
637
+
638
+ interface _GetDedicatedIpsResponseSuccess
639
+ include ::Seahorse::Client::_ResponseSuccess[Types::GetDedicatedIpsResponse]
640
+ def dedicated_ips: () -> ::Array[Types::DedicatedIp]
641
+ def next_token: () -> ::String
642
+ end
643
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/SESV2/Client.html#get_dedicated_ips-instance_method
644
+ def get_dedicated_ips: (
645
+ ?pool_name: ::String,
646
+ ?next_token: ::String,
647
+ ?page_size: ::Integer
648
+ ) -> _GetDedicatedIpsResponseSuccess
649
+ | (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetDedicatedIpsResponseSuccess
650
+
651
+ interface _GetDeliverabilityDashboardOptionsResponseSuccess
652
+ include ::Seahorse::Client::_ResponseSuccess[Types::GetDeliverabilityDashboardOptionsResponse]
653
+ def dashboard_enabled: () -> bool
654
+ def subscription_expiry_date: () -> ::Time
655
+ def account_status: () -> ("ACTIVE" | "PENDING_EXPIRATION" | "DISABLED")
656
+ def active_subscribed_domains: () -> ::Array[Types::DomainDeliverabilityTrackingOption]
657
+ def pending_expiration_subscribed_domains: () -> ::Array[Types::DomainDeliverabilityTrackingOption]
658
+ end
659
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/SESV2/Client.html#get_deliverability_dashboard_options-instance_method
660
+ def get_deliverability_dashboard_options: (
661
+ ) -> _GetDeliverabilityDashboardOptionsResponseSuccess
662
+ | (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetDeliverabilityDashboardOptionsResponseSuccess
663
+
664
+ interface _GetDeliverabilityTestReportResponseSuccess
665
+ include ::Seahorse::Client::_ResponseSuccess[Types::GetDeliverabilityTestReportResponse]
666
+ def deliverability_test_report: () -> Types::DeliverabilityTestReport
667
+ def overall_placement: () -> Types::PlacementStatistics
668
+ def isp_placements: () -> ::Array[Types::IspPlacement]
669
+ def message: () -> ::String
670
+ def tags: () -> ::Array[Types::Tag]
671
+ end
672
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/SESV2/Client.html#get_deliverability_test_report-instance_method
673
+ def get_deliverability_test_report: (
674
+ report_id: ::String
675
+ ) -> _GetDeliverabilityTestReportResponseSuccess
676
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetDeliverabilityTestReportResponseSuccess
677
+
678
+ interface _GetDomainDeliverabilityCampaignResponseSuccess
679
+ include ::Seahorse::Client::_ResponseSuccess[Types::GetDomainDeliverabilityCampaignResponse]
680
+ def domain_deliverability_campaign: () -> Types::DomainDeliverabilityCampaign
681
+ end
682
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/SESV2/Client.html#get_domain_deliverability_campaign-instance_method
683
+ def get_domain_deliverability_campaign: (
684
+ campaign_id: ::String
685
+ ) -> _GetDomainDeliverabilityCampaignResponseSuccess
686
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetDomainDeliverabilityCampaignResponseSuccess
687
+
688
+ interface _GetDomainStatisticsReportResponseSuccess
689
+ include ::Seahorse::Client::_ResponseSuccess[Types::GetDomainStatisticsReportResponse]
690
+ def overall_volume: () -> Types::OverallVolume
691
+ def daily_volumes: () -> ::Array[Types::DailyVolume]
692
+ end
693
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/SESV2/Client.html#get_domain_statistics_report-instance_method
694
+ def get_domain_statistics_report: (
695
+ domain: ::String,
696
+ start_date: ::Time,
697
+ end_date: ::Time
698
+ ) -> _GetDomainStatisticsReportResponseSuccess
699
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetDomainStatisticsReportResponseSuccess
700
+
701
+ interface _GetEmailIdentityResponseSuccess
702
+ include ::Seahorse::Client::_ResponseSuccess[Types::GetEmailIdentityResponse]
703
+ def identity_type: () -> ("EMAIL_ADDRESS" | "DOMAIN" | "MANAGED_DOMAIN")
704
+ def feedback_forwarding_status: () -> bool
705
+ def verified_for_sending_status: () -> bool
706
+ def dkim_attributes: () -> Types::DkimAttributes
707
+ def mail_from_attributes: () -> Types::MailFromAttributes
708
+ def policies: () -> ::Hash[::String, ::String]
709
+ def tags: () -> ::Array[Types::Tag]
710
+ def configuration_set_name: () -> ::String
711
+ def verification_status: () -> ("PENDING" | "SUCCESS" | "FAILED" | "TEMPORARY_FAILURE" | "NOT_STARTED")
712
+ def verification_info: () -> Types::VerificationInfo
713
+ end
714
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/SESV2/Client.html#get_email_identity-instance_method
715
+ def get_email_identity: (
716
+ email_identity: ::String
717
+ ) -> _GetEmailIdentityResponseSuccess
718
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetEmailIdentityResponseSuccess
719
+
720
+ interface _GetEmailIdentityPoliciesResponseSuccess
721
+ include ::Seahorse::Client::_ResponseSuccess[Types::GetEmailIdentityPoliciesResponse]
722
+ def policies: () -> ::Hash[::String, ::String]
723
+ end
724
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/SESV2/Client.html#get_email_identity_policies-instance_method
725
+ def get_email_identity_policies: (
726
+ email_identity: ::String
727
+ ) -> _GetEmailIdentityPoliciesResponseSuccess
728
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetEmailIdentityPoliciesResponseSuccess
729
+
730
+ interface _GetEmailTemplateResponseSuccess
731
+ include ::Seahorse::Client::_ResponseSuccess[Types::GetEmailTemplateResponse]
732
+ def template_name: () -> ::String
733
+ def template_content: () -> Types::EmailTemplateContent
734
+ end
735
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/SESV2/Client.html#get_email_template-instance_method
736
+ def get_email_template: (
737
+ template_name: ::String
738
+ ) -> _GetEmailTemplateResponseSuccess
739
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetEmailTemplateResponseSuccess
740
+
741
+ interface _GetExportJobResponseSuccess
742
+ include ::Seahorse::Client::_ResponseSuccess[Types::GetExportJobResponse]
743
+ def job_id: () -> ::String
744
+ def export_source_type: () -> ("METRICS_DATA" | "MESSAGE_INSIGHTS")
745
+ def job_status: () -> ("CREATED" | "PROCESSING" | "COMPLETED" | "FAILED" | "CANCELLED")
746
+ def export_destination: () -> Types::ExportDestination
747
+ def export_data_source: () -> Types::ExportDataSource
748
+ def created_timestamp: () -> ::Time
749
+ def completed_timestamp: () -> ::Time
750
+ def failure_info: () -> Types::FailureInfo
751
+ def statistics: () -> Types::ExportStatistics
752
+ end
753
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/SESV2/Client.html#get_export_job-instance_method
754
+ def get_export_job: (
755
+ job_id: ::String
756
+ ) -> _GetExportJobResponseSuccess
757
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetExportJobResponseSuccess
758
+
759
+ interface _GetImportJobResponseSuccess
760
+ include ::Seahorse::Client::_ResponseSuccess[Types::GetImportJobResponse]
761
+ def job_id: () -> ::String
762
+ def import_destination: () -> Types::ImportDestination
763
+ def import_data_source: () -> Types::ImportDataSource
764
+ def failure_info: () -> Types::FailureInfo
765
+ def job_status: () -> ("CREATED" | "PROCESSING" | "COMPLETED" | "FAILED" | "CANCELLED")
766
+ def created_timestamp: () -> ::Time
767
+ def completed_timestamp: () -> ::Time
768
+ def processed_records_count: () -> ::Integer
769
+ def failed_records_count: () -> ::Integer
770
+ end
771
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/SESV2/Client.html#get_import_job-instance_method
772
+ def get_import_job: (
773
+ job_id: ::String
774
+ ) -> _GetImportJobResponseSuccess
775
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetImportJobResponseSuccess
776
+
777
+ interface _GetMessageInsightsResponseSuccess
778
+ include ::Seahorse::Client::_ResponseSuccess[Types::GetMessageInsightsResponse]
779
+ def message_id: () -> ::String
780
+ def from_email_address: () -> ::String
781
+ def subject: () -> ::String
782
+ def email_tags: () -> ::Array[Types::MessageTag]
783
+ def insights: () -> ::Array[Types::EmailInsights]
784
+ end
785
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/SESV2/Client.html#get_message_insights-instance_method
786
+ def get_message_insights: (
787
+ message_id: ::String
788
+ ) -> _GetMessageInsightsResponseSuccess
789
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetMessageInsightsResponseSuccess
790
+
791
+ interface _GetSuppressedDestinationResponseSuccess
792
+ include ::Seahorse::Client::_ResponseSuccess[Types::GetSuppressedDestinationResponse]
793
+ def suppressed_destination: () -> Types::SuppressedDestination
794
+ end
795
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/SESV2/Client.html#get_suppressed_destination-instance_method
796
+ def get_suppressed_destination: (
797
+ email_address: ::String
798
+ ) -> _GetSuppressedDestinationResponseSuccess
799
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetSuppressedDestinationResponseSuccess
800
+
801
+ interface _ListConfigurationSetsResponseSuccess
802
+ include ::Seahorse::Client::_ResponseSuccess[Types::ListConfigurationSetsResponse]
803
+ def configuration_sets: () -> ::Array[::String]
804
+ def next_token: () -> ::String
805
+ end
806
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/SESV2/Client.html#list_configuration_sets-instance_method
807
+ def list_configuration_sets: (
808
+ ?next_token: ::String,
809
+ ?page_size: ::Integer
810
+ ) -> _ListConfigurationSetsResponseSuccess
811
+ | (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListConfigurationSetsResponseSuccess
812
+
813
+ interface _ListContactListsResponseSuccess
814
+ include ::Seahorse::Client::_ResponseSuccess[Types::ListContactListsResponse]
815
+ def contact_lists: () -> ::Array[Types::ContactList]
816
+ def next_token: () -> ::String
817
+ end
818
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/SESV2/Client.html#list_contact_lists-instance_method
819
+ def list_contact_lists: (
820
+ ?page_size: ::Integer,
821
+ ?next_token: ::String
822
+ ) -> _ListContactListsResponseSuccess
823
+ | (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListContactListsResponseSuccess
824
+
825
+ interface _ListContactsResponseSuccess
826
+ include ::Seahorse::Client::_ResponseSuccess[Types::ListContactsResponse]
827
+ def contacts: () -> ::Array[Types::Contact]
828
+ def next_token: () -> ::String
829
+ end
830
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/SESV2/Client.html#list_contacts-instance_method
831
+ def list_contacts: (
832
+ contact_list_name: ::String,
833
+ ?filter: {
834
+ filtered_status: ("OPT_IN" | "OPT_OUT")?,
835
+ topic_filter: {
836
+ topic_name: ::String?,
837
+ use_default_if_preference_unavailable: bool?
838
+ }?
839
+ },
840
+ ?page_size: ::Integer,
841
+ ?next_token: ::String
842
+ ) -> _ListContactsResponseSuccess
843
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListContactsResponseSuccess
844
+
845
+ interface _ListCustomVerificationEmailTemplatesResponseSuccess
846
+ include ::Seahorse::Client::_ResponseSuccess[Types::ListCustomVerificationEmailTemplatesResponse]
847
+ def custom_verification_email_templates: () -> ::Array[Types::CustomVerificationEmailTemplateMetadata]
848
+ def next_token: () -> ::String
849
+ end
850
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/SESV2/Client.html#list_custom_verification_email_templates-instance_method
851
+ def list_custom_verification_email_templates: (
852
+ ?next_token: ::String,
853
+ ?page_size: ::Integer
854
+ ) -> _ListCustomVerificationEmailTemplatesResponseSuccess
855
+ | (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListCustomVerificationEmailTemplatesResponseSuccess
856
+
857
+ interface _ListDedicatedIpPoolsResponseSuccess
858
+ include ::Seahorse::Client::_ResponseSuccess[Types::ListDedicatedIpPoolsResponse]
859
+ def dedicated_ip_pools: () -> ::Array[::String]
860
+ def next_token: () -> ::String
861
+ end
862
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/SESV2/Client.html#list_dedicated_ip_pools-instance_method
863
+ def list_dedicated_ip_pools: (
864
+ ?next_token: ::String,
865
+ ?page_size: ::Integer
866
+ ) -> _ListDedicatedIpPoolsResponseSuccess
867
+ | (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListDedicatedIpPoolsResponseSuccess
868
+
869
+ interface _ListDeliverabilityTestReportsResponseSuccess
870
+ include ::Seahorse::Client::_ResponseSuccess[Types::ListDeliverabilityTestReportsResponse]
871
+ def deliverability_test_reports: () -> ::Array[Types::DeliverabilityTestReport]
872
+ def next_token: () -> ::String
873
+ end
874
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/SESV2/Client.html#list_deliverability_test_reports-instance_method
875
+ def list_deliverability_test_reports: (
876
+ ?next_token: ::String,
877
+ ?page_size: ::Integer
878
+ ) -> _ListDeliverabilityTestReportsResponseSuccess
879
+ | (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListDeliverabilityTestReportsResponseSuccess
880
+
881
+ interface _ListDomainDeliverabilityCampaignsResponseSuccess
882
+ include ::Seahorse::Client::_ResponseSuccess[Types::ListDomainDeliverabilityCampaignsResponse]
883
+ def domain_deliverability_campaigns: () -> ::Array[Types::DomainDeliverabilityCampaign]
884
+ def next_token: () -> ::String
885
+ end
886
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/SESV2/Client.html#list_domain_deliverability_campaigns-instance_method
887
+ def list_domain_deliverability_campaigns: (
888
+ start_date: ::Time,
889
+ end_date: ::Time,
890
+ subscribed_domain: ::String,
891
+ ?next_token: ::String,
892
+ ?page_size: ::Integer
893
+ ) -> _ListDomainDeliverabilityCampaignsResponseSuccess
894
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListDomainDeliverabilityCampaignsResponseSuccess
895
+
896
+ interface _ListEmailIdentitiesResponseSuccess
897
+ include ::Seahorse::Client::_ResponseSuccess[Types::ListEmailIdentitiesResponse]
898
+ def email_identities: () -> ::Array[Types::IdentityInfo]
899
+ def next_token: () -> ::String
900
+ end
901
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/SESV2/Client.html#list_email_identities-instance_method
902
+ def list_email_identities: (
903
+ ?next_token: ::String,
904
+ ?page_size: ::Integer
905
+ ) -> _ListEmailIdentitiesResponseSuccess
906
+ | (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListEmailIdentitiesResponseSuccess
907
+
908
+ interface _ListEmailTemplatesResponseSuccess
909
+ include ::Seahorse::Client::_ResponseSuccess[Types::ListEmailTemplatesResponse]
910
+ def templates_metadata: () -> ::Array[Types::EmailTemplateMetadata]
911
+ def next_token: () -> ::String
912
+ end
913
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/SESV2/Client.html#list_email_templates-instance_method
914
+ def list_email_templates: (
915
+ ?next_token: ::String,
916
+ ?page_size: ::Integer
917
+ ) -> _ListEmailTemplatesResponseSuccess
918
+ | (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListEmailTemplatesResponseSuccess
919
+
920
+ interface _ListExportJobsResponseSuccess
921
+ include ::Seahorse::Client::_ResponseSuccess[Types::ListExportJobsResponse]
922
+ def export_jobs: () -> ::Array[Types::ExportJobSummary]
923
+ def next_token: () -> ::String
924
+ end
925
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/SESV2/Client.html#list_export_jobs-instance_method
926
+ def list_export_jobs: (
927
+ ?next_token: ::String,
928
+ ?page_size: ::Integer,
929
+ ?export_source_type: ("METRICS_DATA" | "MESSAGE_INSIGHTS"),
930
+ ?job_status: ("CREATED" | "PROCESSING" | "COMPLETED" | "FAILED" | "CANCELLED")
931
+ ) -> _ListExportJobsResponseSuccess
932
+ | (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListExportJobsResponseSuccess
933
+
934
+ interface _ListImportJobsResponseSuccess
935
+ include ::Seahorse::Client::_ResponseSuccess[Types::ListImportJobsResponse]
936
+ def import_jobs: () -> ::Array[Types::ImportJobSummary]
937
+ def next_token: () -> ::String
938
+ end
939
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/SESV2/Client.html#list_import_jobs-instance_method
940
+ def list_import_jobs: (
941
+ ?import_destination_type: ("SUPPRESSION_LIST" | "CONTACT_LIST"),
942
+ ?next_token: ::String,
943
+ ?page_size: ::Integer
944
+ ) -> _ListImportJobsResponseSuccess
945
+ | (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListImportJobsResponseSuccess
946
+
947
+ interface _ListRecommendationsResponseSuccess
948
+ include ::Seahorse::Client::_ResponseSuccess[Types::ListRecommendationsResponse]
949
+ def recommendations: () -> ::Array[Types::Recommendation]
950
+ def next_token: () -> ::String
951
+ end
952
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/SESV2/Client.html#list_recommendations-instance_method
953
+ def list_recommendations: (
954
+ ?filter: Hash[("TYPE" | "IMPACT" | "STATUS" | "RESOURCE_ARN"), ::String],
955
+ ?next_token: ::String,
956
+ ?page_size: ::Integer
957
+ ) -> _ListRecommendationsResponseSuccess
958
+ | (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListRecommendationsResponseSuccess
959
+
960
+ interface _ListSuppressedDestinationsResponseSuccess
961
+ include ::Seahorse::Client::_ResponseSuccess[Types::ListSuppressedDestinationsResponse]
962
+ def suppressed_destination_summaries: () -> ::Array[Types::SuppressedDestinationSummary]
963
+ def next_token: () -> ::String
964
+ end
965
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/SESV2/Client.html#list_suppressed_destinations-instance_method
966
+ def list_suppressed_destinations: (
967
+ ?reasons: Array[("BOUNCE" | "COMPLAINT")],
968
+ ?start_date: ::Time,
969
+ ?end_date: ::Time,
970
+ ?next_token: ::String,
971
+ ?page_size: ::Integer
972
+ ) -> _ListSuppressedDestinationsResponseSuccess
973
+ | (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListSuppressedDestinationsResponseSuccess
974
+
975
+ interface _ListTagsForResourceResponseSuccess
976
+ include ::Seahorse::Client::_ResponseSuccess[Types::ListTagsForResourceResponse]
977
+ def tags: () -> ::Array[Types::Tag]
978
+ end
979
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/SESV2/Client.html#list_tags_for_resource-instance_method
980
+ def list_tags_for_resource: (
981
+ resource_arn: ::String
982
+ ) -> _ListTagsForResourceResponseSuccess
983
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListTagsForResourceResponseSuccess
984
+
985
+ interface _PutAccountDedicatedIpWarmupAttributesResponseSuccess
986
+ include ::Seahorse::Client::_ResponseSuccess[Types::PutAccountDedicatedIpWarmupAttributesResponse]
987
+ end
988
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/SESV2/Client.html#put_account_dedicated_ip_warmup_attributes-instance_method
989
+ def put_account_dedicated_ip_warmup_attributes: (
990
+ ?auto_warmup_enabled: bool
991
+ ) -> _PutAccountDedicatedIpWarmupAttributesResponseSuccess
992
+ | (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _PutAccountDedicatedIpWarmupAttributesResponseSuccess
993
+
994
+ interface _PutAccountDetailsResponseSuccess
995
+ include ::Seahorse::Client::_ResponseSuccess[Types::PutAccountDetailsResponse]
996
+ end
997
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/SESV2/Client.html#put_account_details-instance_method
998
+ def put_account_details: (
999
+ mail_type: ("MARKETING" | "TRANSACTIONAL"),
1000
+ website_url: ::String,
1001
+ ?contact_language: ("EN" | "JA"),
1002
+ use_case_description: ::String,
1003
+ ?additional_contact_email_addresses: Array[::String],
1004
+ ?production_access_enabled: bool
1005
+ ) -> _PutAccountDetailsResponseSuccess
1006
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _PutAccountDetailsResponseSuccess
1007
+
1008
+ interface _PutAccountSendingAttributesResponseSuccess
1009
+ include ::Seahorse::Client::_ResponseSuccess[Types::PutAccountSendingAttributesResponse]
1010
+ end
1011
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/SESV2/Client.html#put_account_sending_attributes-instance_method
1012
+ def put_account_sending_attributes: (
1013
+ ?sending_enabled: bool
1014
+ ) -> _PutAccountSendingAttributesResponseSuccess
1015
+ | (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _PutAccountSendingAttributesResponseSuccess
1016
+
1017
+ interface _PutAccountSuppressionAttributesResponseSuccess
1018
+ include ::Seahorse::Client::_ResponseSuccess[Types::PutAccountSuppressionAttributesResponse]
1019
+ end
1020
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/SESV2/Client.html#put_account_suppression_attributes-instance_method
1021
+ def put_account_suppression_attributes: (
1022
+ ?suppressed_reasons: Array[("BOUNCE" | "COMPLAINT")]
1023
+ ) -> _PutAccountSuppressionAttributesResponseSuccess
1024
+ | (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _PutAccountSuppressionAttributesResponseSuccess
1025
+
1026
+ interface _PutAccountVdmAttributesResponseSuccess
1027
+ include ::Seahorse::Client::_ResponseSuccess[Types::PutAccountVdmAttributesResponse]
1028
+ end
1029
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/SESV2/Client.html#put_account_vdm_attributes-instance_method
1030
+ def put_account_vdm_attributes: (
1031
+ vdm_attributes: {
1032
+ vdm_enabled: ("ENABLED" | "DISABLED"),
1033
+ dashboard_attributes: {
1034
+ engagement_metrics: ("ENABLED" | "DISABLED")?
1035
+ }?,
1036
+ guardian_attributes: {
1037
+ optimized_shared_delivery: ("ENABLED" | "DISABLED")?
1038
+ }?
1039
+ }
1040
+ ) -> _PutAccountVdmAttributesResponseSuccess
1041
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _PutAccountVdmAttributesResponseSuccess
1042
+
1043
+ interface _PutConfigurationSetDeliveryOptionsResponseSuccess
1044
+ include ::Seahorse::Client::_ResponseSuccess[Types::PutConfigurationSetDeliveryOptionsResponse]
1045
+ end
1046
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/SESV2/Client.html#put_configuration_set_delivery_options-instance_method
1047
+ def put_configuration_set_delivery_options: (
1048
+ configuration_set_name: ::String,
1049
+ ?tls_policy: ("REQUIRE" | "OPTIONAL"),
1050
+ ?sending_pool_name: ::String
1051
+ ) -> _PutConfigurationSetDeliveryOptionsResponseSuccess
1052
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _PutConfigurationSetDeliveryOptionsResponseSuccess
1053
+
1054
+ interface _PutConfigurationSetReputationOptionsResponseSuccess
1055
+ include ::Seahorse::Client::_ResponseSuccess[Types::PutConfigurationSetReputationOptionsResponse]
1056
+ end
1057
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/SESV2/Client.html#put_configuration_set_reputation_options-instance_method
1058
+ def put_configuration_set_reputation_options: (
1059
+ configuration_set_name: ::String,
1060
+ ?reputation_metrics_enabled: bool
1061
+ ) -> _PutConfigurationSetReputationOptionsResponseSuccess
1062
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _PutConfigurationSetReputationOptionsResponseSuccess
1063
+
1064
+ interface _PutConfigurationSetSendingOptionsResponseSuccess
1065
+ include ::Seahorse::Client::_ResponseSuccess[Types::PutConfigurationSetSendingOptionsResponse]
1066
+ end
1067
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/SESV2/Client.html#put_configuration_set_sending_options-instance_method
1068
+ def put_configuration_set_sending_options: (
1069
+ configuration_set_name: ::String,
1070
+ ?sending_enabled: bool
1071
+ ) -> _PutConfigurationSetSendingOptionsResponseSuccess
1072
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _PutConfigurationSetSendingOptionsResponseSuccess
1073
+
1074
+ interface _PutConfigurationSetSuppressionOptionsResponseSuccess
1075
+ include ::Seahorse::Client::_ResponseSuccess[Types::PutConfigurationSetSuppressionOptionsResponse]
1076
+ end
1077
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/SESV2/Client.html#put_configuration_set_suppression_options-instance_method
1078
+ def put_configuration_set_suppression_options: (
1079
+ configuration_set_name: ::String,
1080
+ ?suppressed_reasons: Array[("BOUNCE" | "COMPLAINT")]
1081
+ ) -> _PutConfigurationSetSuppressionOptionsResponseSuccess
1082
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _PutConfigurationSetSuppressionOptionsResponseSuccess
1083
+
1084
+ interface _PutConfigurationSetTrackingOptionsResponseSuccess
1085
+ include ::Seahorse::Client::_ResponseSuccess[Types::PutConfigurationSetTrackingOptionsResponse]
1086
+ end
1087
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/SESV2/Client.html#put_configuration_set_tracking_options-instance_method
1088
+ def put_configuration_set_tracking_options: (
1089
+ configuration_set_name: ::String,
1090
+ ?custom_redirect_domain: ::String
1091
+ ) -> _PutConfigurationSetTrackingOptionsResponseSuccess
1092
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _PutConfigurationSetTrackingOptionsResponseSuccess
1093
+
1094
+ interface _PutConfigurationSetVdmOptionsResponseSuccess
1095
+ include ::Seahorse::Client::_ResponseSuccess[Types::PutConfigurationSetVdmOptionsResponse]
1096
+ end
1097
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/SESV2/Client.html#put_configuration_set_vdm_options-instance_method
1098
+ def put_configuration_set_vdm_options: (
1099
+ configuration_set_name: ::String,
1100
+ ?vdm_options: {
1101
+ dashboard_options: {
1102
+ engagement_metrics: ("ENABLED" | "DISABLED")?
1103
+ }?,
1104
+ guardian_options: {
1105
+ optimized_shared_delivery: ("ENABLED" | "DISABLED")?
1106
+ }?
1107
+ }
1108
+ ) -> _PutConfigurationSetVdmOptionsResponseSuccess
1109
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _PutConfigurationSetVdmOptionsResponseSuccess
1110
+
1111
+ interface _PutDedicatedIpInPoolResponseSuccess
1112
+ include ::Seahorse::Client::_ResponseSuccess[Types::PutDedicatedIpInPoolResponse]
1113
+ end
1114
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/SESV2/Client.html#put_dedicated_ip_in_pool-instance_method
1115
+ def put_dedicated_ip_in_pool: (
1116
+ ip: ::String,
1117
+ destination_pool_name: ::String
1118
+ ) -> _PutDedicatedIpInPoolResponseSuccess
1119
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _PutDedicatedIpInPoolResponseSuccess
1120
+
1121
+ interface _PutDedicatedIpPoolScalingAttributesResponseSuccess
1122
+ include ::Seahorse::Client::_ResponseSuccess[Types::PutDedicatedIpPoolScalingAttributesResponse]
1123
+ end
1124
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/SESV2/Client.html#put_dedicated_ip_pool_scaling_attributes-instance_method
1125
+ def put_dedicated_ip_pool_scaling_attributes: (
1126
+ pool_name: ::String,
1127
+ scaling_mode: ("STANDARD" | "MANAGED")
1128
+ ) -> _PutDedicatedIpPoolScalingAttributesResponseSuccess
1129
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _PutDedicatedIpPoolScalingAttributesResponseSuccess
1130
+
1131
+ interface _PutDedicatedIpWarmupAttributesResponseSuccess
1132
+ include ::Seahorse::Client::_ResponseSuccess[Types::PutDedicatedIpWarmupAttributesResponse]
1133
+ end
1134
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/SESV2/Client.html#put_dedicated_ip_warmup_attributes-instance_method
1135
+ def put_dedicated_ip_warmup_attributes: (
1136
+ ip: ::String,
1137
+ warmup_percentage: ::Integer
1138
+ ) -> _PutDedicatedIpWarmupAttributesResponseSuccess
1139
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _PutDedicatedIpWarmupAttributesResponseSuccess
1140
+
1141
+ interface _PutDeliverabilityDashboardOptionResponseSuccess
1142
+ include ::Seahorse::Client::_ResponseSuccess[Types::PutDeliverabilityDashboardOptionResponse]
1143
+ end
1144
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/SESV2/Client.html#put_deliverability_dashboard_option-instance_method
1145
+ def put_deliverability_dashboard_option: (
1146
+ dashboard_enabled: bool,
1147
+ ?subscribed_domains: Array[
1148
+ {
1149
+ domain: ::String?,
1150
+ subscription_start_date: ::Time?,
1151
+ inbox_placement_tracking_option: {
1152
+ global: bool?,
1153
+ tracked_isps: Array[::String]?
1154
+ }?
1155
+ },
1156
+ ]
1157
+ ) -> _PutDeliverabilityDashboardOptionResponseSuccess
1158
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _PutDeliverabilityDashboardOptionResponseSuccess
1159
+
1160
+ interface _PutEmailIdentityConfigurationSetAttributesResponseSuccess
1161
+ include ::Seahorse::Client::_ResponseSuccess[Types::PutEmailIdentityConfigurationSetAttributesResponse]
1162
+ end
1163
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/SESV2/Client.html#put_email_identity_configuration_set_attributes-instance_method
1164
+ def put_email_identity_configuration_set_attributes: (
1165
+ email_identity: ::String,
1166
+ ?configuration_set_name: ::String
1167
+ ) -> _PutEmailIdentityConfigurationSetAttributesResponseSuccess
1168
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _PutEmailIdentityConfigurationSetAttributesResponseSuccess
1169
+
1170
+ interface _PutEmailIdentityDkimAttributesResponseSuccess
1171
+ include ::Seahorse::Client::_ResponseSuccess[Types::PutEmailIdentityDkimAttributesResponse]
1172
+ end
1173
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/SESV2/Client.html#put_email_identity_dkim_attributes-instance_method
1174
+ def put_email_identity_dkim_attributes: (
1175
+ email_identity: ::String,
1176
+ ?signing_enabled: bool
1177
+ ) -> _PutEmailIdentityDkimAttributesResponseSuccess
1178
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _PutEmailIdentityDkimAttributesResponseSuccess
1179
+
1180
+ interface _PutEmailIdentityDkimSigningAttributesResponseSuccess
1181
+ include ::Seahorse::Client::_ResponseSuccess[Types::PutEmailIdentityDkimSigningAttributesResponse]
1182
+ def dkim_status: () -> ("PENDING" | "SUCCESS" | "FAILED" | "TEMPORARY_FAILURE" | "NOT_STARTED")
1183
+ def dkim_tokens: () -> ::Array[::String]
1184
+ end
1185
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/SESV2/Client.html#put_email_identity_dkim_signing_attributes-instance_method
1186
+ def put_email_identity_dkim_signing_attributes: (
1187
+ email_identity: ::String,
1188
+ signing_attributes_origin: ("AWS_SES" | "EXTERNAL"),
1189
+ ?signing_attributes: {
1190
+ domain_signing_selector: ::String?,
1191
+ domain_signing_private_key: ::String?,
1192
+ next_signing_key_length: ("RSA_1024_BIT" | "RSA_2048_BIT")?
1193
+ }
1194
+ ) -> _PutEmailIdentityDkimSigningAttributesResponseSuccess
1195
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _PutEmailIdentityDkimSigningAttributesResponseSuccess
1196
+
1197
+ interface _PutEmailIdentityFeedbackAttributesResponseSuccess
1198
+ include ::Seahorse::Client::_ResponseSuccess[Types::PutEmailIdentityFeedbackAttributesResponse]
1199
+ end
1200
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/SESV2/Client.html#put_email_identity_feedback_attributes-instance_method
1201
+ def put_email_identity_feedback_attributes: (
1202
+ email_identity: ::String,
1203
+ ?email_forwarding_enabled: bool
1204
+ ) -> _PutEmailIdentityFeedbackAttributesResponseSuccess
1205
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _PutEmailIdentityFeedbackAttributesResponseSuccess
1206
+
1207
+ interface _PutEmailIdentityMailFromAttributesResponseSuccess
1208
+ include ::Seahorse::Client::_ResponseSuccess[Types::PutEmailIdentityMailFromAttributesResponse]
1209
+ end
1210
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/SESV2/Client.html#put_email_identity_mail_from_attributes-instance_method
1211
+ def put_email_identity_mail_from_attributes: (
1212
+ email_identity: ::String,
1213
+ ?mail_from_domain: ::String,
1214
+ ?behavior_on_mx_failure: ("USE_DEFAULT_VALUE" | "REJECT_MESSAGE")
1215
+ ) -> _PutEmailIdentityMailFromAttributesResponseSuccess
1216
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _PutEmailIdentityMailFromAttributesResponseSuccess
1217
+
1218
+ interface _PutSuppressedDestinationResponseSuccess
1219
+ include ::Seahorse::Client::_ResponseSuccess[Types::PutSuppressedDestinationResponse]
1220
+ end
1221
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/SESV2/Client.html#put_suppressed_destination-instance_method
1222
+ def put_suppressed_destination: (
1223
+ email_address: ::String,
1224
+ reason: ("BOUNCE" | "COMPLAINT")
1225
+ ) -> _PutSuppressedDestinationResponseSuccess
1226
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _PutSuppressedDestinationResponseSuccess
1227
+
1228
+ interface _SendBulkEmailResponseSuccess
1229
+ include ::Seahorse::Client::_ResponseSuccess[Types::SendBulkEmailResponse]
1230
+ def bulk_email_entry_results: () -> ::Array[Types::BulkEmailEntryResult]
1231
+ end
1232
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/SESV2/Client.html#send_bulk_email-instance_method
1233
+ def send_bulk_email: (
1234
+ ?from_email_address: ::String,
1235
+ ?from_email_address_identity_arn: ::String,
1236
+ ?reply_to_addresses: Array[::String],
1237
+ ?feedback_forwarding_email_address: ::String,
1238
+ ?feedback_forwarding_email_address_identity_arn: ::String,
1239
+ ?default_email_tags: Array[
1240
+ {
1241
+ name: ::String,
1242
+ value: ::String
1243
+ },
1244
+ ],
1245
+ default_content: {
1246
+ template: {
1247
+ template_name: ::String?,
1248
+ template_arn: ::String?,
1249
+ template_data: ::String?,
1250
+ headers: Array[
1251
+ {
1252
+ name: ::String,
1253
+ value: ::String
1254
+ },
1255
+ ]?
1256
+ }?
1257
+ },
1258
+ bulk_email_entries: Array[
1259
+ {
1260
+ destination: {
1261
+ to_addresses: Array[::String]?,
1262
+ cc_addresses: Array[::String]?,
1263
+ bcc_addresses: Array[::String]?
1264
+ },
1265
+ replacement_tags: Array[
1266
+ {
1267
+ name: ::String,
1268
+ value: ::String
1269
+ },
1270
+ ]?,
1271
+ replacement_email_content: {
1272
+ replacement_template: {
1273
+ replacement_template_data: ::String?
1274
+ }?
1275
+ }?
1276
+ },
1277
+ ],
1278
+ ?configuration_set_name: ::String
1279
+ ) -> _SendBulkEmailResponseSuccess
1280
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _SendBulkEmailResponseSuccess
1281
+
1282
+ interface _SendCustomVerificationEmailResponseSuccess
1283
+ include ::Seahorse::Client::_ResponseSuccess[Types::SendCustomVerificationEmailResponse]
1284
+ def message_id: () -> ::String
1285
+ end
1286
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/SESV2/Client.html#send_custom_verification_email-instance_method
1287
+ def send_custom_verification_email: (
1288
+ email_address: ::String,
1289
+ template_name: ::String,
1290
+ ?configuration_set_name: ::String
1291
+ ) -> _SendCustomVerificationEmailResponseSuccess
1292
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _SendCustomVerificationEmailResponseSuccess
1293
+
1294
+ interface _SendEmailResponseSuccess
1295
+ include ::Seahorse::Client::_ResponseSuccess[Types::SendEmailResponse]
1296
+ def message_id: () -> ::String
1297
+ end
1298
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/SESV2/Client.html#send_email-instance_method
1299
+ def send_email: (
1300
+ ?from_email_address: ::String,
1301
+ ?from_email_address_identity_arn: ::String,
1302
+ ?destination: {
1303
+ to_addresses: Array[::String]?,
1304
+ cc_addresses: Array[::String]?,
1305
+ bcc_addresses: Array[::String]?
1306
+ },
1307
+ ?reply_to_addresses: Array[::String],
1308
+ ?feedback_forwarding_email_address: ::String,
1309
+ ?feedback_forwarding_email_address_identity_arn: ::String,
1310
+ content: {
1311
+ simple: {
1312
+ subject: {
1313
+ data: ::String,
1314
+ charset: ::String?
1315
+ },
1316
+ body: {
1317
+ text: {
1318
+ data: ::String,
1319
+ charset: ::String?
1320
+ }?,
1321
+ html: {
1322
+ data: ::String,
1323
+ charset: ::String?
1324
+ }?
1325
+ },
1326
+ headers: Array[
1327
+ {
1328
+ name: ::String,
1329
+ value: ::String
1330
+ },
1331
+ ]?
1332
+ }?,
1333
+ raw: {
1334
+ data: ::String
1335
+ }?,
1336
+ template: {
1337
+ template_name: ::String?,
1338
+ template_arn: ::String?,
1339
+ template_data: ::String?,
1340
+ headers: Array[
1341
+ {
1342
+ name: ::String,
1343
+ value: ::String
1344
+ },
1345
+ ]?
1346
+ }?
1347
+ },
1348
+ ?email_tags: Array[
1349
+ {
1350
+ name: ::String,
1351
+ value: ::String
1352
+ },
1353
+ ],
1354
+ ?configuration_set_name: ::String,
1355
+ ?list_management_options: {
1356
+ contact_list_name: ::String,
1357
+ topic_name: ::String?
1358
+ }
1359
+ ) -> _SendEmailResponseSuccess
1360
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _SendEmailResponseSuccess
1361
+
1362
+ interface _TagResourceResponseSuccess
1363
+ include ::Seahorse::Client::_ResponseSuccess[Types::TagResourceResponse]
1364
+ end
1365
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/SESV2/Client.html#tag_resource-instance_method
1366
+ def tag_resource: (
1367
+ resource_arn: ::String,
1368
+ tags: Array[
1369
+ {
1370
+ key: ::String,
1371
+ value: ::String
1372
+ },
1373
+ ]
1374
+ ) -> _TagResourceResponseSuccess
1375
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _TagResourceResponseSuccess
1376
+
1377
+ interface _TestRenderEmailTemplateResponseSuccess
1378
+ include ::Seahorse::Client::_ResponseSuccess[Types::TestRenderEmailTemplateResponse]
1379
+ def rendered_template: () -> ::String
1380
+ end
1381
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/SESV2/Client.html#test_render_email_template-instance_method
1382
+ def test_render_email_template: (
1383
+ template_name: ::String,
1384
+ template_data: ::String
1385
+ ) -> _TestRenderEmailTemplateResponseSuccess
1386
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _TestRenderEmailTemplateResponseSuccess
1387
+
1388
+ interface _UntagResourceResponseSuccess
1389
+ include ::Seahorse::Client::_ResponseSuccess[Types::UntagResourceResponse]
1390
+ end
1391
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/SESV2/Client.html#untag_resource-instance_method
1392
+ def untag_resource: (
1393
+ resource_arn: ::String,
1394
+ tag_keys: Array[::String]
1395
+ ) -> _UntagResourceResponseSuccess
1396
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UntagResourceResponseSuccess
1397
+
1398
+ interface _UpdateConfigurationSetEventDestinationResponseSuccess
1399
+ include ::Seahorse::Client::_ResponseSuccess[Types::UpdateConfigurationSetEventDestinationResponse]
1400
+ end
1401
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/SESV2/Client.html#update_configuration_set_event_destination-instance_method
1402
+ def update_configuration_set_event_destination: (
1403
+ configuration_set_name: ::String,
1404
+ event_destination_name: ::String,
1405
+ event_destination: {
1406
+ enabled: bool?,
1407
+ matching_event_types: Array[("SEND" | "REJECT" | "BOUNCE" | "COMPLAINT" | "DELIVERY" | "OPEN" | "CLICK" | "RENDERING_FAILURE" | "DELIVERY_DELAY" | "SUBSCRIPTION")]?,
1408
+ kinesis_firehose_destination: {
1409
+ iam_role_arn: ::String,
1410
+ delivery_stream_arn: ::String
1411
+ }?,
1412
+ cloud_watch_destination: {
1413
+ dimension_configurations: Array[
1414
+ {
1415
+ dimension_name: ::String,
1416
+ dimension_value_source: ("MESSAGE_TAG" | "EMAIL_HEADER" | "LINK_TAG"),
1417
+ default_dimension_value: ::String
1418
+ },
1419
+ ]
1420
+ }?,
1421
+ sns_destination: {
1422
+ topic_arn: ::String
1423
+ }?,
1424
+ pinpoint_destination: {
1425
+ application_arn: ::String?
1426
+ }?
1427
+ }
1428
+ ) -> _UpdateConfigurationSetEventDestinationResponseSuccess
1429
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateConfigurationSetEventDestinationResponseSuccess
1430
+
1431
+ interface _UpdateContactResponseSuccess
1432
+ include ::Seahorse::Client::_ResponseSuccess[Types::UpdateContactResponse]
1433
+ end
1434
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/SESV2/Client.html#update_contact-instance_method
1435
+ def update_contact: (
1436
+ contact_list_name: ::String,
1437
+ email_address: ::String,
1438
+ ?topic_preferences: Array[
1439
+ {
1440
+ topic_name: ::String,
1441
+ subscription_status: ("OPT_IN" | "OPT_OUT")
1442
+ },
1443
+ ],
1444
+ ?unsubscribe_all: bool,
1445
+ ?attributes_data: ::String
1446
+ ) -> _UpdateContactResponseSuccess
1447
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateContactResponseSuccess
1448
+
1449
+ interface _UpdateContactListResponseSuccess
1450
+ include ::Seahorse::Client::_ResponseSuccess[Types::UpdateContactListResponse]
1451
+ end
1452
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/SESV2/Client.html#update_contact_list-instance_method
1453
+ def update_contact_list: (
1454
+ contact_list_name: ::String,
1455
+ ?topics: Array[
1456
+ {
1457
+ topic_name: ::String,
1458
+ display_name: ::String,
1459
+ description: ::String?,
1460
+ default_subscription_status: ("OPT_IN" | "OPT_OUT")
1461
+ },
1462
+ ],
1463
+ ?description: ::String
1464
+ ) -> _UpdateContactListResponseSuccess
1465
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateContactListResponseSuccess
1466
+
1467
+ interface _UpdateCustomVerificationEmailTemplateResponseSuccess
1468
+ include ::Seahorse::Client::_ResponseSuccess[Types::UpdateCustomVerificationEmailTemplateResponse]
1469
+ end
1470
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/SESV2/Client.html#update_custom_verification_email_template-instance_method
1471
+ def update_custom_verification_email_template: (
1472
+ template_name: ::String,
1473
+ from_email_address: ::String,
1474
+ template_subject: ::String,
1475
+ template_content: ::String,
1476
+ success_redirection_url: ::String,
1477
+ failure_redirection_url: ::String
1478
+ ) -> _UpdateCustomVerificationEmailTemplateResponseSuccess
1479
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateCustomVerificationEmailTemplateResponseSuccess
1480
+
1481
+ interface _UpdateEmailIdentityPolicyResponseSuccess
1482
+ include ::Seahorse::Client::_ResponseSuccess[Types::UpdateEmailIdentityPolicyResponse]
1483
+ end
1484
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/SESV2/Client.html#update_email_identity_policy-instance_method
1485
+ def update_email_identity_policy: (
1486
+ email_identity: ::String,
1487
+ policy_name: ::String,
1488
+ policy: ::String
1489
+ ) -> _UpdateEmailIdentityPolicyResponseSuccess
1490
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateEmailIdentityPolicyResponseSuccess
1491
+
1492
+ interface _UpdateEmailTemplateResponseSuccess
1493
+ include ::Seahorse::Client::_ResponseSuccess[Types::UpdateEmailTemplateResponse]
1494
+ end
1495
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/SESV2/Client.html#update_email_template-instance_method
1496
+ def update_email_template: (
1497
+ template_name: ::String,
1498
+ template_content: {
1499
+ subject: ::String?,
1500
+ text: ::String?,
1501
+ html: ::String?
1502
+ }
1503
+ ) -> _UpdateEmailTemplateResponseSuccess
1504
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateEmailTemplateResponseSuccess
1505
+ end
1506
+ end
1507
+ end
1508
+