aws-sdk-sesv2 1.80.0 → 1.81.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/CHANGELOG.md +5 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-sesv2/client.rb +581 -2
- data/lib/aws-sdk-sesv2/client_api.rb +349 -0
- data/lib/aws-sdk-sesv2/types.rb +747 -1
- data/lib/aws-sdk-sesv2.rb +1 -1
- data/sig/client.rbs +148 -1
- data/sig/types.rbs +188 -1
- metadata +3 -3
data/lib/aws-sdk-sesv2.rb
CHANGED
data/sig/client.rbs
CHANGED
@@ -487,6 +487,37 @@ module Aws
|
|
487
487
|
) -> _CreateMultiRegionEndpointResponseSuccess
|
488
488
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateMultiRegionEndpointResponseSuccess
|
489
489
|
|
490
|
+
interface _CreateTenantResponseSuccess
|
491
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::CreateTenantResponse]
|
492
|
+
def tenant_name: () -> ::String
|
493
|
+
def tenant_id: () -> ::String
|
494
|
+
def tenant_arn: () -> ::String
|
495
|
+
def created_timestamp: () -> ::Time
|
496
|
+
def tags: () -> ::Array[Types::Tag]
|
497
|
+
def sending_status: () -> ("ENABLED" | "REINSTATED" | "DISABLED")
|
498
|
+
end
|
499
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/SESV2/Client.html#create_tenant-instance_method
|
500
|
+
def create_tenant: (
|
501
|
+
tenant_name: ::String,
|
502
|
+
?tags: Array[
|
503
|
+
{
|
504
|
+
key: ::String,
|
505
|
+
value: ::String
|
506
|
+
},
|
507
|
+
]
|
508
|
+
) -> _CreateTenantResponseSuccess
|
509
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateTenantResponseSuccess
|
510
|
+
|
511
|
+
interface _CreateTenantResourceAssociationResponseSuccess
|
512
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::CreateTenantResourceAssociationResponse]
|
513
|
+
end
|
514
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/SESV2/Client.html#create_tenant_resource_association-instance_method
|
515
|
+
def create_tenant_resource_association: (
|
516
|
+
tenant_name: ::String,
|
517
|
+
resource_arn: ::String
|
518
|
+
) -> _CreateTenantResourceAssociationResponseSuccess
|
519
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateTenantResourceAssociationResponseSuccess
|
520
|
+
|
490
521
|
interface _DeleteConfigurationSetResponseSuccess
|
491
522
|
include ::Seahorse::Client::_ResponseSuccess[Types::DeleteConfigurationSetResponse]
|
492
523
|
end
|
@@ -590,6 +621,25 @@ module Aws
|
|
590
621
|
) -> _DeleteSuppressedDestinationResponseSuccess
|
591
622
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DeleteSuppressedDestinationResponseSuccess
|
592
623
|
|
624
|
+
interface _DeleteTenantResponseSuccess
|
625
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::DeleteTenantResponse]
|
626
|
+
end
|
627
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/SESV2/Client.html#delete_tenant-instance_method
|
628
|
+
def delete_tenant: (
|
629
|
+
tenant_name: ::String
|
630
|
+
) -> _DeleteTenantResponseSuccess
|
631
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DeleteTenantResponseSuccess
|
632
|
+
|
633
|
+
interface _DeleteTenantResourceAssociationResponseSuccess
|
634
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::DeleteTenantResourceAssociationResponse]
|
635
|
+
end
|
636
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/SESV2/Client.html#delete_tenant_resource_association-instance_method
|
637
|
+
def delete_tenant_resource_association: (
|
638
|
+
tenant_name: ::String,
|
639
|
+
resource_arn: ::String
|
640
|
+
) -> _DeleteTenantResourceAssociationResponseSuccess
|
641
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DeleteTenantResourceAssociationResponseSuccess
|
642
|
+
|
593
643
|
interface _GetAccountResponseSuccess
|
594
644
|
include ::Seahorse::Client::_ResponseSuccess[Types::GetAccountResponse]
|
595
645
|
def dedicated_ip_auto_warmup_enabled: () -> bool
|
@@ -880,6 +930,17 @@ module Aws
|
|
880
930
|
) -> _GetMultiRegionEndpointResponseSuccess
|
881
931
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetMultiRegionEndpointResponseSuccess
|
882
932
|
|
933
|
+
interface _GetReputationEntityResponseSuccess
|
934
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::GetReputationEntityResponse]
|
935
|
+
def reputation_entity: () -> Types::ReputationEntity
|
936
|
+
end
|
937
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/SESV2/Client.html#get_reputation_entity-instance_method
|
938
|
+
def get_reputation_entity: (
|
939
|
+
reputation_entity_reference: ::String,
|
940
|
+
reputation_entity_type: ("RESOURCE")
|
941
|
+
) -> _GetReputationEntityResponseSuccess
|
942
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetReputationEntityResponseSuccess
|
943
|
+
|
883
944
|
interface _GetSuppressedDestinationResponseSuccess
|
884
945
|
include ::Seahorse::Client::_ResponseSuccess[Types::GetSuppressedDestinationResponse]
|
885
946
|
def suppressed_destination: () -> Types::SuppressedDestination
|
@@ -890,6 +951,16 @@ module Aws
|
|
890
951
|
) -> _GetSuppressedDestinationResponseSuccess
|
891
952
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetSuppressedDestinationResponseSuccess
|
892
953
|
|
954
|
+
interface _GetTenantResponseSuccess
|
955
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::GetTenantResponse]
|
956
|
+
def tenant: () -> Types::Tenant
|
957
|
+
end
|
958
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/SESV2/Client.html#get_tenant-instance_method
|
959
|
+
def get_tenant: (
|
960
|
+
tenant_name: ::String
|
961
|
+
) -> _GetTenantResponseSuccess
|
962
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetTenantResponseSuccess
|
963
|
+
|
893
964
|
interface _ListConfigurationSetsResponseSuccess
|
894
965
|
include ::Seahorse::Client::_ResponseSuccess[Types::ListConfigurationSetsResponse]
|
895
966
|
def configuration_sets: () -> ::Array[::String]
|
@@ -1061,6 +1132,32 @@ module Aws
|
|
1061
1132
|
) -> _ListRecommendationsResponseSuccess
|
1062
1133
|
| (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListRecommendationsResponseSuccess
|
1063
1134
|
|
1135
|
+
interface _ListReputationEntitiesResponseSuccess
|
1136
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::ListReputationEntitiesResponse]
|
1137
|
+
def reputation_entities: () -> ::Array[Types::ReputationEntity]
|
1138
|
+
def next_token: () -> ::String
|
1139
|
+
end
|
1140
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/SESV2/Client.html#list_reputation_entities-instance_method
|
1141
|
+
def list_reputation_entities: (
|
1142
|
+
?filter: Hash[("ENTITY_TYPE" | "REPUTATION_IMPACT" | "SENDING_STATUS" | "ENTITY_REFERENCE_PREFIX"), ::String],
|
1143
|
+
?next_token: ::String,
|
1144
|
+
?page_size: ::Integer
|
1145
|
+
) -> _ListReputationEntitiesResponseSuccess
|
1146
|
+
| (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListReputationEntitiesResponseSuccess
|
1147
|
+
|
1148
|
+
interface _ListResourceTenantsResponseSuccess
|
1149
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::ListResourceTenantsResponse]
|
1150
|
+
def resource_tenants: () -> ::Array[Types::ResourceTenantMetadata]
|
1151
|
+
def next_token: () -> ::String
|
1152
|
+
end
|
1153
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/SESV2/Client.html#list_resource_tenants-instance_method
|
1154
|
+
def list_resource_tenants: (
|
1155
|
+
resource_arn: ::String,
|
1156
|
+
?page_size: ::Integer,
|
1157
|
+
?next_token: ::String
|
1158
|
+
) -> _ListResourceTenantsResponseSuccess
|
1159
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListResourceTenantsResponseSuccess
|
1160
|
+
|
1064
1161
|
interface _ListSuppressedDestinationsResponseSuccess
|
1065
1162
|
include ::Seahorse::Client::_ResponseSuccess[Types::ListSuppressedDestinationsResponse]
|
1066
1163
|
def suppressed_destination_summaries: () -> ::Array[Types::SuppressedDestinationSummary]
|
@@ -1086,6 +1183,32 @@ module Aws
|
|
1086
1183
|
) -> _ListTagsForResourceResponseSuccess
|
1087
1184
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListTagsForResourceResponseSuccess
|
1088
1185
|
|
1186
|
+
interface _ListTenantResourcesResponseSuccess
|
1187
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::ListTenantResourcesResponse]
|
1188
|
+
def tenant_resources: () -> ::Array[Types::TenantResource]
|
1189
|
+
def next_token: () -> ::String
|
1190
|
+
end
|
1191
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/SESV2/Client.html#list_tenant_resources-instance_method
|
1192
|
+
def list_tenant_resources: (
|
1193
|
+
tenant_name: ::String,
|
1194
|
+
?filter: Hash[("RESOURCE_TYPE"), ::String],
|
1195
|
+
?page_size: ::Integer,
|
1196
|
+
?next_token: ::String
|
1197
|
+
) -> _ListTenantResourcesResponseSuccess
|
1198
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListTenantResourcesResponseSuccess
|
1199
|
+
|
1200
|
+
interface _ListTenantsResponseSuccess
|
1201
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::ListTenantsResponse]
|
1202
|
+
def tenants: () -> ::Array[Types::TenantInfo]
|
1203
|
+
def next_token: () -> ::String
|
1204
|
+
end
|
1205
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/SESV2/Client.html#list_tenants-instance_method
|
1206
|
+
def list_tenants: (
|
1207
|
+
?next_token: ::String,
|
1208
|
+
?page_size: ::Integer
|
1209
|
+
) -> _ListTenantsResponseSuccess
|
1210
|
+
| (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListTenantsResponseSuccess
|
1211
|
+
|
1089
1212
|
interface _PutAccountDedicatedIpWarmupAttributesResponseSuccess
|
1090
1213
|
include ::Seahorse::Client::_ResponseSuccess[Types::PutAccountDedicatedIpWarmupAttributesResponse]
|
1091
1214
|
end
|
@@ -1415,7 +1538,8 @@ module Aws
|
|
1415
1538
|
},
|
1416
1539
|
],
|
1417
1540
|
?configuration_set_name: ::String,
|
1418
|
-
?endpoint_id: ::String
|
1541
|
+
?endpoint_id: ::String,
|
1542
|
+
?tenant_name: ::String
|
1419
1543
|
) -> _SendBulkEmailResponseSuccess
|
1420
1544
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _SendBulkEmailResponseSuccess
|
1421
1545
|
|
@@ -1520,6 +1644,7 @@ module Aws
|
|
1520
1644
|
],
|
1521
1645
|
?configuration_set_name: ::String,
|
1522
1646
|
?endpoint_id: ::String,
|
1647
|
+
?tenant_name: ::String,
|
1523
1648
|
?list_management_options: {
|
1524
1649
|
contact_list_name: ::String,
|
1525
1650
|
topic_name: ::String?
|
@@ -1673,6 +1798,28 @@ module Aws
|
|
1673
1798
|
}
|
1674
1799
|
) -> _UpdateEmailTemplateResponseSuccess
|
1675
1800
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateEmailTemplateResponseSuccess
|
1801
|
+
|
1802
|
+
interface _UpdateReputationEntityCustomerManagedStatusResponseSuccess
|
1803
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::UpdateReputationEntityCustomerManagedStatusResponse]
|
1804
|
+
end
|
1805
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/SESV2/Client.html#update_reputation_entity_customer_managed_status-instance_method
|
1806
|
+
def update_reputation_entity_customer_managed_status: (
|
1807
|
+
reputation_entity_type: ("RESOURCE"),
|
1808
|
+
reputation_entity_reference: ::String,
|
1809
|
+
sending_status: ("ENABLED" | "REINSTATED" | "DISABLED")
|
1810
|
+
) -> _UpdateReputationEntityCustomerManagedStatusResponseSuccess
|
1811
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateReputationEntityCustomerManagedStatusResponseSuccess
|
1812
|
+
|
1813
|
+
interface _UpdateReputationEntityPolicyResponseSuccess
|
1814
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::UpdateReputationEntityPolicyResponse]
|
1815
|
+
end
|
1816
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/SESV2/Client.html#update_reputation_entity_policy-instance_method
|
1817
|
+
def update_reputation_entity_policy: (
|
1818
|
+
reputation_entity_type: ("RESOURCE"),
|
1819
|
+
reputation_entity_reference: ::String,
|
1820
|
+
reputation_entity_policy: ::String
|
1821
|
+
) -> _UpdateReputationEntityPolicyResponseSuccess
|
1822
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateReputationEntityPolicyResponseSuccess
|
1676
1823
|
end
|
1677
1824
|
end
|
1678
1825
|
end
|
data/sig/types.rbs
CHANGED
@@ -318,6 +318,31 @@ module Aws::SESV2
|
|
318
318
|
SENSITIVE: []
|
319
319
|
end
|
320
320
|
|
321
|
+
class CreateTenantRequest
|
322
|
+
attr_accessor tenant_name: ::String
|
323
|
+
attr_accessor tags: ::Array[Types::Tag]
|
324
|
+
SENSITIVE: []
|
325
|
+
end
|
326
|
+
|
327
|
+
class CreateTenantResourceAssociationRequest
|
328
|
+
attr_accessor tenant_name: ::String
|
329
|
+
attr_accessor resource_arn: ::String
|
330
|
+
SENSITIVE: []
|
331
|
+
end
|
332
|
+
|
333
|
+
class CreateTenantResourceAssociationResponse < Aws::EmptyStructure
|
334
|
+
end
|
335
|
+
|
336
|
+
class CreateTenantResponse
|
337
|
+
attr_accessor tenant_name: ::String
|
338
|
+
attr_accessor tenant_id: ::String
|
339
|
+
attr_accessor tenant_arn: ::String
|
340
|
+
attr_accessor created_timestamp: ::Time
|
341
|
+
attr_accessor tags: ::Array[Types::Tag]
|
342
|
+
attr_accessor sending_status: ("ENABLED" | "REINSTATED" | "DISABLED")
|
343
|
+
SENSITIVE: []
|
344
|
+
end
|
345
|
+
|
321
346
|
class CustomVerificationEmailTemplateMetadata
|
322
347
|
attr_accessor template_name: ::String
|
323
348
|
attr_accessor from_email_address: ::String
|
@@ -451,6 +476,23 @@ module Aws::SESV2
|
|
451
476
|
class DeleteSuppressedDestinationResponse < Aws::EmptyStructure
|
452
477
|
end
|
453
478
|
|
479
|
+
class DeleteTenantRequest
|
480
|
+
attr_accessor tenant_name: ::String
|
481
|
+
SENSITIVE: []
|
482
|
+
end
|
483
|
+
|
484
|
+
class DeleteTenantResourceAssociationRequest
|
485
|
+
attr_accessor tenant_name: ::String
|
486
|
+
attr_accessor resource_arn: ::String
|
487
|
+
SENSITIVE: []
|
488
|
+
end
|
489
|
+
|
490
|
+
class DeleteTenantResourceAssociationResponse < Aws::EmptyStructure
|
491
|
+
end
|
492
|
+
|
493
|
+
class DeleteTenantResponse < Aws::EmptyStructure
|
494
|
+
end
|
495
|
+
|
454
496
|
class DeliverabilityTestReport
|
455
497
|
attr_accessor report_id: ::String
|
456
498
|
attr_accessor report_name: ::String
|
@@ -921,6 +963,17 @@ module Aws::SESV2
|
|
921
963
|
SENSITIVE: []
|
922
964
|
end
|
923
965
|
|
966
|
+
class GetReputationEntityRequest
|
967
|
+
attr_accessor reputation_entity_reference: ::String
|
968
|
+
attr_accessor reputation_entity_type: ("RESOURCE")
|
969
|
+
SENSITIVE: []
|
970
|
+
end
|
971
|
+
|
972
|
+
class GetReputationEntityResponse
|
973
|
+
attr_accessor reputation_entity: Types::ReputationEntity
|
974
|
+
SENSITIVE: []
|
975
|
+
end
|
976
|
+
|
924
977
|
class GetSuppressedDestinationRequest
|
925
978
|
attr_accessor email_address: ::String
|
926
979
|
SENSITIVE: []
|
@@ -931,6 +984,16 @@ module Aws::SESV2
|
|
931
984
|
SENSITIVE: []
|
932
985
|
end
|
933
986
|
|
987
|
+
class GetTenantRequest
|
988
|
+
attr_accessor tenant_name: ::String
|
989
|
+
SENSITIVE: []
|
990
|
+
end
|
991
|
+
|
992
|
+
class GetTenantResponse
|
993
|
+
attr_accessor tenant: Types::Tenant
|
994
|
+
SENSITIVE: []
|
995
|
+
end
|
996
|
+
|
934
997
|
class GuardianAttributes
|
935
998
|
attr_accessor optimized_shared_delivery: ("ENABLED" | "DISABLED")
|
936
999
|
SENSITIVE: []
|
@@ -1182,6 +1245,32 @@ module Aws::SESV2
|
|
1182
1245
|
SENSITIVE: []
|
1183
1246
|
end
|
1184
1247
|
|
1248
|
+
class ListReputationEntitiesRequest
|
1249
|
+
attr_accessor filter: ::Hash[("ENTITY_TYPE" | "REPUTATION_IMPACT" | "SENDING_STATUS" | "ENTITY_REFERENCE_PREFIX"), ::String]
|
1250
|
+
attr_accessor next_token: ::String
|
1251
|
+
attr_accessor page_size: ::Integer
|
1252
|
+
SENSITIVE: []
|
1253
|
+
end
|
1254
|
+
|
1255
|
+
class ListReputationEntitiesResponse
|
1256
|
+
attr_accessor reputation_entities: ::Array[Types::ReputationEntity]
|
1257
|
+
attr_accessor next_token: ::String
|
1258
|
+
SENSITIVE: []
|
1259
|
+
end
|
1260
|
+
|
1261
|
+
class ListResourceTenantsRequest
|
1262
|
+
attr_accessor resource_arn: ::String
|
1263
|
+
attr_accessor page_size: ::Integer
|
1264
|
+
attr_accessor next_token: ::String
|
1265
|
+
SENSITIVE: []
|
1266
|
+
end
|
1267
|
+
|
1268
|
+
class ListResourceTenantsResponse
|
1269
|
+
attr_accessor resource_tenants: ::Array[Types::ResourceTenantMetadata]
|
1270
|
+
attr_accessor next_token: ::String
|
1271
|
+
SENSITIVE: []
|
1272
|
+
end
|
1273
|
+
|
1185
1274
|
class ListSuppressedDestinationsRequest
|
1186
1275
|
attr_accessor reasons: ::Array[("BOUNCE" | "COMPLAINT")]
|
1187
1276
|
attr_accessor start_date: ::Time
|
@@ -1207,6 +1296,32 @@ module Aws::SESV2
|
|
1207
1296
|
SENSITIVE: []
|
1208
1297
|
end
|
1209
1298
|
|
1299
|
+
class ListTenantResourcesRequest
|
1300
|
+
attr_accessor tenant_name: ::String
|
1301
|
+
attr_accessor filter: ::Hash[("RESOURCE_TYPE"), ::String]
|
1302
|
+
attr_accessor page_size: ::Integer
|
1303
|
+
attr_accessor next_token: ::String
|
1304
|
+
SENSITIVE: []
|
1305
|
+
end
|
1306
|
+
|
1307
|
+
class ListTenantResourcesResponse
|
1308
|
+
attr_accessor tenant_resources: ::Array[Types::TenantResource]
|
1309
|
+
attr_accessor next_token: ::String
|
1310
|
+
SENSITIVE: []
|
1311
|
+
end
|
1312
|
+
|
1313
|
+
class ListTenantsRequest
|
1314
|
+
attr_accessor next_token: ::String
|
1315
|
+
attr_accessor page_size: ::Integer
|
1316
|
+
SENSITIVE: []
|
1317
|
+
end
|
1318
|
+
|
1319
|
+
class ListTenantsResponse
|
1320
|
+
attr_accessor tenants: ::Array[Types::TenantInfo]
|
1321
|
+
attr_accessor next_token: ::String
|
1322
|
+
SENSITIVE: []
|
1323
|
+
end
|
1324
|
+
|
1210
1325
|
class MailFromAttributes
|
1211
1326
|
attr_accessor mail_from_domain: ::String
|
1212
1327
|
attr_accessor mail_from_domain_status: ("PENDING" | "SUCCESS" | "FAILED" | "TEMPORARY_FAILURE")
|
@@ -1529,7 +1644,7 @@ module Aws::SESV2
|
|
1529
1644
|
|
1530
1645
|
class Recommendation
|
1531
1646
|
attr_accessor resource_arn: ::String
|
1532
|
-
attr_accessor type: ("DKIM" | "DMARC" | "SPF" | "BIMI" | "COMPLAINT")
|
1647
|
+
attr_accessor type: ("DKIM" | "DMARC" | "SPF" | "BIMI" | "COMPLAINT" | "BOUNCE" | "FEEDBACK_3P" | "IP_LISTING")
|
1533
1648
|
attr_accessor description: ::String
|
1534
1649
|
attr_accessor status: ("OPEN" | "FIXED")
|
1535
1650
|
attr_accessor created_timestamp: ::Time
|
@@ -1548,12 +1663,31 @@ module Aws::SESV2
|
|
1548
1663
|
SENSITIVE: []
|
1549
1664
|
end
|
1550
1665
|
|
1666
|
+
class ReputationEntity
|
1667
|
+
attr_accessor reputation_entity_reference: ::String
|
1668
|
+
attr_accessor reputation_entity_type: ("RESOURCE")
|
1669
|
+
attr_accessor reputation_management_policy: ::String
|
1670
|
+
attr_accessor customer_managed_status: Types::StatusRecord
|
1671
|
+
attr_accessor aws_ses_managed_status: Types::StatusRecord
|
1672
|
+
attr_accessor sending_status_aggregate: ("ENABLED" | "REINSTATED" | "DISABLED")
|
1673
|
+
attr_accessor reputation_impact: ("LOW" | "HIGH")
|
1674
|
+
SENSITIVE: []
|
1675
|
+
end
|
1676
|
+
|
1551
1677
|
class ReputationOptions
|
1552
1678
|
attr_accessor reputation_metrics_enabled: bool
|
1553
1679
|
attr_accessor last_fresh_start: ::Time
|
1554
1680
|
SENSITIVE: []
|
1555
1681
|
end
|
1556
1682
|
|
1683
|
+
class ResourceTenantMetadata
|
1684
|
+
attr_accessor tenant_name: ::String
|
1685
|
+
attr_accessor tenant_id: ::String
|
1686
|
+
attr_accessor resource_arn: ::String
|
1687
|
+
attr_accessor associated_timestamp: ::Time
|
1688
|
+
SENSITIVE: []
|
1689
|
+
end
|
1690
|
+
|
1557
1691
|
class ReviewDetails
|
1558
1692
|
attr_accessor status: ("PENDING" | "FAILED" | "GRANTED" | "DENIED")
|
1559
1693
|
attr_accessor case_id: ::String
|
@@ -1588,6 +1722,7 @@ module Aws::SESV2
|
|
1588
1722
|
attr_accessor bulk_email_entries: ::Array[Types::BulkEmailEntry]
|
1589
1723
|
attr_accessor configuration_set_name: ::String
|
1590
1724
|
attr_accessor endpoint_id: ::String
|
1725
|
+
attr_accessor tenant_name: ::String
|
1591
1726
|
SENSITIVE: []
|
1592
1727
|
end
|
1593
1728
|
|
@@ -1619,6 +1754,7 @@ module Aws::SESV2
|
|
1619
1754
|
attr_accessor email_tags: ::Array[Types::MessageTag]
|
1620
1755
|
attr_accessor configuration_set_name: ::String
|
1621
1756
|
attr_accessor endpoint_id: ::String
|
1757
|
+
attr_accessor tenant_name: ::String
|
1622
1758
|
attr_accessor list_management_options: Types::ListManagementOptions
|
1623
1759
|
SENSITIVE: []
|
1624
1760
|
end
|
@@ -1648,6 +1784,13 @@ module Aws::SESV2
|
|
1648
1784
|
SENSITIVE: []
|
1649
1785
|
end
|
1650
1786
|
|
1787
|
+
class StatusRecord
|
1788
|
+
attr_accessor status: ("ENABLED" | "REINSTATED" | "DISABLED")
|
1789
|
+
attr_accessor cause: ::String
|
1790
|
+
attr_accessor last_updated_timestamp: ::Time
|
1791
|
+
SENSITIVE: []
|
1792
|
+
end
|
1793
|
+
|
1651
1794
|
class SuppressedDestination
|
1652
1795
|
attr_accessor email_address: ::String
|
1653
1796
|
attr_accessor reason: ("BOUNCE" | "COMPLAINT")
|
@@ -1709,6 +1852,30 @@ module Aws::SESV2
|
|
1709
1852
|
SENSITIVE: []
|
1710
1853
|
end
|
1711
1854
|
|
1855
|
+
class Tenant
|
1856
|
+
attr_accessor tenant_name: ::String
|
1857
|
+
attr_accessor tenant_id: ::String
|
1858
|
+
attr_accessor tenant_arn: ::String
|
1859
|
+
attr_accessor created_timestamp: ::Time
|
1860
|
+
attr_accessor tags: ::Array[Types::Tag]
|
1861
|
+
attr_accessor sending_status: ("ENABLED" | "REINSTATED" | "DISABLED")
|
1862
|
+
SENSITIVE: []
|
1863
|
+
end
|
1864
|
+
|
1865
|
+
class TenantInfo
|
1866
|
+
attr_accessor tenant_name: ::String
|
1867
|
+
attr_accessor tenant_id: ::String
|
1868
|
+
attr_accessor tenant_arn: ::String
|
1869
|
+
attr_accessor created_timestamp: ::Time
|
1870
|
+
SENSITIVE: []
|
1871
|
+
end
|
1872
|
+
|
1873
|
+
class TenantResource
|
1874
|
+
attr_accessor resource_type: ("EMAIL_IDENTITY" | "CONFIGURATION_SET" | "EMAIL_TEMPLATE")
|
1875
|
+
attr_accessor resource_arn: ::String
|
1876
|
+
SENSITIVE: []
|
1877
|
+
end
|
1878
|
+
|
1712
1879
|
class TestRenderEmailTemplateRequest
|
1713
1880
|
attr_accessor template_name: ::String
|
1714
1881
|
attr_accessor template_data: ::String
|
@@ -1822,6 +1989,26 @@ module Aws::SESV2
|
|
1822
1989
|
class UpdateEmailTemplateResponse < Aws::EmptyStructure
|
1823
1990
|
end
|
1824
1991
|
|
1992
|
+
class UpdateReputationEntityCustomerManagedStatusRequest
|
1993
|
+
attr_accessor reputation_entity_type: ("RESOURCE")
|
1994
|
+
attr_accessor reputation_entity_reference: ::String
|
1995
|
+
attr_accessor sending_status: ("ENABLED" | "REINSTATED" | "DISABLED")
|
1996
|
+
SENSITIVE: []
|
1997
|
+
end
|
1998
|
+
|
1999
|
+
class UpdateReputationEntityCustomerManagedStatusResponse < Aws::EmptyStructure
|
2000
|
+
end
|
2001
|
+
|
2002
|
+
class UpdateReputationEntityPolicyRequest
|
2003
|
+
attr_accessor reputation_entity_type: ("RESOURCE")
|
2004
|
+
attr_accessor reputation_entity_reference: ::String
|
2005
|
+
attr_accessor reputation_entity_policy: ::String
|
2006
|
+
SENSITIVE: []
|
2007
|
+
end
|
2008
|
+
|
2009
|
+
class UpdateReputationEntityPolicyResponse < Aws::EmptyStructure
|
2010
|
+
end
|
2011
|
+
|
1825
2012
|
class VdmAttributes
|
1826
2013
|
attr_accessor vdm_enabled: ("ENABLED" | "DISABLED")
|
1827
2014
|
attr_accessor dashboard_attributes: Types::DashboardAttributes
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: aws-sdk-sesv2
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.
|
4
|
+
version: 1.81.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Amazon Web Services
|
@@ -18,7 +18,7 @@ dependencies:
|
|
18
18
|
version: '3'
|
19
19
|
- - ">="
|
20
20
|
- !ruby/object:Gem::Version
|
21
|
-
version: 3.
|
21
|
+
version: 3.228.0
|
22
22
|
type: :runtime
|
23
23
|
prerelease: false
|
24
24
|
version_requirements: !ruby/object:Gem::Requirement
|
@@ -28,7 +28,7 @@ dependencies:
|
|
28
28
|
version: '3'
|
29
29
|
- - ">="
|
30
30
|
- !ruby/object:Gem::Version
|
31
|
-
version: 3.
|
31
|
+
version: 3.228.0
|
32
32
|
- !ruby/object:Gem::Dependency
|
33
33
|
name: aws-sigv4
|
34
34
|
requirement: !ruby/object:Gem::Requirement
|