aws-sdk 2.1424.0 → 2.1425.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/CHANGELOG.md +9 -1
- package/README.md +1 -1
- package/apis/application-insights-2018-11-25.min.json +228 -43
- package/apis/application-insights-2018-11-25.paginators.json +5 -0
- package/apis/cloudformation-2010-05-15.min.json +95 -80
- package/apis/cloudfront-2020-05-31.min.json +4 -1
- package/apis/kafka-2018-11-14.min.json +237 -52
- package/apis/kafka-2018-11-14.paginators.json +6 -0
- package/apis/pinpoint-2016-12-01.examples.json +6 -12
- package/apis/pinpoint-2016-12-01.min.json +286 -243
- package/clients/applicationinsights.d.ts +342 -2
- package/clients/cloudformation.d.ts +21 -0
- package/clients/cloudfront.d.ts +14 -10
- package/clients/connect.d.ts +1 -1
- package/clients/kafka.d.ts +204 -0
- package/clients/pinpoint.d.ts +69 -5
- package/clients/sqs.d.ts +9 -9
- package/dist/aws-sdk-core-react-native.js +1 -1
- package/dist/aws-sdk-react-native.js +8 -8
- package/dist/aws-sdk.js +102 -84
- package/dist/aws-sdk.min.js +89 -89
- package/lib/core.js +1 -1
- package/package.json +1 -1
package/clients/cloudfront.d.ts
CHANGED
@@ -22,11 +22,11 @@ declare class CloudFront extends CloudFrontCustomizations {
|
|
22
22
|
*/
|
23
23
|
associateAlias(callback?: (err: AWSError, data: {}) => void): Request<{}, AWSError>;
|
24
24
|
/**
|
25
|
-
* Creates a staging distribution using the configuration of the provided primary distribution. A staging distribution is a copy of an existing distribution (called the primary distribution) that you can use in a continuous deployment workflow. After you create a staging distribution, you can use UpdateDistribution to modify the staging distribution's configuration. Then you can use CreateContinuousDeploymentPolicy to incrementally move traffic to the staging distribution.
|
25
|
+
* Creates a staging distribution using the configuration of the provided primary distribution. A staging distribution is a copy of an existing distribution (called the primary distribution) that you can use in a continuous deployment workflow. After you create a staging distribution, you can use UpdateDistribution to modify the staging distribution's configuration. Then you can use CreateContinuousDeploymentPolicy to incrementally move traffic to the staging distribution. This API operation requires the following IAM permissions: GetDistribution CreateDistribution CopyDistribution
|
26
26
|
*/
|
27
27
|
copyDistribution(params: CloudFront.Types.CopyDistributionRequest, callback?: (err: AWSError, data: CloudFront.Types.CopyDistributionResult) => void): Request<CloudFront.Types.CopyDistributionResult, AWSError>;
|
28
28
|
/**
|
29
|
-
* Creates a staging distribution using the configuration of the provided primary distribution. A staging distribution is a copy of an existing distribution (called the primary distribution) that you can use in a continuous deployment workflow. After you create a staging distribution, you can use UpdateDistribution to modify the staging distribution's configuration. Then you can use CreateContinuousDeploymentPolicy to incrementally move traffic to the staging distribution.
|
29
|
+
* Creates a staging distribution using the configuration of the provided primary distribution. A staging distribution is a copy of an existing distribution (called the primary distribution) that you can use in a continuous deployment workflow. After you create a staging distribution, you can use UpdateDistribution to modify the staging distribution's configuration. Then you can use CreateContinuousDeploymentPolicy to incrementally move traffic to the staging distribution. This API operation requires the following IAM permissions: GetDistribution CreateDistribution CopyDistribution
|
30
30
|
*/
|
31
31
|
copyDistribution(callback?: (err: AWSError, data: CloudFront.Types.CopyDistributionResult) => void): Request<CloudFront.Types.CopyDistributionResult, AWSError>;
|
32
32
|
/**
|
@@ -62,11 +62,11 @@ declare class CloudFront extends CloudFrontCustomizations {
|
|
62
62
|
*/
|
63
63
|
createDistribution(callback?: (err: AWSError, data: CloudFront.Types.CreateDistributionResult) => void): Request<CloudFront.Types.CreateDistributionResult, AWSError>;
|
64
64
|
/**
|
65
|
-
* Create a new distribution with tags.
|
65
|
+
* Create a new distribution with tags. This API operation requires the following IAM permissions: CreateDistribution TagResource
|
66
66
|
*/
|
67
67
|
createDistributionWithTags(params: CloudFront.Types.CreateDistributionWithTagsRequest, callback?: (err: AWSError, data: CloudFront.Types.CreateDistributionWithTagsResult) => void): Request<CloudFront.Types.CreateDistributionWithTagsResult, AWSError>;
|
68
68
|
/**
|
69
|
-
* Create a new distribution with tags.
|
69
|
+
* Create a new distribution with tags. This API operation requires the following IAM permissions: CreateDistribution TagResource
|
70
70
|
*/
|
71
71
|
createDistributionWithTags(callback?: (err: AWSError, data: CloudFront.Types.CreateDistributionWithTagsResult) => void): Request<CloudFront.Types.CreateDistributionWithTagsResult, AWSError>;
|
72
72
|
/**
|
@@ -774,11 +774,11 @@ declare class CloudFront extends CloudFrontCustomizations {
|
|
774
774
|
*/
|
775
775
|
updateDistribution(callback?: (err: AWSError, data: CloudFront.Types.UpdateDistributionResult) => void): Request<CloudFront.Types.UpdateDistributionResult, AWSError>;
|
776
776
|
/**
|
777
|
-
* Copies the staging distribution's configuration to its corresponding primary distribution. The primary distribution retains its Aliases (also known as alternate domain names or CNAMEs) and ContinuousDeploymentPolicyId value, but otherwise its configuration is overwritten to match the staging distribution. You can use this operation in a continuous deployment workflow after you have tested configuration changes on the staging distribution. After using a continuous deployment policy to move a portion of your domain name's traffic to the staging distribution and verifying that it works as intended, you can use this operation to copy the staging distribution's configuration to the primary distribution. This action will disable the continuous deployment policy and move your domain's traffic back to the primary distribution.
|
777
|
+
* Copies the staging distribution's configuration to its corresponding primary distribution. The primary distribution retains its Aliases (also known as alternate domain names or CNAMEs) and ContinuousDeploymentPolicyId value, but otherwise its configuration is overwritten to match the staging distribution. You can use this operation in a continuous deployment workflow after you have tested configuration changes on the staging distribution. After using a continuous deployment policy to move a portion of your domain name's traffic to the staging distribution and verifying that it works as intended, you can use this operation to copy the staging distribution's configuration to the primary distribution. This action will disable the continuous deployment policy and move your domain's traffic back to the primary distribution. This API operation requires the following IAM permissions: GetDistribution UpdateDistribution
|
778
778
|
*/
|
779
779
|
updateDistributionWithStagingConfig(params: CloudFront.Types.UpdateDistributionWithStagingConfigRequest, callback?: (err: AWSError, data: CloudFront.Types.UpdateDistributionWithStagingConfigResult) => void): Request<CloudFront.Types.UpdateDistributionWithStagingConfigResult, AWSError>;
|
780
780
|
/**
|
781
|
-
* Copies the staging distribution's configuration to its corresponding primary distribution. The primary distribution retains its Aliases (also known as alternate domain names or CNAMEs) and ContinuousDeploymentPolicyId value, but otherwise its configuration is overwritten to match the staging distribution. You can use this operation in a continuous deployment workflow after you have tested configuration changes on the staging distribution. After using a continuous deployment policy to move a portion of your domain name's traffic to the staging distribution and verifying that it works as intended, you can use this operation to copy the staging distribution's configuration to the primary distribution. This action will disable the continuous deployment policy and move your domain's traffic back to the primary distribution.
|
781
|
+
* Copies the staging distribution's configuration to its corresponding primary distribution. The primary distribution retains its Aliases (also known as alternate domain names or CNAMEs) and ContinuousDeploymentPolicyId value, but otherwise its configuration is overwritten to match the staging distribution. You can use this operation in a continuous deployment workflow after you have tested configuration changes on the staging distribution. After using a continuous deployment policy to move a portion of your domain name's traffic to the staging distribution and verifying that it works as intended, you can use this operation to copy the staging distribution's configuration to the primary distribution. This action will disable the continuous deployment policy and move your domain's traffic back to the primary distribution. This API operation requires the following IAM permissions: GetDistribution UpdateDistribution
|
782
782
|
*/
|
783
783
|
updateDistributionWithStagingConfig(callback?: (err: AWSError, data: CloudFront.Types.UpdateDistributionWithStagingConfigResult) => void): Request<CloudFront.Types.UpdateDistributionWithStagingConfigResult, AWSError>;
|
784
784
|
/**
|
@@ -910,7 +910,7 @@ declare namespace CloudFront {
|
|
910
910
|
}
|
911
911
|
export interface ActiveTrustedSigners {
|
912
912
|
/**
|
913
|
-
* This field is true if any of the Amazon Web Services accounts in the list
|
913
|
+
* This field is true if any of the Amazon Web Services accounts in the list are configured as trusted signers. If not, this field is false.
|
914
914
|
*/
|
915
915
|
Enabled: boolean;
|
916
916
|
/**
|
@@ -1400,6 +1400,10 @@ declare namespace CloudFront {
|
|
1400
1400
|
* A value that uniquely identifies a request to create a resource. This helps to prevent CloudFront from creating a duplicate resource if you accidentally resubmit an identical request.
|
1401
1401
|
*/
|
1402
1402
|
CallerReference: string;
|
1403
|
+
/**
|
1404
|
+
* A Boolean flag to specify the state of the staging distribution when it's created. When you set this value to True, the staging distribution is enabled. When you set this value to False, the staging distribution is disabled. If you omit this field, the default value is True.
|
1405
|
+
*/
|
1406
|
+
Enabled?: boolean;
|
1403
1407
|
}
|
1404
1408
|
export interface CopyDistributionResult {
|
1405
1409
|
Distribution?: Distribution;
|
@@ -2598,7 +2602,7 @@ declare namespace CloudFront {
|
|
2598
2602
|
*/
|
2599
2603
|
Comment: string;
|
2600
2604
|
/**
|
2601
|
-
* The function's runtime environment
|
2605
|
+
* The function's runtime environment verion.
|
2602
2606
|
*/
|
2603
2607
|
Runtime: FunctionRuntime;
|
2604
2608
|
}
|
@@ -2641,7 +2645,7 @@ declare namespace CloudFront {
|
|
2641
2645
|
LastModifiedTime: timestamp;
|
2642
2646
|
}
|
2643
2647
|
export type FunctionName = string;
|
2644
|
-
export type FunctionRuntime = "cloudfront-js-1.0"|string;
|
2648
|
+
export type FunctionRuntime = "cloudfront-js-1.0"|"cloudfront-js-2.0"|string;
|
2645
2649
|
export type FunctionStage = "DEVELOPMENT"|"LIVE"|string;
|
2646
2650
|
export interface FunctionSummary {
|
2647
2651
|
/**
|
@@ -4940,7 +4944,7 @@ declare namespace CloudFront {
|
|
4940
4944
|
}
|
4941
4945
|
export interface TrustedSigners {
|
4942
4946
|
/**
|
4943
|
-
* This field is true if any of the Amazon Web Services accounts
|
4947
|
+
* This field is true if any of the Amazon Web Services accounts in the list are configured as trusted signers. If not, this field is false.
|
4944
4948
|
*/
|
4945
4949
|
Enabled: boolean;
|
4946
4950
|
/**
|
package/clients/connect.d.ts
CHANGED
@@ -6497,7 +6497,7 @@ declare namespace Connect {
|
|
6497
6497
|
PhoneNumberCountryCode?: PhoneNumberCountryCode;
|
6498
6498
|
}
|
6499
6499
|
export type PhoneNumberSummaryList = PhoneNumberSummary[];
|
6500
|
-
export type PhoneNumberType = "TOLL_FREE"|"DID"|string;
|
6500
|
+
export type PhoneNumberType = "TOLL_FREE"|"DID"|"UIFN"|"SHARED"|"THIRD_PARTY_TF"|"THIRD_PARTY_DID"|string;
|
6501
6501
|
export type PhoneNumberTypes = PhoneNumberType[];
|
6502
6502
|
export type PhoneNumberWorkflowMessage = string;
|
6503
6503
|
export type PhoneNumberWorkflowStatus = "CLAIMED"|"IN_PROGRESS"|"FAILED"|string;
|
package/clients/kafka.d.ts
CHANGED
@@ -155,6 +155,18 @@ declare class Kafka extends Service {
|
|
155
155
|
|
156
156
|
*/
|
157
157
|
describeClusterOperation(callback?: (err: AWSError, data: Kafka.Types.DescribeClusterOperationResponse) => void): Request<Kafka.Types.DescribeClusterOperationResponse, AWSError>;
|
158
|
+
/**
|
159
|
+
*
|
160
|
+
Returns a description of the cluster operation specified by the ARN.
|
161
|
+
|
162
|
+
*/
|
163
|
+
describeClusterOperationV2(params: Kafka.Types.DescribeClusterOperationV2Request, callback?: (err: AWSError, data: Kafka.Types.DescribeClusterOperationV2Response) => void): Request<Kafka.Types.DescribeClusterOperationV2Response, AWSError>;
|
164
|
+
/**
|
165
|
+
*
|
166
|
+
Returns a description of the cluster operation specified by the ARN.
|
167
|
+
|
168
|
+
*/
|
169
|
+
describeClusterOperationV2(callback?: (err: AWSError, data: Kafka.Types.DescribeClusterOperationV2Response) => void): Request<Kafka.Types.DescribeClusterOperationV2Response, AWSError>;
|
158
170
|
/**
|
159
171
|
*
|
160
172
|
Returns a description of this MSK configuration.
|
@@ -251,6 +263,18 @@ declare class Kafka extends Service {
|
|
251
263
|
|
252
264
|
*/
|
253
265
|
listClusterOperations(callback?: (err: AWSError, data: Kafka.Types.ListClusterOperationsResponse) => void): Request<Kafka.Types.ListClusterOperationsResponse, AWSError>;
|
266
|
+
/**
|
267
|
+
*
|
268
|
+
Returns a list of all the operations that have been performed on the specified MSK cluster.
|
269
|
+
|
270
|
+
*/
|
271
|
+
listClusterOperationsV2(params: Kafka.Types.ListClusterOperationsV2Request, callback?: (err: AWSError, data: Kafka.Types.ListClusterOperationsV2Response) => void): Request<Kafka.Types.ListClusterOperationsV2Response, AWSError>;
|
272
|
+
/**
|
273
|
+
*
|
274
|
+
Returns a list of all the operations that have been performed on the specified MSK cluster.
|
275
|
+
|
276
|
+
*/
|
277
|
+
listClusterOperationsV2(callback?: (err: AWSError, data: Kafka.Types.ListClusterOperationsV2Response) => void): Request<Kafka.Types.ListClusterOperationsV2Response, AWSError>;
|
254
278
|
/**
|
255
279
|
*
|
256
280
|
Returns a list of all the MSK clusters in the current Region.
|
@@ -1659,6 +1683,124 @@ kafka.m5.4xlarge, kafka.m5.12xlarge, and kafka.m5.24xlarge.
|
|
1659
1683
|
*/
|
1660
1684
|
Tags?: __mapOf__string;
|
1661
1685
|
}
|
1686
|
+
export interface ClusterOperationV2 {
|
1687
|
+
/**
|
1688
|
+
*
|
1689
|
+
ARN of the cluster.
|
1690
|
+
*/
|
1691
|
+
ClusterArn?: __string;
|
1692
|
+
/**
|
1693
|
+
*
|
1694
|
+
Type of the backend cluster.
|
1695
|
+
*/
|
1696
|
+
ClusterType?: ClusterType;
|
1697
|
+
/**
|
1698
|
+
*
|
1699
|
+
The time at which operation was started.
|
1700
|
+
*/
|
1701
|
+
StartTime?: __timestampIso8601;
|
1702
|
+
/**
|
1703
|
+
*
|
1704
|
+
The time at which the operation finished.
|
1705
|
+
*/
|
1706
|
+
EndTime?: __timestampIso8601;
|
1707
|
+
/**
|
1708
|
+
*
|
1709
|
+
If cluster operation failed from an error, it describes the error.
|
1710
|
+
*/
|
1711
|
+
ErrorInfo?: ErrorInfo;
|
1712
|
+
/**
|
1713
|
+
*
|
1714
|
+
ARN of the cluster operation.
|
1715
|
+
*/
|
1716
|
+
OperationArn?: __string;
|
1717
|
+
/**
|
1718
|
+
*
|
1719
|
+
State of the cluster operation.
|
1720
|
+
*/
|
1721
|
+
OperationState?: __string;
|
1722
|
+
/**
|
1723
|
+
*
|
1724
|
+
Type of the cluster operation.
|
1725
|
+
*/
|
1726
|
+
OperationType?: __string;
|
1727
|
+
/**
|
1728
|
+
*
|
1729
|
+
Properties of a provisioned cluster.
|
1730
|
+
*/
|
1731
|
+
Provisioned?: ClusterOperationV2Provisioned;
|
1732
|
+
/**
|
1733
|
+
*
|
1734
|
+
Properties of a serverless cluster.
|
1735
|
+
*/
|
1736
|
+
Serverless?: ClusterOperationV2Serverless;
|
1737
|
+
}
|
1738
|
+
export interface ClusterOperationV2Provisioned {
|
1739
|
+
/**
|
1740
|
+
*
|
1741
|
+
Steps completed during the operation.
|
1742
|
+
*/
|
1743
|
+
OperationSteps?: __listOfClusterOperationStep;
|
1744
|
+
/**
|
1745
|
+
*
|
1746
|
+
Information about cluster attributes before a cluster is updated.
|
1747
|
+
*/
|
1748
|
+
SourceClusterInfo?: MutableClusterInfo;
|
1749
|
+
/**
|
1750
|
+
*
|
1751
|
+
Information about cluster attributes after a cluster is updated.
|
1752
|
+
*/
|
1753
|
+
TargetClusterInfo?: MutableClusterInfo;
|
1754
|
+
/**
|
1755
|
+
*
|
1756
|
+
Description of the VPC connection for CreateVpcConnection and DeleteVpcConnection operations.
|
1757
|
+
*/
|
1758
|
+
VpcConnectionInfo?: VpcConnectionInfo;
|
1759
|
+
}
|
1760
|
+
export interface ClusterOperationV2Serverless {
|
1761
|
+
/**
|
1762
|
+
*
|
1763
|
+
Description of the VPC connection for CreateVpcConnection and DeleteVpcConnection operations.
|
1764
|
+
*/
|
1765
|
+
VpcConnectionInfo?: VpcConnectionInfoServerless;
|
1766
|
+
}
|
1767
|
+
export interface ClusterOperationV2Summary {
|
1768
|
+
/**
|
1769
|
+
*
|
1770
|
+
ARN of the cluster.
|
1771
|
+
*/
|
1772
|
+
ClusterArn?: __string;
|
1773
|
+
/**
|
1774
|
+
*
|
1775
|
+
Type of the backend cluster.
|
1776
|
+
*/
|
1777
|
+
ClusterType?: ClusterType;
|
1778
|
+
/**
|
1779
|
+
*
|
1780
|
+
The time at which operation was started.
|
1781
|
+
*/
|
1782
|
+
StartTime?: __timestampIso8601;
|
1783
|
+
/**
|
1784
|
+
*
|
1785
|
+
The time at which the operation finished.
|
1786
|
+
*/
|
1787
|
+
EndTime?: __timestampIso8601;
|
1788
|
+
/**
|
1789
|
+
*
|
1790
|
+
ARN of the cluster operation.
|
1791
|
+
*/
|
1792
|
+
OperationArn?: __string;
|
1793
|
+
/**
|
1794
|
+
*
|
1795
|
+
State of the cluster operation.
|
1796
|
+
*/
|
1797
|
+
OperationState?: __string;
|
1798
|
+
/**
|
1799
|
+
*
|
1800
|
+
Type of the cluster operation.
|
1801
|
+
*/
|
1802
|
+
OperationType?: __string;
|
1803
|
+
}
|
1662
1804
|
export interface DeleteClusterRequest {
|
1663
1805
|
/**
|
1664
1806
|
*
|
@@ -1749,6 +1891,12 @@ kafka.m5.4xlarge, kafka.m5.12xlarge, and kafka.m5.24xlarge.
|
|
1749
1891
|
*/
|
1750
1892
|
ClusterOperationArn: __string;
|
1751
1893
|
}
|
1894
|
+
export interface DescribeClusterOperationV2Request {
|
1895
|
+
/**
|
1896
|
+
* ARN of the cluster operation to describe.
|
1897
|
+
*/
|
1898
|
+
ClusterOperationArn: __string;
|
1899
|
+
}
|
1752
1900
|
export interface DescribeClusterOperationResponse {
|
1753
1901
|
/**
|
1754
1902
|
*
|
@@ -1757,6 +1905,13 @@ kafka.m5.4xlarge, kafka.m5.12xlarge, and kafka.m5.24xlarge.
|
|
1757
1905
|
*/
|
1758
1906
|
ClusterOperationInfo?: ClusterOperationInfo;
|
1759
1907
|
}
|
1908
|
+
export interface DescribeClusterOperationV2Response {
|
1909
|
+
/**
|
1910
|
+
*
|
1911
|
+
Cluster operation information
|
1912
|
+
*/
|
1913
|
+
ClusterOperationInfo?: ClusterOperationV2;
|
1914
|
+
}
|
1760
1915
|
export interface DescribeClusterRequest {
|
1761
1916
|
/**
|
1762
1917
|
*
|
@@ -2191,6 +2346,20 @@ kafka.m5.4xlarge, kafka.m5.12xlarge, and kafka.m5.24xlarge.
|
|
2191
2346
|
*/
|
2192
2347
|
NextToken?: __string;
|
2193
2348
|
}
|
2349
|
+
export interface ListClusterOperationsV2Request {
|
2350
|
+
/**
|
2351
|
+
* The arn of the cluster whose operations are being requested.
|
2352
|
+
*/
|
2353
|
+
ClusterArn: __string;
|
2354
|
+
/**
|
2355
|
+
* The maxResults of the query.
|
2356
|
+
*/
|
2357
|
+
MaxResults?: MaxResults;
|
2358
|
+
/**
|
2359
|
+
* The nextToken of the query.
|
2360
|
+
*/
|
2361
|
+
NextToken?: __string;
|
2362
|
+
}
|
2194
2363
|
export interface ListClusterOperationsResponse {
|
2195
2364
|
/**
|
2196
2365
|
*
|
@@ -2205,6 +2374,18 @@ kafka.m5.4xlarge, kafka.m5.12xlarge, and kafka.m5.24xlarge.
|
|
2205
2374
|
*/
|
2206
2375
|
NextToken?: __string;
|
2207
2376
|
}
|
2377
|
+
export interface ListClusterOperationsV2Response {
|
2378
|
+
/**
|
2379
|
+
*
|
2380
|
+
An array of cluster operation information objects.
|
2381
|
+
*/
|
2382
|
+
ClusterOperationInfoList?: __listOfClusterOperationV2Summary;
|
2383
|
+
/**
|
2384
|
+
*
|
2385
|
+
If the response of ListClusterOperationsV2 is truncated, it returns a NextToken in the response. This NextToken should be sent in the subsequent request to ListClusterOperationsV2.
|
2386
|
+
*/
|
2387
|
+
NextToken?: __string;
|
2388
|
+
}
|
2208
2389
|
export interface ListClustersRequest {
|
2209
2390
|
/**
|
2210
2391
|
*
|
@@ -3399,6 +3580,28 @@ kafka.m5.4xlarge, kafka.m5.12xlarge, and kafka.m5.24xlarge.
|
|
3399
3580
|
*/
|
3400
3581
|
CreationTime?: __timestampIso8601;
|
3401
3582
|
}
|
3583
|
+
export interface VpcConnectionInfoServerless {
|
3584
|
+
/**
|
3585
|
+
*
|
3586
|
+
The time when Amazon MSK creates the VPC Connnection.
|
3587
|
+
*/
|
3588
|
+
CreationTime?: __timestampIso8601;
|
3589
|
+
/**
|
3590
|
+
*
|
3591
|
+
The owner of the VPC Connection.
|
3592
|
+
*/
|
3593
|
+
Owner?: __string;
|
3594
|
+
/**
|
3595
|
+
*
|
3596
|
+
Description of the requester that calls the API operation.
|
3597
|
+
*/
|
3598
|
+
UserIdentity?: UserIdentity;
|
3599
|
+
/**
|
3600
|
+
*
|
3601
|
+
The Amazon Resource Name (ARN) of the VPC connection.
|
3602
|
+
*/
|
3603
|
+
VpcConnectionArn?: __string;
|
3604
|
+
}
|
3402
3605
|
export type VpcConnectionState = "CREATING"|"AVAILABLE"|"INACTIVE"|"DEACTIVATING"|"DELETING"|"FAILED"|"REJECTED"|"REJECTING"|string;
|
3403
3606
|
export interface VpcConnectivity {
|
3404
3607
|
/**
|
@@ -3450,6 +3653,7 @@ kafka.m5.4xlarge, kafka.m5.12xlarge, and kafka.m5.24xlarge.
|
|
3450
3653
|
export type __listOfClusterInfo = ClusterInfo[];
|
3451
3654
|
export type __listOfCluster = Cluster[];
|
3452
3655
|
export type __listOfClusterOperationInfo = ClusterOperationInfo[];
|
3656
|
+
export type __listOfClusterOperationV2Summary = ClusterOperationV2Summary[];
|
3453
3657
|
export type __listOfClusterOperationStep = ClusterOperationStep[];
|
3454
3658
|
export type __listOfCompatibleKafkaVersion = CompatibleKafkaVersion[];
|
3455
3659
|
export type __listOfVpcConfig = VpcConfig[];
|
package/clients/pinpoint.d.ts
CHANGED
@@ -1779,6 +1779,20 @@ declare namespace Pinpoint {
|
|
1779
1779
|
*/
|
1780
1780
|
CreationDate?: __string;
|
1781
1781
|
}
|
1782
|
+
export interface ApplicationSettingsJourneyLimits {
|
1783
|
+
/**
|
1784
|
+
* The daily number of messages that an endpoint can receive from all journeys. The maximum value is 100. If set to 0, this limit will not apply.
|
1785
|
+
*/
|
1786
|
+
DailyCap?: __integer;
|
1787
|
+
/**
|
1788
|
+
* The default maximum number of messages that can be sent to an endpoint during the specified timeframe for all journeys.
|
1789
|
+
*/
|
1790
|
+
TimeframeCap?: JourneyTimeframeCap;
|
1791
|
+
/**
|
1792
|
+
* The default maximum number of messages that a single journey can sent to a single endpoint. The maximum value is 100. If set to 0, this limit will not apply.
|
1793
|
+
*/
|
1794
|
+
TotalCap?: __integer;
|
1795
|
+
}
|
1782
1796
|
export interface ApplicationSettingsResource {
|
1783
1797
|
/**
|
1784
1798
|
* The unique identifier for the application. This identifier is displayed as the Project ID on the Amazon Pinpoint console.
|
@@ -1800,6 +1814,10 @@ declare namespace Pinpoint {
|
|
1800
1814
|
* The default quiet time for campaigns in the application. Quiet time is a specific time range when messages aren't sent to endpoints, if all the following conditions are met: The EndpointDemographic.Timezone property of the endpoint is set to a valid value. The current time in the endpoint's time zone is later than or equal to the time specified by the QuietTime.Start property for the application (or a campaign or journey that has custom quiet time settings). The current time in the endpoint's time zone is earlier than or equal to the time specified by the QuietTime.End property for the application (or a campaign or journey that has custom quiet time settings). If any of the preceding conditions isn't met, the endpoint will receive messages from a campaign or journey, even if quiet time is enabled.
|
1801
1815
|
*/
|
1802
1816
|
QuietTime?: QuietTime;
|
1817
|
+
/**
|
1818
|
+
* The default sending limits for journeys in the application. These limits apply to each journey for the application but can be overridden, on a per journey basis, with the JourneyLimits resource.
|
1819
|
+
*/
|
1820
|
+
JourneyLimits?: ApplicationSettingsJourneyLimits;
|
1803
1821
|
}
|
1804
1822
|
export interface ApplicationsResponse {
|
1805
1823
|
/**
|
@@ -3650,11 +3668,19 @@ declare namespace Pinpoint {
|
|
3650
3668
|
/**
|
3651
3669
|
* The Web API Key, also referred to as an API_KEY or server key, that you received from Google to communicate with Google services.
|
3652
3670
|
*/
|
3653
|
-
ApiKey
|
3671
|
+
ApiKey?: __string;
|
3672
|
+
/**
|
3673
|
+
* The default authentication method used for GCM. Values are either "TOKEN" or "KEY". Defaults to "KEY".
|
3674
|
+
*/
|
3675
|
+
DefaultAuthenticationMethod?: __string;
|
3654
3676
|
/**
|
3655
3677
|
* Specifies whether to enable the GCM channel for the application.
|
3656
3678
|
*/
|
3657
3679
|
Enabled?: __boolean;
|
3680
|
+
/**
|
3681
|
+
* The contents of the JSON file provided by Google during registration in order to generate an access token for authentication. For more information see Migrate from legacy FCM APIs to HTTP v1.
|
3682
|
+
*/
|
3683
|
+
ServiceJson?: __string;
|
3658
3684
|
}
|
3659
3685
|
export interface GCMChannelResponse {
|
3660
3686
|
/**
|
@@ -3668,7 +3694,11 @@ declare namespace Pinpoint {
|
|
3668
3694
|
/**
|
3669
3695
|
* The Web API Key, also referred to as an API_KEY or server key, that you received from Google to communicate with Google services.
|
3670
3696
|
*/
|
3671
|
-
Credential
|
3697
|
+
Credential?: __string;
|
3698
|
+
/**
|
3699
|
+
* The default authentication method used for GCM. Values are either "TOKEN" or "KEY". Defaults to "KEY".
|
3700
|
+
*/
|
3701
|
+
DefaultAuthenticationMethod?: __string;
|
3672
3702
|
/**
|
3673
3703
|
* Specifies whether the GCM channel is enabled for the application.
|
3674
3704
|
*/
|
@@ -3677,6 +3707,10 @@ declare namespace Pinpoint {
|
|
3677
3707
|
* (Not used) This property is retained only for backward compatibility.
|
3678
3708
|
*/
|
3679
3709
|
HasCredential?: __boolean;
|
3710
|
+
/**
|
3711
|
+
* Returns true if the JSON file provided by Google during registration process was used in the ServiceJson field of the request.
|
3712
|
+
*/
|
3713
|
+
HasFcmServiceCredentials?: __boolean;
|
3680
3714
|
/**
|
3681
3715
|
* (Deprecated) An identifier for the GCM channel. This property is retained only for backward compatibility.
|
3682
3716
|
*/
|
@@ -3732,7 +3766,11 @@ declare namespace Pinpoint {
|
|
3732
3766
|
*/
|
3733
3767
|
ImageUrl?: __string;
|
3734
3768
|
/**
|
3735
|
-
*
|
3769
|
+
* The preferred authentication method, with valid values "KEY" or "TOKEN". If a value isn't provided then the DefaultAuthenticationMethod is used.
|
3770
|
+
*/
|
3771
|
+
PreferredAuthenticationMethod?: __string;
|
3772
|
+
/**
|
3773
|
+
* para>normal – The notification might be delayed. Delivery is optimized for battery usage on the recipient's device. Use this value unless immediate delivery is required./listitem> high – The notification is sent immediately and might wake a sleeping device./para> Amazon Pinpoint specifies this value in the FCM priority parameter when it sends the notification message to FCM. The equivalent values for Apple Push Notification service (APNs) are 5, for normal, and 10, for high. If you specify an APNs value for this property, Amazon Pinpoint accepts and converts the value to the corresponding FCM value.
|
3736
3774
|
*/
|
3737
3775
|
Priority?: __string;
|
3738
3776
|
/**
|
@@ -5010,6 +5048,14 @@ declare namespace Pinpoint {
|
|
5010
5048
|
* Minimum time that must pass before an endpoint can re-enter a given journey. The duration should use an ISO 8601 format, such as PT1H.
|
5011
5049
|
*/
|
5012
5050
|
EndpointReentryInterval?: __string;
|
5051
|
+
/**
|
5052
|
+
* The number of messages that an endpoint can receive during the specified timeframe.
|
5053
|
+
*/
|
5054
|
+
TimeframeCap?: JourneyTimeframeCap;
|
5055
|
+
/**
|
5056
|
+
* The maximum number of messages a journey can sent to a single endpoint. The maximum value is 100. If set to 0, this limit will not apply.
|
5057
|
+
*/
|
5058
|
+
TotalCap?: __integer;
|
5013
5059
|
}
|
5014
5060
|
export interface JourneyPushMessage {
|
5015
5061
|
/**
|
@@ -5245,6 +5291,16 @@ declare namespace Pinpoint {
|
|
5245
5291
|
*/
|
5246
5292
|
State?: State;
|
5247
5293
|
}
|
5294
|
+
export interface JourneyTimeframeCap {
|
5295
|
+
/**
|
5296
|
+
* The maximum number of messages that all journeys can send to an endpoint during the specified timeframe. The maximum value is 100. If set to 0, this limit will not apply.
|
5297
|
+
*/
|
5298
|
+
Cap?: __integer;
|
5299
|
+
/**
|
5300
|
+
* The length of the timeframe in days. The maximum value is 30. If set to 0, this limit will not apply.
|
5301
|
+
*/
|
5302
|
+
Days?: __integer;
|
5303
|
+
}
|
5248
5304
|
export interface JourneysResponse {
|
5249
5305
|
/**
|
5250
5306
|
* An array of responses, one for each journey that's associated with the application.
|
@@ -6601,6 +6657,10 @@ declare namespace Pinpoint {
|
|
6601
6657
|
* The voice template to use for the message. This object isn't supported for campaigns.
|
6602
6658
|
*/
|
6603
6659
|
VoiceTemplate?: Template;
|
6660
|
+
/**
|
6661
|
+
* The InApp template to use for the message. The InApp template object is not supported for SendMessages.
|
6662
|
+
*/
|
6663
|
+
InAppTemplate?: Template;
|
6604
6664
|
}
|
6605
6665
|
export interface TemplateCreateMessageBody {
|
6606
6666
|
/**
|
@@ -6646,7 +6706,7 @@ declare namespace Pinpoint {
|
|
6646
6706
|
*/
|
6647
6707
|
TemplateName: __string;
|
6648
6708
|
/**
|
6649
|
-
* The type of channel that the message template is designed for. Possible values are: EMAIL, PUSH, SMS, and VOICE.
|
6709
|
+
* The type of channel that the message template is designed for. Possible values are: EMAIL, PUSH, SMS, INAPP, and VOICE.
|
6650
6710
|
*/
|
6651
6711
|
TemplateType: TemplateType;
|
6652
6712
|
/**
|
@@ -6677,7 +6737,7 @@ declare namespace Pinpoint {
|
|
6677
6737
|
*/
|
6678
6738
|
TemplateName: __string;
|
6679
6739
|
/**
|
6680
|
-
* The type of channel that the message template is designed for. Possible values are: EMAIL, PUSH, SMS, and VOICE.
|
6740
|
+
* The type of channel that the message template is designed for. Possible values are: EMAIL, PUSH, SMS, INAPP, and VOICE.
|
6681
6741
|
*/
|
6682
6742
|
TemplateType: __string;
|
6683
6743
|
/**
|
@@ -7324,6 +7384,10 @@ declare namespace Pinpoint {
|
|
7324
7384
|
* The default quiet time for campaigns in the application. Quiet time is a specific time range when messages aren't sent to endpoints, if all the following conditions are met: The EndpointDemographic.Timezone property of the endpoint is set to a valid value. The current time in the endpoint's time zone is later than or equal to the time specified by the QuietTime.Start property for the application (or a campaign or journey that has custom quiet time settings). The current time in the endpoint's time zone is earlier than or equal to the time specified by the QuietTime.End property for the application (or a campaign or journey that has custom quiet time settings). If any of the preceding conditions isn't met, the endpoint will receive messages from a campaign or journey, even if quiet time is enabled. To override the default quiet time settings for a specific campaign or journey, use the Campaign resource or the Journey resource to define a custom quiet time for the campaign or journey.
|
7325
7385
|
*/
|
7326
7386
|
QuietTime?: QuietTime;
|
7387
|
+
/**
|
7388
|
+
* The default sending limits for journeys in the application. These limits apply to each journey for the application but can be overridden, on a per journey basis, with the JourneyLimits resource.
|
7389
|
+
*/
|
7390
|
+
JourneyLimits?: ApplicationSettingsJourneyLimits;
|
7327
7391
|
}
|
7328
7392
|
export interface WriteCampaignRequest {
|
7329
7393
|
/**
|
package/clients/sqs.d.ts
CHANGED
@@ -20,11 +20,11 @@ declare class SQS extends Service {
|
|
20
20
|
*/
|
21
21
|
addPermission(callback?: (err: AWSError, data: {}) => void): Request<{}, AWSError>;
|
22
22
|
/**
|
23
|
-
* Cancels a specified message movement task.
|
23
|
+
* Cancels a specified message movement task. A message movement can only be cancelled when the current status is RUNNING. Cancelling a message movement task does not revert the messages that have already been moved. It can only stop the messages that have not been moved yet. This action is currently limited to supporting message redrive from dead-letter queues (DLQs) only. In this context, the source queue is the dead-letter queue (DLQ), while the destination queue can be the original source queue (from which the messages were driven to the dead-letter-queue), or a custom destination queue. Currently, only standard queues are supported. Only one active message movement task is supported per queue at any given time.
|
24
24
|
*/
|
25
25
|
cancelMessageMoveTask(params: SQS.Types.CancelMessageMoveTaskRequest, callback?: (err: AWSError, data: SQS.Types.CancelMessageMoveTaskResult) => void): Request<SQS.Types.CancelMessageMoveTaskResult, AWSError>;
|
26
26
|
/**
|
27
|
-
* Cancels a specified message movement task.
|
27
|
+
* Cancels a specified message movement task. A message movement can only be cancelled when the current status is RUNNING. Cancelling a message movement task does not revert the messages that have already been moved. It can only stop the messages that have not been moved yet. This action is currently limited to supporting message redrive from dead-letter queues (DLQs) only. In this context, the source queue is the dead-letter queue (DLQ), while the destination queue can be the original source queue (from which the messages were driven to the dead-letter-queue), or a custom destination queue. Currently, only standard queues are supported. Only one active message movement task is supported per queue at any given time.
|
28
28
|
*/
|
29
29
|
cancelMessageMoveTask(callback?: (err: AWSError, data: SQS.Types.CancelMessageMoveTaskResult) => void): Request<SQS.Types.CancelMessageMoveTaskResult, AWSError>;
|
30
30
|
/**
|
@@ -100,11 +100,11 @@ declare class SQS extends Service {
|
|
100
100
|
*/
|
101
101
|
listDeadLetterSourceQueues(callback?: (err: AWSError, data: SQS.Types.ListDeadLetterSourceQueuesResult) => void): Request<SQS.Types.ListDeadLetterSourceQueuesResult, AWSError>;
|
102
102
|
/**
|
103
|
-
* Gets the most recent message movement tasks (up to 10) under a specific source queue.
|
103
|
+
* Gets the most recent message movement tasks (up to 10) under a specific source queue. This action is currently limited to supporting message redrive from dead-letter queues (DLQs) only. In this context, the source queue is the dead-letter queue (DLQ), while the destination queue can be the original source queue (from which the messages were driven to the dead-letter-queue), or a custom destination queue. Currently, only standard queues are supported. Only one active message movement task is supported per queue at any given time.
|
104
104
|
*/
|
105
105
|
listMessageMoveTasks(params: SQS.Types.ListMessageMoveTasksRequest, callback?: (err: AWSError, data: SQS.Types.ListMessageMoveTasksResult) => void): Request<SQS.Types.ListMessageMoveTasksResult, AWSError>;
|
106
106
|
/**
|
107
|
-
* Gets the most recent message movement tasks (up to 10) under a specific source queue.
|
107
|
+
* Gets the most recent message movement tasks (up to 10) under a specific source queue. This action is currently limited to supporting message redrive from dead-letter queues (DLQs) only. In this context, the source queue is the dead-letter queue (DLQ), while the destination queue can be the original source queue (from which the messages were driven to the dead-letter-queue), or a custom destination queue. Currently, only standard queues are supported. Only one active message movement task is supported per queue at any given time.
|
108
108
|
*/
|
109
109
|
listMessageMoveTasks(callback?: (err: AWSError, data: SQS.Types.ListMessageMoveTasksResult) => void): Request<SQS.Types.ListMessageMoveTasksResult, AWSError>;
|
110
110
|
/**
|
@@ -124,11 +124,11 @@ declare class SQS extends Service {
|
|
124
124
|
*/
|
125
125
|
listQueues(callback?: (err: AWSError, data: SQS.Types.ListQueuesResult) => void): Request<SQS.Types.ListQueuesResult, AWSError>;
|
126
126
|
/**
|
127
|
-
* Deletes
|
127
|
+
* Deletes available messages in a queue (including in-flight messages) specified by the QueueURL parameter. When you use the PurgeQueue action, you can't retrieve any messages deleted from a queue. The message deletion process takes up to 60 seconds. We recommend waiting for 60 seconds regardless of your queue's size. Messages sent to the queue before you call PurgeQueue might be received but are deleted within the next minute. Messages sent to the queue after you call PurgeQueue might be deleted while the queue is being purged.
|
128
128
|
*/
|
129
129
|
purgeQueue(params: SQS.Types.PurgeQueueRequest, callback?: (err: AWSError, data: {}) => void): Request<{}, AWSError>;
|
130
130
|
/**
|
131
|
-
* Deletes
|
131
|
+
* Deletes available messages in a queue (including in-flight messages) specified by the QueueURL parameter. When you use the PurgeQueue action, you can't retrieve any messages deleted from a queue. The message deletion process takes up to 60 seconds. We recommend waiting for 60 seconds regardless of your queue's size. Messages sent to the queue before you call PurgeQueue might be received but are deleted within the next minute. Messages sent to the queue after you call PurgeQueue might be deleted while the queue is being purged.
|
132
132
|
*/
|
133
133
|
purgeQueue(callback?: (err: AWSError, data: {}) => void): Request<{}, AWSError>;
|
134
134
|
/**
|
@@ -172,11 +172,11 @@ declare class SQS extends Service {
|
|
172
172
|
*/
|
173
173
|
setQueueAttributes(callback?: (err: AWSError, data: {}) => void): Request<{}, AWSError>;
|
174
174
|
/**
|
175
|
-
* Starts an asynchronous task to move messages from a specified source queue to a specified destination queue. This action is currently limited to supporting message redrive from dead-letter queues (DLQs) only. In
|
175
|
+
* Starts an asynchronous task to move messages from a specified source queue to a specified destination queue. This action is currently limited to supporting message redrive from queues that are configured as dead-letter queues (DLQs) of other Amazon SQS queues only. Non-SQS queue sources of dead-letter queues, such as Lambda or Amazon SNS topics, are currently not supported. In dead-letter queues redrive context, the StartMessageMoveTask the source queue is the DLQ, while the destination queue can be the original source queue (from which the messages were driven to the dead-letter-queue), or a custom destination queue. Currently, only standard queues support redrive. FIFO queues don't support redrive. Only one active message movement task is supported per queue at any given time.
|
176
176
|
*/
|
177
177
|
startMessageMoveTask(params: SQS.Types.StartMessageMoveTaskRequest, callback?: (err: AWSError, data: SQS.Types.StartMessageMoveTaskResult) => void): Request<SQS.Types.StartMessageMoveTaskResult, AWSError>;
|
178
178
|
/**
|
179
|
-
* Starts an asynchronous task to move messages from a specified source queue to a specified destination queue. This action is currently limited to supporting message redrive from dead-letter queues (DLQs) only. In
|
179
|
+
* Starts an asynchronous task to move messages from a specified source queue to a specified destination queue. This action is currently limited to supporting message redrive from queues that are configured as dead-letter queues (DLQs) of other Amazon SQS queues only. Non-SQS queue sources of dead-letter queues, such as Lambda or Amazon SNS topics, are currently not supported. In dead-letter queues redrive context, the StartMessageMoveTask the source queue is the DLQ, while the destination queue can be the original source queue (from which the messages were driven to the dead-letter-queue), or a custom destination queue. Currently, only standard queues support redrive. FIFO queues don't support redrive. Only one active message movement task is supported per queue at any given time.
|
180
180
|
*/
|
181
181
|
startMessageMoveTask(callback?: (err: AWSError, data: SQS.Types.StartMessageMoveTaskResult) => void): Request<SQS.Types.StartMessageMoveTaskResult, AWSError>;
|
182
182
|
/**
|
@@ -811,7 +811,7 @@ declare namespace SQS {
|
|
811
811
|
}
|
812
812
|
export interface StartMessageMoveTaskRequest {
|
813
813
|
/**
|
814
|
-
* The ARN of the queue that contains the messages to be moved to another queue. Currently, only dead-letter
|
814
|
+
* The ARN of the queue that contains the messages to be moved to another queue. Currently, only ARNs of dead-letter queues (DLQs) whose sources are other Amazon SQS queues are accepted. DLQs whose sources are non-SQS queues, such as Lambda or Amazon SNS topics, are not currently supported.
|
815
815
|
*/
|
816
816
|
SourceArn: String;
|
817
817
|
/**
|