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/types.rb
CHANGED
@@ -1348,6 +1348,106 @@ module Aws::SESV2
|
|
1348
1348
|
include Aws::Structure
|
1349
1349
|
end
|
1350
1350
|
|
1351
|
+
# Represents a request to create a tenant.
|
1352
|
+
#
|
1353
|
+
# *Tenants* are logical containers that group related SES resources
|
1354
|
+
# together. Each tenant can have its own set of resources like email
|
1355
|
+
# identities, configuration sets, and templates, along with reputation
|
1356
|
+
# metrics and sending status. This helps isolate and manage email
|
1357
|
+
# sending for different customers or business units within your Amazon
|
1358
|
+
# SES API v2 account.
|
1359
|
+
#
|
1360
|
+
# @!attribute [rw] tenant_name
|
1361
|
+
# The name of the tenant to create. The name can contain up to 64
|
1362
|
+
# alphanumeric characters, including letters, numbers, hyphens (-) and
|
1363
|
+
# underscores (\_) only.
|
1364
|
+
# @return [String]
|
1365
|
+
#
|
1366
|
+
# @!attribute [rw] tags
|
1367
|
+
# An array of objects that define the tags (keys and values) to
|
1368
|
+
# associate with the tenant
|
1369
|
+
# @return [Array<Types::Tag>]
|
1370
|
+
#
|
1371
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/sesv2-2019-09-27/CreateTenantRequest AWS API Documentation
|
1372
|
+
#
|
1373
|
+
class CreateTenantRequest < Struct.new(
|
1374
|
+
:tenant_name,
|
1375
|
+
:tags)
|
1376
|
+
SENSITIVE = []
|
1377
|
+
include Aws::Structure
|
1378
|
+
end
|
1379
|
+
|
1380
|
+
# Represents a request to associate a resource with a tenant.
|
1381
|
+
#
|
1382
|
+
# Resources can be email identities, configuration sets, or email
|
1383
|
+
# templates. When you associate a resource with a tenant, you can use
|
1384
|
+
# that resource when sending emails on behalf of that tenant.
|
1385
|
+
#
|
1386
|
+
# @!attribute [rw] tenant_name
|
1387
|
+
# The name of the tenant to associate the resource with.
|
1388
|
+
# @return [String]
|
1389
|
+
#
|
1390
|
+
# @!attribute [rw] resource_arn
|
1391
|
+
# The Amazon Resource Name (ARN) of the resource to associate with the
|
1392
|
+
# tenant.
|
1393
|
+
# @return [String]
|
1394
|
+
#
|
1395
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/sesv2-2019-09-27/CreateTenantResourceAssociationRequest AWS API Documentation
|
1396
|
+
#
|
1397
|
+
class CreateTenantResourceAssociationRequest < Struct.new(
|
1398
|
+
:tenant_name,
|
1399
|
+
:resource_arn)
|
1400
|
+
SENSITIVE = []
|
1401
|
+
include Aws::Structure
|
1402
|
+
end
|
1403
|
+
|
1404
|
+
# If the action is successful, the service sends back an HTTP 200
|
1405
|
+
# response with an empty HTTP body.
|
1406
|
+
#
|
1407
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/sesv2-2019-09-27/CreateTenantResourceAssociationResponse AWS API Documentation
|
1408
|
+
#
|
1409
|
+
class CreateTenantResourceAssociationResponse < Aws::EmptyStructure; end
|
1410
|
+
|
1411
|
+
# Information about a newly created tenant.
|
1412
|
+
#
|
1413
|
+
# @!attribute [rw] tenant_name
|
1414
|
+
# The name of the tenant.
|
1415
|
+
# @return [String]
|
1416
|
+
#
|
1417
|
+
# @!attribute [rw] tenant_id
|
1418
|
+
# A unique identifier for the tenant.
|
1419
|
+
# @return [String]
|
1420
|
+
#
|
1421
|
+
# @!attribute [rw] tenant_arn
|
1422
|
+
# The Amazon Resource Name (ARN) of the tenant.
|
1423
|
+
# @return [String]
|
1424
|
+
#
|
1425
|
+
# @!attribute [rw] created_timestamp
|
1426
|
+
# The date and time when the tenant was created.
|
1427
|
+
# @return [Time]
|
1428
|
+
#
|
1429
|
+
# @!attribute [rw] tags
|
1430
|
+
# An array of objects that define the tags (keys and values)
|
1431
|
+
# associated with the tenant.
|
1432
|
+
# @return [Array<Types::Tag>]
|
1433
|
+
#
|
1434
|
+
# @!attribute [rw] sending_status
|
1435
|
+
# The status of email sending capability for the tenant.
|
1436
|
+
# @return [String]
|
1437
|
+
#
|
1438
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/sesv2-2019-09-27/CreateTenantResponse AWS API Documentation
|
1439
|
+
#
|
1440
|
+
class CreateTenantResponse < Struct.new(
|
1441
|
+
:tenant_name,
|
1442
|
+
:tenant_id,
|
1443
|
+
:tenant_arn,
|
1444
|
+
:created_timestamp,
|
1445
|
+
:tags,
|
1446
|
+
:sending_status)
|
1447
|
+
SENSITIVE = []
|
1448
|
+
include Aws::Structure
|
1449
|
+
end
|
1450
|
+
|
1351
1451
|
# Contains information about a custom verification email template.
|
1352
1452
|
#
|
1353
1453
|
# @!attribute [rw] template_name
|
@@ -1819,6 +1919,55 @@ module Aws::SESV2
|
|
1819
1919
|
#
|
1820
1920
|
class DeleteSuppressedDestinationResponse < Aws::EmptyStructure; end
|
1821
1921
|
|
1922
|
+
# Represents a request to delete a tenant.
|
1923
|
+
#
|
1924
|
+
# @!attribute [rw] tenant_name
|
1925
|
+
# The name of the tenant to delete.
|
1926
|
+
# @return [String]
|
1927
|
+
#
|
1928
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/sesv2-2019-09-27/DeleteTenantRequest AWS API Documentation
|
1929
|
+
#
|
1930
|
+
class DeleteTenantRequest < Struct.new(
|
1931
|
+
:tenant_name)
|
1932
|
+
SENSITIVE = []
|
1933
|
+
include Aws::Structure
|
1934
|
+
end
|
1935
|
+
|
1936
|
+
# Represents a request to delete an association between a tenant and a
|
1937
|
+
# resource.
|
1938
|
+
#
|
1939
|
+
# @!attribute [rw] tenant_name
|
1940
|
+
# The name of the tenant to remove the resource association from.
|
1941
|
+
# @return [String]
|
1942
|
+
#
|
1943
|
+
# @!attribute [rw] resource_arn
|
1944
|
+
# The Amazon Resource Name (ARN) of the resource to remove from the
|
1945
|
+
# tenant association.
|
1946
|
+
# @return [String]
|
1947
|
+
#
|
1948
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/sesv2-2019-09-27/DeleteTenantResourceAssociationRequest AWS API Documentation
|
1949
|
+
#
|
1950
|
+
class DeleteTenantResourceAssociationRequest < Struct.new(
|
1951
|
+
:tenant_name,
|
1952
|
+
:resource_arn)
|
1953
|
+
SENSITIVE = []
|
1954
|
+
include Aws::Structure
|
1955
|
+
end
|
1956
|
+
|
1957
|
+
# If the action is successful, the service sends back an HTTP 200
|
1958
|
+
# response with an empty HTTP body.
|
1959
|
+
#
|
1960
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/sesv2-2019-09-27/DeleteTenantResourceAssociationResponse AWS API Documentation
|
1961
|
+
#
|
1962
|
+
class DeleteTenantResourceAssociationResponse < Aws::EmptyStructure; end
|
1963
|
+
|
1964
|
+
# If the action is successful, the service sends back an HTTP 200
|
1965
|
+
# response with an empty HTTP body.
|
1966
|
+
#
|
1967
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/sesv2-2019-09-27/DeleteTenantResponse AWS API Documentation
|
1968
|
+
#
|
1969
|
+
class DeleteTenantResponse < Aws::EmptyStructure; end
|
1970
|
+
|
1822
1971
|
# An object that contains metadata related to a predictive inbox
|
1823
1972
|
# placement test.
|
1824
1973
|
#
|
@@ -4238,6 +4387,43 @@ module Aws::SESV2
|
|
4238
4387
|
include Aws::Structure
|
4239
4388
|
end
|
4240
4389
|
|
4390
|
+
# Represents a request to retrieve information about a specific
|
4391
|
+
# reputation entity.
|
4392
|
+
#
|
4393
|
+
# @!attribute [rw] reputation_entity_reference
|
4394
|
+
# The unique identifier for the reputation entity. For resource-type
|
4395
|
+
# entities, this is the Amazon Resource Name (ARN) of the resource.
|
4396
|
+
# @return [String]
|
4397
|
+
#
|
4398
|
+
# @!attribute [rw] reputation_entity_type
|
4399
|
+
# The type of reputation entity. Currently, only `RESOURCE` type
|
4400
|
+
# entities are supported.
|
4401
|
+
# @return [String]
|
4402
|
+
#
|
4403
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/sesv2-2019-09-27/GetReputationEntityRequest AWS API Documentation
|
4404
|
+
#
|
4405
|
+
class GetReputationEntityRequest < Struct.new(
|
4406
|
+
:reputation_entity_reference,
|
4407
|
+
:reputation_entity_type)
|
4408
|
+
SENSITIVE = []
|
4409
|
+
include Aws::Structure
|
4410
|
+
end
|
4411
|
+
|
4412
|
+
# Information about the requested reputation entity.
|
4413
|
+
#
|
4414
|
+
# @!attribute [rw] reputation_entity
|
4415
|
+
# The reputation entity information, including status records, policy
|
4416
|
+
# configuration, and reputation impact.
|
4417
|
+
# @return [Types::ReputationEntity]
|
4418
|
+
#
|
4419
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/sesv2-2019-09-27/GetReputationEntityResponse AWS API Documentation
|
4420
|
+
#
|
4421
|
+
class GetReputationEntityResponse < Struct.new(
|
4422
|
+
:reputation_entity)
|
4423
|
+
SENSITIVE = []
|
4424
|
+
include Aws::Structure
|
4425
|
+
end
|
4426
|
+
|
4241
4427
|
# A request to retrieve information about an email address that's on
|
4242
4428
|
# the suppression list for your account.
|
4243
4429
|
#
|
@@ -4267,6 +4453,34 @@ module Aws::SESV2
|
|
4267
4453
|
include Aws::Structure
|
4268
4454
|
end
|
4269
4455
|
|
4456
|
+
# Represents a request to get information about a specific tenant.
|
4457
|
+
#
|
4458
|
+
# @!attribute [rw] tenant_name
|
4459
|
+
# The name of the tenant to retrieve information about.
|
4460
|
+
# @return [String]
|
4461
|
+
#
|
4462
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/sesv2-2019-09-27/GetTenantRequest AWS API Documentation
|
4463
|
+
#
|
4464
|
+
class GetTenantRequest < Struct.new(
|
4465
|
+
:tenant_name)
|
4466
|
+
SENSITIVE = []
|
4467
|
+
include Aws::Structure
|
4468
|
+
end
|
4469
|
+
|
4470
|
+
# Information about a specific tenant.
|
4471
|
+
#
|
4472
|
+
# @!attribute [rw] tenant
|
4473
|
+
# A structure that contains details about the tenant.
|
4474
|
+
# @return [Types::Tenant]
|
4475
|
+
#
|
4476
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/sesv2-2019-09-27/GetTenantResponse AWS API Documentation
|
4477
|
+
#
|
4478
|
+
class GetTenantResponse < Struct.new(
|
4479
|
+
:tenant)
|
4480
|
+
SENSITIVE = []
|
4481
|
+
include Aws::Structure
|
4482
|
+
end
|
4483
|
+
|
4270
4484
|
# An object containing additional settings for your VDM configuration as
|
4271
4485
|
# applicable to the Guardian.
|
4272
4486
|
#
|
@@ -5332,6 +5546,114 @@ module Aws::SESV2
|
|
5332
5546
|
include Aws::Structure
|
5333
5547
|
end
|
5334
5548
|
|
5549
|
+
# Represents a request to list reputation entities with optional
|
5550
|
+
# filtering.
|
5551
|
+
#
|
5552
|
+
# @!attribute [rw] filter
|
5553
|
+
# An object that contains filters to apply when listing reputation
|
5554
|
+
# entities. You can filter by entity type, reputation impact, sending
|
5555
|
+
# status, or entity reference prefix.
|
5556
|
+
# @return [Hash<String,String>]
|
5557
|
+
#
|
5558
|
+
# @!attribute [rw] next_token
|
5559
|
+
# A token returned from a previous call to `ListReputationEntities` to
|
5560
|
+
# indicate the position in the list of reputation entities.
|
5561
|
+
# @return [String]
|
5562
|
+
#
|
5563
|
+
# @!attribute [rw] page_size
|
5564
|
+
# The number of results to show in a single call to
|
5565
|
+
# `ListReputationEntities`. If the number of results is larger than
|
5566
|
+
# the number you specified in this parameter, then the response
|
5567
|
+
# includes a `NextToken` element, which you can use to obtain
|
5568
|
+
# additional results.
|
5569
|
+
# @return [Integer]
|
5570
|
+
#
|
5571
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/sesv2-2019-09-27/ListReputationEntitiesRequest AWS API Documentation
|
5572
|
+
#
|
5573
|
+
class ListReputationEntitiesRequest < Struct.new(
|
5574
|
+
:filter,
|
5575
|
+
:next_token,
|
5576
|
+
:page_size)
|
5577
|
+
SENSITIVE = []
|
5578
|
+
include Aws::Structure
|
5579
|
+
end
|
5580
|
+
|
5581
|
+
# A list of reputation entities in your account.
|
5582
|
+
#
|
5583
|
+
# @!attribute [rw] reputation_entities
|
5584
|
+
# An array that contains information about the reputation entities in
|
5585
|
+
# your account.
|
5586
|
+
# @return [Array<Types::ReputationEntity>]
|
5587
|
+
#
|
5588
|
+
# @!attribute [rw] next_token
|
5589
|
+
# A token that indicates that there are additional reputation entities
|
5590
|
+
# to list. To view additional reputation entities, issue another
|
5591
|
+
# request to `ListReputationEntities`, and pass this token in the
|
5592
|
+
# `NextToken` parameter.
|
5593
|
+
# @return [String]
|
5594
|
+
#
|
5595
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/sesv2-2019-09-27/ListReputationEntitiesResponse AWS API Documentation
|
5596
|
+
#
|
5597
|
+
class ListReputationEntitiesResponse < Struct.new(
|
5598
|
+
:reputation_entities,
|
5599
|
+
:next_token)
|
5600
|
+
SENSITIVE = []
|
5601
|
+
include Aws::Structure
|
5602
|
+
end
|
5603
|
+
|
5604
|
+
# Represents a request to list tenants associated with a specific
|
5605
|
+
# resource.
|
5606
|
+
#
|
5607
|
+
# @!attribute [rw] resource_arn
|
5608
|
+
# The Amazon Resource Name (ARN) of the resource to list associated
|
5609
|
+
# tenants for.
|
5610
|
+
# @return [String]
|
5611
|
+
#
|
5612
|
+
# @!attribute [rw] page_size
|
5613
|
+
# The number of results to show in a single call to
|
5614
|
+
# `ListResourceTenants`. If the number of results is larger than the
|
5615
|
+
# number you specified in this parameter, then the response includes a
|
5616
|
+
# `NextToken` element, which you can use to obtain additional results.
|
5617
|
+
# @return [Integer]
|
5618
|
+
#
|
5619
|
+
# @!attribute [rw] next_token
|
5620
|
+
# A token returned from a previous call to `ListResourceTenants` to
|
5621
|
+
# indicate the position in the list of resource tenants.
|
5622
|
+
# @return [String]
|
5623
|
+
#
|
5624
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/sesv2-2019-09-27/ListResourceTenantsRequest AWS API Documentation
|
5625
|
+
#
|
5626
|
+
class ListResourceTenantsRequest < Struct.new(
|
5627
|
+
:resource_arn,
|
5628
|
+
:page_size,
|
5629
|
+
:next_token)
|
5630
|
+
SENSITIVE = []
|
5631
|
+
include Aws::Structure
|
5632
|
+
end
|
5633
|
+
|
5634
|
+
# Information about tenants associated with a specific resource.
|
5635
|
+
#
|
5636
|
+
# @!attribute [rw] resource_tenants
|
5637
|
+
# An array that contains information about each tenant associated with
|
5638
|
+
# the resource.
|
5639
|
+
# @return [Array<Types::ResourceTenantMetadata>]
|
5640
|
+
#
|
5641
|
+
# @!attribute [rw] next_token
|
5642
|
+
# A token that indicates that there are additional tenants to list. To
|
5643
|
+
# view additional tenants, issue another request to
|
5644
|
+
# `ListResourceTenants`, and pass this token in the `NextToken`
|
5645
|
+
# parameter.
|
5646
|
+
# @return [String]
|
5647
|
+
#
|
5648
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/sesv2-2019-09-27/ListResourceTenantsResponse AWS API Documentation
|
5649
|
+
#
|
5650
|
+
class ListResourceTenantsResponse < Struct.new(
|
5651
|
+
:resource_tenants,
|
5652
|
+
:next_token)
|
5653
|
+
SENSITIVE = []
|
5654
|
+
include Aws::Structure
|
5655
|
+
end
|
5656
|
+
|
5335
5657
|
# A request to obtain a list of email destinations that are on the
|
5336
5658
|
# suppression list for your account.
|
5337
5659
|
#
|
@@ -5427,6 +5749,110 @@ module Aws::SESV2
|
|
5427
5749
|
include Aws::Structure
|
5428
5750
|
end
|
5429
5751
|
|
5752
|
+
# Represents a request to list resources associated with a specific
|
5753
|
+
# tenant.
|
5754
|
+
#
|
5755
|
+
# @!attribute [rw] tenant_name
|
5756
|
+
# The name of the tenant to list resources for.
|
5757
|
+
# @return [String]
|
5758
|
+
#
|
5759
|
+
# @!attribute [rw] filter
|
5760
|
+
# A map of filter keys and values for filtering the list of tenant
|
5761
|
+
# resources. Currently, the only supported filter key is
|
5762
|
+
# `RESOURCE_TYPE`.
|
5763
|
+
# @return [Hash<String,String>]
|
5764
|
+
#
|
5765
|
+
# @!attribute [rw] page_size
|
5766
|
+
# The number of results to show in a single call to
|
5767
|
+
# `ListTenantResources`. If the number of results is larger than the
|
5768
|
+
# number you specified in this parameter, then the response includes a
|
5769
|
+
# `NextToken` element, which you can use to obtain additional results.
|
5770
|
+
# @return [Integer]
|
5771
|
+
#
|
5772
|
+
# @!attribute [rw] next_token
|
5773
|
+
# A token returned from a previous call to `ListTenantResources` to
|
5774
|
+
# indicate the position in the list of tenant resources.
|
5775
|
+
# @return [String]
|
5776
|
+
#
|
5777
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/sesv2-2019-09-27/ListTenantResourcesRequest AWS API Documentation
|
5778
|
+
#
|
5779
|
+
class ListTenantResourcesRequest < Struct.new(
|
5780
|
+
:tenant_name,
|
5781
|
+
:filter,
|
5782
|
+
:page_size,
|
5783
|
+
:next_token)
|
5784
|
+
SENSITIVE = []
|
5785
|
+
include Aws::Structure
|
5786
|
+
end
|
5787
|
+
|
5788
|
+
# Information about resources associated with a specific tenant.
|
5789
|
+
#
|
5790
|
+
# @!attribute [rw] tenant_resources
|
5791
|
+
# An array that contains information about each resource associated
|
5792
|
+
# with the tenant.
|
5793
|
+
# @return [Array<Types::TenantResource>]
|
5794
|
+
#
|
5795
|
+
# @!attribute [rw] next_token
|
5796
|
+
# A token that indicates that there are additional resources to list.
|
5797
|
+
# To view additional resources, issue another request to
|
5798
|
+
# `ListTenantResources`, and pass this token in the `NextToken`
|
5799
|
+
# parameter.
|
5800
|
+
# @return [String]
|
5801
|
+
#
|
5802
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/sesv2-2019-09-27/ListTenantResourcesResponse AWS API Documentation
|
5803
|
+
#
|
5804
|
+
class ListTenantResourcesResponse < Struct.new(
|
5805
|
+
:tenant_resources,
|
5806
|
+
:next_token)
|
5807
|
+
SENSITIVE = []
|
5808
|
+
include Aws::Structure
|
5809
|
+
end
|
5810
|
+
|
5811
|
+
# Represents a request to list all tenants associated with your account
|
5812
|
+
# in the current Amazon Web Services Region.
|
5813
|
+
#
|
5814
|
+
# @!attribute [rw] next_token
|
5815
|
+
# A token returned from a previous call to `ListTenants` to indicate
|
5816
|
+
# the position in the list of tenants.
|
5817
|
+
# @return [String]
|
5818
|
+
#
|
5819
|
+
# @!attribute [rw] page_size
|
5820
|
+
# The number of results to show in a single call to `ListTenants`. If
|
5821
|
+
# the number of results is larger than the number you specified in
|
5822
|
+
# this parameter, then the response includes a `NextToken` element,
|
5823
|
+
# which you can use to obtain additional results.
|
5824
|
+
# @return [Integer]
|
5825
|
+
#
|
5826
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/sesv2-2019-09-27/ListTenantsRequest AWS API Documentation
|
5827
|
+
#
|
5828
|
+
class ListTenantsRequest < Struct.new(
|
5829
|
+
:next_token,
|
5830
|
+
:page_size)
|
5831
|
+
SENSITIVE = []
|
5832
|
+
include Aws::Structure
|
5833
|
+
end
|
5834
|
+
|
5835
|
+
# Information about tenants associated with your account.
|
5836
|
+
#
|
5837
|
+
# @!attribute [rw] tenants
|
5838
|
+
# An array that contains basic information about each tenant.
|
5839
|
+
# @return [Array<Types::TenantInfo>]
|
5840
|
+
#
|
5841
|
+
# @!attribute [rw] next_token
|
5842
|
+
# A token that indicates that there are additional tenants to list. To
|
5843
|
+
# view additional tenants, issue another request to `ListTenants`, and
|
5844
|
+
# pass this token in the `NextToken` parameter.
|
5845
|
+
# @return [String]
|
5846
|
+
#
|
5847
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/sesv2-2019-09-27/ListTenantsResponse AWS API Documentation
|
5848
|
+
#
|
5849
|
+
class ListTenantsResponse < Struct.new(
|
5850
|
+
:tenants,
|
5851
|
+
:next_token)
|
5852
|
+
SENSITIVE = []
|
5853
|
+
include Aws::Structure
|
5854
|
+
end
|
5855
|
+
|
5430
5856
|
# A list of attributes that are associated with a MAIL FROM domain.
|
5431
5857
|
#
|
5432
5858
|
# @!attribute [rw] mail_from_domain
|
@@ -6861,6 +7287,72 @@ module Aws::SESV2
|
|
6861
7287
|
include Aws::Structure
|
6862
7288
|
end
|
6863
7289
|
|
7290
|
+
# An object that contains information about a reputation entity,
|
7291
|
+
# including its reference, type, policy, status records, and reputation
|
7292
|
+
# impact.
|
7293
|
+
#
|
7294
|
+
# @!attribute [rw] reputation_entity_reference
|
7295
|
+
# The unique identifier for the reputation entity. For resource-type
|
7296
|
+
# entities, this is the Amazon Resource Name (ARN) of the resource.
|
7297
|
+
# @return [String]
|
7298
|
+
#
|
7299
|
+
# @!attribute [rw] reputation_entity_type
|
7300
|
+
# The type of reputation entity. Currently, only `RESOURCE` type
|
7301
|
+
# entities are supported.
|
7302
|
+
# @return [String]
|
7303
|
+
#
|
7304
|
+
# @!attribute [rw] reputation_management_policy
|
7305
|
+
# The Amazon Resource Name (ARN) of the reputation management policy
|
7306
|
+
# applied to this entity. This is an Amazon Web Services Amazon
|
7307
|
+
# SES-managed policy.
|
7308
|
+
# @return [String]
|
7309
|
+
#
|
7310
|
+
# @!attribute [rw] customer_managed_status
|
7311
|
+
# The customer-managed status record for this reputation entity,
|
7312
|
+
# including the current status, cause description, and last updated
|
7313
|
+
# timestamp.
|
7314
|
+
# @return [Types::StatusRecord]
|
7315
|
+
#
|
7316
|
+
# @!attribute [rw] aws_ses_managed_status
|
7317
|
+
# The Amazon Web Services Amazon SES-managed status record for this
|
7318
|
+
# reputation entity, including the current status, cause description,
|
7319
|
+
# and last updated timestamp.
|
7320
|
+
# @return [Types::StatusRecord]
|
7321
|
+
#
|
7322
|
+
# @!attribute [rw] sending_status_aggregate
|
7323
|
+
# The aggregate sending status that determines whether the entity is
|
7324
|
+
# allowed to send emails. This status is derived from both the
|
7325
|
+
# customer-managed and Amazon Web Services Amazon SES-managed
|
7326
|
+
# statuses. If either the customer-managed status or the Amazon Web
|
7327
|
+
# Services Amazon SES-managed status is `DISABLED`, the aggregate
|
7328
|
+
# status will be `DISABLED` and the entity will not be allowed to send
|
7329
|
+
# emails. When the customer-managed status is set to `REINSTATED`, the
|
7330
|
+
# entity can continue sending even if there are active reputation
|
7331
|
+
# findings, provided the Amazon Web Services Amazon SES-managed status
|
7332
|
+
# also permits sending. The entity can only send emails when both
|
7333
|
+
# statuses permit sending.
|
7334
|
+
# @return [String]
|
7335
|
+
#
|
7336
|
+
# @!attribute [rw] reputation_impact
|
7337
|
+
# The reputation impact level for this entity, representing the
|
7338
|
+
# highest impact reputation finding currently active. Reputation
|
7339
|
+
# findings can be retrieved using the `ListRecommendations` operation.
|
7340
|
+
# @return [String]
|
7341
|
+
#
|
7342
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/sesv2-2019-09-27/ReputationEntity AWS API Documentation
|
7343
|
+
#
|
7344
|
+
class ReputationEntity < Struct.new(
|
7345
|
+
:reputation_entity_reference,
|
7346
|
+
:reputation_entity_type,
|
7347
|
+
:reputation_management_policy,
|
7348
|
+
:customer_managed_status,
|
7349
|
+
:aws_ses_managed_status,
|
7350
|
+
:sending_status_aggregate,
|
7351
|
+
:reputation_impact)
|
7352
|
+
SENSITIVE = []
|
7353
|
+
include Aws::Structure
|
7354
|
+
end
|
7355
|
+
|
6864
7356
|
# Enable or disable collection of reputation metrics for emails that you
|
6865
7357
|
# send using this configuration set in the current Amazon Web Services
|
6866
7358
|
# Region.
|
@@ -6887,6 +7379,36 @@ module Aws::SESV2
|
|
6887
7379
|
include Aws::Structure
|
6888
7380
|
end
|
6889
7381
|
|
7382
|
+
# A structure that contains information about a tenant associated with a
|
7383
|
+
# resource.
|
7384
|
+
#
|
7385
|
+
# @!attribute [rw] tenant_name
|
7386
|
+
# The name of the tenant associated with the resource.
|
7387
|
+
# @return [String]
|
7388
|
+
#
|
7389
|
+
# @!attribute [rw] tenant_id
|
7390
|
+
# A unique identifier for the tenant associated with the resource.
|
7391
|
+
# @return [String]
|
7392
|
+
#
|
7393
|
+
# @!attribute [rw] resource_arn
|
7394
|
+
# The Amazon Resource Name (ARN) of the resource.
|
7395
|
+
# @return [String]
|
7396
|
+
#
|
7397
|
+
# @!attribute [rw] associated_timestamp
|
7398
|
+
# The date and time when the resource was associated with the tenant.
|
7399
|
+
# @return [Time]
|
7400
|
+
#
|
7401
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/sesv2-2019-09-27/ResourceTenantMetadata AWS API Documentation
|
7402
|
+
#
|
7403
|
+
class ResourceTenantMetadata < Struct.new(
|
7404
|
+
:tenant_name,
|
7405
|
+
:tenant_id,
|
7406
|
+
:resource_arn,
|
7407
|
+
:associated_timestamp)
|
7408
|
+
SENSITIVE = []
|
7409
|
+
include Aws::Structure
|
7410
|
+
end
|
7411
|
+
|
6890
7412
|
# An object that contains information about your account details review.
|
6891
7413
|
#
|
6892
7414
|
# @!attribute [rw] status
|
@@ -7063,6 +7585,16 @@ module Aws::SESV2
|
|
7063
7585
|
# The ID of the multi-region endpoint (global-endpoint).
|
7064
7586
|
# @return [String]
|
7065
7587
|
#
|
7588
|
+
# @!attribute [rw] tenant_name
|
7589
|
+
# The name of the tenant through which this bulk email will be sent.
|
7590
|
+
#
|
7591
|
+
# <note markdown="1"> The email sending operation will only succeed if all referenced
|
7592
|
+
# resources (identities, configuration sets, and templates) are
|
7593
|
+
# associated with this tenant.
|
7594
|
+
#
|
7595
|
+
# </note>
|
7596
|
+
# @return [String]
|
7597
|
+
#
|
7066
7598
|
# @see http://docs.aws.amazon.com/goto/WebAPI/sesv2-2019-09-27/SendBulkEmailRequest AWS API Documentation
|
7067
7599
|
#
|
7068
7600
|
class SendBulkEmailRequest < Struct.new(
|
@@ -7075,7 +7607,8 @@ module Aws::SESV2
|
|
7075
7607
|
:default_content,
|
7076
7608
|
:bulk_email_entries,
|
7077
7609
|
:configuration_set_name,
|
7078
|
-
:endpoint_id
|
7610
|
+
:endpoint_id,
|
7611
|
+
:tenant_name)
|
7079
7612
|
SENSITIVE = []
|
7080
7613
|
include Aws::Structure
|
7081
7614
|
end
|
@@ -7229,6 +7762,16 @@ module Aws::SESV2
|
|
7229
7762
|
# The ID of the multi-region endpoint (global-endpoint).
|
7230
7763
|
# @return [String]
|
7231
7764
|
#
|
7765
|
+
# @!attribute [rw] tenant_name
|
7766
|
+
# The name of the tenant through which this email will be sent.
|
7767
|
+
#
|
7768
|
+
# <note markdown="1"> The email sending operation will only succeed if all referenced
|
7769
|
+
# resources (identities, configuration sets, and templates) are
|
7770
|
+
# associated with this tenant.
|
7771
|
+
#
|
7772
|
+
# </note>
|
7773
|
+
# @return [String]
|
7774
|
+
#
|
7232
7775
|
# @!attribute [rw] list_management_options
|
7233
7776
|
# An object used to specify a list or topic to which an email belongs,
|
7234
7777
|
# which will be used when a contact chooses to unsubscribe.
|
@@ -7247,6 +7790,7 @@ module Aws::SESV2
|
|
7247
7790
|
:email_tags,
|
7248
7791
|
:configuration_set_name,
|
7249
7792
|
:endpoint_id,
|
7793
|
+
:tenant_name,
|
7250
7794
|
:list_management_options)
|
7251
7795
|
SENSITIVE = []
|
7252
7796
|
include Aws::Structure
|
@@ -7354,6 +7898,39 @@ module Aws::SESV2
|
|
7354
7898
|
include Aws::Structure
|
7355
7899
|
end
|
7356
7900
|
|
7901
|
+
# An object that contains status information for a reputation entity,
|
7902
|
+
# including the current status, cause description, and timestamp.
|
7903
|
+
#
|
7904
|
+
# @!attribute [rw] status
|
7905
|
+
# The current sending status. This can be one of the following:
|
7906
|
+
#
|
7907
|
+
# * `ENABLED` – Sending is allowed.
|
7908
|
+
#
|
7909
|
+
# * `DISABLED` – Sending is prevented.
|
7910
|
+
#
|
7911
|
+
# * `REINSTATED` – Sending is allowed even with active reputation
|
7912
|
+
# findings.
|
7913
|
+
# @return [String]
|
7914
|
+
#
|
7915
|
+
# @!attribute [rw] cause
|
7916
|
+
# A description of the reason for the current status, or null if no
|
7917
|
+
# specific cause is available.
|
7918
|
+
# @return [String]
|
7919
|
+
#
|
7920
|
+
# @!attribute [rw] last_updated_timestamp
|
7921
|
+
# The timestamp when this status was last updated.
|
7922
|
+
# @return [Time]
|
7923
|
+
#
|
7924
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/sesv2-2019-09-27/StatusRecord AWS API Documentation
|
7925
|
+
#
|
7926
|
+
class StatusRecord < Struct.new(
|
7927
|
+
:status,
|
7928
|
+
:cause,
|
7929
|
+
:last_updated_timestamp)
|
7930
|
+
SENSITIVE = []
|
7931
|
+
include Aws::Structure
|
7932
|
+
end
|
7933
|
+
|
7357
7934
|
# An object that contains information about an email address that is on
|
7358
7935
|
# the suppression list for your account.
|
7359
7936
|
#
|
@@ -7642,6 +8219,97 @@ module Aws::SESV2
|
|
7642
8219
|
include Aws::Structure
|
7643
8220
|
end
|
7644
8221
|
|
8222
|
+
# A structure that contains details about a tenant.
|
8223
|
+
#
|
8224
|
+
# @!attribute [rw] tenant_name
|
8225
|
+
# The name of the tenant.
|
8226
|
+
# @return [String]
|
8227
|
+
#
|
8228
|
+
# @!attribute [rw] tenant_id
|
8229
|
+
# A unique identifier for the tenant.
|
8230
|
+
# @return [String]
|
8231
|
+
#
|
8232
|
+
# @!attribute [rw] tenant_arn
|
8233
|
+
# The Amazon Resource Name (ARN) of the tenant.
|
8234
|
+
# @return [String]
|
8235
|
+
#
|
8236
|
+
# @!attribute [rw] created_timestamp
|
8237
|
+
# The date and time when the tenant was created.
|
8238
|
+
# @return [Time]
|
8239
|
+
#
|
8240
|
+
# @!attribute [rw] tags
|
8241
|
+
# An array of objects that define the tags (keys and values)
|
8242
|
+
# associated with the tenant.
|
8243
|
+
# @return [Array<Types::Tag>]
|
8244
|
+
#
|
8245
|
+
# @!attribute [rw] sending_status
|
8246
|
+
# The status of sending capability for the tenant.
|
8247
|
+
# @return [String]
|
8248
|
+
#
|
8249
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/sesv2-2019-09-27/Tenant AWS API Documentation
|
8250
|
+
#
|
8251
|
+
class Tenant < Struct.new(
|
8252
|
+
:tenant_name,
|
8253
|
+
:tenant_id,
|
8254
|
+
:tenant_arn,
|
8255
|
+
:created_timestamp,
|
8256
|
+
:tags,
|
8257
|
+
:sending_status)
|
8258
|
+
SENSITIVE = []
|
8259
|
+
include Aws::Structure
|
8260
|
+
end
|
8261
|
+
|
8262
|
+
# A structure that contains basic information about a tenant.
|
8263
|
+
#
|
8264
|
+
# @!attribute [rw] tenant_name
|
8265
|
+
# The name of the tenant.
|
8266
|
+
# @return [String]
|
8267
|
+
#
|
8268
|
+
# @!attribute [rw] tenant_id
|
8269
|
+
# A unique identifier for the tenant.
|
8270
|
+
# @return [String]
|
8271
|
+
#
|
8272
|
+
# @!attribute [rw] tenant_arn
|
8273
|
+
# The Amazon Resource Name (ARN) of the tenant.
|
8274
|
+
# @return [String]
|
8275
|
+
#
|
8276
|
+
# @!attribute [rw] created_timestamp
|
8277
|
+
# The date and time when the tenant was created.
|
8278
|
+
# @return [Time]
|
8279
|
+
#
|
8280
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/sesv2-2019-09-27/TenantInfo AWS API Documentation
|
8281
|
+
#
|
8282
|
+
class TenantInfo < Struct.new(
|
8283
|
+
:tenant_name,
|
8284
|
+
:tenant_id,
|
8285
|
+
:tenant_arn,
|
8286
|
+
:created_timestamp)
|
8287
|
+
SENSITIVE = []
|
8288
|
+
include Aws::Structure
|
8289
|
+
end
|
8290
|
+
|
8291
|
+
# A structure that contains information about a resource associated with
|
8292
|
+
# a tenant.
|
8293
|
+
#
|
8294
|
+
# @!attribute [rw] resource_type
|
8295
|
+
# The type of resource associated with the tenant. Valid values are
|
8296
|
+
# `EMAIL_IDENTITY`, `CONFIGURATION_SET`, or `EMAIL_TEMPLATE`.
|
8297
|
+
# @return [String]
|
8298
|
+
#
|
8299
|
+
# @!attribute [rw] resource_arn
|
8300
|
+
# The Amazon Resource Name (ARN) of the resource associated with the
|
8301
|
+
# tenant.
|
8302
|
+
# @return [String]
|
8303
|
+
#
|
8304
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/sesv2-2019-09-27/TenantResource AWS API Documentation
|
8305
|
+
#
|
8306
|
+
class TenantResource < Struct.new(
|
8307
|
+
:resource_type,
|
8308
|
+
:resource_arn)
|
8309
|
+
SENSITIVE = []
|
8310
|
+
include Aws::Structure
|
8311
|
+
end
|
8312
|
+
|
7645
8313
|
# >Represents a request to create a preview of the MIME content of an
|
7646
8314
|
# email when provided with a template and a set of replacement data.
|
7647
8315
|
#
|
@@ -8054,6 +8722,84 @@ module Aws::SESV2
|
|
8054
8722
|
#
|
8055
8723
|
class UpdateEmailTemplateResponse < Aws::EmptyStructure; end
|
8056
8724
|
|
8725
|
+
# Represents a request to update the customer-managed sending status for
|
8726
|
+
# a reputation entity.
|
8727
|
+
#
|
8728
|
+
# @!attribute [rw] reputation_entity_type
|
8729
|
+
# The type of reputation entity. Currently, only `RESOURCE` type
|
8730
|
+
# entities are supported.
|
8731
|
+
# @return [String]
|
8732
|
+
#
|
8733
|
+
# @!attribute [rw] reputation_entity_reference
|
8734
|
+
# The unique identifier for the reputation entity. For resource-type
|
8735
|
+
# entities, this is the Amazon Resource Name (ARN) of the resource.
|
8736
|
+
# @return [String]
|
8737
|
+
#
|
8738
|
+
# @!attribute [rw] sending_status
|
8739
|
+
# The new customer-managed sending status for the reputation entity.
|
8740
|
+
# This can be one of the following:
|
8741
|
+
#
|
8742
|
+
# * `ENABLED` – Allow sending for this entity.
|
8743
|
+
#
|
8744
|
+
# * `DISABLED` – Prevent sending for this entity.
|
8745
|
+
#
|
8746
|
+
# * `REINSTATED` – Allow sending even if there are active reputation
|
8747
|
+
# findings.
|
8748
|
+
# @return [String]
|
8749
|
+
#
|
8750
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/sesv2-2019-09-27/UpdateReputationEntityCustomerManagedStatusRequest AWS API Documentation
|
8751
|
+
#
|
8752
|
+
class UpdateReputationEntityCustomerManagedStatusRequest < Struct.new(
|
8753
|
+
:reputation_entity_type,
|
8754
|
+
:reputation_entity_reference,
|
8755
|
+
:sending_status)
|
8756
|
+
SENSITIVE = []
|
8757
|
+
include Aws::Structure
|
8758
|
+
end
|
8759
|
+
|
8760
|
+
# If the action is successful, the service sends back an HTTP 200
|
8761
|
+
# response with an empty HTTP body.
|
8762
|
+
#
|
8763
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/sesv2-2019-09-27/UpdateReputationEntityCustomerManagedStatusResponse AWS API Documentation
|
8764
|
+
#
|
8765
|
+
class UpdateReputationEntityCustomerManagedStatusResponse < Aws::EmptyStructure; end
|
8766
|
+
|
8767
|
+
# Represents a request to update the reputation management policy for a
|
8768
|
+
# reputation entity.
|
8769
|
+
#
|
8770
|
+
# @!attribute [rw] reputation_entity_type
|
8771
|
+
# The type of reputation entity. Currently, only `RESOURCE` type
|
8772
|
+
# entities are supported.
|
8773
|
+
# @return [String]
|
8774
|
+
#
|
8775
|
+
# @!attribute [rw] reputation_entity_reference
|
8776
|
+
# The unique identifier for the reputation entity. For resource-type
|
8777
|
+
# entities, this is the Amazon Resource Name (ARN) of the resource.
|
8778
|
+
# @return [String]
|
8779
|
+
#
|
8780
|
+
# @!attribute [rw] reputation_entity_policy
|
8781
|
+
# The Amazon Resource Name (ARN) of the reputation management policy
|
8782
|
+
# to apply to this entity. This is an Amazon Web Services Amazon
|
8783
|
+
# SES-managed policy.
|
8784
|
+
# @return [String]
|
8785
|
+
#
|
8786
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/sesv2-2019-09-27/UpdateReputationEntityPolicyRequest AWS API Documentation
|
8787
|
+
#
|
8788
|
+
class UpdateReputationEntityPolicyRequest < Struct.new(
|
8789
|
+
:reputation_entity_type,
|
8790
|
+
:reputation_entity_reference,
|
8791
|
+
:reputation_entity_policy)
|
8792
|
+
SENSITIVE = []
|
8793
|
+
include Aws::Structure
|
8794
|
+
end
|
8795
|
+
|
8796
|
+
# If the action is successful, the service sends back an HTTP 200
|
8797
|
+
# response with an empty HTTP body.
|
8798
|
+
#
|
8799
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/sesv2-2019-09-27/UpdateReputationEntityPolicyResponse AWS API Documentation
|
8800
|
+
#
|
8801
|
+
class UpdateReputationEntityPolicyResponse < Aws::EmptyStructure; end
|
8802
|
+
|
8057
8803
|
# The VDM attributes that apply to your Amazon SES account.
|
8058
8804
|
#
|
8059
8805
|
# @!attribute [rw] vdm_enabled
|