Passed
Push — master ( 2c9229...fa7da2 )
by eval
01:47
created

ses.*SES.RawSetActiveReceiptRuleSet   A

Complexity

Conditions 1

Size

Total Lines 2
Code Lines 2

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
cc 1
eloc 2
nop 2
dl 0
loc 2
rs 10
c 0
b 0
f 0
1
package ses
2
3
import (
4
	"context"
5
6
	SDK "github.com/aws/aws-sdk-go-v2/service/ses"
7
)
8
9
// RawCloneReceiptRuleSet executes `CloneReceiptRuleSet` raw operation.
10
func (svc *SES) RawCloneReceiptRuleSet(ctx context.Context, in *SDK.CloneReceiptRuleSetInput) (*SDK.CloneReceiptRuleSetResponse, error) {
11
	return svc.client.CloneReceiptRuleSetRequest(in).Send(ctx)
12
}
13
14
// RawCreateConfigurationSet executes `CreateConfigurationSet` raw operation.
15
func (svc *SES) RawCreateConfigurationSet(ctx context.Context, in *SDK.CreateConfigurationSetInput) (*SDK.CreateConfigurationSetResponse, error) {
16
	return svc.client.CreateConfigurationSetRequest(in).Send(ctx)
17
}
18
19
// RawCreateConfigurationSetEventDestination executes `CreateConfigurationSetEventDestination` raw operation.
20
func (svc *SES) RawCreateConfigurationSetEventDestination(ctx context.Context, in *SDK.CreateConfigurationSetEventDestinationInput) (*SDK.CreateConfigurationSetEventDestinationResponse, error) {
21
	return svc.client.CreateConfigurationSetEventDestinationRequest(in).Send(ctx)
22
}
23
24
// RawCreateConfigurationSetTrackingOptions executes `CreateConfigurationSetTrackingOptions` raw operation.
25
func (svc *SES) RawCreateConfigurationSetTrackingOptions(ctx context.Context, in *SDK.CreateConfigurationSetTrackingOptionsInput) (*SDK.CreateConfigurationSetTrackingOptionsResponse, error) {
26
	return svc.client.CreateConfigurationSetTrackingOptionsRequest(in).Send(ctx)
27
}
28
29
// RawCreateCustomVerificationEmailTemplate executes `CreateCustomVerificationEmailTemplate` raw operation.
30
func (svc *SES) RawCreateCustomVerificationEmailTemplate(ctx context.Context, in *SDK.CreateCustomVerificationEmailTemplateInput) (*SDK.CreateCustomVerificationEmailTemplateResponse, error) {
31
	return svc.client.CreateCustomVerificationEmailTemplateRequest(in).Send(ctx)
32
}
33
34
// RawCreateReceiptFilter executes `CreateReceiptFilter` raw operation.
35
func (svc *SES) RawCreateReceiptFilter(ctx context.Context, in *SDK.CreateReceiptFilterInput) (*SDK.CreateReceiptFilterResponse, error) {
36
	return svc.client.CreateReceiptFilterRequest(in).Send(ctx)
37
}
38
39
// RawCreateReceiptRule executes `CreateReceiptRule` raw operation.
40
func (svc *SES) RawCreateReceiptRule(ctx context.Context, in *SDK.CreateReceiptRuleInput) (*SDK.CreateReceiptRuleResponse, error) {
41
	return svc.client.CreateReceiptRuleRequest(in).Send(ctx)
42
}
43
44
// RawCreateReceiptRuleSet executes `CreateReceiptRuleSet` raw operation.
45
func (svc *SES) RawCreateReceiptRuleSet(ctx context.Context, in *SDK.CreateReceiptRuleSetInput) (*SDK.CreateReceiptRuleSetResponse, error) {
46
	return svc.client.CreateReceiptRuleSetRequest(in).Send(ctx)
47
}
48
49
// RawCreateTemplate executes `CreateTemplate` raw operation.
50
func (svc *SES) RawCreateTemplate(ctx context.Context, in *SDK.CreateTemplateInput) (*SDK.CreateTemplateResponse, error) {
51
	return svc.client.CreateTemplateRequest(in).Send(ctx)
52
}
53
54
// RawDeleteConfigurationSet executes `DeleteConfigurationSet` raw operation.
55
func (svc *SES) RawDeleteConfigurationSet(ctx context.Context, in *SDK.DeleteConfigurationSetInput) (*SDK.DeleteConfigurationSetResponse, error) {
56
	return svc.client.DeleteConfigurationSetRequest(in).Send(ctx)
57
}
58
59
// RawDeleteConfigurationSetEventDestination executes `DeleteConfigurationSetEventDestination` raw operation.
60
func (svc *SES) RawDeleteConfigurationSetEventDestination(ctx context.Context, in *SDK.DeleteConfigurationSetEventDestinationInput) (*SDK.DeleteConfigurationSetEventDestinationResponse, error) {
61
	return svc.client.DeleteConfigurationSetEventDestinationRequest(in).Send(ctx)
62
}
63
64
// RawDeleteConfigurationSetTrackingOptions executes `DeleteConfigurationSetTrackingOptions` raw operation.
65
func (svc *SES) RawDeleteConfigurationSetTrackingOptions(ctx context.Context, in *SDK.DeleteConfigurationSetTrackingOptionsInput) (*SDK.DeleteConfigurationSetTrackingOptionsResponse, error) {
66
	return svc.client.DeleteConfigurationSetTrackingOptionsRequest(in).Send(ctx)
67
}
68
69
// RawDeleteCustomVerificationEmailTemplate executes `DeleteCustomVerificationEmailTemplate` raw operation.
70
func (svc *SES) RawDeleteCustomVerificationEmailTemplate(ctx context.Context, in *SDK.DeleteCustomVerificationEmailTemplateInput) (*SDK.DeleteCustomVerificationEmailTemplateResponse, error) {
71
	return svc.client.DeleteCustomVerificationEmailTemplateRequest(in).Send(ctx)
72
}
73
74
// RawDeleteIdentity executes `DeleteIdentity` raw operation.
75
func (svc *SES) RawDeleteIdentity(ctx context.Context, in *SDK.DeleteIdentityInput) (*SDK.DeleteIdentityResponse, error) {
76
	return svc.client.DeleteIdentityRequest(in).Send(ctx)
77
}
78
79
// RawDeleteIdentityPolicy executes `DeleteIdentityPolicy` raw operation.
80
func (svc *SES) RawDeleteIdentityPolicy(ctx context.Context, in *SDK.DeleteIdentityPolicyInput) (*SDK.DeleteIdentityPolicyResponse, error) {
81
	return svc.client.DeleteIdentityPolicyRequest(in).Send(ctx)
82
}
83
84
// RawDeleteReceiptFilter executes `DeleteReceiptFilter` raw operation.
85
func (svc *SES) RawDeleteReceiptFilter(ctx context.Context, in *SDK.DeleteReceiptFilterInput) (*SDK.DeleteReceiptFilterResponse, error) {
86
	return svc.client.DeleteReceiptFilterRequest(in).Send(ctx)
87
}
88
89
// RawDeleteReceiptRule executes `DeleteReceiptRule` raw operation.
90
func (svc *SES) RawDeleteReceiptRule(ctx context.Context, in *SDK.DeleteReceiptRuleInput) (*SDK.DeleteReceiptRuleResponse, error) {
91
	return svc.client.DeleteReceiptRuleRequest(in).Send(ctx)
92
}
93
94
// RawDeleteReceiptRuleSet executes `DeleteReceiptRuleSet` raw operation.
95
func (svc *SES) RawDeleteReceiptRuleSet(ctx context.Context, in *SDK.DeleteReceiptRuleSetInput) (*SDK.DeleteReceiptRuleSetResponse, error) {
96
	return svc.client.DeleteReceiptRuleSetRequest(in).Send(ctx)
97
}
98
99
// RawDeleteTemplate executes `DeleteTemplate` raw operation.
100
func (svc *SES) RawDeleteTemplate(ctx context.Context, in *SDK.DeleteTemplateInput) (*SDK.DeleteTemplateResponse, error) {
101
	return svc.client.DeleteTemplateRequest(in).Send(ctx)
102
}
103
104
// RawDeleteVerifiedEmailAddress executes `DeleteVerifiedEmailAddress` raw operation.
105
func (svc *SES) RawDeleteVerifiedEmailAddress(ctx context.Context, in *SDK.DeleteVerifiedEmailAddressInput) (*SDK.DeleteVerifiedEmailAddressResponse, error) {
106
	return svc.client.DeleteVerifiedEmailAddressRequest(in).Send(ctx)
107
}
108
109
// RawDescribeActiveReceiptRuleSet executes `DescribeActiveReceiptRuleSet` raw operation.
110
func (svc *SES) RawDescribeActiveReceiptRuleSet(ctx context.Context, in *SDK.DescribeActiveReceiptRuleSetInput) (*SDK.DescribeActiveReceiptRuleSetResponse, error) {
111
	return svc.client.DescribeActiveReceiptRuleSetRequest(in).Send(ctx)
112
}
113
114
// RawDescribeConfigurationSet executes `DescribeConfigurationSet` raw operation.
115
func (svc *SES) RawDescribeConfigurationSet(ctx context.Context, in *SDK.DescribeConfigurationSetInput) (*SDK.DescribeConfigurationSetResponse, error) {
116
	return svc.client.DescribeConfigurationSetRequest(in).Send(ctx)
117
}
118
119
// RawDescribeReceiptRule executes `DescribeReceiptRule` raw operation.
120
func (svc *SES) RawDescribeReceiptRule(ctx context.Context, in *SDK.DescribeReceiptRuleInput) (*SDK.DescribeReceiptRuleResponse, error) {
121
	return svc.client.DescribeReceiptRuleRequest(in).Send(ctx)
122
}
123
124
// RawDescribeReceiptRuleSet executes `DescribeReceiptRuleSet` raw operation.
125
func (svc *SES) RawDescribeReceiptRuleSet(ctx context.Context, in *SDK.DescribeReceiptRuleSetInput) (*SDK.DescribeReceiptRuleSetResponse, error) {
126
	return svc.client.DescribeReceiptRuleSetRequest(in).Send(ctx)
127
}
128
129
// RawGetAccountSendingEnabled executes `GetAccountSendingEnabled` raw operation.
130
func (svc *SES) RawGetAccountSendingEnabled(ctx context.Context, in *SDK.GetAccountSendingEnabledInput) (*SDK.GetAccountSendingEnabledResponse, error) {
131
	return svc.client.GetAccountSendingEnabledRequest(in).Send(ctx)
132
}
133
134
// RawGetCustomVerificationEmailTemplate executes `GetCustomVerificationEmailTemplate` raw operation.
135
func (svc *SES) RawGetCustomVerificationEmailTemplate(ctx context.Context, in *SDK.GetCustomVerificationEmailTemplateInput) (*SDK.GetCustomVerificationEmailTemplateResponse, error) {
136
	return svc.client.GetCustomVerificationEmailTemplateRequest(in).Send(ctx)
137
}
138
139
// RawGetIdentityDkimAttributes executes `GetIdentityDkimAttributes` raw operation.
140
func (svc *SES) RawGetIdentityDkimAttributes(ctx context.Context, in *SDK.GetIdentityDkimAttributesInput) (*SDK.GetIdentityDkimAttributesResponse, error) {
141
	return svc.client.GetIdentityDkimAttributesRequest(in).Send(ctx)
142
}
143
144
// RawGetIdentityMailFromDomainAttributes executes `GetIdentityMailFromDomainAttributes` raw operation.
145
func (svc *SES) RawGetIdentityMailFromDomainAttributes(ctx context.Context, in *SDK.GetIdentityMailFromDomainAttributesInput) (*SDK.GetIdentityMailFromDomainAttributesResponse, error) {
146
	return svc.client.GetIdentityMailFromDomainAttributesRequest(in).Send(ctx)
147
}
148
149
// RawGetIdentityNotificationAttributes executes `GetIdentityNotificationAttributes` raw operation.
150
func (svc *SES) RawGetIdentityNotificationAttributes(ctx context.Context, in *SDK.GetIdentityNotificationAttributesInput) (*SDK.GetIdentityNotificationAttributesResponse, error) {
151
	return svc.client.GetIdentityNotificationAttributesRequest(in).Send(ctx)
152
}
153
154
// RawGetIdentityPolicies executes `GetIdentityPolicies` raw operation.
155
func (svc *SES) RawGetIdentityPolicies(ctx context.Context, in *SDK.GetIdentityPoliciesInput) (*SDK.GetIdentityPoliciesResponse, error) {
156
	return svc.client.GetIdentityPoliciesRequest(in).Send(ctx)
157
}
158
159
// RawGetIdentityVerificationAttributes executes `GetIdentityVerificationAttributes` raw operation.
160
func (svc *SES) RawGetIdentityVerificationAttributes(ctx context.Context, in *SDK.GetIdentityVerificationAttributesInput) (*SDK.GetIdentityVerificationAttributesResponse, error) {
161
	return svc.client.GetIdentityVerificationAttributesRequest(in).Send(ctx)
162
}
163
164
// RawGetSendQuota executes `GetSendQuota` raw operation.
165
func (svc *SES) RawGetSendQuota(ctx context.Context, in *SDK.GetSendQuotaInput) (*SDK.GetSendQuotaResponse, error) {
166
	return svc.client.GetSendQuotaRequest(in).Send(ctx)
167
}
168
169
// RawGetSendStatistics executes `GetSendStatistics` raw operation.
170
func (svc *SES) RawGetSendStatistics(ctx context.Context, in *SDK.GetSendStatisticsInput) (*SDK.GetSendStatisticsResponse, error) {
171
	return svc.client.GetSendStatisticsRequest(in).Send(ctx)
172
}
173
174
// RawGetTemplate executes `GetTemplate` raw operation.
175
func (svc *SES) RawGetTemplate(ctx context.Context, in *SDK.GetTemplateInput) (*SDK.GetTemplateResponse, error) {
176
	return svc.client.GetTemplateRequest(in).Send(ctx)
177
}
178
179
// RawListConfigurationSets executes `ListConfigurationSets` raw operation.
180
func (svc *SES) RawListConfigurationSets(ctx context.Context, in *SDK.ListConfigurationSetsInput) (*SDK.ListConfigurationSetsResponse, error) {
181
	return svc.client.ListConfigurationSetsRequest(in).Send(ctx)
182
}
183
184
// RawListCustomVerificationEmailTemplates executes `ListCustomVerificationEmailTemplates` raw operation.
185
func (svc *SES) RawListCustomVerificationEmailTemplates(ctx context.Context, in *SDK.ListCustomVerificationEmailTemplatesInput) (*SDK.ListCustomVerificationEmailTemplatesResponse, error) {
186
	return svc.client.ListCustomVerificationEmailTemplatesRequest(in).Send(ctx)
187
}
188
189
// RawListIdentities executes `ListIdentities` raw operation.
190
func (svc *SES) RawListIdentities(ctx context.Context, in *SDK.ListIdentitiesInput) (*SDK.ListIdentitiesResponse, error) {
191
	return svc.client.ListIdentitiesRequest(in).Send(ctx)
192
}
193
194
// RawListIdentityPolicies executes `ListIdentityPolicies` raw operation.
195
func (svc *SES) RawListIdentityPolicies(ctx context.Context, in *SDK.ListIdentityPoliciesInput) (*SDK.ListIdentityPoliciesResponse, error) {
196
	return svc.client.ListIdentityPoliciesRequest(in).Send(ctx)
197
}
198
199
// RawListReceiptFilters executes `ListReceiptFilters` raw operation.
200
func (svc *SES) RawListReceiptFilters(ctx context.Context, in *SDK.ListReceiptFiltersInput) (*SDK.ListReceiptFiltersResponse, error) {
201
	return svc.client.ListReceiptFiltersRequest(in).Send(ctx)
202
}
203
204
// RawListReceiptRuleSets executes `ListReceiptRuleSets` raw operation.
205
func (svc *SES) RawListReceiptRuleSets(ctx context.Context, in *SDK.ListReceiptRuleSetsInput) (*SDK.ListReceiptRuleSetsResponse, error) {
206
	return svc.client.ListReceiptRuleSetsRequest(in).Send(ctx)
207
}
208
209
// RawListTemplates executes `ListTemplates` raw operation.
210
func (svc *SES) RawListTemplates(ctx context.Context, in *SDK.ListTemplatesInput) (*SDK.ListTemplatesResponse, error) {
211
	return svc.client.ListTemplatesRequest(in).Send(ctx)
212
}
213
214
// RawListVerifiedEmailAddresses executes `ListVerifiedEmailAddresses` raw operation.
215
func (svc *SES) RawListVerifiedEmailAddresses(ctx context.Context, in *SDK.ListVerifiedEmailAddressesInput) (*SDK.ListVerifiedEmailAddressesResponse, error) {
216
	return svc.client.ListVerifiedEmailAddressesRequest(in).Send(ctx)
217
}
218
219
// RawPutConfigurationSetDeliveryOptions executes `PutConfigurationSetDeliveryOptions` raw operation.
220
func (svc *SES) RawPutConfigurationSetDeliveryOptions(ctx context.Context, in *SDK.PutConfigurationSetDeliveryOptionsInput) (*SDK.PutConfigurationSetDeliveryOptionsResponse, error) {
221
	return svc.client.PutConfigurationSetDeliveryOptionsRequest(in).Send(ctx)
222
}
223
224
// RawPutIdentityPolicy executes `PutIdentityPolicy` raw operation.
225
func (svc *SES) RawPutIdentityPolicy(ctx context.Context, in *SDK.PutIdentityPolicyInput) (*SDK.PutIdentityPolicyResponse, error) {
226
	return svc.client.PutIdentityPolicyRequest(in).Send(ctx)
227
}
228
229
// RawReorderReceiptRuleSet executes `ReorderReceiptRuleSet` raw operation.
230
func (svc *SES) RawReorderReceiptRuleSet(ctx context.Context, in *SDK.ReorderReceiptRuleSetInput) (*SDK.ReorderReceiptRuleSetResponse, error) {
231
	return svc.client.ReorderReceiptRuleSetRequest(in).Send(ctx)
232
}
233
234
// RawSendBounce executes `SendBounce` raw operation.
235
func (svc *SES) RawSendBounce(ctx context.Context, in *SDK.SendBounceInput) (*SDK.SendBounceResponse, error) {
236
	return svc.client.SendBounceRequest(in).Send(ctx)
237
}
238
239
// RawSendBulkTemplatedEmail executes `SendBulkTemplatedEmail` raw operation.
240
func (svc *SES) RawSendBulkTemplatedEmail(ctx context.Context, in *SDK.SendBulkTemplatedEmailInput) (*SDK.SendBulkTemplatedEmailResponse, error) {
241
	return svc.client.SendBulkTemplatedEmailRequest(in).Send(ctx)
242
}
243
244
// RawSendCustomVerificationEmail executes `SendCustomVerificationEmail` raw operation.
245
func (svc *SES) RawSendCustomVerificationEmail(ctx context.Context, in *SDK.SendCustomVerificationEmailInput) (*SDK.SendCustomVerificationEmailResponse, error) {
246
	return svc.client.SendCustomVerificationEmailRequest(in).Send(ctx)
247
}
248
249
// RawSendEmail executes `SendEmail` raw operation.
250
func (svc *SES) RawSendEmail(ctx context.Context, in *SDK.SendEmailInput) (*SDK.SendEmailResponse, error) {
251
	return svc.client.SendEmailRequest(in).Send(ctx)
252
}
253
254
// RawSendRawEmail executes `SendRawEmail` raw operation.
255
func (svc *SES) RawSendRawEmail(ctx context.Context, in *SDK.SendRawEmailInput) (*SDK.SendRawEmailResponse, error) {
256
	return svc.client.SendRawEmailRequest(in).Send(ctx)
257
}
258
259
// RawSendTemplatedEmail executes `SendTemplatedEmail` raw operation.
260
func (svc *SES) RawSendTemplatedEmail(ctx context.Context, in *SDK.SendTemplatedEmailInput) (*SDK.SendTemplatedEmailResponse, error) {
261
	return svc.client.SendTemplatedEmailRequest(in).Send(ctx)
262
}
263
264
// RawSetActiveReceiptRuleSet executes `SetActiveReceiptRuleSet` raw operation.
265
func (svc *SES) RawSetActiveReceiptRuleSet(ctx context.Context, in *SDK.SetActiveReceiptRuleSetInput) (*SDK.SetActiveReceiptRuleSetResponse, error) {
266
	return svc.client.SetActiveReceiptRuleSetRequest(in).Send(ctx)
267
}
268
269
// RawSetIdentityDkimEnabled executes `SetIdentityDkimEnabled` raw operation.
270
func (svc *SES) RawSetIdentityDkimEnabled(ctx context.Context, in *SDK.SetIdentityDkimEnabledInput) (*SDK.SetIdentityDkimEnabledResponse, error) {
271
	return svc.client.SetIdentityDkimEnabledRequest(in).Send(ctx)
272
}
273
274
// RawSetIdentityFeedbackForwardingEnabled executes `SetIdentityFeedbackForwardingEnabled` raw operation.
275
func (svc *SES) RawSetIdentityFeedbackForwardingEnabled(ctx context.Context, in *SDK.SetIdentityFeedbackForwardingEnabledInput) (*SDK.SetIdentityFeedbackForwardingEnabledResponse, error) {
276
	return svc.client.SetIdentityFeedbackForwardingEnabledRequest(in).Send(ctx)
277
}
278
279
// RawSetIdentityHeadersInNotificationsEnabled executes `SetIdentityHeadersInNotificationsEnabled` raw operation.
280
func (svc *SES) RawSetIdentityHeadersInNotificationsEnabled(ctx context.Context, in *SDK.SetIdentityHeadersInNotificationsEnabledInput) (*SDK.SetIdentityHeadersInNotificationsEnabledResponse, error) {
281
	return svc.client.SetIdentityHeadersInNotificationsEnabledRequest(in).Send(ctx)
282
}
283
284
// RawSetIdentityMailFromDomain executes `SetIdentityMailFromDomain` raw operation.
285
func (svc *SES) RawSetIdentityMailFromDomain(ctx context.Context, in *SDK.SetIdentityMailFromDomainInput) (*SDK.SetIdentityMailFromDomainResponse, error) {
286
	return svc.client.SetIdentityMailFromDomainRequest(in).Send(ctx)
287
}
288
289
// RawSetIdentityNotificationTopic executes `SetIdentityNotificationTopic` raw operation.
290
func (svc *SES) RawSetIdentityNotificationTopic(ctx context.Context, in *SDK.SetIdentityNotificationTopicInput) (*SDK.SetIdentityNotificationTopicResponse, error) {
291
	return svc.client.SetIdentityNotificationTopicRequest(in).Send(ctx)
292
}
293
294
// RawSetReceiptRulePosition executes `SetReceiptRulePosition` raw operation.
295
func (svc *SES) RawSetReceiptRulePosition(ctx context.Context, in *SDK.SetReceiptRulePositionInput) (*SDK.SetReceiptRulePositionResponse, error) {
296
	return svc.client.SetReceiptRulePositionRequest(in).Send(ctx)
297
}
298
299
// RawTestRenderTemplate executes `TestRenderTemplate` raw operation.
300
func (svc *SES) RawTestRenderTemplate(ctx context.Context, in *SDK.TestRenderTemplateInput) (*SDK.TestRenderTemplateResponse, error) {
301
	return svc.client.TestRenderTemplateRequest(in).Send(ctx)
302
}
303
304
// RawUpdateAccountSendingEnabled executes `UpdateAccountSendingEnabled` raw operation.
305
func (svc *SES) RawUpdateAccountSendingEnabled(ctx context.Context, in *SDK.UpdateAccountSendingEnabledInput) (*SDK.UpdateAccountSendingEnabledResponse, error) {
306
	return svc.client.UpdateAccountSendingEnabledRequest(in).Send(ctx)
307
}
308
309
// RawUpdateConfigurationSetEventDestination executes `UpdateConfigurationSetEventDestination` raw operation.
310
func (svc *SES) RawUpdateConfigurationSetEventDestination(ctx context.Context, in *SDK.UpdateConfigurationSetEventDestinationInput) (*SDK.UpdateConfigurationSetEventDestinationResponse, error) {
311
	return svc.client.UpdateConfigurationSetEventDestinationRequest(in).Send(ctx)
312
}
313
314
// RawUpdateConfigurationSetReputationMetricsEnabled executes `UpdateConfigurationSetReputationMetricsEnabled` raw operation.
315
func (svc *SES) RawUpdateConfigurationSetReputationMetricsEnabled(ctx context.Context, in *SDK.UpdateConfigurationSetReputationMetricsEnabledInput) (*SDK.UpdateConfigurationSetReputationMetricsEnabledResponse, error) {
316
	return svc.client.UpdateConfigurationSetReputationMetricsEnabledRequest(in).Send(ctx)
317
}
318
319
// RawUpdateConfigurationSetSendingEnabled executes `UpdateConfigurationSetSendingEnabled` raw operation.
320
func (svc *SES) RawUpdateConfigurationSetSendingEnabled(ctx context.Context, in *SDK.UpdateConfigurationSetSendingEnabledInput) (*SDK.UpdateConfigurationSetSendingEnabledResponse, error) {
321
	return svc.client.UpdateConfigurationSetSendingEnabledRequest(in).Send(ctx)
322
}
323
324
// RawUpdateConfigurationSetTrackingOptions executes `UpdateConfigurationSetTrackingOptions` raw operation.
325
func (svc *SES) RawUpdateConfigurationSetTrackingOptions(ctx context.Context, in *SDK.UpdateConfigurationSetTrackingOptionsInput) (*SDK.UpdateConfigurationSetTrackingOptionsResponse, error) {
326
	return svc.client.UpdateConfigurationSetTrackingOptionsRequest(in).Send(ctx)
327
}
328
329
// RawUpdateCustomVerificationEmailTemplate executes `UpdateCustomVerificationEmailTemplate` raw operation.
330
func (svc *SES) RawUpdateCustomVerificationEmailTemplate(ctx context.Context, in *SDK.UpdateCustomVerificationEmailTemplateInput) (*SDK.UpdateCustomVerificationEmailTemplateResponse, error) {
331
	return svc.client.UpdateCustomVerificationEmailTemplateRequest(in).Send(ctx)
332
}
333
334
// RawUpdateReceiptRule executes `UpdateReceiptRule` raw operation.
335
func (svc *SES) RawUpdateReceiptRule(ctx context.Context, in *SDK.UpdateReceiptRuleInput) (*SDK.UpdateReceiptRuleResponse, error) {
336
	return svc.client.UpdateReceiptRuleRequest(in).Send(ctx)
337
}
338
339
// RawUpdateTemplate executes `UpdateTemplate` raw operation.
340
func (svc *SES) RawUpdateTemplate(ctx context.Context, in *SDK.UpdateTemplateInput) (*SDK.UpdateTemplateResponse, error) {
341
	return svc.client.UpdateTemplateRequest(in).Send(ctx)
342
}
343
344
// RawVerifyDomainDkim executes `VerifyDomainDkim` raw operation.
345
func (svc *SES) RawVerifyDomainDkim(ctx context.Context, in *SDK.VerifyDomainDkimInput) (*SDK.VerifyDomainDkimResponse, error) {
346
	return svc.client.VerifyDomainDkimRequest(in).Send(ctx)
347
}
348
349
// RawVerifyDomainIdentity executes `VerifyDomainIdentity` raw operation.
350
func (svc *SES) RawVerifyDomainIdentity(ctx context.Context, in *SDK.VerifyDomainIdentityInput) (*SDK.VerifyDomainIdentityResponse, error) {
351
	return svc.client.VerifyDomainIdentityRequest(in).Send(ctx)
352
}
353
354
// RawVerifyEmailAddress executes `VerifyEmailAddress` raw operation.
355
func (svc *SES) RawVerifyEmailAddress(ctx context.Context, in *SDK.VerifyEmailAddressInput) (*SDK.VerifyEmailAddressResponse, error) {
356
	return svc.client.VerifyEmailAddressRequest(in).Send(ctx)
357
}
358
359
// RawVerifyEmailIdentity executes `VerifyEmailIdentity` raw operation.
360
func (svc *SES) RawVerifyEmailIdentity(ctx context.Context, in *SDK.VerifyEmailIdentityInput) (*SDK.VerifyEmailIdentityResponse, error) {
361
	return svc.client.VerifyEmailIdentityRequest(in).Send(ctx)
362
}
363