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