aws-sdk-ses 1.20.0 → 1.21.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/lib/aws-sdk-ses.rb +1 -1
- data/lib/aws-sdk-ses/client.rb +1 -1
- data/lib/aws-sdk-ses/client_api.rb +77 -0
- data/lib/aws-sdk-ses/errors.rb +409 -0
- data/lib/aws-sdk-ses/types.rb +385 -0
- metadata +4 -4
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: c50e9c5cee2a6cd6359c7bbf04d4aa3311a89664
|
4
|
+
data.tar.gz: c831a5aeba2ca2d1b66a6cbcc1889e310f0d6e5a
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: f5fc5b9e40e5de167250e66e8ec5ed51eaf207bca75cb71d5b2b25b27aa7e7383e1c726f8417e3f7ebaaea1382ed0bd41556db79733ece8f973842c83a70a615
|
7
|
+
data.tar.gz: 381ec3ff47e283d8814127cf504500afee922c8aafc35e33dc418e360954d88e0e91a72f29e90321cb00e95a7da8efefe53421b93efd2c8c80813a2e3df0a108
|
data/lib/aws-sdk-ses.rb
CHANGED
data/lib/aws-sdk-ses/client.rb
CHANGED
@@ -327,6 +327,9 @@ module Aws::SES
|
|
327
327
|
|
328
328
|
AddressList.member = Shapes::ShapeRef.new(shape: Address)
|
329
329
|
|
330
|
+
AlreadyExistsException.add_member(:name, Shapes::ShapeRef.new(shape: RuleOrRuleSetName, location_name: "Name"))
|
331
|
+
AlreadyExistsException.struct_class = Types::AlreadyExistsException
|
332
|
+
|
330
333
|
Body.add_member(:text, Shapes::ShapeRef.new(shape: Content, location_name: "Text"))
|
331
334
|
Body.add_member(:html, Shapes::ShapeRef.new(shape: Content, location_name: "Html"))
|
332
335
|
Body.struct_class = Types::Body
|
@@ -360,6 +363,9 @@ module Aws::SES
|
|
360
363
|
|
361
364
|
BulkEmailDestinationStatusList.member = Shapes::ShapeRef.new(shape: BulkEmailDestinationStatus)
|
362
365
|
|
366
|
+
CannotDeleteException.add_member(:name, Shapes::ShapeRef.new(shape: RuleOrRuleSetName, location_name: "Name"))
|
367
|
+
CannotDeleteException.struct_class = Types::CannotDeleteException
|
368
|
+
|
363
369
|
CloneReceiptRuleSetRequest.add_member(:rule_set_name, Shapes::ShapeRef.new(shape: ReceiptRuleSetName, required: true, location_name: "RuleSetName"))
|
364
370
|
CloneReceiptRuleSetRequest.add_member(:original_rule_set_name, Shapes::ShapeRef.new(shape: ReceiptRuleSetName, required: true, location_name: "OriginalRuleSetName"))
|
365
371
|
CloneReceiptRuleSetRequest.struct_class = Types::CloneReceiptRuleSetRequest
|
@@ -379,8 +385,17 @@ module Aws::SES
|
|
379
385
|
ConfigurationSet.add_member(:name, Shapes::ShapeRef.new(shape: ConfigurationSetName, required: true, location_name: "Name"))
|
380
386
|
ConfigurationSet.struct_class = Types::ConfigurationSet
|
381
387
|
|
388
|
+
ConfigurationSetAlreadyExistsException.add_member(:configuration_set_name, Shapes::ShapeRef.new(shape: ConfigurationSetName, location_name: "ConfigurationSetName"))
|
389
|
+
ConfigurationSetAlreadyExistsException.struct_class = Types::ConfigurationSetAlreadyExistsException
|
390
|
+
|
382
391
|
ConfigurationSetAttributeList.member = Shapes::ShapeRef.new(shape: ConfigurationSetAttribute)
|
383
392
|
|
393
|
+
ConfigurationSetDoesNotExistException.add_member(:configuration_set_name, Shapes::ShapeRef.new(shape: ConfigurationSetName, location_name: "ConfigurationSetName"))
|
394
|
+
ConfigurationSetDoesNotExistException.struct_class = Types::ConfigurationSetDoesNotExistException
|
395
|
+
|
396
|
+
ConfigurationSetSendingPausedException.add_member(:configuration_set_name, Shapes::ShapeRef.new(shape: ConfigurationSetName, location_name: "ConfigurationSetName"))
|
397
|
+
ConfigurationSetSendingPausedException.struct_class = Types::ConfigurationSetSendingPausedException
|
398
|
+
|
384
399
|
ConfigurationSets.member = Shapes::ShapeRef.new(shape: ConfigurationSet)
|
385
400
|
|
386
401
|
Content.add_member(:data, Shapes::ShapeRef.new(shape: MessageData, required: true, location_name: "Data"))
|
@@ -441,6 +456,12 @@ module Aws::SES
|
|
441
456
|
CustomVerificationEmailTemplate.add_member(:failure_redirection_url, Shapes::ShapeRef.new(shape: FailureRedirectionURL, location_name: "FailureRedirectionURL"))
|
442
457
|
CustomVerificationEmailTemplate.struct_class = Types::CustomVerificationEmailTemplate
|
443
458
|
|
459
|
+
CustomVerificationEmailTemplateAlreadyExistsException.add_member(:custom_verification_email_template_name, Shapes::ShapeRef.new(shape: TemplateName, location_name: "CustomVerificationEmailTemplateName"))
|
460
|
+
CustomVerificationEmailTemplateAlreadyExistsException.struct_class = Types::CustomVerificationEmailTemplateAlreadyExistsException
|
461
|
+
|
462
|
+
CustomVerificationEmailTemplateDoesNotExistException.add_member(:custom_verification_email_template_name, Shapes::ShapeRef.new(shape: TemplateName, location_name: "CustomVerificationEmailTemplateName"))
|
463
|
+
CustomVerificationEmailTemplateDoesNotExistException.struct_class = Types::CustomVerificationEmailTemplateDoesNotExistException
|
464
|
+
|
444
465
|
CustomVerificationEmailTemplates.member = Shapes::ShapeRef.new(shape: CustomVerificationEmailTemplate)
|
445
466
|
|
446
467
|
DeleteConfigurationSetEventDestinationRequest.add_member(:configuration_set_name, Shapes::ShapeRef.new(shape: ConfigurationSetName, required: true, location_name: "ConfigurationSetName"))
|
@@ -543,6 +564,14 @@ module Aws::SES
|
|
543
564
|
EventDestination.add_member(:sns_destination, Shapes::ShapeRef.new(shape: SNSDestination, location_name: "SNSDestination"))
|
544
565
|
EventDestination.struct_class = Types::EventDestination
|
545
566
|
|
567
|
+
EventDestinationAlreadyExistsException.add_member(:configuration_set_name, Shapes::ShapeRef.new(shape: ConfigurationSetName, location_name: "ConfigurationSetName"))
|
568
|
+
EventDestinationAlreadyExistsException.add_member(:event_destination_name, Shapes::ShapeRef.new(shape: EventDestinationName, location_name: "EventDestinationName"))
|
569
|
+
EventDestinationAlreadyExistsException.struct_class = Types::EventDestinationAlreadyExistsException
|
570
|
+
|
571
|
+
EventDestinationDoesNotExistException.add_member(:configuration_set_name, Shapes::ShapeRef.new(shape: ConfigurationSetName, location_name: "ConfigurationSetName"))
|
572
|
+
EventDestinationDoesNotExistException.add_member(:event_destination_name, Shapes::ShapeRef.new(shape: EventDestinationName, location_name: "EventDestinationName"))
|
573
|
+
EventDestinationDoesNotExistException.struct_class = Types::EventDestinationDoesNotExistException
|
574
|
+
|
546
575
|
EventDestinations.member = Shapes::ShapeRef.new(shape: EventDestination)
|
547
576
|
|
548
577
|
EventTypes.member = Shapes::ShapeRef.new(shape: EventType)
|
@@ -553,6 +582,9 @@ module Aws::SES
|
|
553
582
|
|
554
583
|
ExtensionFieldList.member = Shapes::ShapeRef.new(shape: ExtensionField)
|
555
584
|
|
585
|
+
FromEmailAddressNotVerifiedException.add_member(:from_email_address, Shapes::ShapeRef.new(shape: FromAddress, location_name: "FromEmailAddress"))
|
586
|
+
FromEmailAddressNotVerifiedException.struct_class = Types::FromEmailAddressNotVerifiedException
|
587
|
+
|
556
588
|
GetAccountSendingEnabledResponse.add_member(:enabled, Shapes::ShapeRef.new(shape: Enabled, location_name: "Enabled"))
|
557
589
|
GetAccountSendingEnabledResponse.struct_class = Types::GetAccountSendingEnabledResponse
|
558
590
|
|
@@ -637,6 +669,33 @@ module Aws::SES
|
|
637
669
|
IdentityVerificationAttributes.add_member(:verification_token, Shapes::ShapeRef.new(shape: VerificationToken, location_name: "VerificationToken"))
|
638
670
|
IdentityVerificationAttributes.struct_class = Types::IdentityVerificationAttributes
|
639
671
|
|
672
|
+
InvalidCloudWatchDestinationException.add_member(:configuration_set_name, Shapes::ShapeRef.new(shape: ConfigurationSetName, location_name: "ConfigurationSetName"))
|
673
|
+
InvalidCloudWatchDestinationException.add_member(:event_destination_name, Shapes::ShapeRef.new(shape: EventDestinationName, location_name: "EventDestinationName"))
|
674
|
+
InvalidCloudWatchDestinationException.struct_class = Types::InvalidCloudWatchDestinationException
|
675
|
+
|
676
|
+
InvalidFirehoseDestinationException.add_member(:configuration_set_name, Shapes::ShapeRef.new(shape: ConfigurationSetName, location_name: "ConfigurationSetName"))
|
677
|
+
InvalidFirehoseDestinationException.add_member(:event_destination_name, Shapes::ShapeRef.new(shape: EventDestinationName, location_name: "EventDestinationName"))
|
678
|
+
InvalidFirehoseDestinationException.struct_class = Types::InvalidFirehoseDestinationException
|
679
|
+
|
680
|
+
InvalidLambdaFunctionException.add_member(:function_arn, Shapes::ShapeRef.new(shape: AmazonResourceName, location_name: "FunctionArn"))
|
681
|
+
InvalidLambdaFunctionException.struct_class = Types::InvalidLambdaFunctionException
|
682
|
+
|
683
|
+
InvalidRenderingParameterException.add_member(:template_name, Shapes::ShapeRef.new(shape: TemplateName, location_name: "TemplateName"))
|
684
|
+
InvalidRenderingParameterException.struct_class = Types::InvalidRenderingParameterException
|
685
|
+
|
686
|
+
InvalidS3ConfigurationException.add_member(:bucket, Shapes::ShapeRef.new(shape: S3BucketName, location_name: "Bucket"))
|
687
|
+
InvalidS3ConfigurationException.struct_class = Types::InvalidS3ConfigurationException
|
688
|
+
|
689
|
+
InvalidSNSDestinationException.add_member(:configuration_set_name, Shapes::ShapeRef.new(shape: ConfigurationSetName, location_name: "ConfigurationSetName"))
|
690
|
+
InvalidSNSDestinationException.add_member(:event_destination_name, Shapes::ShapeRef.new(shape: EventDestinationName, location_name: "EventDestinationName"))
|
691
|
+
InvalidSNSDestinationException.struct_class = Types::InvalidSNSDestinationException
|
692
|
+
|
693
|
+
InvalidSnsTopicException.add_member(:topic, Shapes::ShapeRef.new(shape: AmazonResourceName, location_name: "Topic"))
|
694
|
+
InvalidSnsTopicException.struct_class = Types::InvalidSnsTopicException
|
695
|
+
|
696
|
+
InvalidTemplateException.add_member(:template_name, Shapes::ShapeRef.new(shape: TemplateName, location_name: "TemplateName"))
|
697
|
+
InvalidTemplateException.struct_class = Types::InvalidTemplateException
|
698
|
+
|
640
699
|
KinesisFirehoseDestination.add_member(:iam_role_arn, Shapes::ShapeRef.new(shape: AmazonResourceName, required: true, location_name: "IAMRoleARN"))
|
641
700
|
KinesisFirehoseDestination.add_member(:delivery_stream_arn, Shapes::ShapeRef.new(shape: AmazonResourceName, required: true, location_name: "DeliveryStreamARN"))
|
642
701
|
KinesisFirehoseDestination.struct_class = Types::KinesisFirehoseDestination
|
@@ -718,6 +777,9 @@ module Aws::SES
|
|
718
777
|
|
719
778
|
MessageTagList.member = Shapes::ShapeRef.new(shape: MessageTag)
|
720
779
|
|
780
|
+
MissingRenderingAttributeException.add_member(:template_name, Shapes::ShapeRef.new(shape: TemplateName, location_name: "TemplateName"))
|
781
|
+
MissingRenderingAttributeException.struct_class = Types::MissingRenderingAttributeException
|
782
|
+
|
721
783
|
NotificationAttributes.key = Shapes::ShapeRef.new(shape: Identity)
|
722
784
|
NotificationAttributes.value = Shapes::ShapeRef.new(shape: IdentityNotificationAttributes)
|
723
785
|
|
@@ -797,6 +859,12 @@ module Aws::SES
|
|
797
859
|
ReputationOptions.add_member(:last_fresh_start, Shapes::ShapeRef.new(shape: LastFreshStart, location_name: "LastFreshStart"))
|
798
860
|
ReputationOptions.struct_class = Types::ReputationOptions
|
799
861
|
|
862
|
+
RuleDoesNotExistException.add_member(:name, Shapes::ShapeRef.new(shape: RuleOrRuleSetName, location_name: "Name"))
|
863
|
+
RuleDoesNotExistException.struct_class = Types::RuleDoesNotExistException
|
864
|
+
|
865
|
+
RuleSetDoesNotExistException.add_member(:name, Shapes::ShapeRef.new(shape: RuleOrRuleSetName, location_name: "Name"))
|
866
|
+
RuleSetDoesNotExistException.struct_class = Types::RuleSetDoesNotExistException
|
867
|
+
|
800
868
|
S3Action.add_member(:topic_arn, Shapes::ShapeRef.new(shape: AmazonResourceName, location_name: "TopicArn"))
|
801
869
|
S3Action.add_member(:bucket_name, Shapes::ShapeRef.new(shape: S3BucketName, required: true, location_name: "BucketName"))
|
802
870
|
S3Action.add_member(:object_key_prefix, Shapes::ShapeRef.new(shape: S3KeyPrefix, location_name: "ObjectKeyPrefix"))
|
@@ -952,6 +1020,9 @@ module Aws::SES
|
|
952
1020
|
Template.add_member(:html_part, Shapes::ShapeRef.new(shape: HtmlPart, location_name: "HtmlPart"))
|
953
1021
|
Template.struct_class = Types::Template
|
954
1022
|
|
1023
|
+
TemplateDoesNotExistException.add_member(:template_name, Shapes::ShapeRef.new(shape: TemplateName, location_name: "TemplateName"))
|
1024
|
+
TemplateDoesNotExistException.struct_class = Types::TemplateDoesNotExistException
|
1025
|
+
|
955
1026
|
TemplateMetadata.add_member(:name, Shapes::ShapeRef.new(shape: TemplateName, location_name: "Name"))
|
956
1027
|
TemplateMetadata.add_member(:created_timestamp, Shapes::ShapeRef.new(shape: Timestamp, location_name: "CreatedTimestamp"))
|
957
1028
|
TemplateMetadata.struct_class = Types::TemplateMetadata
|
@@ -968,6 +1039,12 @@ module Aws::SES
|
|
968
1039
|
TrackingOptions.add_member(:custom_redirect_domain, Shapes::ShapeRef.new(shape: CustomRedirectDomain, location_name: "CustomRedirectDomain"))
|
969
1040
|
TrackingOptions.struct_class = Types::TrackingOptions
|
970
1041
|
|
1042
|
+
TrackingOptionsAlreadyExistsException.add_member(:configuration_set_name, Shapes::ShapeRef.new(shape: ConfigurationSetName, location_name: "ConfigurationSetName"))
|
1043
|
+
TrackingOptionsAlreadyExistsException.struct_class = Types::TrackingOptionsAlreadyExistsException
|
1044
|
+
|
1045
|
+
TrackingOptionsDoesNotExistException.add_member(:configuration_set_name, Shapes::ShapeRef.new(shape: ConfigurationSetName, location_name: "ConfigurationSetName"))
|
1046
|
+
TrackingOptionsDoesNotExistException.struct_class = Types::TrackingOptionsDoesNotExistException
|
1047
|
+
|
971
1048
|
UpdateAccountSendingEnabledRequest.add_member(:enabled, Shapes::ShapeRef.new(shape: Enabled, location_name: "Enabled"))
|
972
1049
|
UpdateAccountSendingEnabledRequest.struct_class = Types::UpdateAccountSendingEnabledRequest
|
973
1050
|
|
data/lib/aws-sdk-ses/errors.rb
CHANGED
@@ -10,5 +10,414 @@ module Aws::SES
|
|
10
10
|
|
11
11
|
extend Aws::Errors::DynamicErrors
|
12
12
|
|
13
|
+
class AlreadyExistsException < ServiceError
|
14
|
+
|
15
|
+
# @param [Seahorse::Client::RequestContext] context
|
16
|
+
# @param [String] message
|
17
|
+
# @param [Aws::SES::Types::AlreadyExistsException] data
|
18
|
+
def initialize(context, message, data = Aws::EmptyStructure.new)
|
19
|
+
super(context, message, data)
|
20
|
+
end
|
21
|
+
|
22
|
+
# @return [String]
|
23
|
+
def name
|
24
|
+
@data[:name]
|
25
|
+
end
|
26
|
+
|
27
|
+
end
|
28
|
+
|
29
|
+
class CannotDeleteException < ServiceError
|
30
|
+
|
31
|
+
# @param [Seahorse::Client::RequestContext] context
|
32
|
+
# @param [String] message
|
33
|
+
# @param [Aws::SES::Types::CannotDeleteException] data
|
34
|
+
def initialize(context, message, data = Aws::EmptyStructure.new)
|
35
|
+
super(context, message, data)
|
36
|
+
end
|
37
|
+
|
38
|
+
# @return [String]
|
39
|
+
def name
|
40
|
+
@data[:name]
|
41
|
+
end
|
42
|
+
|
43
|
+
end
|
44
|
+
|
45
|
+
class ConfigurationSetAlreadyExistsException < ServiceError
|
46
|
+
|
47
|
+
# @param [Seahorse::Client::RequestContext] context
|
48
|
+
# @param [String] message
|
49
|
+
# @param [Aws::SES::Types::ConfigurationSetAlreadyExistsException] data
|
50
|
+
def initialize(context, message, data = Aws::EmptyStructure.new)
|
51
|
+
super(context, message, data)
|
52
|
+
end
|
53
|
+
|
54
|
+
# @return [String]
|
55
|
+
def configuration_set_name
|
56
|
+
@data[:configuration_set_name]
|
57
|
+
end
|
58
|
+
|
59
|
+
end
|
60
|
+
|
61
|
+
class ConfigurationSetDoesNotExistException < ServiceError
|
62
|
+
|
63
|
+
# @param [Seahorse::Client::RequestContext] context
|
64
|
+
# @param [String] message
|
65
|
+
# @param [Aws::SES::Types::ConfigurationSetDoesNotExistException] data
|
66
|
+
def initialize(context, message, data = Aws::EmptyStructure.new)
|
67
|
+
super(context, message, data)
|
68
|
+
end
|
69
|
+
|
70
|
+
# @return [String]
|
71
|
+
def configuration_set_name
|
72
|
+
@data[:configuration_set_name]
|
73
|
+
end
|
74
|
+
|
75
|
+
end
|
76
|
+
|
77
|
+
class ConfigurationSetSendingPausedException < ServiceError
|
78
|
+
|
79
|
+
# @param [Seahorse::Client::RequestContext] context
|
80
|
+
# @param [String] message
|
81
|
+
# @param [Aws::SES::Types::ConfigurationSetSendingPausedException] data
|
82
|
+
def initialize(context, message, data = Aws::EmptyStructure.new)
|
83
|
+
super(context, message, data)
|
84
|
+
end
|
85
|
+
|
86
|
+
# @return [String]
|
87
|
+
def configuration_set_name
|
88
|
+
@data[:configuration_set_name]
|
89
|
+
end
|
90
|
+
|
91
|
+
end
|
92
|
+
|
93
|
+
class CustomVerificationEmailTemplateAlreadyExistsException < ServiceError
|
94
|
+
|
95
|
+
# @param [Seahorse::Client::RequestContext] context
|
96
|
+
# @param [String] message
|
97
|
+
# @param [Aws::SES::Types::CustomVerificationEmailTemplateAlreadyExistsException] data
|
98
|
+
def initialize(context, message, data = Aws::EmptyStructure.new)
|
99
|
+
super(context, message, data)
|
100
|
+
end
|
101
|
+
|
102
|
+
# @return [String]
|
103
|
+
def custom_verification_email_template_name
|
104
|
+
@data[:custom_verification_email_template_name]
|
105
|
+
end
|
106
|
+
|
107
|
+
end
|
108
|
+
|
109
|
+
class CustomVerificationEmailTemplateDoesNotExistException < ServiceError
|
110
|
+
|
111
|
+
# @param [Seahorse::Client::RequestContext] context
|
112
|
+
# @param [String] message
|
113
|
+
# @param [Aws::SES::Types::CustomVerificationEmailTemplateDoesNotExistException] data
|
114
|
+
def initialize(context, message, data = Aws::EmptyStructure.new)
|
115
|
+
super(context, message, data)
|
116
|
+
end
|
117
|
+
|
118
|
+
# @return [String]
|
119
|
+
def custom_verification_email_template_name
|
120
|
+
@data[:custom_verification_email_template_name]
|
121
|
+
end
|
122
|
+
|
123
|
+
end
|
124
|
+
|
125
|
+
class EventDestinationAlreadyExistsException < ServiceError
|
126
|
+
|
127
|
+
# @param [Seahorse::Client::RequestContext] context
|
128
|
+
# @param [String] message
|
129
|
+
# @param [Aws::SES::Types::EventDestinationAlreadyExistsException] data
|
130
|
+
def initialize(context, message, data = Aws::EmptyStructure.new)
|
131
|
+
super(context, message, data)
|
132
|
+
end
|
133
|
+
|
134
|
+
# @return [String]
|
135
|
+
def configuration_set_name
|
136
|
+
@data[:configuration_set_name]
|
137
|
+
end
|
138
|
+
|
139
|
+
# @return [String]
|
140
|
+
def event_destination_name
|
141
|
+
@data[:event_destination_name]
|
142
|
+
end
|
143
|
+
|
144
|
+
end
|
145
|
+
|
146
|
+
class EventDestinationDoesNotExistException < ServiceError
|
147
|
+
|
148
|
+
# @param [Seahorse::Client::RequestContext] context
|
149
|
+
# @param [String] message
|
150
|
+
# @param [Aws::SES::Types::EventDestinationDoesNotExistException] data
|
151
|
+
def initialize(context, message, data = Aws::EmptyStructure.new)
|
152
|
+
super(context, message, data)
|
153
|
+
end
|
154
|
+
|
155
|
+
# @return [String]
|
156
|
+
def configuration_set_name
|
157
|
+
@data[:configuration_set_name]
|
158
|
+
end
|
159
|
+
|
160
|
+
# @return [String]
|
161
|
+
def event_destination_name
|
162
|
+
@data[:event_destination_name]
|
163
|
+
end
|
164
|
+
|
165
|
+
end
|
166
|
+
|
167
|
+
class FromEmailAddressNotVerifiedException < ServiceError
|
168
|
+
|
169
|
+
# @param [Seahorse::Client::RequestContext] context
|
170
|
+
# @param [String] message
|
171
|
+
# @param [Aws::SES::Types::FromEmailAddressNotVerifiedException] data
|
172
|
+
def initialize(context, message, data = Aws::EmptyStructure.new)
|
173
|
+
super(context, message, data)
|
174
|
+
end
|
175
|
+
|
176
|
+
# @return [String]
|
177
|
+
def from_email_address
|
178
|
+
@data[:from_email_address]
|
179
|
+
end
|
180
|
+
|
181
|
+
end
|
182
|
+
|
183
|
+
class InvalidCloudWatchDestinationException < ServiceError
|
184
|
+
|
185
|
+
# @param [Seahorse::Client::RequestContext] context
|
186
|
+
# @param [String] message
|
187
|
+
# @param [Aws::SES::Types::InvalidCloudWatchDestinationException] data
|
188
|
+
def initialize(context, message, data = Aws::EmptyStructure.new)
|
189
|
+
super(context, message, data)
|
190
|
+
end
|
191
|
+
|
192
|
+
# @return [String]
|
193
|
+
def configuration_set_name
|
194
|
+
@data[:configuration_set_name]
|
195
|
+
end
|
196
|
+
|
197
|
+
# @return [String]
|
198
|
+
def event_destination_name
|
199
|
+
@data[:event_destination_name]
|
200
|
+
end
|
201
|
+
|
202
|
+
end
|
203
|
+
|
204
|
+
class InvalidFirehoseDestinationException < ServiceError
|
205
|
+
|
206
|
+
# @param [Seahorse::Client::RequestContext] context
|
207
|
+
# @param [String] message
|
208
|
+
# @param [Aws::SES::Types::InvalidFirehoseDestinationException] data
|
209
|
+
def initialize(context, message, data = Aws::EmptyStructure.new)
|
210
|
+
super(context, message, data)
|
211
|
+
end
|
212
|
+
|
213
|
+
# @return [String]
|
214
|
+
def configuration_set_name
|
215
|
+
@data[:configuration_set_name]
|
216
|
+
end
|
217
|
+
|
218
|
+
# @return [String]
|
219
|
+
def event_destination_name
|
220
|
+
@data[:event_destination_name]
|
221
|
+
end
|
222
|
+
|
223
|
+
end
|
224
|
+
|
225
|
+
class InvalidLambdaFunctionException < ServiceError
|
226
|
+
|
227
|
+
# @param [Seahorse::Client::RequestContext] context
|
228
|
+
# @param [String] message
|
229
|
+
# @param [Aws::SES::Types::InvalidLambdaFunctionException] data
|
230
|
+
def initialize(context, message, data = Aws::EmptyStructure.new)
|
231
|
+
super(context, message, data)
|
232
|
+
end
|
233
|
+
|
234
|
+
# @return [String]
|
235
|
+
def function_arn
|
236
|
+
@data[:function_arn]
|
237
|
+
end
|
238
|
+
|
239
|
+
end
|
240
|
+
|
241
|
+
class InvalidRenderingParameterException < ServiceError
|
242
|
+
|
243
|
+
# @param [Seahorse::Client::RequestContext] context
|
244
|
+
# @param [String] message
|
245
|
+
# @param [Aws::SES::Types::InvalidRenderingParameterException] data
|
246
|
+
def initialize(context, message, data = Aws::EmptyStructure.new)
|
247
|
+
super(context, message, data)
|
248
|
+
end
|
249
|
+
|
250
|
+
# @return [String]
|
251
|
+
def template_name
|
252
|
+
@data[:template_name]
|
253
|
+
end
|
254
|
+
|
255
|
+
end
|
256
|
+
|
257
|
+
class InvalidS3ConfigurationException < ServiceError
|
258
|
+
|
259
|
+
# @param [Seahorse::Client::RequestContext] context
|
260
|
+
# @param [String] message
|
261
|
+
# @param [Aws::SES::Types::InvalidS3ConfigurationException] data
|
262
|
+
def initialize(context, message, data = Aws::EmptyStructure.new)
|
263
|
+
super(context, message, data)
|
264
|
+
end
|
265
|
+
|
266
|
+
# @return [String]
|
267
|
+
def bucket
|
268
|
+
@data[:bucket]
|
269
|
+
end
|
270
|
+
|
271
|
+
end
|
272
|
+
|
273
|
+
class InvalidSNSDestinationException < ServiceError
|
274
|
+
|
275
|
+
# @param [Seahorse::Client::RequestContext] context
|
276
|
+
# @param [String] message
|
277
|
+
# @param [Aws::SES::Types::InvalidSNSDestinationException] data
|
278
|
+
def initialize(context, message, data = Aws::EmptyStructure.new)
|
279
|
+
super(context, message, data)
|
280
|
+
end
|
281
|
+
|
282
|
+
# @return [String]
|
283
|
+
def configuration_set_name
|
284
|
+
@data[:configuration_set_name]
|
285
|
+
end
|
286
|
+
|
287
|
+
# @return [String]
|
288
|
+
def event_destination_name
|
289
|
+
@data[:event_destination_name]
|
290
|
+
end
|
291
|
+
|
292
|
+
end
|
293
|
+
|
294
|
+
class InvalidSnsTopicException < ServiceError
|
295
|
+
|
296
|
+
# @param [Seahorse::Client::RequestContext] context
|
297
|
+
# @param [String] message
|
298
|
+
# @param [Aws::SES::Types::InvalidSnsTopicException] data
|
299
|
+
def initialize(context, message, data = Aws::EmptyStructure.new)
|
300
|
+
super(context, message, data)
|
301
|
+
end
|
302
|
+
|
303
|
+
# @return [String]
|
304
|
+
def topic
|
305
|
+
@data[:topic]
|
306
|
+
end
|
307
|
+
|
308
|
+
end
|
309
|
+
|
310
|
+
class InvalidTemplateException < ServiceError
|
311
|
+
|
312
|
+
# @param [Seahorse::Client::RequestContext] context
|
313
|
+
# @param [String] message
|
314
|
+
# @param [Aws::SES::Types::InvalidTemplateException] data
|
315
|
+
def initialize(context, message, data = Aws::EmptyStructure.new)
|
316
|
+
super(context, message, data)
|
317
|
+
end
|
318
|
+
|
319
|
+
# @return [String]
|
320
|
+
def template_name
|
321
|
+
@data[:template_name]
|
322
|
+
end
|
323
|
+
|
324
|
+
end
|
325
|
+
|
326
|
+
class MissingRenderingAttributeException < ServiceError
|
327
|
+
|
328
|
+
# @param [Seahorse::Client::RequestContext] context
|
329
|
+
# @param [String] message
|
330
|
+
# @param [Aws::SES::Types::MissingRenderingAttributeException] data
|
331
|
+
def initialize(context, message, data = Aws::EmptyStructure.new)
|
332
|
+
super(context, message, data)
|
333
|
+
end
|
334
|
+
|
335
|
+
# @return [String]
|
336
|
+
def template_name
|
337
|
+
@data[:template_name]
|
338
|
+
end
|
339
|
+
|
340
|
+
end
|
341
|
+
|
342
|
+
class RuleDoesNotExistException < ServiceError
|
343
|
+
|
344
|
+
# @param [Seahorse::Client::RequestContext] context
|
345
|
+
# @param [String] message
|
346
|
+
# @param [Aws::SES::Types::RuleDoesNotExistException] data
|
347
|
+
def initialize(context, message, data = Aws::EmptyStructure.new)
|
348
|
+
super(context, message, data)
|
349
|
+
end
|
350
|
+
|
351
|
+
# @return [String]
|
352
|
+
def name
|
353
|
+
@data[:name]
|
354
|
+
end
|
355
|
+
|
356
|
+
end
|
357
|
+
|
358
|
+
class RuleSetDoesNotExistException < ServiceError
|
359
|
+
|
360
|
+
# @param [Seahorse::Client::RequestContext] context
|
361
|
+
# @param [String] message
|
362
|
+
# @param [Aws::SES::Types::RuleSetDoesNotExistException] data
|
363
|
+
def initialize(context, message, data = Aws::EmptyStructure.new)
|
364
|
+
super(context, message, data)
|
365
|
+
end
|
366
|
+
|
367
|
+
# @return [String]
|
368
|
+
def name
|
369
|
+
@data[:name]
|
370
|
+
end
|
371
|
+
|
372
|
+
end
|
373
|
+
|
374
|
+
class TemplateDoesNotExistException < ServiceError
|
375
|
+
|
376
|
+
# @param [Seahorse::Client::RequestContext] context
|
377
|
+
# @param [String] message
|
378
|
+
# @param [Aws::SES::Types::TemplateDoesNotExistException] data
|
379
|
+
def initialize(context, message, data = Aws::EmptyStructure.new)
|
380
|
+
super(context, message, data)
|
381
|
+
end
|
382
|
+
|
383
|
+
# @return [String]
|
384
|
+
def template_name
|
385
|
+
@data[:template_name]
|
386
|
+
end
|
387
|
+
|
388
|
+
end
|
389
|
+
|
390
|
+
class TrackingOptionsAlreadyExistsException < ServiceError
|
391
|
+
|
392
|
+
# @param [Seahorse::Client::RequestContext] context
|
393
|
+
# @param [String] message
|
394
|
+
# @param [Aws::SES::Types::TrackingOptionsAlreadyExistsException] data
|
395
|
+
def initialize(context, message, data = Aws::EmptyStructure.new)
|
396
|
+
super(context, message, data)
|
397
|
+
end
|
398
|
+
|
399
|
+
# @return [String]
|
400
|
+
def configuration_set_name
|
401
|
+
@data[:configuration_set_name]
|
402
|
+
end
|
403
|
+
|
404
|
+
end
|
405
|
+
|
406
|
+
class TrackingOptionsDoesNotExistException < ServiceError
|
407
|
+
|
408
|
+
# @param [Seahorse::Client::RequestContext] context
|
409
|
+
# @param [String] message
|
410
|
+
# @param [Aws::SES::Types::TrackingOptionsDoesNotExistException] data
|
411
|
+
def initialize(context, message, data = Aws::EmptyStructure.new)
|
412
|
+
super(context, message, data)
|
413
|
+
end
|
414
|
+
|
415
|
+
# @return [String]
|
416
|
+
def configuration_set_name
|
417
|
+
@data[:configuration_set_name]
|
418
|
+
end
|
419
|
+
|
420
|
+
end
|
421
|
+
|
13
422
|
end
|
14
423
|
end
|
data/lib/aws-sdk-ses/types.rb
CHANGED
@@ -45,6 +45,21 @@ module Aws::SES
|
|
45
45
|
include Aws::Structure
|
46
46
|
end
|
47
47
|
|
48
|
+
# Indicates that a resource could not be created because of a naming
|
49
|
+
# conflict.
|
50
|
+
#
|
51
|
+
# @!attribute [rw] name
|
52
|
+
# Indicates that a resource could not be created because the resource
|
53
|
+
# name already exists.
|
54
|
+
# @return [String]
|
55
|
+
#
|
56
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/email-2010-12-01/AlreadyExistsException AWS API Documentation
|
57
|
+
#
|
58
|
+
class AlreadyExistsException < Struct.new(
|
59
|
+
:name)
|
60
|
+
include Aws::Structure
|
61
|
+
end
|
62
|
+
|
48
63
|
# Represents the body of the message. You can specify text, HTML, or
|
49
64
|
# both. If you use both, then the message should display correctly in
|
50
65
|
# the widest variety of email clients.
|
@@ -365,6 +380,20 @@ module Aws::SES
|
|
365
380
|
include Aws::Structure
|
366
381
|
end
|
367
382
|
|
383
|
+
# Indicates that the delete operation could not be completed.
|
384
|
+
#
|
385
|
+
# @!attribute [rw] name
|
386
|
+
# Indicates that a resource could not be deleted because no resource
|
387
|
+
# with the specified name exists.
|
388
|
+
# @return [String]
|
389
|
+
#
|
390
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/email-2010-12-01/CannotDeleteException AWS API Documentation
|
391
|
+
#
|
392
|
+
class CannotDeleteException < Struct.new(
|
393
|
+
:name)
|
394
|
+
include Aws::Structure
|
395
|
+
end
|
396
|
+
|
368
397
|
# Represents a request to create a receipt rule set by cloning an
|
369
398
|
# existing one. You use receipt rule sets to receive email with Amazon
|
370
399
|
# SES. For more information, see the [Amazon SES Developer Guide][1].
|
@@ -540,6 +569,50 @@ module Aws::SES
|
|
540
569
|
include Aws::Structure
|
541
570
|
end
|
542
571
|
|
572
|
+
# Indicates that the configuration set could not be created because of a
|
573
|
+
# naming conflict.
|
574
|
+
#
|
575
|
+
# @!attribute [rw] configuration_set_name
|
576
|
+
# Indicates that the configuration set does not exist.
|
577
|
+
# @return [String]
|
578
|
+
#
|
579
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/email-2010-12-01/ConfigurationSetAlreadyExistsException AWS API Documentation
|
580
|
+
#
|
581
|
+
class ConfigurationSetAlreadyExistsException < Struct.new(
|
582
|
+
:configuration_set_name)
|
583
|
+
include Aws::Structure
|
584
|
+
end
|
585
|
+
|
586
|
+
# Indicates that the configuration set does not exist.
|
587
|
+
#
|
588
|
+
# @!attribute [rw] configuration_set_name
|
589
|
+
# Indicates that the configuration set does not exist.
|
590
|
+
# @return [String]
|
591
|
+
#
|
592
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/email-2010-12-01/ConfigurationSetDoesNotExistException AWS API Documentation
|
593
|
+
#
|
594
|
+
class ConfigurationSetDoesNotExistException < Struct.new(
|
595
|
+
:configuration_set_name)
|
596
|
+
include Aws::Structure
|
597
|
+
end
|
598
|
+
|
599
|
+
# Indicates that email sending is disabled for the configuration set.
|
600
|
+
#
|
601
|
+
# You can enable or disable email sending for a configuration set using
|
602
|
+
# UpdateConfigurationSetSendingEnabled.
|
603
|
+
#
|
604
|
+
# @!attribute [rw] configuration_set_name
|
605
|
+
# The name of the configuration set for which email sending is
|
606
|
+
# disabled.
|
607
|
+
# @return [String]
|
608
|
+
#
|
609
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/email-2010-12-01/ConfigurationSetSendingPausedException AWS API Documentation
|
610
|
+
#
|
611
|
+
class ConfigurationSetSendingPausedException < Struct.new(
|
612
|
+
:configuration_set_name)
|
613
|
+
include Aws::Structure
|
614
|
+
end
|
615
|
+
|
543
616
|
# Represents textual data, plus an optional character set specification.
|
544
617
|
#
|
545
618
|
# By default, the text must be 7-bit ASCII, due to the constraints of
|
@@ -1011,6 +1084,36 @@ module Aws::SES
|
|
1011
1084
|
include Aws::Structure
|
1012
1085
|
end
|
1013
1086
|
|
1087
|
+
# Indicates that a custom verification email template with the name you
|
1088
|
+
# specified already exists.
|
1089
|
+
#
|
1090
|
+
# @!attribute [rw] custom_verification_email_template_name
|
1091
|
+
# Indicates that the provided custom verification email template with
|
1092
|
+
# the specified template name already exists.
|
1093
|
+
# @return [String]
|
1094
|
+
#
|
1095
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/email-2010-12-01/CustomVerificationEmailTemplateAlreadyExistsException AWS API Documentation
|
1096
|
+
#
|
1097
|
+
class CustomVerificationEmailTemplateAlreadyExistsException < Struct.new(
|
1098
|
+
:custom_verification_email_template_name)
|
1099
|
+
include Aws::Structure
|
1100
|
+
end
|
1101
|
+
|
1102
|
+
# Indicates that a custom verification email template with the name you
|
1103
|
+
# specified does not exist.
|
1104
|
+
#
|
1105
|
+
# @!attribute [rw] custom_verification_email_template_name
|
1106
|
+
# Indicates that the provided custom verification email template does
|
1107
|
+
# not exist.
|
1108
|
+
# @return [String]
|
1109
|
+
#
|
1110
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/email-2010-12-01/CustomVerificationEmailTemplateDoesNotExistException AWS API Documentation
|
1111
|
+
#
|
1112
|
+
class CustomVerificationEmailTemplateDoesNotExistException < Struct.new(
|
1113
|
+
:custom_verification_email_template_name)
|
1114
|
+
include Aws::Structure
|
1115
|
+
end
|
1116
|
+
|
1014
1117
|
# Represents a request to delete a configuration set event destination.
|
1015
1118
|
# Configuration set event destinations are associated with configuration
|
1016
1119
|
# sets, which enable you to publish email sending events. For
|
@@ -1703,6 +1806,43 @@ module Aws::SES
|
|
1703
1806
|
include Aws::Structure
|
1704
1807
|
end
|
1705
1808
|
|
1809
|
+
# Indicates that the event destination could not be created because of a
|
1810
|
+
# naming conflict.
|
1811
|
+
#
|
1812
|
+
# @!attribute [rw] configuration_set_name
|
1813
|
+
# Indicates that the configuration set does not exist.
|
1814
|
+
# @return [String]
|
1815
|
+
#
|
1816
|
+
# @!attribute [rw] event_destination_name
|
1817
|
+
# Indicates that the event destination does not exist.
|
1818
|
+
# @return [String]
|
1819
|
+
#
|
1820
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/email-2010-12-01/EventDestinationAlreadyExistsException AWS API Documentation
|
1821
|
+
#
|
1822
|
+
class EventDestinationAlreadyExistsException < Struct.new(
|
1823
|
+
:configuration_set_name,
|
1824
|
+
:event_destination_name)
|
1825
|
+
include Aws::Structure
|
1826
|
+
end
|
1827
|
+
|
1828
|
+
# Indicates that the event destination does not exist.
|
1829
|
+
#
|
1830
|
+
# @!attribute [rw] configuration_set_name
|
1831
|
+
# Indicates that the configuration set does not exist.
|
1832
|
+
# @return [String]
|
1833
|
+
#
|
1834
|
+
# @!attribute [rw] event_destination_name
|
1835
|
+
# Indicates that the event destination does not exist.
|
1836
|
+
# @return [String]
|
1837
|
+
#
|
1838
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/email-2010-12-01/EventDestinationDoesNotExistException AWS API Documentation
|
1839
|
+
#
|
1840
|
+
class EventDestinationDoesNotExistException < Struct.new(
|
1841
|
+
:configuration_set_name,
|
1842
|
+
:event_destination_name)
|
1843
|
+
include Aws::Structure
|
1844
|
+
end
|
1845
|
+
|
1706
1846
|
# Additional X-headers to include in the Delivery Status Notification
|
1707
1847
|
# (DSN) when an email that Amazon SES receives on your behalf bounces.
|
1708
1848
|
#
|
@@ -1740,6 +1880,22 @@ module Aws::SES
|
|
1740
1880
|
include Aws::Structure
|
1741
1881
|
end
|
1742
1882
|
|
1883
|
+
# Indicates that the sender address specified for a custom verification
|
1884
|
+
# email is not verified, and is therefore not eligible to send the
|
1885
|
+
# custom verification email.
|
1886
|
+
#
|
1887
|
+
# @!attribute [rw] from_email_address
|
1888
|
+
# Indicates that the from email address associated with the custom
|
1889
|
+
# verification email template is not verified.
|
1890
|
+
# @return [String]
|
1891
|
+
#
|
1892
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/email-2010-12-01/FromEmailAddressNotVerifiedException AWS API Documentation
|
1893
|
+
#
|
1894
|
+
class FromEmailAddressNotVerifiedException < Struct.new(
|
1895
|
+
:from_email_address)
|
1896
|
+
include Aws::Structure
|
1897
|
+
end
|
1898
|
+
|
1743
1899
|
# Represents a request to return the email sending status for your
|
1744
1900
|
# Amazon SES account in the current AWS Region.
|
1745
1901
|
#
|
@@ -2280,6 +2436,151 @@ module Aws::SES
|
|
2280
2436
|
include Aws::Structure
|
2281
2437
|
end
|
2282
2438
|
|
2439
|
+
# Indicates that the Amazon CloudWatch destination is invalid. See the
|
2440
|
+
# error message for details.
|
2441
|
+
#
|
2442
|
+
# @!attribute [rw] configuration_set_name
|
2443
|
+
# Indicates that the configuration set does not exist.
|
2444
|
+
# @return [String]
|
2445
|
+
#
|
2446
|
+
# @!attribute [rw] event_destination_name
|
2447
|
+
# Indicates that the event destination does not exist.
|
2448
|
+
# @return [String]
|
2449
|
+
#
|
2450
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/email-2010-12-01/InvalidCloudWatchDestinationException AWS API Documentation
|
2451
|
+
#
|
2452
|
+
class InvalidCloudWatchDestinationException < Struct.new(
|
2453
|
+
:configuration_set_name,
|
2454
|
+
:event_destination_name)
|
2455
|
+
include Aws::Structure
|
2456
|
+
end
|
2457
|
+
|
2458
|
+
# Indicates that the Amazon Kinesis Firehose destination is invalid. See
|
2459
|
+
# the error message for details.
|
2460
|
+
#
|
2461
|
+
# @!attribute [rw] configuration_set_name
|
2462
|
+
# Indicates that the configuration set does not exist.
|
2463
|
+
# @return [String]
|
2464
|
+
#
|
2465
|
+
# @!attribute [rw] event_destination_name
|
2466
|
+
# Indicates that the event destination does not exist.
|
2467
|
+
# @return [String]
|
2468
|
+
#
|
2469
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/email-2010-12-01/InvalidFirehoseDestinationException AWS API Documentation
|
2470
|
+
#
|
2471
|
+
class InvalidFirehoseDestinationException < Struct.new(
|
2472
|
+
:configuration_set_name,
|
2473
|
+
:event_destination_name)
|
2474
|
+
include Aws::Structure
|
2475
|
+
end
|
2476
|
+
|
2477
|
+
# Indicates that the provided AWS Lambda function is invalid, or that
|
2478
|
+
# Amazon SES could not execute the provided function, possibly due to
|
2479
|
+
# permissions issues. For information about giving permissions, see the
|
2480
|
+
# [Amazon SES Developer Guide][1].
|
2481
|
+
#
|
2482
|
+
#
|
2483
|
+
#
|
2484
|
+
# [1]: http://docs.aws.amazon.com/ses/latest/DeveloperGuide/receiving-email-permissions.html
|
2485
|
+
#
|
2486
|
+
# @!attribute [rw] function_arn
|
2487
|
+
# Indicates that the ARN of the function was not found.
|
2488
|
+
# @return [String]
|
2489
|
+
#
|
2490
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/email-2010-12-01/InvalidLambdaFunctionException AWS API Documentation
|
2491
|
+
#
|
2492
|
+
class InvalidLambdaFunctionException < Struct.new(
|
2493
|
+
:function_arn)
|
2494
|
+
include Aws::Structure
|
2495
|
+
end
|
2496
|
+
|
2497
|
+
# Indicates that one or more of the replacement values you provided is
|
2498
|
+
# invalid. This error may occur when the TemplateData object contains
|
2499
|
+
# invalid JSON.
|
2500
|
+
#
|
2501
|
+
# @!attribute [rw] template_name
|
2502
|
+
# @return [String]
|
2503
|
+
#
|
2504
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/email-2010-12-01/InvalidRenderingParameterException AWS API Documentation
|
2505
|
+
#
|
2506
|
+
class InvalidRenderingParameterException < Struct.new(
|
2507
|
+
:template_name)
|
2508
|
+
include Aws::Structure
|
2509
|
+
end
|
2510
|
+
|
2511
|
+
# Indicates that the provided Amazon S3 bucket or AWS KMS encryption key
|
2512
|
+
# is invalid, or that Amazon SES could not publish to the bucket,
|
2513
|
+
# possibly due to permissions issues. For information about giving
|
2514
|
+
# permissions, see the [Amazon SES Developer Guide][1].
|
2515
|
+
#
|
2516
|
+
#
|
2517
|
+
#
|
2518
|
+
# [1]: http://docs.aws.amazon.com/ses/latest/DeveloperGuide/receiving-email-permissions.html
|
2519
|
+
#
|
2520
|
+
# @!attribute [rw] bucket
|
2521
|
+
# Indicated that the S3 Bucket was not found.
|
2522
|
+
# @return [String]
|
2523
|
+
#
|
2524
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/email-2010-12-01/InvalidS3ConfigurationException AWS API Documentation
|
2525
|
+
#
|
2526
|
+
class InvalidS3ConfigurationException < Struct.new(
|
2527
|
+
:bucket)
|
2528
|
+
include Aws::Structure
|
2529
|
+
end
|
2530
|
+
|
2531
|
+
# Indicates that the Amazon Simple Notification Service (Amazon SNS)
|
2532
|
+
# destination is invalid. See the error message for details.
|
2533
|
+
#
|
2534
|
+
# @!attribute [rw] configuration_set_name
|
2535
|
+
# Indicates that the configuration set does not exist.
|
2536
|
+
# @return [String]
|
2537
|
+
#
|
2538
|
+
# @!attribute [rw] event_destination_name
|
2539
|
+
# Indicates that the event destination does not exist.
|
2540
|
+
# @return [String]
|
2541
|
+
#
|
2542
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/email-2010-12-01/InvalidSNSDestinationException AWS API Documentation
|
2543
|
+
#
|
2544
|
+
class InvalidSNSDestinationException < Struct.new(
|
2545
|
+
:configuration_set_name,
|
2546
|
+
:event_destination_name)
|
2547
|
+
include Aws::Structure
|
2548
|
+
end
|
2549
|
+
|
2550
|
+
# Indicates that the provided Amazon SNS topic is invalid, or that
|
2551
|
+
# Amazon SES could not publish to the topic, possibly due to permissions
|
2552
|
+
# issues. For information about giving permissions, see the [Amazon SES
|
2553
|
+
# Developer Guide][1].
|
2554
|
+
#
|
2555
|
+
#
|
2556
|
+
#
|
2557
|
+
# [1]: http://docs.aws.amazon.com/ses/latest/DeveloperGuide/receiving-email-permissions.html
|
2558
|
+
#
|
2559
|
+
# @!attribute [rw] topic
|
2560
|
+
# Indicates that the topic does not exist.
|
2561
|
+
# @return [String]
|
2562
|
+
#
|
2563
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/email-2010-12-01/InvalidSnsTopicException AWS API Documentation
|
2564
|
+
#
|
2565
|
+
class InvalidSnsTopicException < Struct.new(
|
2566
|
+
:topic)
|
2567
|
+
include Aws::Structure
|
2568
|
+
end
|
2569
|
+
|
2570
|
+
# Indicates that the template that you specified could not be rendered.
|
2571
|
+
# This issue may occur when a template refers to a partial that does not
|
2572
|
+
# exist.
|
2573
|
+
#
|
2574
|
+
# @!attribute [rw] template_name
|
2575
|
+
# @return [String]
|
2576
|
+
#
|
2577
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/email-2010-12-01/InvalidTemplateException AWS API Documentation
|
2578
|
+
#
|
2579
|
+
class InvalidTemplateException < Struct.new(
|
2580
|
+
:template_name)
|
2581
|
+
include Aws::Structure
|
2582
|
+
end
|
2583
|
+
|
2283
2584
|
# Contains the delivery stream ARN and the IAM role ARN associated with
|
2284
2585
|
# an Amazon Kinesis Firehose event destination.
|
2285
2586
|
#
|
@@ -2902,6 +3203,21 @@ module Aws::SES
|
|
2902
3203
|
include Aws::Structure
|
2903
3204
|
end
|
2904
3205
|
|
3206
|
+
# Indicates that one or more of the replacement values for the specified
|
3207
|
+
# template was not specified. Ensure that the TemplateData object
|
3208
|
+
# contains references to all of the replacement tags in the specified
|
3209
|
+
# template.
|
3210
|
+
#
|
3211
|
+
# @!attribute [rw] template_name
|
3212
|
+
# @return [String]
|
3213
|
+
#
|
3214
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/email-2010-12-01/MissingRenderingAttributeException AWS API Documentation
|
3215
|
+
#
|
3216
|
+
class MissingRenderingAttributeException < Struct.new(
|
3217
|
+
:template_name)
|
3218
|
+
include Aws::Structure
|
3219
|
+
end
|
3220
|
+
|
2905
3221
|
# Represents a request to add or update a sending authorization policy
|
2906
3222
|
# for an identity. Sending authorization is an Amazon SES feature that
|
2907
3223
|
# enables you to authorize other senders to use your identities. For
|
@@ -3544,6 +3860,32 @@ module Aws::SES
|
|
3544
3860
|
include Aws::Structure
|
3545
3861
|
end
|
3546
3862
|
|
3863
|
+
# Indicates that the provided receipt rule does not exist.
|
3864
|
+
#
|
3865
|
+
# @!attribute [rw] name
|
3866
|
+
# Indicates that the named receipt rule does not exist.
|
3867
|
+
# @return [String]
|
3868
|
+
#
|
3869
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/email-2010-12-01/RuleDoesNotExistException AWS API Documentation
|
3870
|
+
#
|
3871
|
+
class RuleDoesNotExistException < Struct.new(
|
3872
|
+
:name)
|
3873
|
+
include Aws::Structure
|
3874
|
+
end
|
3875
|
+
|
3876
|
+
# Indicates that the provided receipt rule set does not exist.
|
3877
|
+
#
|
3878
|
+
# @!attribute [rw] name
|
3879
|
+
# Indicates that the named receipt rule set does not exist.
|
3880
|
+
# @return [String]
|
3881
|
+
#
|
3882
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/email-2010-12-01/RuleSetDoesNotExistException AWS API Documentation
|
3883
|
+
#
|
3884
|
+
class RuleSetDoesNotExistException < Struct.new(
|
3885
|
+
:name)
|
3886
|
+
include Aws::Structure
|
3887
|
+
end
|
3888
|
+
|
3547
3889
|
# When included in a receipt rule, this action saves the received
|
3548
3890
|
# message to an Amazon Simple Storage Service (Amazon S3) bucket and,
|
3549
3891
|
# optionally, publishes a notification to Amazon Simple Notification
|
@@ -5168,6 +5510,19 @@ module Aws::SES
|
|
5168
5510
|
include Aws::Structure
|
5169
5511
|
end
|
5170
5512
|
|
5513
|
+
# Indicates that the Template object you specified does not exist in
|
5514
|
+
# your Amazon SES account.
|
5515
|
+
#
|
5516
|
+
# @!attribute [rw] template_name
|
5517
|
+
# @return [String]
|
5518
|
+
#
|
5519
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/email-2010-12-01/TemplateDoesNotExistException AWS API Documentation
|
5520
|
+
#
|
5521
|
+
class TemplateDoesNotExistException < Struct.new(
|
5522
|
+
:template_name)
|
5523
|
+
include Aws::Structure
|
5524
|
+
end
|
5525
|
+
|
5171
5526
|
# Contains information about an email template.
|
5172
5527
|
#
|
5173
5528
|
# @!attribute [rw] name
|
@@ -5254,6 +5609,36 @@ module Aws::SES
|
|
5254
5609
|
include Aws::Structure
|
5255
5610
|
end
|
5256
5611
|
|
5612
|
+
# Indicates that the configuration set you specified already contains a
|
5613
|
+
# TrackingOptions object.
|
5614
|
+
#
|
5615
|
+
# @!attribute [rw] configuration_set_name
|
5616
|
+
# Indicates that a TrackingOptions object already exists in the
|
5617
|
+
# specified configuration set.
|
5618
|
+
# @return [String]
|
5619
|
+
#
|
5620
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/email-2010-12-01/TrackingOptionsAlreadyExistsException AWS API Documentation
|
5621
|
+
#
|
5622
|
+
class TrackingOptionsAlreadyExistsException < Struct.new(
|
5623
|
+
:configuration_set_name)
|
5624
|
+
include Aws::Structure
|
5625
|
+
end
|
5626
|
+
|
5627
|
+
# Indicates that the TrackingOptions object you specified does not
|
5628
|
+
# exist.
|
5629
|
+
#
|
5630
|
+
# @!attribute [rw] configuration_set_name
|
5631
|
+
# Indicates that a TrackingOptions object does not exist in the
|
5632
|
+
# specified configuration set.
|
5633
|
+
# @return [String]
|
5634
|
+
#
|
5635
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/email-2010-12-01/TrackingOptionsDoesNotExistException AWS API Documentation
|
5636
|
+
#
|
5637
|
+
class TrackingOptionsDoesNotExistException < Struct.new(
|
5638
|
+
:configuration_set_name)
|
5639
|
+
include Aws::Structure
|
5640
|
+
end
|
5641
|
+
|
5257
5642
|
# Represents a request to enable or disable the email sending
|
5258
5643
|
# capabilities for your entire Amazon SES account.
|
5259
5644
|
#
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: aws-sdk-ses
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.
|
4
|
+
version: 1.21.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Amazon Web Services
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2019-05-
|
11
|
+
date: 2019-05-21 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-core
|
@@ -19,7 +19,7 @@ dependencies:
|
|
19
19
|
version: '3'
|
20
20
|
- - ">="
|
21
21
|
- !ruby/object:Gem::Version
|
22
|
-
version: 3.
|
22
|
+
version: 3.53.0
|
23
23
|
type: :runtime
|
24
24
|
prerelease: false
|
25
25
|
version_requirements: !ruby/object:Gem::Requirement
|
@@ -29,7 +29,7 @@ dependencies:
|
|
29
29
|
version: '3'
|
30
30
|
- - ">="
|
31
31
|
- !ruby/object:Gem::Version
|
32
|
-
version: 3.
|
32
|
+
version: 3.53.0
|
33
33
|
- !ruby/object:Gem::Dependency
|
34
34
|
name: aws-sigv4
|
35
35
|
requirement: !ruby/object:Gem::Requirement
|