aws-sdk-pinpointemail 1.17.0 → 1.22.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
- SHA1:
3
- metadata.gz: 7d62be975dd066524069de9cb78938d227ad30fa
4
- data.tar.gz: 6af88eda8862a7b1cb77ab2c643ce7aaf2ff2f2b
2
+ SHA256:
3
+ metadata.gz: 94805e852605ea86753e5207a778ba6e3e56e248482a0976949af52cf7623499
4
+ data.tar.gz: 07535fbbd26026bd42ca091b43815e3e46104769c333f05ec452ebce821f1617
5
5
  SHA512:
6
- metadata.gz: 2614a0eae3a218a7e6fd3263b9002674aaf032ce05178b5b07eaf48b802b809bc2c0a0acf817502c8fb686d8484330bd9ce63c59f32c380472ad016726826487
7
- data.tar.gz: b56187f0e1a8c1e746dd3fbfbf83983ba2e7c7f7986552cea8bf71eedc0068202297f0b76d836596939aba7f5a8169eda73e290ffb0c3b7789e1b28e79ec7f4e
6
+ metadata.gz: c230c8cd6bbe5c32e06e2b1e11d1873c07c5266a754c2910a53369af7ecca787e9b6cb81a69178b5a254cd0a3bdf005f2d4b4a1117bcb04645508f3771bbb2db
7
+ data.tar.gz: f1caf03e0d678d053344e6fbacd484799d3fa93ce25b795820c5a73f86d3486a6832440f7ce8af8b59924ebd905124224224dfdb858bfe05011196a86b12b5db
@@ -1,3 +1,5 @@
1
+ # frozen_string_literal: true
2
+
1
3
  # WARNING ABOUT GENERATED CODE
2
4
  #
3
5
  # This file is generated. See the contributing guide for more information:
@@ -42,9 +44,9 @@ require_relative 'aws-sdk-pinpointemail/customizations'
42
44
  #
43
45
  # See {Errors} for more information.
44
46
  #
45
- # @service
47
+ # @!group service
46
48
  module Aws::PinpointEmail
47
49
 
48
- GEM_VERSION = '1.17.0'
50
+ GEM_VERSION = '1.22.0'
49
51
 
50
52
  end
@@ -1,3 +1,5 @@
1
+ # frozen_string_literal: true
2
+
1
3
  # WARNING ABOUT GENERATED CODE
2
4
  #
3
5
  # This file is generated. See the contributing guide for more information:
@@ -24,6 +26,7 @@ require 'aws-sdk-core/plugins/jsonvalue_converter.rb'
24
26
  require 'aws-sdk-core/plugins/client_metrics_plugin.rb'
25
27
  require 'aws-sdk-core/plugins/client_metrics_send_plugin.rb'
26
28
  require 'aws-sdk-core/plugins/transfer_encoding.rb'
29
+ require 'aws-sdk-core/plugins/http_checksum.rb'
27
30
  require 'aws-sdk-core/plugins/signature_v4.rb'
28
31
  require 'aws-sdk-core/plugins/protocols/rest_json.rb'
29
32
 
@@ -32,11 +35,11 @@ Aws::Plugins::GlobalConfiguration.add_identifier(:pinpointemail)
32
35
  module Aws::PinpointEmail
33
36
  # An API client for PinpointEmail. To construct a client, you need to configure a `:region` and `:credentials`.
34
37
  #
35
- # client = Aws::PinpointEmail::Client.new(
36
- # region: region_name,
37
- # credentials: credentials,
38
- # # ...
39
- # )
38
+ # client = Aws::PinpointEmail::Client.new(
39
+ # region: region_name,
40
+ # credentials: credentials,
41
+ # # ...
42
+ # )
40
43
  #
41
44
  # For details on configuring region and credentials see
42
45
  # the [developer guide](/sdk-for-ruby/v3/developer-guide/setup-config.html).
@@ -69,6 +72,7 @@ module Aws::PinpointEmail
69
72
  add_plugin(Aws::Plugins::ClientMetricsPlugin)
70
73
  add_plugin(Aws::Plugins::ClientMetricsSendPlugin)
71
74
  add_plugin(Aws::Plugins::TransferEncoding)
75
+ add_plugin(Aws::Plugins::HttpChecksum)
72
76
  add_plugin(Aws::Plugins::SignatureV4)
73
77
  add_plugin(Aws::Plugins::Protocols::RestJson)
74
78
 
@@ -81,13 +85,28 @@ module Aws::PinpointEmail
81
85
  # * `Aws::Credentials` - Used for configuring static, non-refreshing
82
86
  # credentials.
83
87
  #
88
+ # * `Aws::SharedCredentials` - Used for loading static credentials from a
89
+ # shared file, such as `~/.aws/config`.
90
+ #
91
+ # * `Aws::AssumeRoleCredentials` - Used when you need to assume a role.
92
+ #
93
+ # * `Aws::AssumeRoleWebIdentityCredentials` - Used when you need to
94
+ # assume a role after providing credentials via the web.
95
+ #
96
+ # * `Aws::SSOCredentials` - Used for loading credentials from AWS SSO using an
97
+ # access token generated from `aws login`.
98
+ #
99
+ # * `Aws::ProcessCredentials` - Used for loading credentials from a
100
+ # process that outputs to stdout.
101
+ #
84
102
  # * `Aws::InstanceProfileCredentials` - Used for loading credentials
85
103
  # from an EC2 IMDS on an EC2 instance.
86
104
  #
87
- # * `Aws::SharedCredentials` - Used for loading credentials from a
88
- # shared file, such as `~/.aws/config`.
105
+ # * `Aws::ECSCredentials` - Used for loading credentials from
106
+ # instances running in ECS.
89
107
  #
90
- # * `Aws::AssumeRoleCredentials` - Used when you need to assume a role.
108
+ # * `Aws::CognitoIdentityCredentials` - Used for loading credentials
109
+ # from the Cognito Identity service.
91
110
  #
92
111
  # When `:credentials` are not configured directly, the following
93
112
  # locations will be searched for credentials:
@@ -97,15 +116,15 @@ module Aws::PinpointEmail
97
116
  # * ENV['AWS_ACCESS_KEY_ID'], ENV['AWS_SECRET_ACCESS_KEY']
98
117
  # * `~/.aws/credentials`
99
118
  # * `~/.aws/config`
100
- # * EC2 IMDS instance profile - When used by default, the timeouts are
101
- # very aggressive. Construct and pass an instance of
102
- # `Aws::InstanceProfileCredentails` to enable retries and extended
103
- # timeouts.
119
+ # * EC2/ECS IMDS instance profile - When used by default, the timeouts
120
+ # are very aggressive. Construct and pass an instance of
121
+ # `Aws::InstanceProfileCredentails` or `Aws::ECSCredentials` to
122
+ # enable retries and extended timeouts.
104
123
  #
105
124
  # @option options [required, String] :region
106
125
  # The AWS region to connect to. The configured `:region` is
107
126
  # used to determine the service `:endpoint`. When not passed,
108
- # a default `:region` is search for in the following locations:
127
+ # a default `:region` is searched for in the following locations:
109
128
  #
110
129
  # * `Aws.config[:region]`
111
130
  # * `ENV['AWS_REGION']`
@@ -161,7 +180,7 @@ module Aws::PinpointEmail
161
180
  # @option options [String] :endpoint
162
181
  # The client endpoint is normally constructed from the `:region`
163
182
  # option. You should only configure an `:endpoint` when connecting
164
- # to test endpoints. This should be avalid HTTP(S) URI.
183
+ # to test or custom endpoints. This should be a valid HTTP(S) URI.
165
184
  #
166
185
  # @option options [Integer] :endpoint_cache_max_entries (1000)
167
186
  # Used for the maximum size limit of the LRU cache storing endpoints data
@@ -176,7 +195,7 @@ module Aws::PinpointEmail
176
195
  # requests fetching endpoints information. Defaults to 60 sec.
177
196
  #
178
197
  # @option options [Boolean] :endpoint_discovery (false)
179
- # When set to `true`, endpoint discovery will be enabled for operations when available. Defaults to `false`.
198
+ # When set to `true`, endpoint discovery will be enabled for operations when available.
180
199
  #
181
200
  # @option options [Aws::Log::Formatter] :log_formatter (Aws::Log::Formatter.default)
182
201
  # The log formatter.
@@ -229,15 +248,19 @@ module Aws::PinpointEmail
229
248
  #
230
249
  # @option options [String] :retry_mode ("legacy")
231
250
  # Specifies which retry algorithm to use. Values are:
232
- # * `legacy` - The pre-existing retry behavior. This is default value if
233
- # no retry mode is provided.
234
- # * `standard` - A standardized set of retry rules across the AWS SDKs.
235
- # This includes support for retry quotas, which limit the number of
236
- # unsuccessful retries a client can make.
237
- # * `adaptive` - An experimental retry mode that includes all the
238
- # functionality of `standard` mode along with automatic client side
239
- # throttling. This is a provisional mode that may change behavior
240
- # in the future.
251
+ #
252
+ # * `legacy` - The pre-existing retry behavior. This is default value if
253
+ # no retry mode is provided.
254
+ #
255
+ # * `standard` - A standardized set of retry rules across the AWS SDKs.
256
+ # This includes support for retry quotas, which limit the number of
257
+ # unsuccessful retries a client can make.
258
+ #
259
+ # * `adaptive` - An experimental retry mode that includes all the
260
+ # functionality of `standard` mode along with automatic client side
261
+ # throttling. This is a provisional mode that may change behavior
262
+ # in the future.
263
+ #
241
264
  #
242
265
  # @option options [String] :secret_access_key
243
266
  #
@@ -265,8 +288,7 @@ module Aws::PinpointEmail
265
288
  #
266
289
  # @option options [Integer] :http_read_timeout (60) The default
267
290
  # number of seconds to wait for response data. This value can
268
- # safely be set
269
- # per-request on the session yielded by {#session_for}.
291
+ # safely be set per-request on the session.
270
292
  #
271
293
  # @option options [Float] :http_idle_timeout (5) The number of
272
294
  # seconds a connection is allowed to sit idle before it is
@@ -278,7 +300,7 @@ module Aws::PinpointEmail
278
300
  # request body. This option has no effect unless the request has
279
301
  # "Expect" header set to "100-continue". Defaults to `nil` which
280
302
  # disables this behaviour. This value can safely be set per
281
- # request on the session yielded by {#session_for}.
303
+ # request on the session.
282
304
  #
283
305
  # @option options [Boolean] :http_wire_trace (false) When `true`,
284
306
  # HTTP debug output will be sent to the `:logger`.
@@ -947,6 +969,8 @@ module Aws::PinpointEmail
947
969
  # * {Types::GetDedicatedIpsResponse#dedicated_ips #dedicated_ips} => Array<Types::DedicatedIp>
948
970
  # * {Types::GetDedicatedIpsResponse#next_token #next_token} => String
949
971
  #
972
+ # The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
973
+ #
950
974
  # @example Request syntax with placeholder values
951
975
  #
952
976
  # resp = client.get_dedicated_ips({
@@ -1263,6 +1287,8 @@ module Aws::PinpointEmail
1263
1287
  # * {Types::ListConfigurationSetsResponse#configuration_sets #configuration_sets} => Array<String>
1264
1288
  # * {Types::ListConfigurationSetsResponse#next_token #next_token} => String
1265
1289
  #
1290
+ # The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
1291
+ #
1266
1292
  # @example Request syntax with placeholder values
1267
1293
  #
1268
1294
  # resp = client.list_configuration_sets({
@@ -1303,6 +1329,8 @@ module Aws::PinpointEmail
1303
1329
  # * {Types::ListDedicatedIpPoolsResponse#dedicated_ip_pools #dedicated_ip_pools} => Array<String>
1304
1330
  # * {Types::ListDedicatedIpPoolsResponse#next_token #next_token} => String
1305
1331
  #
1332
+ # The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
1333
+ #
1306
1334
  # @example Request syntax with placeholder values
1307
1335
  #
1308
1336
  # resp = client.list_dedicated_ip_pools({
@@ -1350,6 +1378,8 @@ module Aws::PinpointEmail
1350
1378
  # * {Types::ListDeliverabilityTestReportsResponse#deliverability_test_reports #deliverability_test_reports} => Array<Types::DeliverabilityTestReport>
1351
1379
  # * {Types::ListDeliverabilityTestReportsResponse#next_token #next_token} => String
1352
1380
  #
1381
+ # The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
1382
+ #
1353
1383
  # @example Request syntax with placeholder values
1354
1384
  #
1355
1385
  # resp = client.list_deliverability_test_reports({
@@ -1412,6 +1442,8 @@ module Aws::PinpointEmail
1412
1442
  # * {Types::ListDomainDeliverabilityCampaignsResponse#domain_deliverability_campaigns #domain_deliverability_campaigns} => Array<Types::DomainDeliverabilityCampaign>
1413
1443
  # * {Types::ListDomainDeliverabilityCampaignsResponse#next_token #next_token} => String
1414
1444
  #
1445
+ # The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
1446
+ #
1415
1447
  # @example Request syntax with placeholder values
1416
1448
  #
1417
1449
  # resp = client.list_domain_deliverability_campaigns({
@@ -1475,6 +1507,8 @@ module Aws::PinpointEmail
1475
1507
  # * {Types::ListEmailIdentitiesResponse#email_identities #email_identities} => Array<Types::IdentityInfo>
1476
1508
  # * {Types::ListEmailIdentitiesResponse#next_token #next_token} => String
1477
1509
  #
1510
+ # The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
1511
+ #
1478
1512
  # @example Request syntax with placeholder values
1479
1513
  #
1480
1514
  # resp = client.list_email_identities({
@@ -2221,7 +2255,7 @@ module Aws::PinpointEmail
2221
2255
  params: params,
2222
2256
  config: config)
2223
2257
  context[:gem_name] = 'aws-sdk-pinpointemail'
2224
- context[:gem_version] = '1.17.0'
2258
+ context[:gem_version] = '1.22.0'
2225
2259
  Seahorse::Client::Request.new(handlers, context)
2226
2260
  end
2227
2261
 
@@ -1,3 +1,5 @@
1
+ # frozen_string_literal: true
2
+
1
3
  # WARNING ABOUT GENERATED CODE
2
4
  #
3
5
  # This file is generated. See the contributing guide for more information:
@@ -1,3 +1,5 @@
1
+ # frozen_string_literal: true
2
+
1
3
  # WARNING ABOUT GENERATED CODE
2
4
  #
3
5
  # This file is generated. See the contributing guide for more information:
@@ -1,3 +1,5 @@
1
+ # frozen_string_literal: true
2
+
1
3
  # WARNING ABOUT GENERATED CODE
2
4
  #
3
5
  # This file is generated. See the contributing guide for more information:
@@ -6,13 +8,7 @@
6
8
  # WARNING ABOUT GENERATED CODE
7
9
 
8
10
  module Aws::PinpointEmail
9
- # This class provides a resource oriented interface for PinpointEmail.
10
- # To create a resource object:
11
- # resource = Aws::PinpointEmail::Resource.new(region: 'us-west-2')
12
- # You can supply a client object with custom configuration that will be used for all resource operations.
13
- # If you do not pass +:client+, a default client will be constructed.
14
- # client = Aws::PinpointEmail::Client.new(region: 'us-west-2')
15
- # resource = Aws::PinpointEmail::Resource.new(client: client)
11
+
16
12
  class Resource
17
13
 
18
14
  # @param options ({})
@@ -1,3 +1,5 @@
1
+ # frozen_string_literal: true
2
+
1
3
  # WARNING ABOUT GENERATED CODE
2
4
  #
3
5
  # This file is generated. See the contributing guide for more information:
@@ -51,6 +53,7 @@ module Aws::PinpointEmail
51
53
  :rbl_name,
52
54
  :listing_time,
53
55
  :description)
56
+ SENSITIVE = []
54
57
  include Aws::Structure
55
58
  end
56
59
 
@@ -87,6 +90,7 @@ module Aws::PinpointEmail
87
90
  class Body < Struct.new(
88
91
  :text,
89
92
  :html)
93
+ SENSITIVE = []
90
94
  include Aws::Structure
91
95
  end
92
96
 
@@ -116,6 +120,7 @@ module Aws::PinpointEmail
116
120
  #
117
121
  class CloudWatchDestination < Struct.new(
118
122
  :dimension_configurations)
123
+ SENSITIVE = []
119
124
  include Aws::Structure
120
125
  end
121
126
 
@@ -168,6 +173,7 @@ module Aws::PinpointEmail
168
173
  :dimension_name,
169
174
  :dimension_value_source,
170
175
  :default_dimension_value)
176
+ SENSITIVE = []
171
177
  include Aws::Structure
172
178
  end
173
179
 
@@ -205,6 +211,7 @@ module Aws::PinpointEmail
205
211
  class Content < Struct.new(
206
212
  :data,
207
213
  :charset)
214
+ SENSITIVE = []
208
215
  include Aws::Structure
209
216
  end
210
217
 
@@ -261,6 +268,7 @@ module Aws::PinpointEmail
261
268
  :configuration_set_name,
262
269
  :event_destination_name,
263
270
  :event_destination)
271
+ SENSITIVE = []
264
272
  include Aws::Structure
265
273
  end
266
274
 
@@ -339,6 +347,7 @@ module Aws::PinpointEmail
339
347
  :reputation_options,
340
348
  :sending_options,
341
349
  :tags)
350
+ SENSITIVE = []
342
351
  include Aws::Structure
343
352
  end
344
353
 
@@ -378,6 +387,7 @@ module Aws::PinpointEmail
378
387
  class CreateDedicatedIpPoolRequest < Struct.new(
379
388
  :pool_name,
380
389
  :tags)
390
+ SENSITIVE = []
381
391
  include Aws::Structure
382
392
  end
383
393
 
@@ -464,6 +474,7 @@ module Aws::PinpointEmail
464
474
  :from_email_address,
465
475
  :content,
466
476
  :tags)
477
+ SENSITIVE = []
467
478
  include Aws::Structure
468
479
  end
469
480
 
@@ -488,6 +499,7 @@ module Aws::PinpointEmail
488
499
  class CreateDeliverabilityTestReportResponse < Struct.new(
489
500
  :report_id,
490
501
  :deliverability_test_status)
502
+ SENSITIVE = []
491
503
  include Aws::Structure
492
504
  end
493
505
 
@@ -521,6 +533,7 @@ module Aws::PinpointEmail
521
533
  class CreateEmailIdentityRequest < Struct.new(
522
534
  :email_identity,
523
535
  :tags)
536
+ SENSITIVE = []
524
537
  include Aws::Structure
525
538
  end
526
539
 
@@ -559,6 +572,7 @@ module Aws::PinpointEmail
559
572
  :identity_type,
560
573
  :verified_for_sending_status,
561
574
  :dkim_attributes)
575
+ SENSITIVE = []
562
576
  include Aws::Structure
563
577
  end
564
578
 
@@ -586,6 +600,7 @@ module Aws::PinpointEmail
586
600
  :start_date,
587
601
  :volume_statistics,
588
602
  :domain_isp_placements)
603
+ SENSITIVE = []
589
604
  include Aws::Structure
590
605
  end
591
606
 
@@ -626,6 +641,7 @@ module Aws::PinpointEmail
626
641
  :warmup_status,
627
642
  :warmup_percentage,
628
643
  :pool_name)
644
+ SENSITIVE = []
629
645
  include Aws::Structure
630
646
  end
631
647
 
@@ -653,6 +669,7 @@ module Aws::PinpointEmail
653
669
  class DeleteConfigurationSetEventDestinationRequest < Struct.new(
654
670
  :configuration_set_name,
655
671
  :event_destination_name)
672
+ SENSITIVE = []
656
673
  include Aws::Structure
657
674
  end
658
675
 
@@ -680,6 +697,7 @@ module Aws::PinpointEmail
680
697
  #
681
698
  class DeleteConfigurationSetRequest < Struct.new(
682
699
  :configuration_set_name)
700
+ SENSITIVE = []
683
701
  include Aws::Structure
684
702
  end
685
703
 
@@ -707,6 +725,7 @@ module Aws::PinpointEmail
707
725
  #
708
726
  class DeleteDedicatedIpPoolRequest < Struct.new(
709
727
  :pool_name)
728
+ SENSITIVE = []
710
729
  include Aws::Structure
711
730
  end
712
731
 
@@ -738,6 +757,7 @@ module Aws::PinpointEmail
738
757
  #
739
758
  class DeleteEmailIdentityRequest < Struct.new(
740
759
  :email_identity)
760
+ SENSITIVE = []
741
761
  include Aws::Structure
742
762
  end
743
763
 
@@ -793,6 +813,7 @@ module Aws::PinpointEmail
793
813
  :from_email_address,
794
814
  :create_date,
795
815
  :deliverability_test_status)
816
+ SENSITIVE = []
796
817
  include Aws::Structure
797
818
  end
798
819
 
@@ -824,6 +845,7 @@ module Aws::PinpointEmail
824
845
  class DeliveryOptions < Struct.new(
825
846
  :tls_policy,
826
847
  :sending_pool_name)
848
+ SENSITIVE = []
827
849
  include Aws::Structure
828
850
  end
829
851
 
@@ -859,6 +881,7 @@ module Aws::PinpointEmail
859
881
  :to_addresses,
860
882
  :cc_addresses,
861
883
  :bcc_addresses)
884
+ SENSITIVE = []
862
885
  include Aws::Structure
863
886
  end
864
887
 
@@ -911,6 +934,7 @@ module Aws::PinpointEmail
911
934
  :signing_enabled,
912
935
  :status,
913
936
  :tokens)
937
+ SENSITIVE = []
914
938
  include Aws::Structure
915
939
  end
916
940
 
@@ -1014,6 +1038,7 @@ module Aws::PinpointEmail
1014
1038
  :read_delete_rate,
1015
1039
  :projected_volume,
1016
1040
  :esps)
1041
+ SENSITIVE = []
1017
1042
  include Aws::Structure
1018
1043
  end
1019
1044
 
@@ -1057,6 +1082,7 @@ module Aws::PinpointEmail
1057
1082
  :domain,
1058
1083
  :subscription_start_date,
1059
1084
  :inbox_placement_tracking_option)
1085
+ SENSITIVE = []
1060
1086
  include Aws::Structure
1061
1087
  end
1062
1088
 
@@ -1100,6 +1126,7 @@ module Aws::PinpointEmail
1100
1126
  :spam_raw_count,
1101
1127
  :inbox_percentage,
1102
1128
  :spam_percentage)
1129
+ SENSITIVE = []
1103
1130
  include Aws::Structure
1104
1131
  end
1105
1132
 
@@ -1183,6 +1210,7 @@ module Aws::PinpointEmail
1183
1210
  :simple,
1184
1211
  :raw,
1185
1212
  :template)
1213
+ SENSITIVE = []
1186
1214
  include Aws::Structure
1187
1215
  end
1188
1216
 
@@ -1247,6 +1275,7 @@ module Aws::PinpointEmail
1247
1275
  :cloud_watch_destination,
1248
1276
  :sns_destination,
1249
1277
  :pinpoint_destination)
1278
+ SENSITIVE = []
1250
1279
  include Aws::Structure
1251
1280
  end
1252
1281
 
@@ -1331,6 +1360,7 @@ module Aws::PinpointEmail
1331
1360
  :cloud_watch_destination,
1332
1361
  :sns_destination,
1333
1362
  :pinpoint_destination)
1363
+ SENSITIVE = []
1334
1364
  include Aws::Structure
1335
1365
  end
1336
1366
 
@@ -1404,6 +1434,7 @@ module Aws::PinpointEmail
1404
1434
  :dedicated_ip_auto_warmup_enabled,
1405
1435
  :enforcement_status,
1406
1436
  :production_access_enabled)
1437
+ SENSITIVE = []
1407
1438
  include Aws::Structure
1408
1439
  end
1409
1440
 
@@ -1427,6 +1458,7 @@ module Aws::PinpointEmail
1427
1458
  #
1428
1459
  class GetBlacklistReportsRequest < Struct.new(
1429
1460
  :blacklist_item_names)
1461
+ SENSITIVE = []
1430
1462
  include Aws::Structure
1431
1463
  end
1432
1464
 
@@ -1441,6 +1473,7 @@ module Aws::PinpointEmail
1441
1473
  #
1442
1474
  class GetBlacklistReportsResponse < Struct.new(
1443
1475
  :blacklist_report)
1476
+ SENSITIVE = []
1444
1477
  include Aws::Structure
1445
1478
  end
1446
1479
 
@@ -1463,6 +1496,7 @@ module Aws::PinpointEmail
1463
1496
  #
1464
1497
  class GetConfigurationSetEventDestinationsRequest < Struct.new(
1465
1498
  :configuration_set_name)
1499
+ SENSITIVE = []
1466
1500
  include Aws::Structure
1467
1501
  end
1468
1502
 
@@ -1477,6 +1511,7 @@ module Aws::PinpointEmail
1477
1511
  #
1478
1512
  class GetConfigurationSetEventDestinationsResponse < Struct.new(
1479
1513
  :event_destinations)
1514
+ SENSITIVE = []
1480
1515
  include Aws::Structure
1481
1516
  end
1482
1517
 
@@ -1498,6 +1533,7 @@ module Aws::PinpointEmail
1498
1533
  #
1499
1534
  class GetConfigurationSetRequest < Struct.new(
1500
1535
  :configuration_set_name)
1536
+ SENSITIVE = []
1501
1537
  include Aws::Structure
1502
1538
  end
1503
1539
 
@@ -1542,6 +1578,7 @@ module Aws::PinpointEmail
1542
1578
  :reputation_options,
1543
1579
  :sending_options,
1544
1580
  :tags)
1581
+ SENSITIVE = []
1545
1582
  include Aws::Structure
1546
1583
  end
1547
1584
 
@@ -1564,6 +1601,7 @@ module Aws::PinpointEmail
1564
1601
  #
1565
1602
  class GetDedicatedIpRequest < Struct.new(
1566
1603
  :ip)
1604
+ SENSITIVE = []
1567
1605
  include Aws::Structure
1568
1606
  end
1569
1607
 
@@ -1577,6 +1615,7 @@ module Aws::PinpointEmail
1577
1615
  #
1578
1616
  class GetDedicatedIpResponse < Struct.new(
1579
1617
  :dedicated_ip)
1618
+ SENSITIVE = []
1580
1619
  include Aws::Structure
1581
1620
  end
1582
1621
 
@@ -1616,6 +1655,7 @@ module Aws::PinpointEmail
1616
1655
  :pool_name,
1617
1656
  :next_token,
1618
1657
  :page_size)
1658
+ SENSITIVE = []
1619
1659
  include Aws::Structure
1620
1660
  end
1621
1661
 
@@ -1639,6 +1679,7 @@ module Aws::PinpointEmail
1639
1679
  class GetDedicatedIpsResponse < Struct.new(
1640
1680
  :dedicated_ips,
1641
1681
  :next_token)
1682
+ SENSITIVE = []
1642
1683
  include Aws::Structure
1643
1684
  end
1644
1685
 
@@ -1710,6 +1751,7 @@ module Aws::PinpointEmail
1710
1751
  :account_status,
1711
1752
  :active_subscribed_domains,
1712
1753
  :pending_expiration_subscribed_domains)
1754
+ SENSITIVE = []
1713
1755
  include Aws::Structure
1714
1756
  end
1715
1757
 
@@ -1731,6 +1773,7 @@ module Aws::PinpointEmail
1731
1773
  #
1732
1774
  class GetDeliverabilityTestReportRequest < Struct.new(
1733
1775
  :report_id)
1776
+ SENSITIVE = []
1734
1777
  include Aws::Structure
1735
1778
  end
1736
1779
 
@@ -1771,6 +1814,7 @@ module Aws::PinpointEmail
1771
1814
  :isp_placements,
1772
1815
  :message,
1773
1816
  :tags)
1817
+ SENSITIVE = []
1774
1818
  include Aws::Structure
1775
1819
  end
1776
1820
 
@@ -1798,6 +1842,7 @@ module Aws::PinpointEmail
1798
1842
  #
1799
1843
  class GetDomainDeliverabilityCampaignRequest < Struct.new(
1800
1844
  :campaign_id)
1845
+ SENSITIVE = []
1801
1846
  include Aws::Structure
1802
1847
  end
1803
1848
 
@@ -1814,6 +1859,7 @@ module Aws::PinpointEmail
1814
1859
  #
1815
1860
  class GetDomainDeliverabilityCampaignResponse < Struct.new(
1816
1861
  :domain_deliverability_campaign)
1862
+ SENSITIVE = []
1817
1863
  include Aws::Structure
1818
1864
  end
1819
1865
 
@@ -1849,6 +1895,7 @@ module Aws::PinpointEmail
1849
1895
  :domain,
1850
1896
  :start_date,
1851
1897
  :end_date)
1898
+ SENSITIVE = []
1852
1899
  include Aws::Structure
1853
1900
  end
1854
1901
 
@@ -1872,6 +1919,7 @@ module Aws::PinpointEmail
1872
1919
  class GetDomainStatisticsReportResponse < Struct.new(
1873
1920
  :overall_volume,
1874
1921
  :daily_volumes)
1922
+ SENSITIVE = []
1875
1923
  include Aws::Structure
1876
1924
  end
1877
1925
 
@@ -1892,6 +1940,7 @@ module Aws::PinpointEmail
1892
1940
  #
1893
1941
  class GetEmailIdentityRequest < Struct.new(
1894
1942
  :email_identity)
1943
+ SENSITIVE = []
1895
1944
  include Aws::Structure
1896
1945
  end
1897
1946
 
@@ -1955,6 +2004,7 @@ module Aws::PinpointEmail
1955
2004
  :dkim_attributes,
1956
2005
  :mail_from_attributes,
1957
2006
  :tags)
2007
+ SENSITIVE = []
1958
2008
  include Aws::Structure
1959
2009
  end
1960
2010
 
@@ -1991,6 +2041,7 @@ module Aws::PinpointEmail
1991
2041
  :identity_type,
1992
2042
  :identity_name,
1993
2043
  :sending_enabled)
2044
+ SENSITIVE = []
1994
2045
  include Aws::Structure
1995
2046
  end
1996
2047
 
@@ -2023,6 +2074,7 @@ module Aws::PinpointEmail
2023
2074
  class InboxPlacementTrackingOption < Struct.new(
2024
2075
  :global,
2025
2076
  :tracked_isps)
2077
+ SENSITIVE = []
2026
2078
  include Aws::Structure
2027
2079
  end
2028
2080
 
@@ -2044,6 +2096,7 @@ module Aws::PinpointEmail
2044
2096
  class IspPlacement < Struct.new(
2045
2097
  :isp_name,
2046
2098
  :placement_statistics)
2099
+ SENSITIVE = []
2047
2100
  include Aws::Structure
2048
2101
  end
2049
2102
 
@@ -2075,6 +2128,7 @@ module Aws::PinpointEmail
2075
2128
  class KinesisFirehoseDestination < Struct.new(
2076
2129
  :iam_role_arn,
2077
2130
  :delivery_stream_arn)
2131
+ SENSITIVE = []
2078
2132
  include Aws::Structure
2079
2133
  end
2080
2134
 
@@ -2112,6 +2166,7 @@ module Aws::PinpointEmail
2112
2166
  class ListConfigurationSetsRequest < Struct.new(
2113
2167
  :next_token,
2114
2168
  :page_size)
2169
+ SENSITIVE = []
2115
2170
  include Aws::Structure
2116
2171
  end
2117
2172
 
@@ -2135,6 +2190,7 @@ module Aws::PinpointEmail
2135
2190
  class ListConfigurationSetsResponse < Struct.new(
2136
2191
  :configuration_sets,
2137
2192
  :next_token)
2193
+ SENSITIVE = []
2138
2194
  include Aws::Structure
2139
2195
  end
2140
2196
 
@@ -2165,6 +2221,7 @@ module Aws::PinpointEmail
2165
2221
  class ListDedicatedIpPoolsRequest < Struct.new(
2166
2222
  :next_token,
2167
2223
  :page_size)
2224
+ SENSITIVE = []
2168
2225
  include Aws::Structure
2169
2226
  end
2170
2227
 
@@ -2187,6 +2244,7 @@ module Aws::PinpointEmail
2187
2244
  class ListDedicatedIpPoolsResponse < Struct.new(
2188
2245
  :dedicated_ip_pools,
2189
2246
  :next_token)
2247
+ SENSITIVE = []
2190
2248
  include Aws::Structure
2191
2249
  end
2192
2250
 
@@ -2223,6 +2281,7 @@ module Aws::PinpointEmail
2223
2281
  class ListDeliverabilityTestReportsRequest < Struct.new(
2224
2282
  :next_token,
2225
2283
  :page_size)
2284
+ SENSITIVE = []
2226
2285
  include Aws::Structure
2227
2286
  end
2228
2287
 
@@ -2248,6 +2307,7 @@ module Aws::PinpointEmail
2248
2307
  class ListDeliverabilityTestReportsResponse < Struct.new(
2249
2308
  :deliverability_test_reports,
2250
2309
  :next_token)
2310
+ SENSITIVE = []
2251
2311
  include Aws::Structure
2252
2312
  end
2253
2313
 
@@ -2305,6 +2365,7 @@ module Aws::PinpointEmail
2305
2365
  :subscribed_domain,
2306
2366
  :next_token,
2307
2367
  :page_size)
2368
+ SENSITIVE = []
2308
2369
  include Aws::Structure
2309
2370
  end
2310
2371
 
@@ -2330,6 +2391,7 @@ module Aws::PinpointEmail
2330
2391
  class ListDomainDeliverabilityCampaignsResponse < Struct.new(
2331
2392
  :domain_deliverability_campaigns,
2332
2393
  :next_token)
2394
+ SENSITIVE = []
2333
2395
  include Aws::Structure
2334
2396
  end
2335
2397
 
@@ -2366,6 +2428,7 @@ module Aws::PinpointEmail
2366
2428
  class ListEmailIdentitiesRequest < Struct.new(
2367
2429
  :next_token,
2368
2430
  :page_size)
2431
+ SENSITIVE = []
2369
2432
  include Aws::Structure
2370
2433
  end
2371
2434
 
@@ -2390,6 +2453,7 @@ module Aws::PinpointEmail
2390
2453
  class ListEmailIdentitiesResponse < Struct.new(
2391
2454
  :email_identities,
2392
2455
  :next_token)
2456
+ SENSITIVE = []
2393
2457
  include Aws::Structure
2394
2458
  end
2395
2459
 
@@ -2409,6 +2473,7 @@ module Aws::PinpointEmail
2409
2473
  #
2410
2474
  class ListTagsForResourceRequest < Struct.new(
2411
2475
  :resource_arn)
2476
+ SENSITIVE = []
2412
2477
  include Aws::Structure
2413
2478
  end
2414
2479
 
@@ -2422,6 +2487,7 @@ module Aws::PinpointEmail
2422
2487
  #
2423
2488
  class ListTagsForResourceResponse < Struct.new(
2424
2489
  :tags)
2490
+ SENSITIVE = []
2425
2491
  include Aws::Structure
2426
2492
  end
2427
2493
 
@@ -2469,6 +2535,7 @@ module Aws::PinpointEmail
2469
2535
  :mail_from_domain,
2470
2536
  :mail_from_domain_status,
2471
2537
  :behavior_on_mx_failure)
2538
+ SENSITIVE = []
2472
2539
  include Aws::Structure
2473
2540
  end
2474
2541
 
@@ -2522,6 +2589,7 @@ module Aws::PinpointEmail
2522
2589
  class Message < Struct.new(
2523
2590
  :subject,
2524
2591
  :body)
2592
+ SENSITIVE = []
2525
2593
  include Aws::Structure
2526
2594
  end
2527
2595
 
@@ -2567,6 +2635,7 @@ module Aws::PinpointEmail
2567
2635
  class MessageTag < Struct.new(
2568
2636
  :name,
2569
2637
  :value)
2638
+ SENSITIVE = []
2570
2639
  include Aws::Structure
2571
2640
  end
2572
2641
 
@@ -2600,6 +2669,7 @@ module Aws::PinpointEmail
2600
2669
  :volume_statistics,
2601
2670
  :read_rate_percent,
2602
2671
  :domain_isp_placements)
2672
+ SENSITIVE = []
2603
2673
  include Aws::Structure
2604
2674
  end
2605
2675
 
@@ -2624,6 +2694,7 @@ module Aws::PinpointEmail
2624
2694
  #
2625
2695
  class PinpointDestination < Struct.new(
2626
2696
  :application_arn)
2697
+ SENSITIVE = []
2627
2698
  include Aws::Structure
2628
2699
  end
2629
2700
 
@@ -2662,6 +2733,7 @@ module Aws::PinpointEmail
2662
2733
  :missing_percentage,
2663
2734
  :spf_percentage,
2664
2735
  :dkim_percentage)
2736
+ SENSITIVE = []
2665
2737
  include Aws::Structure
2666
2738
  end
2667
2739
 
@@ -2686,6 +2758,7 @@ module Aws::PinpointEmail
2686
2758
  #
2687
2759
  class PutAccountDedicatedIpWarmupAttributesRequest < Struct.new(
2688
2760
  :auto_warmup_enabled)
2761
+ SENSITIVE = []
2689
2762
  include Aws::Structure
2690
2763
  end
2691
2764
 
@@ -2720,6 +2793,7 @@ module Aws::PinpointEmail
2720
2793
  #
2721
2794
  class PutAccountSendingAttributesRequest < Struct.new(
2722
2795
  :sending_enabled)
2796
+ SENSITIVE = []
2723
2797
  include Aws::Structure
2724
2798
  end
2725
2799
 
@@ -2765,6 +2839,7 @@ module Aws::PinpointEmail
2765
2839
  :configuration_set_name,
2766
2840
  :tls_policy,
2767
2841
  :sending_pool_name)
2842
+ SENSITIVE = []
2768
2843
  include Aws::Structure
2769
2844
  end
2770
2845
 
@@ -2802,6 +2877,7 @@ module Aws::PinpointEmail
2802
2877
  class PutConfigurationSetReputationOptionsRequest < Struct.new(
2803
2878
  :configuration_set_name,
2804
2879
  :reputation_metrics_enabled)
2880
+ SENSITIVE = []
2805
2881
  include Aws::Structure
2806
2882
  end
2807
2883
 
@@ -2838,6 +2914,7 @@ module Aws::PinpointEmail
2838
2914
  class PutConfigurationSetSendingOptionsRequest < Struct.new(
2839
2915
  :configuration_set_name,
2840
2916
  :sending_enabled)
2917
+ SENSITIVE = []
2841
2918
  include Aws::Structure
2842
2919
  end
2843
2920
 
@@ -2873,6 +2950,7 @@ module Aws::PinpointEmail
2873
2950
  class PutConfigurationSetTrackingOptionsRequest < Struct.new(
2874
2951
  :configuration_set_name,
2875
2952
  :custom_redirect_domain)
2953
+ SENSITIVE = []
2876
2954
  include Aws::Structure
2877
2955
  end
2878
2956
 
@@ -2909,6 +2987,7 @@ module Aws::PinpointEmail
2909
2987
  class PutDedicatedIpInPoolRequest < Struct.new(
2910
2988
  :ip,
2911
2989
  :destination_pool_name)
2990
+ SENSITIVE = []
2912
2991
  include Aws::Structure
2913
2992
  end
2914
2993
 
@@ -2946,6 +3025,7 @@ module Aws::PinpointEmail
2946
3025
  class PutDedicatedIpWarmupAttributesRequest < Struct.new(
2947
3026
  :ip,
2948
3027
  :warmup_percentage)
3028
+ SENSITIVE = []
2949
3029
  include Aws::Structure
2950
3030
  end
2951
3031
 
@@ -3005,6 +3085,7 @@ module Aws::PinpointEmail
3005
3085
  class PutDeliverabilityDashboardOptionRequest < Struct.new(
3006
3086
  :dashboard_enabled,
3007
3087
  :subscribed_domains)
3088
+ SENSITIVE = []
3008
3089
  include Aws::Structure
3009
3090
  end
3010
3091
 
@@ -3044,6 +3125,7 @@ module Aws::PinpointEmail
3044
3125
  class PutEmailIdentityDkimAttributesRequest < Struct.new(
3045
3126
  :email_identity,
3046
3127
  :signing_enabled)
3128
+ SENSITIVE = []
3047
3129
  include Aws::Structure
3048
3130
  end
3049
3131
 
@@ -3092,6 +3174,7 @@ module Aws::PinpointEmail
3092
3174
  class PutEmailIdentityFeedbackAttributesRequest < Struct.new(
3093
3175
  :email_identity,
3094
3176
  :email_forwarding_enabled)
3177
+ SENSITIVE = []
3095
3178
  include Aws::Structure
3096
3179
  end
3097
3180
 
@@ -3150,6 +3233,7 @@ module Aws::PinpointEmail
3150
3233
  :email_identity,
3151
3234
  :mail_from_domain,
3152
3235
  :behavior_on_mx_failure)
3236
+ SENSITIVE = []
3153
3237
  include Aws::Structure
3154
3238
  end
3155
3239
 
@@ -3202,6 +3286,7 @@ module Aws::PinpointEmail
3202
3286
  #
3203
3287
  class RawMessage < Struct.new(
3204
3288
  :data)
3289
+ SENSITIVE = []
3205
3290
  include Aws::Structure
3206
3291
  end
3207
3292
 
@@ -3234,6 +3319,7 @@ module Aws::PinpointEmail
3234
3319
  class ReputationOptions < Struct.new(
3235
3320
  :reputation_metrics_enabled,
3236
3321
  :last_fresh_start)
3322
+ SENSITIVE = []
3237
3323
  include Aws::Structure
3238
3324
  end
3239
3325
 
@@ -3331,6 +3417,7 @@ module Aws::PinpointEmail
3331
3417
  :content,
3332
3418
  :email_tags,
3333
3419
  :configuration_set_name)
3420
+ SENSITIVE = []
3334
3421
  include Aws::Structure
3335
3422
  end
3336
3423
 
@@ -3354,6 +3441,7 @@ module Aws::PinpointEmail
3354
3441
  #
3355
3442
  class SendEmailResponse < Struct.new(
3356
3443
  :message_id)
3444
+ SENSITIVE = []
3357
3445
  include Aws::Structure
3358
3446
  end
3359
3447
 
@@ -3384,6 +3472,7 @@ module Aws::PinpointEmail
3384
3472
  :max_24_hour_send,
3385
3473
  :max_send_rate,
3386
3474
  :sent_last_24_hours)
3475
+ SENSITIVE = []
3387
3476
  include Aws::Structure
3388
3477
  end
3389
3478
 
@@ -3406,6 +3495,7 @@ module Aws::PinpointEmail
3406
3495
  #
3407
3496
  class SendingOptions < Struct.new(
3408
3497
  :sending_enabled)
3498
+ SENSITIVE = []
3409
3499
  include Aws::Structure
3410
3500
  end
3411
3501
 
@@ -3441,6 +3531,7 @@ module Aws::PinpointEmail
3441
3531
  #
3442
3532
  class SnsDestination < Struct.new(
3443
3533
  :topic_arn)
3534
+ SENSITIVE = []
3444
3535
  include Aws::Structure
3445
3536
  end
3446
3537
 
@@ -3501,6 +3592,7 @@ module Aws::PinpointEmail
3501
3592
  class Tag < Struct.new(
3502
3593
  :key,
3503
3594
  :value)
3595
+ SENSITIVE = []
3504
3596
  include Aws::Structure
3505
3597
  end
3506
3598
 
@@ -3534,6 +3626,7 @@ module Aws::PinpointEmail
3534
3626
  class TagResourceRequest < Struct.new(
3535
3627
  :resource_arn,
3536
3628
  :tags)
3629
+ SENSITIVE = []
3537
3630
  include Aws::Structure
3538
3631
  end
3539
3632
 
@@ -3565,6 +3658,7 @@ module Aws::PinpointEmail
3565
3658
  class Template < Struct.new(
3566
3659
  :template_arn,
3567
3660
  :template_data)
3661
+ SENSITIVE = []
3568
3662
  include Aws::Structure
3569
3663
  end
3570
3664
 
@@ -3599,6 +3693,7 @@ module Aws::PinpointEmail
3599
3693
  #
3600
3694
  class TrackingOptions < Struct.new(
3601
3695
  :custom_redirect_domain)
3696
+ SENSITIVE = []
3602
3697
  include Aws::Structure
3603
3698
  end
3604
3699
 
@@ -3631,6 +3726,7 @@ module Aws::PinpointEmail
3631
3726
  class UntagResourceRequest < Struct.new(
3632
3727
  :resource_arn,
3633
3728
  :tag_keys)
3729
+ SENSITIVE = []
3634
3730
  include Aws::Structure
3635
3731
  end
3636
3732
 
@@ -3691,6 +3787,7 @@ module Aws::PinpointEmail
3691
3787
  :configuration_set_name,
3692
3788
  :event_destination_name,
3693
3789
  :event_destination)
3790
+ SENSITIVE = []
3694
3791
  include Aws::Structure
3695
3792
  end
3696
3793
 
@@ -3730,6 +3827,7 @@ module Aws::PinpointEmail
3730
3827
  :spam_raw_count,
3731
3828
  :projected_inbox,
3732
3829
  :projected_spam)
3830
+ SENSITIVE = []
3733
3831
  include Aws::Structure
3734
3832
  end
3735
3833
 
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-pinpointemail
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.17.0
4
+ version: 1.22.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: 2020-03-09 00:00:00.000000000 Z
11
+ date: 2020-08-25 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.71.0
22
+ version: 3.99.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.71.0
32
+ version: 3.99.0
33
33
  - !ruby/object:Gem::Dependency
34
34
  name: aws-sigv4
35
35
  requirement: !ruby/object:Gem::Requirement
@@ -81,7 +81,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
81
81
  version: '0'
82
82
  requirements: []
83
83
  rubyforge_project:
84
- rubygems_version: 2.5.2.3
84
+ rubygems_version: 2.7.6.2
85
85
  signing_key:
86
86
  specification_version: 4
87
87
  summary: AWS SDK for Ruby - Pinpoint Email