aws-sdk-ses 1.58.0 → 1.60.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/CHANGELOG.md +10 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-ses/client.rb +1 -1
- data/lib/aws-sdk-ses/client_api.rb +34 -34
- data/lib/aws-sdk-ses/plugins/endpoints.rb +1 -0
- data/lib/aws-sdk-ses.rb +1 -1
- data/sig/client.rbs +1066 -0
- data/sig/errors.rbs +113 -0
- data/sig/resource.rbs +79 -0
- data/sig/types.rbs +1141 -0
- data/sig/waiters.rbs +23 -0
- metadata +13 -8
data/sig/client.rbs
ADDED
@@ -0,0 +1,1066 @@
|
|
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 SES
|
10
|
+
class Client < ::Seahorse::Client::Base
|
11
|
+
include ::Aws::ClientStubs
|
12
|
+
|
13
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/SES/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 _CloneReceiptRuleSetResponseSuccess
|
76
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::CloneReceiptRuleSetResponse]
|
77
|
+
end
|
78
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/SES/Client.html#clone_receipt_rule_set-instance_method
|
79
|
+
def clone_receipt_rule_set: (
|
80
|
+
rule_set_name: ::String,
|
81
|
+
original_rule_set_name: ::String
|
82
|
+
) -> _CloneReceiptRuleSetResponseSuccess
|
83
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CloneReceiptRuleSetResponseSuccess
|
84
|
+
|
85
|
+
interface _CreateConfigurationSetResponseSuccess
|
86
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::CreateConfigurationSetResponse]
|
87
|
+
end
|
88
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/SES/Client.html#create_configuration_set-instance_method
|
89
|
+
def create_configuration_set: (
|
90
|
+
configuration_set: {
|
91
|
+
name: ::String
|
92
|
+
}
|
93
|
+
) -> _CreateConfigurationSetResponseSuccess
|
94
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateConfigurationSetResponseSuccess
|
95
|
+
|
96
|
+
interface _CreateConfigurationSetEventDestinationResponseSuccess
|
97
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::CreateConfigurationSetEventDestinationResponse]
|
98
|
+
end
|
99
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/SES/Client.html#create_configuration_set_event_destination-instance_method
|
100
|
+
def create_configuration_set_event_destination: (
|
101
|
+
configuration_set_name: ::String,
|
102
|
+
event_destination: {
|
103
|
+
name: ::String,
|
104
|
+
enabled: bool?,
|
105
|
+
matching_event_types: Array[("send" | "reject" | "bounce" | "complaint" | "delivery" | "open" | "click" | "renderingFailure")],
|
106
|
+
kinesis_firehose_destination: {
|
107
|
+
iam_role_arn: ::String,
|
108
|
+
delivery_stream_arn: ::String
|
109
|
+
}?,
|
110
|
+
cloud_watch_destination: {
|
111
|
+
dimension_configurations: Array[
|
112
|
+
{
|
113
|
+
dimension_name: ::String,
|
114
|
+
dimension_value_source: ("messageTag" | "emailHeader" | "linkTag"),
|
115
|
+
default_dimension_value: ::String
|
116
|
+
},
|
117
|
+
]
|
118
|
+
}?,
|
119
|
+
sns_destination: {
|
120
|
+
topic_arn: ::String
|
121
|
+
}?
|
122
|
+
}
|
123
|
+
) -> _CreateConfigurationSetEventDestinationResponseSuccess
|
124
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateConfigurationSetEventDestinationResponseSuccess
|
125
|
+
|
126
|
+
interface _CreateConfigurationSetTrackingOptionsResponseSuccess
|
127
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::CreateConfigurationSetTrackingOptionsResponse]
|
128
|
+
end
|
129
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/SES/Client.html#create_configuration_set_tracking_options-instance_method
|
130
|
+
def create_configuration_set_tracking_options: (
|
131
|
+
configuration_set_name: ::String,
|
132
|
+
tracking_options: {
|
133
|
+
custom_redirect_domain: ::String?
|
134
|
+
}
|
135
|
+
) -> _CreateConfigurationSetTrackingOptionsResponseSuccess
|
136
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateConfigurationSetTrackingOptionsResponseSuccess
|
137
|
+
|
138
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/SES/Client.html#create_custom_verification_email_template-instance_method
|
139
|
+
def create_custom_verification_email_template: (
|
140
|
+
template_name: ::String,
|
141
|
+
from_email_address: ::String,
|
142
|
+
template_subject: ::String,
|
143
|
+
template_content: ::String,
|
144
|
+
success_redirection_url: ::String,
|
145
|
+
failure_redirection_url: ::String
|
146
|
+
) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
|
147
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
|
148
|
+
|
149
|
+
interface _CreateReceiptFilterResponseSuccess
|
150
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::CreateReceiptFilterResponse]
|
151
|
+
end
|
152
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/SES/Client.html#create_receipt_filter-instance_method
|
153
|
+
def create_receipt_filter: (
|
154
|
+
filter: {
|
155
|
+
name: ::String,
|
156
|
+
ip_filter: {
|
157
|
+
policy: ("Block" | "Allow"),
|
158
|
+
cidr: ::String
|
159
|
+
}
|
160
|
+
}
|
161
|
+
) -> _CreateReceiptFilterResponseSuccess
|
162
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateReceiptFilterResponseSuccess
|
163
|
+
|
164
|
+
interface _CreateReceiptRuleResponseSuccess
|
165
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::CreateReceiptRuleResponse]
|
166
|
+
end
|
167
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/SES/Client.html#create_receipt_rule-instance_method
|
168
|
+
def create_receipt_rule: (
|
169
|
+
rule_set_name: ::String,
|
170
|
+
?after: ::String,
|
171
|
+
rule: {
|
172
|
+
name: ::String,
|
173
|
+
enabled: bool?,
|
174
|
+
tls_policy: ("Require" | "Optional")?,
|
175
|
+
recipients: Array[::String]?,
|
176
|
+
actions: Array[
|
177
|
+
{
|
178
|
+
s3_action: {
|
179
|
+
topic_arn: ::String?,
|
180
|
+
bucket_name: ::String,
|
181
|
+
object_key_prefix: ::String?,
|
182
|
+
kms_key_arn: ::String?
|
183
|
+
}?,
|
184
|
+
bounce_action: {
|
185
|
+
topic_arn: ::String?,
|
186
|
+
smtp_reply_code: ::String,
|
187
|
+
status_code: ::String?,
|
188
|
+
message: ::String,
|
189
|
+
sender: ::String
|
190
|
+
}?,
|
191
|
+
workmail_action: {
|
192
|
+
topic_arn: ::String?,
|
193
|
+
organization_arn: ::String
|
194
|
+
}?,
|
195
|
+
lambda_action: {
|
196
|
+
topic_arn: ::String?,
|
197
|
+
function_arn: ::String,
|
198
|
+
invocation_type: ("Event" | "RequestResponse")?
|
199
|
+
}?,
|
200
|
+
stop_action: {
|
201
|
+
scope: ("RuleSet"),
|
202
|
+
topic_arn: ::String?
|
203
|
+
}?,
|
204
|
+
add_header_action: {
|
205
|
+
header_name: ::String,
|
206
|
+
header_value: ::String
|
207
|
+
}?,
|
208
|
+
sns_action: {
|
209
|
+
topic_arn: ::String,
|
210
|
+
encoding: ("UTF-8" | "Base64")?
|
211
|
+
}?
|
212
|
+
},
|
213
|
+
]?,
|
214
|
+
scan_enabled: bool?
|
215
|
+
}
|
216
|
+
) -> _CreateReceiptRuleResponseSuccess
|
217
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateReceiptRuleResponseSuccess
|
218
|
+
|
219
|
+
interface _CreateReceiptRuleSetResponseSuccess
|
220
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::CreateReceiptRuleSetResponse]
|
221
|
+
end
|
222
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/SES/Client.html#create_receipt_rule_set-instance_method
|
223
|
+
def create_receipt_rule_set: (
|
224
|
+
rule_set_name: ::String
|
225
|
+
) -> _CreateReceiptRuleSetResponseSuccess
|
226
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateReceiptRuleSetResponseSuccess
|
227
|
+
|
228
|
+
interface _CreateTemplateResponseSuccess
|
229
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::CreateTemplateResponse]
|
230
|
+
end
|
231
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/SES/Client.html#create_template-instance_method
|
232
|
+
def create_template: (
|
233
|
+
template: {
|
234
|
+
template_name: ::String,
|
235
|
+
subject_part: ::String?,
|
236
|
+
text_part: ::String?,
|
237
|
+
html_part: ::String?
|
238
|
+
}
|
239
|
+
) -> _CreateTemplateResponseSuccess
|
240
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateTemplateResponseSuccess
|
241
|
+
|
242
|
+
interface _DeleteConfigurationSetResponseSuccess
|
243
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::DeleteConfigurationSetResponse]
|
244
|
+
end
|
245
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/SES/Client.html#delete_configuration_set-instance_method
|
246
|
+
def delete_configuration_set: (
|
247
|
+
configuration_set_name: ::String
|
248
|
+
) -> _DeleteConfigurationSetResponseSuccess
|
249
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DeleteConfigurationSetResponseSuccess
|
250
|
+
|
251
|
+
interface _DeleteConfigurationSetEventDestinationResponseSuccess
|
252
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::DeleteConfigurationSetEventDestinationResponse]
|
253
|
+
end
|
254
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/SES/Client.html#delete_configuration_set_event_destination-instance_method
|
255
|
+
def delete_configuration_set_event_destination: (
|
256
|
+
configuration_set_name: ::String,
|
257
|
+
event_destination_name: ::String
|
258
|
+
) -> _DeleteConfigurationSetEventDestinationResponseSuccess
|
259
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DeleteConfigurationSetEventDestinationResponseSuccess
|
260
|
+
|
261
|
+
interface _DeleteConfigurationSetTrackingOptionsResponseSuccess
|
262
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::DeleteConfigurationSetTrackingOptionsResponse]
|
263
|
+
end
|
264
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/SES/Client.html#delete_configuration_set_tracking_options-instance_method
|
265
|
+
def delete_configuration_set_tracking_options: (
|
266
|
+
configuration_set_name: ::String
|
267
|
+
) -> _DeleteConfigurationSetTrackingOptionsResponseSuccess
|
268
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DeleteConfigurationSetTrackingOptionsResponseSuccess
|
269
|
+
|
270
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/SES/Client.html#delete_custom_verification_email_template-instance_method
|
271
|
+
def delete_custom_verification_email_template: (
|
272
|
+
template_name: ::String
|
273
|
+
) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
|
274
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
|
275
|
+
|
276
|
+
interface _DeleteIdentityResponseSuccess
|
277
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::DeleteIdentityResponse]
|
278
|
+
end
|
279
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/SES/Client.html#delete_identity-instance_method
|
280
|
+
def delete_identity: (
|
281
|
+
identity: ::String
|
282
|
+
) -> _DeleteIdentityResponseSuccess
|
283
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DeleteIdentityResponseSuccess
|
284
|
+
|
285
|
+
interface _DeleteIdentityPolicyResponseSuccess
|
286
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::DeleteIdentityPolicyResponse]
|
287
|
+
end
|
288
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/SES/Client.html#delete_identity_policy-instance_method
|
289
|
+
def delete_identity_policy: (
|
290
|
+
identity: ::String,
|
291
|
+
policy_name: ::String
|
292
|
+
) -> _DeleteIdentityPolicyResponseSuccess
|
293
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DeleteIdentityPolicyResponseSuccess
|
294
|
+
|
295
|
+
interface _DeleteReceiptFilterResponseSuccess
|
296
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::DeleteReceiptFilterResponse]
|
297
|
+
end
|
298
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/SES/Client.html#delete_receipt_filter-instance_method
|
299
|
+
def delete_receipt_filter: (
|
300
|
+
filter_name: ::String
|
301
|
+
) -> _DeleteReceiptFilterResponseSuccess
|
302
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DeleteReceiptFilterResponseSuccess
|
303
|
+
|
304
|
+
interface _DeleteReceiptRuleResponseSuccess
|
305
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::DeleteReceiptRuleResponse]
|
306
|
+
end
|
307
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/SES/Client.html#delete_receipt_rule-instance_method
|
308
|
+
def delete_receipt_rule: (
|
309
|
+
rule_set_name: ::String,
|
310
|
+
rule_name: ::String
|
311
|
+
) -> _DeleteReceiptRuleResponseSuccess
|
312
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DeleteReceiptRuleResponseSuccess
|
313
|
+
|
314
|
+
interface _DeleteReceiptRuleSetResponseSuccess
|
315
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::DeleteReceiptRuleSetResponse]
|
316
|
+
end
|
317
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/SES/Client.html#delete_receipt_rule_set-instance_method
|
318
|
+
def delete_receipt_rule_set: (
|
319
|
+
rule_set_name: ::String
|
320
|
+
) -> _DeleteReceiptRuleSetResponseSuccess
|
321
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DeleteReceiptRuleSetResponseSuccess
|
322
|
+
|
323
|
+
interface _DeleteTemplateResponseSuccess
|
324
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::DeleteTemplateResponse]
|
325
|
+
end
|
326
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/SES/Client.html#delete_template-instance_method
|
327
|
+
def delete_template: (
|
328
|
+
template_name: ::String
|
329
|
+
) -> _DeleteTemplateResponseSuccess
|
330
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DeleteTemplateResponseSuccess
|
331
|
+
|
332
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/SES/Client.html#delete_verified_email_address-instance_method
|
333
|
+
def delete_verified_email_address: (
|
334
|
+
email_address: ::String
|
335
|
+
) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
|
336
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
|
337
|
+
|
338
|
+
interface _DescribeActiveReceiptRuleSetResponseSuccess
|
339
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::DescribeActiveReceiptRuleSetResponse]
|
340
|
+
def metadata: () -> Types::ReceiptRuleSetMetadata
|
341
|
+
def rules: () -> ::Array[Types::ReceiptRule]
|
342
|
+
end
|
343
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/SES/Client.html#describe_active_receipt_rule_set-instance_method
|
344
|
+
def describe_active_receipt_rule_set: (
|
345
|
+
) -> _DescribeActiveReceiptRuleSetResponseSuccess
|
346
|
+
| (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DescribeActiveReceiptRuleSetResponseSuccess
|
347
|
+
|
348
|
+
interface _DescribeConfigurationSetResponseSuccess
|
349
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::DescribeConfigurationSetResponse]
|
350
|
+
def configuration_set: () -> Types::ConfigurationSet
|
351
|
+
def event_destinations: () -> ::Array[Types::EventDestination]
|
352
|
+
def tracking_options: () -> Types::TrackingOptions
|
353
|
+
def delivery_options: () -> Types::DeliveryOptions
|
354
|
+
def reputation_options: () -> Types::ReputationOptions
|
355
|
+
end
|
356
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/SES/Client.html#describe_configuration_set-instance_method
|
357
|
+
def describe_configuration_set: (
|
358
|
+
configuration_set_name: ::String,
|
359
|
+
?configuration_set_attribute_names: Array[("eventDestinations" | "trackingOptions" | "deliveryOptions" | "reputationOptions")]
|
360
|
+
) -> _DescribeConfigurationSetResponseSuccess
|
361
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DescribeConfigurationSetResponseSuccess
|
362
|
+
|
363
|
+
interface _DescribeReceiptRuleResponseSuccess
|
364
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::DescribeReceiptRuleResponse]
|
365
|
+
def rule: () -> Types::ReceiptRule
|
366
|
+
end
|
367
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/SES/Client.html#describe_receipt_rule-instance_method
|
368
|
+
def describe_receipt_rule: (
|
369
|
+
rule_set_name: ::String,
|
370
|
+
rule_name: ::String
|
371
|
+
) -> _DescribeReceiptRuleResponseSuccess
|
372
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DescribeReceiptRuleResponseSuccess
|
373
|
+
|
374
|
+
interface _DescribeReceiptRuleSetResponseSuccess
|
375
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::DescribeReceiptRuleSetResponse]
|
376
|
+
def metadata: () -> Types::ReceiptRuleSetMetadata
|
377
|
+
def rules: () -> ::Array[Types::ReceiptRule]
|
378
|
+
end
|
379
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/SES/Client.html#describe_receipt_rule_set-instance_method
|
380
|
+
def describe_receipt_rule_set: (
|
381
|
+
rule_set_name: ::String
|
382
|
+
) -> _DescribeReceiptRuleSetResponseSuccess
|
383
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DescribeReceiptRuleSetResponseSuccess
|
384
|
+
|
385
|
+
interface _GetAccountSendingEnabledResponseSuccess
|
386
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::GetAccountSendingEnabledResponse]
|
387
|
+
def enabled: () -> bool
|
388
|
+
end
|
389
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/SES/Client.html#get_account_sending_enabled-instance_method
|
390
|
+
def get_account_sending_enabled: () -> _GetAccountSendingEnabledResponseSuccess
|
391
|
+
| (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetAccountSendingEnabledResponseSuccess
|
392
|
+
|
393
|
+
interface _GetCustomVerificationEmailTemplateResponseSuccess
|
394
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::GetCustomVerificationEmailTemplateResponse]
|
395
|
+
def template_name: () -> ::String
|
396
|
+
def from_email_address: () -> ::String
|
397
|
+
def template_subject: () -> ::String
|
398
|
+
def template_content: () -> ::String
|
399
|
+
def success_redirection_url: () -> ::String
|
400
|
+
def failure_redirection_url: () -> ::String
|
401
|
+
end
|
402
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/SES/Client.html#get_custom_verification_email_template-instance_method
|
403
|
+
def get_custom_verification_email_template: (
|
404
|
+
template_name: ::String
|
405
|
+
) -> _GetCustomVerificationEmailTemplateResponseSuccess
|
406
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetCustomVerificationEmailTemplateResponseSuccess
|
407
|
+
|
408
|
+
interface _GetIdentityDkimAttributesResponseSuccess
|
409
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::GetIdentityDkimAttributesResponse]
|
410
|
+
def dkim_attributes: () -> ::Hash[::String, Types::IdentityDkimAttributes]
|
411
|
+
end
|
412
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/SES/Client.html#get_identity_dkim_attributes-instance_method
|
413
|
+
def get_identity_dkim_attributes: (
|
414
|
+
identities: Array[::String]
|
415
|
+
) -> _GetIdentityDkimAttributesResponseSuccess
|
416
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetIdentityDkimAttributesResponseSuccess
|
417
|
+
|
418
|
+
interface _GetIdentityMailFromDomainAttributesResponseSuccess
|
419
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::GetIdentityMailFromDomainAttributesResponse]
|
420
|
+
def mail_from_domain_attributes: () -> ::Hash[::String, Types::IdentityMailFromDomainAttributes]
|
421
|
+
end
|
422
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/SES/Client.html#get_identity_mail_from_domain_attributes-instance_method
|
423
|
+
def get_identity_mail_from_domain_attributes: (
|
424
|
+
identities: Array[::String]
|
425
|
+
) -> _GetIdentityMailFromDomainAttributesResponseSuccess
|
426
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetIdentityMailFromDomainAttributesResponseSuccess
|
427
|
+
|
428
|
+
interface _GetIdentityNotificationAttributesResponseSuccess
|
429
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::GetIdentityNotificationAttributesResponse]
|
430
|
+
def notification_attributes: () -> ::Hash[::String, Types::IdentityNotificationAttributes]
|
431
|
+
end
|
432
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/SES/Client.html#get_identity_notification_attributes-instance_method
|
433
|
+
def get_identity_notification_attributes: (
|
434
|
+
identities: Array[::String]
|
435
|
+
) -> _GetIdentityNotificationAttributesResponseSuccess
|
436
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetIdentityNotificationAttributesResponseSuccess
|
437
|
+
|
438
|
+
interface _GetIdentityPoliciesResponseSuccess
|
439
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::GetIdentityPoliciesResponse]
|
440
|
+
def policies: () -> ::Hash[::String, ::String]
|
441
|
+
end
|
442
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/SES/Client.html#get_identity_policies-instance_method
|
443
|
+
def get_identity_policies: (
|
444
|
+
identity: ::String,
|
445
|
+
policy_names: Array[::String]
|
446
|
+
) -> _GetIdentityPoliciesResponseSuccess
|
447
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetIdentityPoliciesResponseSuccess
|
448
|
+
|
449
|
+
interface _GetIdentityVerificationAttributesResponseSuccess
|
450
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::GetIdentityVerificationAttributesResponse]
|
451
|
+
def verification_attributes: () -> ::Hash[::String, Types::IdentityVerificationAttributes]
|
452
|
+
end
|
453
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/SES/Client.html#get_identity_verification_attributes-instance_method
|
454
|
+
def get_identity_verification_attributes: (
|
455
|
+
identities: Array[::String]
|
456
|
+
) -> _GetIdentityVerificationAttributesResponseSuccess
|
457
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetIdentityVerificationAttributesResponseSuccess
|
458
|
+
|
459
|
+
interface _GetSendQuotaResponseSuccess
|
460
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::GetSendQuotaResponse]
|
461
|
+
def max_24_hour_send: () -> ::Float
|
462
|
+
def max_send_rate: () -> ::Float
|
463
|
+
def sent_last_24_hours: () -> ::Float
|
464
|
+
end
|
465
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/SES/Client.html#get_send_quota-instance_method
|
466
|
+
def get_send_quota: () -> _GetSendQuotaResponseSuccess
|
467
|
+
| (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetSendQuotaResponseSuccess
|
468
|
+
|
469
|
+
interface _GetSendStatisticsResponseSuccess
|
470
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::GetSendStatisticsResponse]
|
471
|
+
def send_data_points: () -> ::Array[Types::SendDataPoint]
|
472
|
+
end
|
473
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/SES/Client.html#get_send_statistics-instance_method
|
474
|
+
def get_send_statistics: () -> _GetSendStatisticsResponseSuccess
|
475
|
+
| (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetSendStatisticsResponseSuccess
|
476
|
+
|
477
|
+
interface _GetTemplateResponseSuccess
|
478
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::GetTemplateResponse]
|
479
|
+
def template: () -> Types::Template
|
480
|
+
end
|
481
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/SES/Client.html#get_template-instance_method
|
482
|
+
def get_template: (
|
483
|
+
template_name: ::String
|
484
|
+
) -> _GetTemplateResponseSuccess
|
485
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetTemplateResponseSuccess
|
486
|
+
|
487
|
+
interface _ListConfigurationSetsResponseSuccess
|
488
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::ListConfigurationSetsResponse]
|
489
|
+
def configuration_sets: () -> ::Array[Types::ConfigurationSet]
|
490
|
+
def next_token: () -> ::String
|
491
|
+
end
|
492
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/SES/Client.html#list_configuration_sets-instance_method
|
493
|
+
def list_configuration_sets: (
|
494
|
+
?next_token: ::String,
|
495
|
+
?max_items: ::Integer
|
496
|
+
) -> _ListConfigurationSetsResponseSuccess
|
497
|
+
| (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListConfigurationSetsResponseSuccess
|
498
|
+
|
499
|
+
interface _ListCustomVerificationEmailTemplatesResponseSuccess
|
500
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::ListCustomVerificationEmailTemplatesResponse]
|
501
|
+
def custom_verification_email_templates: () -> ::Array[Types::CustomVerificationEmailTemplate]
|
502
|
+
def next_token: () -> ::String
|
503
|
+
end
|
504
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/SES/Client.html#list_custom_verification_email_templates-instance_method
|
505
|
+
def list_custom_verification_email_templates: (
|
506
|
+
?next_token: ::String,
|
507
|
+
?max_results: ::Integer
|
508
|
+
) -> _ListCustomVerificationEmailTemplatesResponseSuccess
|
509
|
+
| (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListCustomVerificationEmailTemplatesResponseSuccess
|
510
|
+
|
511
|
+
interface _ListIdentitiesResponseSuccess
|
512
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::ListIdentitiesResponse]
|
513
|
+
def identities: () -> ::Array[::String]
|
514
|
+
def next_token: () -> ::String
|
515
|
+
end
|
516
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/SES/Client.html#list_identities-instance_method
|
517
|
+
def list_identities: (
|
518
|
+
?identity_type: ("EmailAddress" | "Domain"),
|
519
|
+
?next_token: ::String,
|
520
|
+
?max_items: ::Integer
|
521
|
+
) -> _ListIdentitiesResponseSuccess
|
522
|
+
| (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListIdentitiesResponseSuccess
|
523
|
+
|
524
|
+
interface _ListIdentityPoliciesResponseSuccess
|
525
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::ListIdentityPoliciesResponse]
|
526
|
+
def policy_names: () -> ::Array[::String]
|
527
|
+
end
|
528
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/SES/Client.html#list_identity_policies-instance_method
|
529
|
+
def list_identity_policies: (
|
530
|
+
identity: ::String
|
531
|
+
) -> _ListIdentityPoliciesResponseSuccess
|
532
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListIdentityPoliciesResponseSuccess
|
533
|
+
|
534
|
+
interface _ListReceiptFiltersResponseSuccess
|
535
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::ListReceiptFiltersResponse]
|
536
|
+
def filters: () -> ::Array[Types::ReceiptFilter]
|
537
|
+
end
|
538
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/SES/Client.html#list_receipt_filters-instance_method
|
539
|
+
def list_receipt_filters: (
|
540
|
+
) -> _ListReceiptFiltersResponseSuccess
|
541
|
+
| (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListReceiptFiltersResponseSuccess
|
542
|
+
|
543
|
+
interface _ListReceiptRuleSetsResponseSuccess
|
544
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::ListReceiptRuleSetsResponse]
|
545
|
+
def rule_sets: () -> ::Array[Types::ReceiptRuleSetMetadata]
|
546
|
+
def next_token: () -> ::String
|
547
|
+
end
|
548
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/SES/Client.html#list_receipt_rule_sets-instance_method
|
549
|
+
def list_receipt_rule_sets: (
|
550
|
+
?next_token: ::String
|
551
|
+
) -> _ListReceiptRuleSetsResponseSuccess
|
552
|
+
| (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListReceiptRuleSetsResponseSuccess
|
553
|
+
|
554
|
+
interface _ListTemplatesResponseSuccess
|
555
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::ListTemplatesResponse]
|
556
|
+
def templates_metadata: () -> ::Array[Types::TemplateMetadata]
|
557
|
+
def next_token: () -> ::String
|
558
|
+
end
|
559
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/SES/Client.html#list_templates-instance_method
|
560
|
+
def list_templates: (
|
561
|
+
?next_token: ::String,
|
562
|
+
?max_items: ::Integer
|
563
|
+
) -> _ListTemplatesResponseSuccess
|
564
|
+
| (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListTemplatesResponseSuccess
|
565
|
+
|
566
|
+
interface _ListVerifiedEmailAddressesResponseSuccess
|
567
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::ListVerifiedEmailAddressesResponse]
|
568
|
+
def verified_email_addresses: () -> ::Array[::String]
|
569
|
+
end
|
570
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/SES/Client.html#list_verified_email_addresses-instance_method
|
571
|
+
def list_verified_email_addresses: () -> _ListVerifiedEmailAddressesResponseSuccess
|
572
|
+
| (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListVerifiedEmailAddressesResponseSuccess
|
573
|
+
|
574
|
+
interface _PutConfigurationSetDeliveryOptionsResponseSuccess
|
575
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::PutConfigurationSetDeliveryOptionsResponse]
|
576
|
+
end
|
577
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/SES/Client.html#put_configuration_set_delivery_options-instance_method
|
578
|
+
def put_configuration_set_delivery_options: (
|
579
|
+
configuration_set_name: ::String,
|
580
|
+
?delivery_options: {
|
581
|
+
tls_policy: ("Require" | "Optional")?
|
582
|
+
}
|
583
|
+
) -> _PutConfigurationSetDeliveryOptionsResponseSuccess
|
584
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _PutConfigurationSetDeliveryOptionsResponseSuccess
|
585
|
+
|
586
|
+
interface _PutIdentityPolicyResponseSuccess
|
587
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::PutIdentityPolicyResponse]
|
588
|
+
end
|
589
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/SES/Client.html#put_identity_policy-instance_method
|
590
|
+
def put_identity_policy: (
|
591
|
+
identity: ::String,
|
592
|
+
policy_name: ::String,
|
593
|
+
policy: ::String
|
594
|
+
) -> _PutIdentityPolicyResponseSuccess
|
595
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _PutIdentityPolicyResponseSuccess
|
596
|
+
|
597
|
+
interface _ReorderReceiptRuleSetResponseSuccess
|
598
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::ReorderReceiptRuleSetResponse]
|
599
|
+
end
|
600
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/SES/Client.html#reorder_receipt_rule_set-instance_method
|
601
|
+
def reorder_receipt_rule_set: (
|
602
|
+
rule_set_name: ::String,
|
603
|
+
rule_names: Array[::String]
|
604
|
+
) -> _ReorderReceiptRuleSetResponseSuccess
|
605
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ReorderReceiptRuleSetResponseSuccess
|
606
|
+
|
607
|
+
interface _SendBounceResponseSuccess
|
608
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::SendBounceResponse]
|
609
|
+
def message_id: () -> ::String
|
610
|
+
end
|
611
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/SES/Client.html#send_bounce-instance_method
|
612
|
+
def send_bounce: (
|
613
|
+
original_message_id: ::String,
|
614
|
+
bounce_sender: ::String,
|
615
|
+
?explanation: ::String,
|
616
|
+
?message_dsn: {
|
617
|
+
reporting_mta: ::String,
|
618
|
+
arrival_date: ::Time?,
|
619
|
+
extension_fields: Array[
|
620
|
+
{
|
621
|
+
name: ::String,
|
622
|
+
value: ::String
|
623
|
+
},
|
624
|
+
]?
|
625
|
+
},
|
626
|
+
bounced_recipient_info_list: Array[
|
627
|
+
{
|
628
|
+
recipient: ::String,
|
629
|
+
recipient_arn: ::String?,
|
630
|
+
bounce_type: ("DoesNotExist" | "MessageTooLarge" | "ExceededQuota" | "ContentRejected" | "Undefined" | "TemporaryFailure")?,
|
631
|
+
recipient_dsn_fields: {
|
632
|
+
final_recipient: ::String?,
|
633
|
+
action: ("failed" | "delayed" | "delivered" | "relayed" | "expanded"),
|
634
|
+
remote_mta: ::String?,
|
635
|
+
status: ::String,
|
636
|
+
diagnostic_code: ::String?,
|
637
|
+
last_attempt_date: ::Time?,
|
638
|
+
extension_fields: Array[
|
639
|
+
{
|
640
|
+
name: ::String,
|
641
|
+
value: ::String
|
642
|
+
},
|
643
|
+
]?
|
644
|
+
}?
|
645
|
+
},
|
646
|
+
],
|
647
|
+
?bounce_sender_arn: ::String
|
648
|
+
) -> _SendBounceResponseSuccess
|
649
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _SendBounceResponseSuccess
|
650
|
+
|
651
|
+
interface _SendBulkTemplatedEmailResponseSuccess
|
652
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::SendBulkTemplatedEmailResponse]
|
653
|
+
def status: () -> ::Array[Types::BulkEmailDestinationStatus]
|
654
|
+
end
|
655
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/SES/Client.html#send_bulk_templated_email-instance_method
|
656
|
+
def send_bulk_templated_email: (
|
657
|
+
source: ::String,
|
658
|
+
?source_arn: ::String,
|
659
|
+
?reply_to_addresses: Array[::String],
|
660
|
+
?return_path: ::String,
|
661
|
+
?return_path_arn: ::String,
|
662
|
+
?configuration_set_name: ::String,
|
663
|
+
?default_tags: Array[
|
664
|
+
{
|
665
|
+
name: ::String,
|
666
|
+
value: ::String
|
667
|
+
},
|
668
|
+
],
|
669
|
+
template: ::String,
|
670
|
+
?template_arn: ::String,
|
671
|
+
?default_template_data: ::String,
|
672
|
+
destinations: Array[
|
673
|
+
{
|
674
|
+
destination: {
|
675
|
+
to_addresses: Array[::String]?,
|
676
|
+
cc_addresses: Array[::String]?,
|
677
|
+
bcc_addresses: Array[::String]?
|
678
|
+
},
|
679
|
+
replacement_tags: Array[
|
680
|
+
{
|
681
|
+
name: ::String,
|
682
|
+
value: ::String
|
683
|
+
},
|
684
|
+
]?,
|
685
|
+
replacement_template_data: ::String?
|
686
|
+
},
|
687
|
+
]
|
688
|
+
) -> _SendBulkTemplatedEmailResponseSuccess
|
689
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _SendBulkTemplatedEmailResponseSuccess
|
690
|
+
|
691
|
+
interface _SendCustomVerificationEmailResponseSuccess
|
692
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::SendCustomVerificationEmailResponse]
|
693
|
+
def message_id: () -> ::String
|
694
|
+
end
|
695
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/SES/Client.html#send_custom_verification_email-instance_method
|
696
|
+
def send_custom_verification_email: (
|
697
|
+
email_address: ::String,
|
698
|
+
template_name: ::String,
|
699
|
+
?configuration_set_name: ::String
|
700
|
+
) -> _SendCustomVerificationEmailResponseSuccess
|
701
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _SendCustomVerificationEmailResponseSuccess
|
702
|
+
|
703
|
+
interface _SendEmailResponseSuccess
|
704
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::SendEmailResponse]
|
705
|
+
def message_id: () -> ::String
|
706
|
+
end
|
707
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/SES/Client.html#send_email-instance_method
|
708
|
+
def send_email: (
|
709
|
+
source: ::String,
|
710
|
+
destination: {
|
711
|
+
to_addresses: Array[::String]?,
|
712
|
+
cc_addresses: Array[::String]?,
|
713
|
+
bcc_addresses: Array[::String]?
|
714
|
+
},
|
715
|
+
message: {
|
716
|
+
subject: {
|
717
|
+
data: ::String,
|
718
|
+
charset: ::String?
|
719
|
+
},
|
720
|
+
body: {
|
721
|
+
text: {
|
722
|
+
data: ::String,
|
723
|
+
charset: ::String?
|
724
|
+
}?,
|
725
|
+
html: {
|
726
|
+
data: ::String,
|
727
|
+
charset: ::String?
|
728
|
+
}?
|
729
|
+
}
|
730
|
+
},
|
731
|
+
?reply_to_addresses: Array[::String],
|
732
|
+
?return_path: ::String,
|
733
|
+
?source_arn: ::String,
|
734
|
+
?return_path_arn: ::String,
|
735
|
+
?tags: Array[
|
736
|
+
{
|
737
|
+
name: ::String,
|
738
|
+
value: ::String
|
739
|
+
},
|
740
|
+
],
|
741
|
+
?configuration_set_name: ::String
|
742
|
+
) -> _SendEmailResponseSuccess
|
743
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _SendEmailResponseSuccess
|
744
|
+
|
745
|
+
interface _SendRawEmailResponseSuccess
|
746
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::SendRawEmailResponse]
|
747
|
+
def message_id: () -> ::String
|
748
|
+
end
|
749
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/SES/Client.html#send_raw_email-instance_method
|
750
|
+
def send_raw_email: (
|
751
|
+
?source: ::String,
|
752
|
+
?destinations: Array[::String],
|
753
|
+
raw_message: {
|
754
|
+
data: ::String
|
755
|
+
},
|
756
|
+
?from_arn: ::String,
|
757
|
+
?source_arn: ::String,
|
758
|
+
?return_path_arn: ::String,
|
759
|
+
?tags: Array[
|
760
|
+
{
|
761
|
+
name: ::String,
|
762
|
+
value: ::String
|
763
|
+
},
|
764
|
+
],
|
765
|
+
?configuration_set_name: ::String
|
766
|
+
) -> _SendRawEmailResponseSuccess
|
767
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _SendRawEmailResponseSuccess
|
768
|
+
|
769
|
+
interface _SendTemplatedEmailResponseSuccess
|
770
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::SendTemplatedEmailResponse]
|
771
|
+
def message_id: () -> ::String
|
772
|
+
end
|
773
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/SES/Client.html#send_templated_email-instance_method
|
774
|
+
def send_templated_email: (
|
775
|
+
source: ::String,
|
776
|
+
destination: {
|
777
|
+
to_addresses: Array[::String]?,
|
778
|
+
cc_addresses: Array[::String]?,
|
779
|
+
bcc_addresses: Array[::String]?
|
780
|
+
},
|
781
|
+
?reply_to_addresses: Array[::String],
|
782
|
+
?return_path: ::String,
|
783
|
+
?source_arn: ::String,
|
784
|
+
?return_path_arn: ::String,
|
785
|
+
?tags: Array[
|
786
|
+
{
|
787
|
+
name: ::String,
|
788
|
+
value: ::String
|
789
|
+
},
|
790
|
+
],
|
791
|
+
?configuration_set_name: ::String,
|
792
|
+
template: ::String,
|
793
|
+
?template_arn: ::String,
|
794
|
+
template_data: ::String
|
795
|
+
) -> _SendTemplatedEmailResponseSuccess
|
796
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _SendTemplatedEmailResponseSuccess
|
797
|
+
|
798
|
+
interface _SetActiveReceiptRuleSetResponseSuccess
|
799
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::SetActiveReceiptRuleSetResponse]
|
800
|
+
end
|
801
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/SES/Client.html#set_active_receipt_rule_set-instance_method
|
802
|
+
def set_active_receipt_rule_set: (
|
803
|
+
?rule_set_name: ::String
|
804
|
+
) -> _SetActiveReceiptRuleSetResponseSuccess
|
805
|
+
| (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _SetActiveReceiptRuleSetResponseSuccess
|
806
|
+
|
807
|
+
interface _SetIdentityDkimEnabledResponseSuccess
|
808
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::SetIdentityDkimEnabledResponse]
|
809
|
+
end
|
810
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/SES/Client.html#set_identity_dkim_enabled-instance_method
|
811
|
+
def set_identity_dkim_enabled: (
|
812
|
+
identity: ::String,
|
813
|
+
dkim_enabled: bool
|
814
|
+
) -> _SetIdentityDkimEnabledResponseSuccess
|
815
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _SetIdentityDkimEnabledResponseSuccess
|
816
|
+
|
817
|
+
interface _SetIdentityFeedbackForwardingEnabledResponseSuccess
|
818
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::SetIdentityFeedbackForwardingEnabledResponse]
|
819
|
+
end
|
820
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/SES/Client.html#set_identity_feedback_forwarding_enabled-instance_method
|
821
|
+
def set_identity_feedback_forwarding_enabled: (
|
822
|
+
identity: ::String,
|
823
|
+
forwarding_enabled: bool
|
824
|
+
) -> _SetIdentityFeedbackForwardingEnabledResponseSuccess
|
825
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _SetIdentityFeedbackForwardingEnabledResponseSuccess
|
826
|
+
|
827
|
+
interface _SetIdentityHeadersInNotificationsEnabledResponseSuccess
|
828
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::SetIdentityHeadersInNotificationsEnabledResponse]
|
829
|
+
end
|
830
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/SES/Client.html#set_identity_headers_in_notifications_enabled-instance_method
|
831
|
+
def set_identity_headers_in_notifications_enabled: (
|
832
|
+
identity: ::String,
|
833
|
+
notification_type: ("Bounce" | "Complaint" | "Delivery"),
|
834
|
+
enabled: bool
|
835
|
+
) -> _SetIdentityHeadersInNotificationsEnabledResponseSuccess
|
836
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _SetIdentityHeadersInNotificationsEnabledResponseSuccess
|
837
|
+
|
838
|
+
interface _SetIdentityMailFromDomainResponseSuccess
|
839
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::SetIdentityMailFromDomainResponse]
|
840
|
+
end
|
841
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/SES/Client.html#set_identity_mail_from_domain-instance_method
|
842
|
+
def set_identity_mail_from_domain: (
|
843
|
+
identity: ::String,
|
844
|
+
?mail_from_domain: ::String,
|
845
|
+
?behavior_on_mx_failure: ("UseDefaultValue" | "RejectMessage")
|
846
|
+
) -> _SetIdentityMailFromDomainResponseSuccess
|
847
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _SetIdentityMailFromDomainResponseSuccess
|
848
|
+
|
849
|
+
interface _SetIdentityNotificationTopicResponseSuccess
|
850
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::SetIdentityNotificationTopicResponse]
|
851
|
+
end
|
852
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/SES/Client.html#set_identity_notification_topic-instance_method
|
853
|
+
def set_identity_notification_topic: (
|
854
|
+
identity: ::String,
|
855
|
+
notification_type: ("Bounce" | "Complaint" | "Delivery"),
|
856
|
+
?sns_topic: ::String
|
857
|
+
) -> _SetIdentityNotificationTopicResponseSuccess
|
858
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _SetIdentityNotificationTopicResponseSuccess
|
859
|
+
|
860
|
+
interface _SetReceiptRulePositionResponseSuccess
|
861
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::SetReceiptRulePositionResponse]
|
862
|
+
end
|
863
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/SES/Client.html#set_receipt_rule_position-instance_method
|
864
|
+
def set_receipt_rule_position: (
|
865
|
+
rule_set_name: ::String,
|
866
|
+
rule_name: ::String,
|
867
|
+
?after: ::String
|
868
|
+
) -> _SetReceiptRulePositionResponseSuccess
|
869
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _SetReceiptRulePositionResponseSuccess
|
870
|
+
|
871
|
+
interface _TestRenderTemplateResponseSuccess
|
872
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::TestRenderTemplateResponse]
|
873
|
+
def rendered_template: () -> ::String
|
874
|
+
end
|
875
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/SES/Client.html#test_render_template-instance_method
|
876
|
+
def test_render_template: (
|
877
|
+
template_name: ::String,
|
878
|
+
template_data: ::String
|
879
|
+
) -> _TestRenderTemplateResponseSuccess
|
880
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _TestRenderTemplateResponseSuccess
|
881
|
+
|
882
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/SES/Client.html#update_account_sending_enabled-instance_method
|
883
|
+
def update_account_sending_enabled: (
|
884
|
+
?enabled: bool
|
885
|
+
) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
|
886
|
+
| (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
|
887
|
+
|
888
|
+
interface _UpdateConfigurationSetEventDestinationResponseSuccess
|
889
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::UpdateConfigurationSetEventDestinationResponse]
|
890
|
+
end
|
891
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/SES/Client.html#update_configuration_set_event_destination-instance_method
|
892
|
+
def update_configuration_set_event_destination: (
|
893
|
+
configuration_set_name: ::String,
|
894
|
+
event_destination: {
|
895
|
+
name: ::String,
|
896
|
+
enabled: bool?,
|
897
|
+
matching_event_types: Array[("send" | "reject" | "bounce" | "complaint" | "delivery" | "open" | "click" | "renderingFailure")],
|
898
|
+
kinesis_firehose_destination: {
|
899
|
+
iam_role_arn: ::String,
|
900
|
+
delivery_stream_arn: ::String
|
901
|
+
}?,
|
902
|
+
cloud_watch_destination: {
|
903
|
+
dimension_configurations: Array[
|
904
|
+
{
|
905
|
+
dimension_name: ::String,
|
906
|
+
dimension_value_source: ("messageTag" | "emailHeader" | "linkTag"),
|
907
|
+
default_dimension_value: ::String
|
908
|
+
},
|
909
|
+
]
|
910
|
+
}?,
|
911
|
+
sns_destination: {
|
912
|
+
topic_arn: ::String
|
913
|
+
}?
|
914
|
+
}
|
915
|
+
) -> _UpdateConfigurationSetEventDestinationResponseSuccess
|
916
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateConfigurationSetEventDestinationResponseSuccess
|
917
|
+
|
918
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/SES/Client.html#update_configuration_set_reputation_metrics_enabled-instance_method
|
919
|
+
def update_configuration_set_reputation_metrics_enabled: (
|
920
|
+
configuration_set_name: ::String,
|
921
|
+
enabled: bool
|
922
|
+
) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
|
923
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
|
924
|
+
|
925
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/SES/Client.html#update_configuration_set_sending_enabled-instance_method
|
926
|
+
def update_configuration_set_sending_enabled: (
|
927
|
+
configuration_set_name: ::String,
|
928
|
+
enabled: bool
|
929
|
+
) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
|
930
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
|
931
|
+
|
932
|
+
interface _UpdateConfigurationSetTrackingOptionsResponseSuccess
|
933
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::UpdateConfigurationSetTrackingOptionsResponse]
|
934
|
+
end
|
935
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/SES/Client.html#update_configuration_set_tracking_options-instance_method
|
936
|
+
def update_configuration_set_tracking_options: (
|
937
|
+
configuration_set_name: ::String,
|
938
|
+
tracking_options: {
|
939
|
+
custom_redirect_domain: ::String?
|
940
|
+
}
|
941
|
+
) -> _UpdateConfigurationSetTrackingOptionsResponseSuccess
|
942
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateConfigurationSetTrackingOptionsResponseSuccess
|
943
|
+
|
944
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/SES/Client.html#update_custom_verification_email_template-instance_method
|
945
|
+
def update_custom_verification_email_template: (
|
946
|
+
template_name: ::String,
|
947
|
+
?from_email_address: ::String,
|
948
|
+
?template_subject: ::String,
|
949
|
+
?template_content: ::String,
|
950
|
+
?success_redirection_url: ::String,
|
951
|
+
?failure_redirection_url: ::String
|
952
|
+
) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
|
953
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
|
954
|
+
|
955
|
+
interface _UpdateReceiptRuleResponseSuccess
|
956
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::UpdateReceiptRuleResponse]
|
957
|
+
end
|
958
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/SES/Client.html#update_receipt_rule-instance_method
|
959
|
+
def update_receipt_rule: (
|
960
|
+
rule_set_name: ::String,
|
961
|
+
rule: {
|
962
|
+
name: ::String,
|
963
|
+
enabled: bool?,
|
964
|
+
tls_policy: ("Require" | "Optional")?,
|
965
|
+
recipients: Array[::String]?,
|
966
|
+
actions: Array[
|
967
|
+
{
|
968
|
+
s3_action: {
|
969
|
+
topic_arn: ::String?,
|
970
|
+
bucket_name: ::String,
|
971
|
+
object_key_prefix: ::String?,
|
972
|
+
kms_key_arn: ::String?
|
973
|
+
}?,
|
974
|
+
bounce_action: {
|
975
|
+
topic_arn: ::String?,
|
976
|
+
smtp_reply_code: ::String,
|
977
|
+
status_code: ::String?,
|
978
|
+
message: ::String,
|
979
|
+
sender: ::String
|
980
|
+
}?,
|
981
|
+
workmail_action: {
|
982
|
+
topic_arn: ::String?,
|
983
|
+
organization_arn: ::String
|
984
|
+
}?,
|
985
|
+
lambda_action: {
|
986
|
+
topic_arn: ::String?,
|
987
|
+
function_arn: ::String,
|
988
|
+
invocation_type: ("Event" | "RequestResponse")?
|
989
|
+
}?,
|
990
|
+
stop_action: {
|
991
|
+
scope: ("RuleSet"),
|
992
|
+
topic_arn: ::String?
|
993
|
+
}?,
|
994
|
+
add_header_action: {
|
995
|
+
header_name: ::String,
|
996
|
+
header_value: ::String
|
997
|
+
}?,
|
998
|
+
sns_action: {
|
999
|
+
topic_arn: ::String,
|
1000
|
+
encoding: ("UTF-8" | "Base64")?
|
1001
|
+
}?
|
1002
|
+
},
|
1003
|
+
]?,
|
1004
|
+
scan_enabled: bool?
|
1005
|
+
}
|
1006
|
+
) -> _UpdateReceiptRuleResponseSuccess
|
1007
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateReceiptRuleResponseSuccess
|
1008
|
+
|
1009
|
+
interface _UpdateTemplateResponseSuccess
|
1010
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::UpdateTemplateResponse]
|
1011
|
+
end
|
1012
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/SES/Client.html#update_template-instance_method
|
1013
|
+
def update_template: (
|
1014
|
+
template: {
|
1015
|
+
template_name: ::String,
|
1016
|
+
subject_part: ::String?,
|
1017
|
+
text_part: ::String?,
|
1018
|
+
html_part: ::String?
|
1019
|
+
}
|
1020
|
+
) -> _UpdateTemplateResponseSuccess
|
1021
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateTemplateResponseSuccess
|
1022
|
+
|
1023
|
+
interface _VerifyDomainDkimResponseSuccess
|
1024
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::VerifyDomainDkimResponse]
|
1025
|
+
def dkim_tokens: () -> ::Array[::String]
|
1026
|
+
end
|
1027
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/SES/Client.html#verify_domain_dkim-instance_method
|
1028
|
+
def verify_domain_dkim: (
|
1029
|
+
domain: ::String
|
1030
|
+
) -> _VerifyDomainDkimResponseSuccess
|
1031
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _VerifyDomainDkimResponseSuccess
|
1032
|
+
|
1033
|
+
interface _VerifyDomainIdentityResponseSuccess
|
1034
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::VerifyDomainIdentityResponse]
|
1035
|
+
def verification_token: () -> ::String
|
1036
|
+
end
|
1037
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/SES/Client.html#verify_domain_identity-instance_method
|
1038
|
+
def verify_domain_identity: (
|
1039
|
+
domain: ::String
|
1040
|
+
) -> _VerifyDomainIdentityResponseSuccess
|
1041
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _VerifyDomainIdentityResponseSuccess
|
1042
|
+
|
1043
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/SES/Client.html#verify_email_address-instance_method
|
1044
|
+
def verify_email_address: (
|
1045
|
+
email_address: ::String
|
1046
|
+
) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
|
1047
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
|
1048
|
+
|
1049
|
+
interface _VerifyEmailIdentityResponseSuccess
|
1050
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::VerifyEmailIdentityResponse]
|
1051
|
+
end
|
1052
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/SES/Client.html#verify_email_identity-instance_method
|
1053
|
+
def verify_email_identity: (
|
1054
|
+
email_address: ::String
|
1055
|
+
) -> _VerifyEmailIdentityResponseSuccess
|
1056
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _VerifyEmailIdentityResponseSuccess
|
1057
|
+
|
1058
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/SES/Client.html#wait_until-instance_method
|
1059
|
+
def wait_until: (:identity_exists waiter_name,
|
1060
|
+
identities: Array[::String]
|
1061
|
+
) -> Client::_GetIdentityVerificationAttributesResponseSuccess
|
1062
|
+
| (:identity_exists waiter_name, Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> Client::_GetIdentityVerificationAttributesResponseSuccess
|
1063
|
+
end
|
1064
|
+
end
|
1065
|
+
end
|
1066
|
+
|