@aws-sdk/client-sesv2 3.709.0 → 3.712.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.
- package/README.md +32 -0
- package/dist-cjs/endpoint/endpointResolver.js +1 -1
- package/dist-cjs/endpoint/ruleset.js +3 -3
- package/dist-cjs/index.js +226 -6
- package/dist-es/SESv2.js +8 -0
- package/dist-es/commands/CreateMultiRegionEndpointCommand.js +22 -0
- package/dist-es/commands/DeleteMultiRegionEndpointCommand.js +22 -0
- package/dist-es/commands/GetMultiRegionEndpointCommand.js +22 -0
- package/dist-es/commands/ListMultiRegionEndpointsCommand.js +22 -0
- package/dist-es/commands/PutEmailIdentityDkimSigningAttributesCommand.js +1 -1
- package/dist-es/commands/SendBulkEmailCommand.js +4 -1
- package/dist-es/commands/SendEmailCommand.js +4 -1
- package/dist-es/commands/index.js +4 -0
- package/dist-es/endpoint/endpointResolver.js +1 -1
- package/dist-es/endpoint/ruleset.js +3 -3
- package/dist-es/models/models_0.js +6 -4
- package/dist-es/models/models_1.js +5 -1
- package/dist-es/pagination/ListMultiRegionEndpointsPaginator.js +4 -0
- package/dist-es/pagination/index.js +1 -0
- package/dist-es/protocols/Aws_restJson1.js +128 -0
- package/dist-types/SESv2.d.ts +29 -0
- package/dist-types/SESv2Client.d.ts +6 -2
- package/dist-types/commands/CreateMultiRegionEndpointCommand.d.ts +103 -0
- package/dist-types/commands/DeleteMultiRegionEndpointCommand.d.ts +85 -0
- package/dist-types/commands/GetMultiRegionEndpointCommand.d.ts +91 -0
- package/dist-types/commands/ListMultiRegionEndpointsCommand.d.ts +92 -0
- package/dist-types/commands/PutDedicatedIpInPoolCommand.d.ts +1 -1
- package/dist-types/commands/PutDedicatedIpPoolScalingAttributesCommand.d.ts +1 -1
- package/dist-types/commands/PutDedicatedIpWarmupAttributesCommand.d.ts +1 -1
- package/dist-types/commands/PutDeliverabilityDashboardOptionCommand.d.ts +1 -1
- package/dist-types/commands/PutEmailIdentityConfigurationSetAttributesCommand.d.ts +1 -1
- package/dist-types/commands/PutEmailIdentityDkimAttributesCommand.d.ts +1 -1
- package/dist-types/commands/PutEmailIdentityDkimSigningAttributesCommand.d.ts +1 -2
- package/dist-types/commands/SendBulkEmailCommand.d.ts +1 -0
- package/dist-types/commands/SendEmailCommand.d.ts +1 -0
- package/dist-types/commands/index.d.ts +4 -0
- package/dist-types/endpoint/EndpointParameters.d.ts +1 -0
- package/dist-types/models/models_0.d.ts +305 -195
- package/dist-types/models/models_1.d.ts +206 -1
- package/dist-types/pagination/ListMultiRegionEndpointsPaginator.d.ts +7 -0
- package/dist-types/pagination/index.d.ts +1 -0
- package/dist-types/protocols/Aws_restJson1.d.ts +36 -0
- package/dist-types/ts3.4/SESv2.d.ts +69 -0
- package/dist-types/ts3.4/SESv2Client.d.ts +24 -0
- package/dist-types/ts3.4/commands/CreateMultiRegionEndpointCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/DeleteMultiRegionEndpointCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/GetMultiRegionEndpointCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/ListMultiRegionEndpointsCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/PutDedicatedIpInPoolCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/PutDedicatedIpPoolScalingAttributesCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/PutDedicatedIpWarmupAttributesCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/PutDeliverabilityDashboardOptionCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/PutEmailIdentityConfigurationSetAttributesCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/PutEmailIdentityDkimAttributesCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/PutEmailIdentityDkimSigningAttributesCommand.d.ts +4 -2
- package/dist-types/ts3.4/commands/index.d.ts +4 -0
- package/dist-types/ts3.4/endpoint/EndpointParameters.d.ts +1 -0
- package/dist-types/ts3.4/models/models_0.d.ts +58 -38
- package/dist-types/ts3.4/models/models_1.d.ts +44 -0
- package/dist-types/ts3.4/pagination/ListMultiRegionEndpointsPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/index.d.ts +1 -0
- package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +48 -0
- package/package.json +5 -5
|
@@ -3196,6 +3196,98 @@ export interface CreateImportJobResponse {
|
|
|
3196
3196
|
*/
|
|
3197
3197
|
JobId?: string | undefined;
|
|
3198
3198
|
}
|
|
3199
|
+
/**
|
|
3200
|
+
* <p>An object that contains route configuration. Includes secondary region name.</p>
|
|
3201
|
+
* @public
|
|
3202
|
+
*/
|
|
3203
|
+
export interface RouteDetails {
|
|
3204
|
+
/**
|
|
3205
|
+
* <p>The name of an AWS-Region to be a secondary region for the multi-region endpoint (global-endpoint).</p>
|
|
3206
|
+
* @public
|
|
3207
|
+
*/
|
|
3208
|
+
Region: string | undefined;
|
|
3209
|
+
}
|
|
3210
|
+
/**
|
|
3211
|
+
* <p>An object that contains configuration details of multi-region endpoint (global-endpoint).</p>
|
|
3212
|
+
* @public
|
|
3213
|
+
*/
|
|
3214
|
+
export interface Details {
|
|
3215
|
+
/**
|
|
3216
|
+
* <p>A list of route configuration details. Must contain exactly one route configuration.</p>
|
|
3217
|
+
* @public
|
|
3218
|
+
*/
|
|
3219
|
+
RoutesDetails: RouteDetails[] | undefined;
|
|
3220
|
+
}
|
|
3221
|
+
/**
|
|
3222
|
+
* <p>Represents a request to create a multi-region endpoint (global-endpoint).</p>
|
|
3223
|
+
* @public
|
|
3224
|
+
*/
|
|
3225
|
+
export interface CreateMultiRegionEndpointRequest {
|
|
3226
|
+
/**
|
|
3227
|
+
* <p>The name of the multi-region endpoint (global-endpoint).</p>
|
|
3228
|
+
* @public
|
|
3229
|
+
*/
|
|
3230
|
+
EndpointName: string | undefined;
|
|
3231
|
+
/**
|
|
3232
|
+
* <p>Contains details of a multi-region endpoint (global-endpoint) being created.</p>
|
|
3233
|
+
* @public
|
|
3234
|
+
*/
|
|
3235
|
+
Details: Details | undefined;
|
|
3236
|
+
/**
|
|
3237
|
+
* <p>An array of objects that define the tags (keys and values) to associate with the multi-region endpoint (global-endpoint).</p>
|
|
3238
|
+
* @public
|
|
3239
|
+
*/
|
|
3240
|
+
Tags?: Tag[] | undefined;
|
|
3241
|
+
}
|
|
3242
|
+
/**
|
|
3243
|
+
* @public
|
|
3244
|
+
* @enum
|
|
3245
|
+
*/
|
|
3246
|
+
export declare const Status: {
|
|
3247
|
+
readonly CREATING: "CREATING";
|
|
3248
|
+
readonly DELETING: "DELETING";
|
|
3249
|
+
readonly FAILED: "FAILED";
|
|
3250
|
+
readonly READY: "READY";
|
|
3251
|
+
};
|
|
3252
|
+
/**
|
|
3253
|
+
* @public
|
|
3254
|
+
*/
|
|
3255
|
+
export type Status = (typeof Status)[keyof typeof Status];
|
|
3256
|
+
/**
|
|
3257
|
+
* <p>An HTTP 200 response if the request succeeds, or an error message if the request
|
|
3258
|
+
* fails.</p>
|
|
3259
|
+
* @public
|
|
3260
|
+
*/
|
|
3261
|
+
export interface CreateMultiRegionEndpointResponse {
|
|
3262
|
+
/**
|
|
3263
|
+
* <p>A status of the multi-region endpoint (global-endpoint) right after the create request.</p>
|
|
3264
|
+
* <ul>
|
|
3265
|
+
* <li>
|
|
3266
|
+
* <p>
|
|
3267
|
+
* <code>CREATING</code> – The resource is being provisioned.</p>
|
|
3268
|
+
* </li>
|
|
3269
|
+
* <li>
|
|
3270
|
+
* <p>
|
|
3271
|
+
* <code>READY</code> – The resource is ready to use.</p>
|
|
3272
|
+
* </li>
|
|
3273
|
+
* <li>
|
|
3274
|
+
* <p>
|
|
3275
|
+
* <code>FAILED</code> – The resource failed to be provisioned.</p>
|
|
3276
|
+
* </li>
|
|
3277
|
+
* <li>
|
|
3278
|
+
* <p>
|
|
3279
|
+
* <code>DELETING</code> – The resource is being deleted as requested.</p>
|
|
3280
|
+
* </li>
|
|
3281
|
+
* </ul>
|
|
3282
|
+
* @public
|
|
3283
|
+
*/
|
|
3284
|
+
Status?: Status | undefined;
|
|
3285
|
+
/**
|
|
3286
|
+
* <p>The ID of the multi-region endpoint (global-endpoint).</p>
|
|
3287
|
+
* @public
|
|
3288
|
+
*/
|
|
3289
|
+
EndpointId?: string | undefined;
|
|
3290
|
+
}
|
|
3199
3291
|
/**
|
|
3200
3292
|
* <p>Contains information about a custom verification email template.</p>
|
|
3201
3293
|
* @public
|
|
@@ -3607,6 +3699,47 @@ export interface DeleteEmailTemplateRequest {
|
|
|
3607
3699
|
*/
|
|
3608
3700
|
export interface DeleteEmailTemplateResponse {
|
|
3609
3701
|
}
|
|
3702
|
+
/**
|
|
3703
|
+
* <p>Represents a request to delete a multi-region endpoint (global-endpoint).</p>
|
|
3704
|
+
* @public
|
|
3705
|
+
*/
|
|
3706
|
+
export interface DeleteMultiRegionEndpointRequest {
|
|
3707
|
+
/**
|
|
3708
|
+
* <p>The name of the multi-region endpoint (global-endpoint) to be deleted.</p>
|
|
3709
|
+
* @public
|
|
3710
|
+
*/
|
|
3711
|
+
EndpointName: string | undefined;
|
|
3712
|
+
}
|
|
3713
|
+
/**
|
|
3714
|
+
* <p>An HTTP 200 response if the request succeeds, or an error message if the request
|
|
3715
|
+
* fails.</p>
|
|
3716
|
+
* @public
|
|
3717
|
+
*/
|
|
3718
|
+
export interface DeleteMultiRegionEndpointResponse {
|
|
3719
|
+
/**
|
|
3720
|
+
* <p>A status of the multi-region endpoint (global-endpoint) right after the delete request.</p>
|
|
3721
|
+
* <ul>
|
|
3722
|
+
* <li>
|
|
3723
|
+
* <p>
|
|
3724
|
+
* <code>CREATING</code> – The resource is being provisioned.</p>
|
|
3725
|
+
* </li>
|
|
3726
|
+
* <li>
|
|
3727
|
+
* <p>
|
|
3728
|
+
* <code>READY</code> – The resource is ready to use.</p>
|
|
3729
|
+
* </li>
|
|
3730
|
+
* <li>
|
|
3731
|
+
* <p>
|
|
3732
|
+
* <code>FAILED</code> – The resource failed to be provisioned.</p>
|
|
3733
|
+
* </li>
|
|
3734
|
+
* <li>
|
|
3735
|
+
* <p>
|
|
3736
|
+
* <code>DELETING</code> – The resource is being deleted as requested.</p>
|
|
3737
|
+
* </li>
|
|
3738
|
+
* </ul>
|
|
3739
|
+
* @public
|
|
3740
|
+
*/
|
|
3741
|
+
Status?: Status | undefined;
|
|
3742
|
+
}
|
|
3610
3743
|
/**
|
|
3611
3744
|
* <p>A request to remove an email address from the suppression list for your
|
|
3612
3745
|
* account.</p>
|
|
@@ -5513,6 +5646,83 @@ export interface GetMessageInsightsResponse {
|
|
|
5513
5646
|
*/
|
|
5514
5647
|
Insights?: EmailInsights[] | undefined;
|
|
5515
5648
|
}
|
|
5649
|
+
/**
|
|
5650
|
+
* <p>Represents a request to display the multi-region endpoint (global-endpoint).</p>
|
|
5651
|
+
* @public
|
|
5652
|
+
*/
|
|
5653
|
+
export interface GetMultiRegionEndpointRequest {
|
|
5654
|
+
/**
|
|
5655
|
+
* <p>The name of the multi-region endpoint (global-endpoint).</p>
|
|
5656
|
+
* @public
|
|
5657
|
+
*/
|
|
5658
|
+
EndpointName: string | undefined;
|
|
5659
|
+
}
|
|
5660
|
+
/**
|
|
5661
|
+
* <p>An object which contains an AWS-Region and routing status.</p>
|
|
5662
|
+
* @public
|
|
5663
|
+
*/
|
|
5664
|
+
export interface Route {
|
|
5665
|
+
/**
|
|
5666
|
+
* <p>The name of an AWS-Region.</p>
|
|
5667
|
+
* @public
|
|
5668
|
+
*/
|
|
5669
|
+
Region: string | undefined;
|
|
5670
|
+
}
|
|
5671
|
+
/**
|
|
5672
|
+
* <p>An HTTP 200 response if the request succeeds, or an error message if the request
|
|
5673
|
+
* fails.</p>
|
|
5674
|
+
* @public
|
|
5675
|
+
*/
|
|
5676
|
+
export interface GetMultiRegionEndpointResponse {
|
|
5677
|
+
/**
|
|
5678
|
+
* <p>The name of the multi-region endpoint (global-endpoint).</p>
|
|
5679
|
+
* @public
|
|
5680
|
+
*/
|
|
5681
|
+
EndpointName?: string | undefined;
|
|
5682
|
+
/**
|
|
5683
|
+
* <p>The ID of the multi-region endpoint (global-endpoint).</p>
|
|
5684
|
+
* @public
|
|
5685
|
+
*/
|
|
5686
|
+
EndpointId?: string | undefined;
|
|
5687
|
+
/**
|
|
5688
|
+
* <p>Contains routes information for the multi-region endpoint (global-endpoint).</p>
|
|
5689
|
+
* @public
|
|
5690
|
+
*/
|
|
5691
|
+
Routes?: Route[] | undefined;
|
|
5692
|
+
/**
|
|
5693
|
+
* <p>The status of the multi-region endpoint (global-endpoint).</p>
|
|
5694
|
+
* <ul>
|
|
5695
|
+
* <li>
|
|
5696
|
+
* <p>
|
|
5697
|
+
* <code>CREATING</code> – The resource is being provisioned.</p>
|
|
5698
|
+
* </li>
|
|
5699
|
+
* <li>
|
|
5700
|
+
* <p>
|
|
5701
|
+
* <code>READY</code> – The resource is ready to use.</p>
|
|
5702
|
+
* </li>
|
|
5703
|
+
* <li>
|
|
5704
|
+
* <p>
|
|
5705
|
+
* <code>FAILED</code> – The resource failed to be provisioned.</p>
|
|
5706
|
+
* </li>
|
|
5707
|
+
* <li>
|
|
5708
|
+
* <p>
|
|
5709
|
+
* <code>DELETING</code> – The resource is being deleted as requested.</p>
|
|
5710
|
+
* </li>
|
|
5711
|
+
* </ul>
|
|
5712
|
+
* @public
|
|
5713
|
+
*/
|
|
5714
|
+
Status?: Status | undefined;
|
|
5715
|
+
/**
|
|
5716
|
+
* <p>The time stamp of when the multi-region endpoint (global-endpoint) was created.</p>
|
|
5717
|
+
* @public
|
|
5718
|
+
*/
|
|
5719
|
+
CreatedTimestamp?: Date | undefined;
|
|
5720
|
+
/**
|
|
5721
|
+
* <p>The time stamp of when the multi-region endpoint (global-endpoint) was last updated.</p>
|
|
5722
|
+
* @public
|
|
5723
|
+
*/
|
|
5724
|
+
LastUpdatedTimestamp?: Date | undefined;
|
|
5725
|
+
}
|
|
5516
5726
|
/**
|
|
5517
5727
|
* <p>A request to retrieve information about an email address that's on the suppression
|
|
5518
5728
|
* list for your account.</p>
|
|
@@ -6271,6 +6481,101 @@ export interface ListManagementOptions {
|
|
|
6271
6481
|
*/
|
|
6272
6482
|
TopicName?: string | undefined;
|
|
6273
6483
|
}
|
|
6484
|
+
/**
|
|
6485
|
+
* <p>Represents a request to list all the multi-region endpoints (global-endpoints)
|
|
6486
|
+
* whose primary region is the AWS-Region where operation is executed.
|
|
6487
|
+
* </p>
|
|
6488
|
+
* @public
|
|
6489
|
+
*/
|
|
6490
|
+
export interface ListMultiRegionEndpointsRequest {
|
|
6491
|
+
/**
|
|
6492
|
+
* <p>A token returned from a previous call to <code>ListMultiRegionEndpoints</code> to indicate
|
|
6493
|
+
* the position in the list of multi-region endpoints (global-endpoints).</p>
|
|
6494
|
+
* @public
|
|
6495
|
+
*/
|
|
6496
|
+
NextToken?: string | undefined;
|
|
6497
|
+
/**
|
|
6498
|
+
* <p>The number of results to show in a single call to <code>ListMultiRegionEndpoints</code>.
|
|
6499
|
+
* If the number of results is larger than the number you specified in this parameter,
|
|
6500
|
+
* the response includes a <code>NextToken</code> element
|
|
6501
|
+
* that you can use to retrieve the next page of results.
|
|
6502
|
+
* </p>
|
|
6503
|
+
* @public
|
|
6504
|
+
*/
|
|
6505
|
+
PageSize?: number | undefined;
|
|
6506
|
+
}
|
|
6507
|
+
/**
|
|
6508
|
+
* <p>An object that contains multi-region endpoint (global-endpoint) properties.</p>
|
|
6509
|
+
* @public
|
|
6510
|
+
*/
|
|
6511
|
+
export interface MultiRegionEndpoint {
|
|
6512
|
+
/**
|
|
6513
|
+
* <p>The name of the multi-region endpoint (global-endpoint).</p>
|
|
6514
|
+
* @public
|
|
6515
|
+
*/
|
|
6516
|
+
EndpointName?: string | undefined;
|
|
6517
|
+
/**
|
|
6518
|
+
* <p>The status of the multi-region endpoint (global-endpoint).</p>
|
|
6519
|
+
* <ul>
|
|
6520
|
+
* <li>
|
|
6521
|
+
* <p>
|
|
6522
|
+
* <code>CREATING</code> – The resource is being provisioned.</p>
|
|
6523
|
+
* </li>
|
|
6524
|
+
* <li>
|
|
6525
|
+
* <p>
|
|
6526
|
+
* <code>READY</code> – The resource is ready to use.</p>
|
|
6527
|
+
* </li>
|
|
6528
|
+
* <li>
|
|
6529
|
+
* <p>
|
|
6530
|
+
* <code>FAILED</code> – The resource failed to be provisioned.</p>
|
|
6531
|
+
* </li>
|
|
6532
|
+
* <li>
|
|
6533
|
+
* <p>
|
|
6534
|
+
* <code>DELETING</code> – The resource is being deleted as requested.</p>
|
|
6535
|
+
* </li>
|
|
6536
|
+
* </ul>
|
|
6537
|
+
* @public
|
|
6538
|
+
*/
|
|
6539
|
+
Status?: Status | undefined;
|
|
6540
|
+
/**
|
|
6541
|
+
* <p>The ID of the multi-region endpoint (global-endpoint).</p>
|
|
6542
|
+
* @public
|
|
6543
|
+
*/
|
|
6544
|
+
EndpointId?: string | undefined;
|
|
6545
|
+
/**
|
|
6546
|
+
* <p>Primary and secondary regions between which multi-region endpoint splits sending traffic.</p>
|
|
6547
|
+
* @public
|
|
6548
|
+
*/
|
|
6549
|
+
Regions?: string[] | undefined;
|
|
6550
|
+
/**
|
|
6551
|
+
* <p>The time stamp of when the multi-region endpoint (global-endpoint) was created.</p>
|
|
6552
|
+
* @public
|
|
6553
|
+
*/
|
|
6554
|
+
CreatedTimestamp?: Date | undefined;
|
|
6555
|
+
/**
|
|
6556
|
+
* <p>The time stamp of when the multi-region endpoint (global-endpoint) was last updated.</p>
|
|
6557
|
+
* @public
|
|
6558
|
+
*/
|
|
6559
|
+
LastUpdatedTimestamp?: Date | undefined;
|
|
6560
|
+
}
|
|
6561
|
+
/**
|
|
6562
|
+
* <p>The following elements are returned by the service.</p>
|
|
6563
|
+
* @public
|
|
6564
|
+
*/
|
|
6565
|
+
export interface ListMultiRegionEndpointsResponse {
|
|
6566
|
+
/**
|
|
6567
|
+
* <p>An array that contains key multi-region endpoint (global-endpoint) properties.</p>
|
|
6568
|
+
* @public
|
|
6569
|
+
*/
|
|
6570
|
+
MultiRegionEndpoints?: MultiRegionEndpoint[] | undefined;
|
|
6571
|
+
/**
|
|
6572
|
+
* <p>A token indicating that there are additional multi-region endpoints (global-endpoints) available to be listed.
|
|
6573
|
+
* Pass this token to a subsequent <code>ListMultiRegionEndpoints</code> call to retrieve the
|
|
6574
|
+
* next page.</p>
|
|
6575
|
+
* @public
|
|
6576
|
+
*/
|
|
6577
|
+
NextToken?: string | undefined;
|
|
6578
|
+
}
|
|
6274
6579
|
/**
|
|
6275
6580
|
* @public
|
|
6276
6581
|
* @enum
|
|
@@ -6858,197 +7163,6 @@ export interface PutConfigurationSetVdmOptionsRequest {
|
|
|
6858
7163
|
*/
|
|
6859
7164
|
export interface PutConfigurationSetVdmOptionsResponse {
|
|
6860
7165
|
}
|
|
6861
|
-
/**
|
|
6862
|
-
* <p>A request to move a dedicated IP address to a dedicated IP pool.</p>
|
|
6863
|
-
* @public
|
|
6864
|
-
*/
|
|
6865
|
-
export interface PutDedicatedIpInPoolRequest {
|
|
6866
|
-
/**
|
|
6867
|
-
* <p>The IP address that you want to move to the dedicated IP pool. The value you specify
|
|
6868
|
-
* has to be a dedicated IP address that's associated with your Amazon Web Services account.</p>
|
|
6869
|
-
* @public
|
|
6870
|
-
*/
|
|
6871
|
-
Ip: string | undefined;
|
|
6872
|
-
/**
|
|
6873
|
-
* <p>The name of the IP pool that you want to add the dedicated IP address to. You have to
|
|
6874
|
-
* specify an IP pool that already exists.</p>
|
|
6875
|
-
* @public
|
|
6876
|
-
*/
|
|
6877
|
-
DestinationPoolName: string | undefined;
|
|
6878
|
-
}
|
|
6879
|
-
/**
|
|
6880
|
-
* <p>An HTTP 200 response if the request succeeds, or an error message if the request
|
|
6881
|
-
* fails.</p>
|
|
6882
|
-
* @public
|
|
6883
|
-
*/
|
|
6884
|
-
export interface PutDedicatedIpInPoolResponse {
|
|
6885
|
-
}
|
|
6886
|
-
/**
|
|
6887
|
-
* <p>A request to convert a dedicated IP pool to a different scaling mode.</p>
|
|
6888
|
-
* @public
|
|
6889
|
-
*/
|
|
6890
|
-
export interface PutDedicatedIpPoolScalingAttributesRequest {
|
|
6891
|
-
/**
|
|
6892
|
-
* <p>The name of the dedicated IP pool.</p>
|
|
6893
|
-
* @public
|
|
6894
|
-
*/
|
|
6895
|
-
PoolName: string | undefined;
|
|
6896
|
-
/**
|
|
6897
|
-
* <p>The scaling mode to apply to the dedicated IP pool.</p>
|
|
6898
|
-
* <note>
|
|
6899
|
-
* <p>Changing the scaling mode from <code>MANAGED</code> to <code>STANDARD</code> is not supported.</p>
|
|
6900
|
-
* </note>
|
|
6901
|
-
* @public
|
|
6902
|
-
*/
|
|
6903
|
-
ScalingMode: ScalingMode | undefined;
|
|
6904
|
-
}
|
|
6905
|
-
/**
|
|
6906
|
-
* <p>An HTTP 200 response if the request succeeds, or an error message if the request
|
|
6907
|
-
* fails.</p>
|
|
6908
|
-
* @public
|
|
6909
|
-
*/
|
|
6910
|
-
export interface PutDedicatedIpPoolScalingAttributesResponse {
|
|
6911
|
-
}
|
|
6912
|
-
/**
|
|
6913
|
-
* <p>A request to change the warm-up attributes for a dedicated IP address. This operation
|
|
6914
|
-
* is useful when you want to resume the warm-up process for an existing IP address.</p>
|
|
6915
|
-
* @public
|
|
6916
|
-
*/
|
|
6917
|
-
export interface PutDedicatedIpWarmupAttributesRequest {
|
|
6918
|
-
/**
|
|
6919
|
-
* <p>The dedicated IP address that you want to update the warm-up attributes for.</p>
|
|
6920
|
-
* @public
|
|
6921
|
-
*/
|
|
6922
|
-
Ip: string | undefined;
|
|
6923
|
-
/**
|
|
6924
|
-
* <p>The warm-up percentage that you want to associate with the dedicated IP
|
|
6925
|
-
* address.</p>
|
|
6926
|
-
* @public
|
|
6927
|
-
*/
|
|
6928
|
-
WarmupPercentage: number | undefined;
|
|
6929
|
-
}
|
|
6930
|
-
/**
|
|
6931
|
-
* <p>An HTTP 200 response if the request succeeds, or an error message if the request
|
|
6932
|
-
* fails.</p>
|
|
6933
|
-
* @public
|
|
6934
|
-
*/
|
|
6935
|
-
export interface PutDedicatedIpWarmupAttributesResponse {
|
|
6936
|
-
}
|
|
6937
|
-
/**
|
|
6938
|
-
* <p>Enable or disable the Deliverability dashboard. When you enable the Deliverability dashboard, you gain
|
|
6939
|
-
* access to reputation, deliverability, and other metrics for the domains that you use to
|
|
6940
|
-
* send email using Amazon SES API v2. You also gain the ability to perform predictive inbox placement tests.</p>
|
|
6941
|
-
* <p>When you use the Deliverability dashboard, you pay a monthly subscription charge, in addition
|
|
6942
|
-
* to any other fees that you accrue by using Amazon SES and other Amazon Web Services services. For more
|
|
6943
|
-
* information about the features and cost of a Deliverability dashboard subscription, see <a href="http://aws.amazon.com/pinpoint/pricing/">Amazon Pinpoint Pricing</a>.</p>
|
|
6944
|
-
* @public
|
|
6945
|
-
*/
|
|
6946
|
-
export interface PutDeliverabilityDashboardOptionRequest {
|
|
6947
|
-
/**
|
|
6948
|
-
* <p>Specifies whether to enable the Deliverability dashboard. To enable the dashboard, set this
|
|
6949
|
-
* value to <code>true</code>.</p>
|
|
6950
|
-
* @public
|
|
6951
|
-
*/
|
|
6952
|
-
DashboardEnabled: boolean | undefined;
|
|
6953
|
-
/**
|
|
6954
|
-
* <p>An array of objects, one for each verified domain that you use to send email and
|
|
6955
|
-
* enabled the Deliverability dashboard for.</p>
|
|
6956
|
-
* @public
|
|
6957
|
-
*/
|
|
6958
|
-
SubscribedDomains?: DomainDeliverabilityTrackingOption[] | undefined;
|
|
6959
|
-
}
|
|
6960
|
-
/**
|
|
6961
|
-
* <p>A response that indicates whether the Deliverability dashboard is enabled.</p>
|
|
6962
|
-
* @public
|
|
6963
|
-
*/
|
|
6964
|
-
export interface PutDeliverabilityDashboardOptionResponse {
|
|
6965
|
-
}
|
|
6966
|
-
/**
|
|
6967
|
-
* <p>A request to associate a configuration set with an email identity.</p>
|
|
6968
|
-
* @public
|
|
6969
|
-
*/
|
|
6970
|
-
export interface PutEmailIdentityConfigurationSetAttributesRequest {
|
|
6971
|
-
/**
|
|
6972
|
-
* <p>The email address or domain to associate with a configuration set.</p>
|
|
6973
|
-
* @public
|
|
6974
|
-
*/
|
|
6975
|
-
EmailIdentity: string | undefined;
|
|
6976
|
-
/**
|
|
6977
|
-
* <p>The configuration set to associate with an email identity.</p>
|
|
6978
|
-
* @public
|
|
6979
|
-
*/
|
|
6980
|
-
ConfigurationSetName?: string | undefined;
|
|
6981
|
-
}
|
|
6982
|
-
/**
|
|
6983
|
-
* <p>If the action is successful, the service sends back an HTTP 200 response with an empty
|
|
6984
|
-
* HTTP body.</p>
|
|
6985
|
-
* @public
|
|
6986
|
-
*/
|
|
6987
|
-
export interface PutEmailIdentityConfigurationSetAttributesResponse {
|
|
6988
|
-
}
|
|
6989
|
-
/**
|
|
6990
|
-
* <p>A request to enable or disable DKIM signing of email that you send from an email
|
|
6991
|
-
* identity.</p>
|
|
6992
|
-
* @public
|
|
6993
|
-
*/
|
|
6994
|
-
export interface PutEmailIdentityDkimAttributesRequest {
|
|
6995
|
-
/**
|
|
6996
|
-
* <p>The email identity.</p>
|
|
6997
|
-
* @public
|
|
6998
|
-
*/
|
|
6999
|
-
EmailIdentity: string | undefined;
|
|
7000
|
-
/**
|
|
7001
|
-
* <p>Sets the DKIM signing configuration for the identity.</p>
|
|
7002
|
-
* <p>When you set this value <code>true</code>, then the messages that are sent from the
|
|
7003
|
-
* identity are signed using DKIM. If you set this value to <code>false</code>, your
|
|
7004
|
-
* messages are sent without DKIM signing.</p>
|
|
7005
|
-
* @public
|
|
7006
|
-
*/
|
|
7007
|
-
SigningEnabled?: boolean | undefined;
|
|
7008
|
-
}
|
|
7009
|
-
/**
|
|
7010
|
-
* <p>An HTTP 200 response if the request succeeds, or an error message if the request
|
|
7011
|
-
* fails.</p>
|
|
7012
|
-
* @public
|
|
7013
|
-
*/
|
|
7014
|
-
export interface PutEmailIdentityDkimAttributesResponse {
|
|
7015
|
-
}
|
|
7016
|
-
/**
|
|
7017
|
-
* <p>A request to change the DKIM attributes for an email identity.</p>
|
|
7018
|
-
* @public
|
|
7019
|
-
*/
|
|
7020
|
-
export interface PutEmailIdentityDkimSigningAttributesRequest {
|
|
7021
|
-
/**
|
|
7022
|
-
* <p>The email identity.</p>
|
|
7023
|
-
* @public
|
|
7024
|
-
*/
|
|
7025
|
-
EmailIdentity: string | undefined;
|
|
7026
|
-
/**
|
|
7027
|
-
* <p>The method to use to configure DKIM for the identity. There are the following possible
|
|
7028
|
-
* values:</p>
|
|
7029
|
-
* <ul>
|
|
7030
|
-
* <li>
|
|
7031
|
-
* <p>
|
|
7032
|
-
* <code>AWS_SES</code> – Configure DKIM for the identity by using <a href="https://docs.aws.amazon.com/ses/latest/DeveloperGuide/easy-dkim.html">Easy
|
|
7033
|
-
* DKIM</a>.</p>
|
|
7034
|
-
* </li>
|
|
7035
|
-
* <li>
|
|
7036
|
-
* <p>
|
|
7037
|
-
* <code>EXTERNAL</code> – Configure DKIM for the identity by using Bring
|
|
7038
|
-
* Your Own DKIM (BYODKIM).</p>
|
|
7039
|
-
* </li>
|
|
7040
|
-
* </ul>
|
|
7041
|
-
* @public
|
|
7042
|
-
*/
|
|
7043
|
-
SigningAttributesOrigin: DkimSigningAttributesOrigin | undefined;
|
|
7044
|
-
/**
|
|
7045
|
-
* <p>An object that contains information about the private key and selector that you want
|
|
7046
|
-
* to use to configure DKIM for the identity for Bring Your Own DKIM (BYODKIM) for the
|
|
7047
|
-
* identity, or, configures the key length to be used for <a href="https://docs.aws.amazon.com/ses/latest/DeveloperGuide/easy-dkim.html">Easy DKIM</a>.</p>
|
|
7048
|
-
* @public
|
|
7049
|
-
*/
|
|
7050
|
-
SigningAttributes?: DkimSigningAttributes | undefined;
|
|
7051
|
-
}
|
|
7052
7166
|
/**
|
|
7053
7167
|
* @internal
|
|
7054
7168
|
*/
|
|
@@ -7097,7 +7211,3 @@ export declare const GetMessageInsightsResponseFilterSensitiveLog: (obj: GetMess
|
|
|
7097
7211
|
* @internal
|
|
7098
7212
|
*/
|
|
7099
7213
|
export declare const PutAccountDetailsRequestFilterSensitiveLog: (obj: PutAccountDetailsRequest) => any;
|
|
7100
|
-
/**
|
|
7101
|
-
* @internal
|
|
7102
|
-
*/
|
|
7103
|
-
export declare const PutEmailIdentityDkimSigningAttributesRequestFilterSensitiveLog: (obj: PutEmailIdentityDkimSigningAttributesRequest) => any;
|