aws-sdk 2.1447.0 → 2.1449.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 +27 -1
- package/README.md +1 -1
- package/apis/appflow-2020-08-23.min.json +115 -87
- package/apis/auditmanager-2017-07-25.min.json +238 -63
- package/apis/chime-sdk-media-pipelines-2021-07-15.min.json +39 -21
- package/apis/cleanrooms-2022-02-17.min.json +70 -31
- package/apis/cloudhsm-2014-05-30.min.json +60 -20
- package/apis/connectcampaigns-2021-01-30.min.json +103 -90
- package/apis/connectparticipant-2018-09-07.min.json +62 -0
- package/apis/customer-profiles-2020-08-15.min.json +269 -118
- package/apis/datasync-2018-11-09.min.json +97 -14
- package/apis/grafana-2020-08-18.min.json +2 -1
- package/apis/health-2016-08-04.min.json +116 -34
- package/apis/kafkaconnect-2021-09-14.min.json +38 -36
- package/apis/metadata.json +7 -0
- package/apis/neptunedata-2023-08-01.examples.json +5 -0
- package/apis/neptunedata-2023-08-01.min.json +1923 -0
- package/apis/neptunedata-2023-08-01.paginators.json +4 -0
- package/apis/payment-cryptography-data-2022-02-03.min.json +29 -16
- package/apis/pca-connector-ad-2018-05-10.examples.json +5 -0
- package/apis/pca-connector-ad-2018-05-10.min.json +1465 -0
- package/apis/pca-connector-ad-2018-05-10.paginators.json +34 -0
- package/apis/runtime.sagemaker-2017-05-13.min.json +104 -0
- package/apis/sagemaker-2017-07-24.min.json +739 -728
- package/clients/all.d.ts +2 -0
- package/clients/all.js +3 -1
- package/clients/appflow.d.ts +30 -0
- package/clients/apprunner.d.ts +5 -5
- package/clients/chimesdkmediapipelines.d.ts +28 -2
- package/clients/cleanrooms.d.ts +41 -5
- package/clients/cloudwatchevents.d.ts +2 -2
- package/clients/connectcampaigns.d.ts +30 -23
- package/clients/connectparticipant.d.ts +71 -2
- package/clients/customerprofiles.d.ts +56 -52
- package/clients/datasync.d.ts +144 -21
- package/clients/ecs.d.ts +14 -14
- package/clients/health.d.ts +86 -2
- package/clients/ivs.d.ts +4 -4
- package/clients/kafkaconnect.d.ts +6 -8
- package/clients/neptunedata.d.ts +1976 -0
- package/clients/neptunedata.js +18 -0
- package/clients/networkfirewall.d.ts +9 -9
- package/clients/paymentcryptographydata.d.ts +8 -6
- package/clients/pcaconnectorad.d.ts +1606 -0
- package/clients/pcaconnectorad.js +18 -0
- package/clients/sagemaker.d.ts +21 -1
- package/clients/sagemakerruntime.d.ts +86 -8
- package/dist/aws-sdk-core-react-native.js +2 -2
- package/dist/aws-sdk-react-native.js +93 -19
- package/dist/aws-sdk.js +70 -23
- package/dist/aws-sdk.min.js +89 -89
- package/lib/config_service_placeholders.d.ts +4 -0
- package/lib/core.js +1 -1
- package/package.json +1 -1
package/clients/all.d.ts
CHANGED
@@ -352,3 +352,5 @@ export import AppFabric = require('./appfabric');
|
|
352
352
|
export import MedicalImaging = require('./medicalimaging');
|
353
353
|
export import EntityResolution = require('./entityresolution');
|
354
354
|
export import ManagedBlockchainQuery = require('./managedblockchainquery');
|
355
|
+
export import Neptunedata = require('./neptunedata');
|
356
|
+
export import PcaConnectorAd = require('./pcaconnectorad');
|
package/clients/all.js
CHANGED
@@ -353,5 +353,7 @@ module.exports = {
|
|
353
353
|
AppFabric: require('./appfabric'),
|
354
354
|
MedicalImaging: require('./medicalimaging'),
|
355
355
|
EntityResolution: require('./entityresolution'),
|
356
|
-
ManagedBlockchainQuery: require('./managedblockchainquery')
|
356
|
+
ManagedBlockchainQuery: require('./managedblockchainquery'),
|
357
|
+
Neptunedata: require('./neptunedata'),
|
358
|
+
PcaConnectorAd: require('./pcaconnectorad')
|
357
359
|
};
|
package/clients/appflow.d.ts
CHANGED
@@ -1710,6 +1710,14 @@ declare namespace Appflow {
|
|
1710
1710
|
* The number of records processed in the flow run.
|
1711
1711
|
*/
|
1712
1712
|
recordsProcessed?: Long;
|
1713
|
+
/**
|
1714
|
+
* The number of processes that Amazon AppFlow ran at the same time when it retrieved your data.
|
1715
|
+
*/
|
1716
|
+
numParallelProcesses?: Long;
|
1717
|
+
/**
|
1718
|
+
* The maximum number of records that Amazon AppFlow receives in each page of the response from your SAP application.
|
1719
|
+
*/
|
1720
|
+
maxPageSize?: Long;
|
1713
1721
|
}
|
1714
1722
|
export type ExecutionStatus = "InProgress"|"Successful"|"Error"|"CancelStarted"|"Canceled"|string;
|
1715
1723
|
export type FieldType = string;
|
@@ -2579,13 +2587,35 @@ declare namespace Appflow {
|
|
2579
2587
|
errorHandlingConfig?: ErrorHandlingConfig;
|
2580
2588
|
writeOperationType?: WriteOperationType;
|
2581
2589
|
}
|
2590
|
+
export type SAPODataMaxPageSize = number;
|
2591
|
+
export type SAPODataMaxParallelism = number;
|
2582
2592
|
export interface SAPODataMetadata {
|
2583
2593
|
}
|
2594
|
+
export interface SAPODataPaginationConfig {
|
2595
|
+
/**
|
2596
|
+
* The maximum number of records that Amazon AppFlow receives in each page of the response from your SAP application. For transfers of OData records, the maximum page size is 3,000. For transfers of data that comes from an ODP provider, the maximum page size is 10,000.
|
2597
|
+
*/
|
2598
|
+
maxPageSize: SAPODataMaxPageSize;
|
2599
|
+
}
|
2600
|
+
export interface SAPODataParallelismConfig {
|
2601
|
+
/**
|
2602
|
+
* The maximum number of processes that Amazon AppFlow runs at the same time when it retrieves your data from your SAP application.
|
2603
|
+
*/
|
2604
|
+
maxParallelism: SAPODataMaxParallelism;
|
2605
|
+
}
|
2584
2606
|
export interface SAPODataSourceProperties {
|
2585
2607
|
/**
|
2586
2608
|
* The object path specified in the SAPOData flow source.
|
2587
2609
|
*/
|
2588
2610
|
objectPath?: Object;
|
2611
|
+
/**
|
2612
|
+
* Sets the number of concurrent processes that transfers OData records from your SAP instance.
|
2613
|
+
*/
|
2614
|
+
parallelismConfig?: SAPODataParallelismConfig;
|
2615
|
+
/**
|
2616
|
+
* Sets the page size for each concurrent process that transfers OData records from your SAP instance.
|
2617
|
+
*/
|
2618
|
+
paginationConfig?: SAPODataPaginationConfig;
|
2589
2619
|
}
|
2590
2620
|
export type SalesforceConnectorOperator = "PROJECTION"|"LESS_THAN"|"CONTAINS"|"GREATER_THAN"|"BETWEEN"|"LESS_THAN_OR_EQUAL_TO"|"GREATER_THAN_OR_EQUAL_TO"|"EQUAL_TO"|"NOT_EQUAL_TO"|"ADDITION"|"MULTIPLICATION"|"DIVISION"|"SUBTRACTION"|"MASK_ALL"|"MASK_FIRST_N"|"MASK_LAST_N"|"VALIDATE_NON_NULL"|"VALIDATE_NON_ZERO"|"VALIDATE_NON_NEGATIVE"|"VALIDATE_NUMERIC"|"NO_OP"|string;
|
2591
2621
|
export interface SalesforceConnectorProfileCredentials {
|
package/clients/apprunner.d.ts
CHANGED
@@ -28,11 +28,11 @@ declare class AppRunner extends Service {
|
|
28
28
|
*/
|
29
29
|
createAutoScalingConfiguration(callback?: (err: AWSError, data: AppRunner.Types.CreateAutoScalingConfigurationResponse) => void): Request<AppRunner.Types.CreateAutoScalingConfigurationResponse, AWSError>;
|
30
30
|
/**
|
31
|
-
* Create an App Runner connection resource. App Runner requires a connection resource when you create App Runner services that access private repositories from certain third-party providers. You can share a connection across multiple services. A connection resource is needed to access GitHub repositories.
|
31
|
+
* Create an App Runner connection resource. App Runner requires a connection resource when you create App Runner services that access private repositories from certain third-party providers. You can share a connection across multiple services. A connection resource is needed to access GitHub and Bitbucket repositories. Both require a user interface approval process through the App Runner console before you can use the connection.
|
32
32
|
*/
|
33
33
|
createConnection(params: AppRunner.Types.CreateConnectionRequest, callback?: (err: AWSError, data: AppRunner.Types.CreateConnectionResponse) => void): Request<AppRunner.Types.CreateConnectionResponse, AWSError>;
|
34
34
|
/**
|
35
|
-
* Create an App Runner connection resource. App Runner requires a connection resource when you create App Runner services that access private repositories from certain third-party providers. You can share a connection across multiple services. A connection resource is needed to access GitHub repositories.
|
35
|
+
* Create an App Runner connection resource. App Runner requires a connection resource when you create App Runner services that access private repositories from certain third-party providers. You can share a connection across multiple services. A connection resource is needed to access GitHub and Bitbucket repositories. Both require a user interface approval process through the App Runner console before you can use the connection.
|
36
36
|
*/
|
37
37
|
createConnection(callback?: (err: AWSError, data: AppRunner.Types.CreateConnectionResponse) => void): Request<AppRunner.Types.CreateConnectionResponse, AWSError>;
|
38
38
|
/**
|
@@ -1326,7 +1326,7 @@ declare namespace AppRunner {
|
|
1326
1326
|
*/
|
1327
1327
|
OperationId?: UUID;
|
1328
1328
|
}
|
1329
|
-
export type ProviderType = "GITHUB"|string;
|
1329
|
+
export type ProviderType = "GITHUB"|"BITBUCKET"|string;
|
1330
1330
|
export interface ResumeServiceRequest {
|
1331
1331
|
/**
|
1332
1332
|
* The Amazon Resource Name (ARN) of the App Runner service that you want to resume.
|
@@ -1381,7 +1381,7 @@ declare namespace AppRunner {
|
|
1381
1381
|
*/
|
1382
1382
|
DeletedAt?: Timestamp;
|
1383
1383
|
/**
|
1384
|
-
* The current state of the App Runner service. These particular values mean the following. CREATE_FAILED – The service failed to create. To troubleshoot this failure, read the failure events and logs, change any parameters that need to be fixed, and
|
1384
|
+
* The current state of the App Runner service. These particular values mean the following. CREATE_FAILED – The service failed to create. The failed service isn't usable, and still counts towards your service quota. To troubleshoot this failure, read the failure events and logs, change any parameters that need to be fixed, and rebuild your service using UpdateService. DELETE_FAILED – The service failed to delete and can't be successfully recovered. Retry the service deletion call to ensure that all related resources are removed.
|
1385
1385
|
*/
|
1386
1386
|
Status: ServiceStatus;
|
1387
1387
|
/**
|
@@ -1453,7 +1453,7 @@ declare namespace AppRunner {
|
|
1453
1453
|
*/
|
1454
1454
|
UpdatedAt?: Timestamp;
|
1455
1455
|
/**
|
1456
|
-
* The current state of the App Runner service. These particular values mean the following. CREATE_FAILED – The service failed to create.
|
1456
|
+
* The current state of the App Runner service. These particular values mean the following. CREATE_FAILED – The service failed to create. The failed service isn't usable, and still counts towards your service quota. To troubleshoot this failure, read the failure events and logs, change any parameters that need to be fixed, and rebuild your service using UpdateService. DELETE_FAILED – The service failed to delete and can't be successfully recovered. Retry the service deletion call to ensure that all related resources are removed.
|
1457
1457
|
*/
|
1458
1458
|
Status?: ServiceStatus;
|
1459
1459
|
}
|
@@ -1065,6 +1065,10 @@ declare namespace ChimeSDKMediaPipelines {
|
|
1065
1065
|
* The time at which the media insights pipeline was created.
|
1066
1066
|
*/
|
1067
1067
|
CreatedTimestamp?: Iso8601Timestamp;
|
1068
|
+
/**
|
1069
|
+
* The statuses that the elements in a media insights pipeline can have during data processing.
|
1070
|
+
*/
|
1071
|
+
ElementStatuses?: MediaInsightsPipelineElementStatuses;
|
1068
1072
|
}
|
1069
1073
|
export interface MediaInsightsPipelineConfiguration {
|
1070
1074
|
/**
|
@@ -1137,8 +1141,12 @@ declare namespace ChimeSDKMediaPipelines {
|
|
1137
1141
|
* The configuration settings for an SNS topic sink in a media insights pipeline configuration element.
|
1138
1142
|
*/
|
1139
1143
|
SnsTopicSinkConfiguration?: SnsTopicSinkConfiguration;
|
1144
|
+
/**
|
1145
|
+
* The configuration settings for the VoiceEnhancementSinkConfiguration element.
|
1146
|
+
*/
|
1147
|
+
VoiceEnhancementSinkConfiguration?: VoiceEnhancementSinkConfiguration;
|
1140
1148
|
}
|
1141
|
-
export type MediaInsightsPipelineConfigurationElementType = "AmazonTranscribeCallAnalyticsProcessor"|"VoiceAnalyticsProcessor"|"AmazonTranscribeProcessor"|"KinesisDataStreamSink"|"LambdaFunctionSink"|"SqsQueueSink"|"SnsTopicSink"|"S3RecordingSink"|string;
|
1149
|
+
export type MediaInsightsPipelineConfigurationElementType = "AmazonTranscribeCallAnalyticsProcessor"|"VoiceAnalyticsProcessor"|"AmazonTranscribeProcessor"|"KinesisDataStreamSink"|"LambdaFunctionSink"|"SqsQueueSink"|"SnsTopicSink"|"S3RecordingSink"|"VoiceEnhancementSink"|string;
|
1142
1150
|
export type MediaInsightsPipelineConfigurationElements = MediaInsightsPipelineConfigurationElement[];
|
1143
1151
|
export type MediaInsightsPipelineConfigurationNameString = string;
|
1144
1152
|
export interface MediaInsightsPipelineConfigurationSummary {
|
@@ -1156,6 +1164,17 @@ declare namespace ChimeSDKMediaPipelines {
|
|
1156
1164
|
MediaInsightsPipelineConfigurationArn?: Arn;
|
1157
1165
|
}
|
1158
1166
|
export type MediaInsightsPipelineConfigurationSummaryList = MediaInsightsPipelineConfigurationSummary[];
|
1167
|
+
export interface MediaInsightsPipelineElementStatus {
|
1168
|
+
/**
|
1169
|
+
* The type of status.
|
1170
|
+
*/
|
1171
|
+
Type?: MediaInsightsPipelineConfigurationElementType;
|
1172
|
+
/**
|
1173
|
+
* The element's status.
|
1174
|
+
*/
|
1175
|
+
Status?: MediaPipelineElementStatus;
|
1176
|
+
}
|
1177
|
+
export type MediaInsightsPipelineElementStatuses = MediaInsightsPipelineElementStatus[];
|
1159
1178
|
export type MediaInsightsRuntimeMetadata = {[key: string]: String};
|
1160
1179
|
export interface MediaLiveConnectorPipeline {
|
1161
1180
|
/**
|
@@ -1205,10 +1224,11 @@ declare namespace ChimeSDKMediaPipelines {
|
|
1205
1224
|
*/
|
1206
1225
|
MediaInsightsPipeline?: MediaInsightsPipeline;
|
1207
1226
|
}
|
1227
|
+
export type MediaPipelineElementStatus = "NotStarted"|"NotSupported"|"Initializing"|"InProgress"|"Failed"|"Stopping"|"Stopped"|"Paused"|string;
|
1208
1228
|
export type MediaPipelineList = MediaPipelineSummary[];
|
1209
1229
|
export type MediaPipelineSinkType = "S3Bucket"|string;
|
1210
1230
|
export type MediaPipelineSourceType = "ChimeSdkMeeting"|string;
|
1211
|
-
export type MediaPipelineStatus = "Initializing"|"InProgress"|"Failed"|"Stopping"|"Stopped"|"Paused"|string;
|
1231
|
+
export type MediaPipelineStatus = "Initializing"|"InProgress"|"Failed"|"Stopping"|"Stopped"|"Paused"|"NotStarted"|string;
|
1212
1232
|
export type MediaPipelineStatusUpdate = "Pause"|"Resume"|string;
|
1213
1233
|
export interface MediaPipelineSummary {
|
1214
1234
|
/**
|
@@ -1558,6 +1578,12 @@ declare namespace ChimeSDKMediaPipelines {
|
|
1558
1578
|
*/
|
1559
1579
|
VoiceToneAnalysisStatus?: VoiceAnalyticsConfigurationStatus;
|
1560
1580
|
}
|
1581
|
+
export interface VoiceEnhancementSinkConfiguration {
|
1582
|
+
/**
|
1583
|
+
* Disables the VoiceEnhancementSinkConfiguration element.
|
1584
|
+
*/
|
1585
|
+
Disabled?: Boolean;
|
1586
|
+
}
|
1561
1587
|
/**
|
1562
1588
|
* A string in YYYY-MM-DD format that represents the latest possible API version that can be used in this service. Specify 'latest' to use the latest possible version.
|
1563
1589
|
*/
|
package/clients/cleanrooms.d.ts
CHANGED
@@ -292,11 +292,11 @@ declare class CleanRooms extends Service {
|
|
292
292
|
*/
|
293
293
|
listTagsForResource(callback?: (err: AWSError, data: CleanRooms.Types.ListTagsForResourceOutput) => void): Request<CleanRooms.Types.ListTagsForResourceOutput, AWSError>;
|
294
294
|
/**
|
295
|
-
* Creates a protected query that is started by Clean Rooms
|
295
|
+
* Creates a protected query that is started by Clean Rooms.
|
296
296
|
*/
|
297
297
|
startProtectedQuery(params: CleanRooms.Types.StartProtectedQueryInput, callback?: (err: AWSError, data: CleanRooms.Types.StartProtectedQueryOutput) => void): Request<CleanRooms.Types.StartProtectedQueryOutput, AWSError>;
|
298
298
|
/**
|
299
|
-
* Creates a protected query that is started by Clean Rooms
|
299
|
+
* Creates a protected query that is started by Clean Rooms.
|
300
300
|
*/
|
301
301
|
startProtectedQuery(callback?: (err: AWSError, data: CleanRooms.Types.StartProtectedQueryOutput) => void): Request<CleanRooms.Types.StartProtectedQueryOutput, AWSError>;
|
302
302
|
/**
|
@@ -1304,6 +1304,10 @@ declare namespace CleanRooms {
|
|
1304
1304
|
* An optional label that you can assign to a resource when you create it. Each tag consists of a key and an optional value, both of which you define. When you use tagging, you can also use tag-based access control in IAM policies to control access to this resource.
|
1305
1305
|
*/
|
1306
1306
|
tags?: TagMap;
|
1307
|
+
/**
|
1308
|
+
* The default protected query result configuration as specified by the member who can receive results.
|
1309
|
+
*/
|
1310
|
+
defaultResultConfiguration?: MembershipProtectedQueryResultConfiguration;
|
1307
1311
|
}
|
1308
1312
|
export interface CreateMembershipOutput {
|
1309
1313
|
/**
|
@@ -1907,9 +1911,26 @@ declare namespace CleanRooms {
|
|
1907
1911
|
* An indicator as to whether query logging has been enabled or disabled for the collaboration.
|
1908
1912
|
*/
|
1909
1913
|
queryLogStatus: MembershipQueryLogStatus;
|
1914
|
+
/**
|
1915
|
+
* The default protected query result configuration as specified by the member who can receive results.
|
1916
|
+
*/
|
1917
|
+
defaultResultConfiguration?: MembershipProtectedQueryResultConfiguration;
|
1910
1918
|
}
|
1911
1919
|
export type MembershipArn = string;
|
1912
1920
|
export type MembershipIdentifier = string;
|
1921
|
+
export interface MembershipProtectedQueryOutputConfiguration {
|
1922
|
+
s3?: ProtectedQueryS3OutputConfiguration;
|
1923
|
+
}
|
1924
|
+
export interface MembershipProtectedQueryResultConfiguration {
|
1925
|
+
/**
|
1926
|
+
* Configuration for protected query results.
|
1927
|
+
*/
|
1928
|
+
outputConfiguration: MembershipProtectedQueryOutputConfiguration;
|
1929
|
+
/**
|
1930
|
+
* The unique ARN for an IAM role that is used by Clean Rooms to write protected query results to the result location, given by the member who can receive results.
|
1931
|
+
*/
|
1932
|
+
roleArn?: RoleArn;
|
1933
|
+
}
|
1913
1934
|
export type MembershipQueryLogStatus = "ENABLED"|"DISABLED"|string;
|
1914
1935
|
export type MembershipStatus = "ACTIVE"|"REMOVED"|"COLLABORATION_DELETED"|string;
|
1915
1936
|
export interface MembershipSummary {
|
@@ -1984,7 +2005,7 @@ declare namespace CleanRooms {
|
|
1984
2005
|
/**
|
1985
2006
|
* The protected query SQL parameters.
|
1986
2007
|
*/
|
1987
|
-
sqlParameters
|
2008
|
+
sqlParameters?: ProtectedQuerySQLParameters;
|
1988
2009
|
/**
|
1989
2010
|
* The status of the query.
|
1990
2011
|
*/
|
@@ -1992,7 +2013,7 @@ declare namespace CleanRooms {
|
|
1992
2013
|
/**
|
1993
2014
|
* Contains any details needed to write the query results.
|
1994
2015
|
*/
|
1995
|
-
resultConfiguration
|
2016
|
+
resultConfiguration?: ProtectedQueryResultConfiguration;
|
1996
2017
|
/**
|
1997
2018
|
* Statistics about protected query execution.
|
1998
2019
|
*/
|
@@ -2017,11 +2038,16 @@ declare namespace CleanRooms {
|
|
2017
2038
|
code: String;
|
2018
2039
|
}
|
2019
2040
|
export type ProtectedQueryIdentifier = string;
|
2041
|
+
export type ProtectedQueryMemberOutputList = ProtectedQuerySingleMemberOutput[];
|
2020
2042
|
export interface ProtectedQueryOutput {
|
2021
2043
|
/**
|
2022
2044
|
* If present, the output for a protected query with an `S3` output type.
|
2023
2045
|
*/
|
2024
2046
|
s3?: ProtectedQueryS3Output;
|
2047
|
+
/**
|
2048
|
+
* The list of member Amazon Web Services account(s) that received the results of the query.
|
2049
|
+
*/
|
2050
|
+
memberList?: ProtectedQueryMemberOutputList;
|
2025
2051
|
}
|
2026
2052
|
export interface ProtectedQueryOutputConfiguration {
|
2027
2053
|
/**
|
@@ -2077,6 +2103,12 @@ declare namespace CleanRooms {
|
|
2077
2103
|
parameters?: ParameterMap;
|
2078
2104
|
}
|
2079
2105
|
export type ProtectedQuerySQLParametersQueryStringString = string;
|
2106
|
+
export interface ProtectedQuerySingleMemberOutput {
|
2107
|
+
/**
|
2108
|
+
* The Amazon Web Services account ID of the member in the collaboration who can receive results for the query.
|
2109
|
+
*/
|
2110
|
+
accountId: AccountId;
|
2111
|
+
}
|
2080
2112
|
export interface ProtectedQueryStatistics {
|
2081
2113
|
/**
|
2082
2114
|
* The duration of the Protected Query, from creation until query completion.
|
@@ -2222,7 +2254,7 @@ declare namespace CleanRooms {
|
|
2222
2254
|
/**
|
2223
2255
|
* The details needed to write the query results.
|
2224
2256
|
*/
|
2225
|
-
resultConfiguration
|
2257
|
+
resultConfiguration?: ProtectedQueryResultConfiguration;
|
2226
2258
|
}
|
2227
2259
|
export interface StartProtectedQueryOutput {
|
2228
2260
|
/**
|
@@ -2384,6 +2416,10 @@ declare namespace CleanRooms {
|
|
2384
2416
|
* An indicator as to whether query logging has been enabled or disabled for the collaboration.
|
2385
2417
|
*/
|
2386
2418
|
queryLogStatus?: MembershipQueryLogStatus;
|
2419
|
+
/**
|
2420
|
+
* The default protected query result configuration as specified by the member who can receive results.
|
2421
|
+
*/
|
2422
|
+
defaultResultConfiguration?: MembershipProtectedQueryResultConfiguration;
|
2387
2423
|
}
|
2388
2424
|
export interface UpdateMembershipOutput {
|
2389
2425
|
membership: Membership;
|
@@ -340,11 +340,11 @@ declare class CloudWatchEvents extends Service {
|
|
340
340
|
*/
|
341
341
|
putRule(callback?: (err: AWSError, data: CloudWatchEvents.Types.PutRuleResponse) => void): Request<CloudWatchEvents.Types.PutRuleResponse, AWSError>;
|
342
342
|
/**
|
343
|
-
* Adds the specified targets to the specified rule, or updates the targets if they are already associated with the rule. Targets are the resources that are invoked when a rule is triggered. You can configure the following as targets for Events: API destination Amazon API Gateway REST API endpoints API Gateway Batch job queue CloudWatch Logs group CodeBuild project CodePipeline Amazon EC2 CreateSnapshot API call Amazon EC2 RebootInstances API call Amazon EC2 StopInstances API call Amazon EC2 TerminateInstances API call Amazon ECS tasks Event bus in a different Amazon Web Services account or Region. You can use an event bus in the US East (N. Virginia) us-east-1, US West (Oregon) us-west-2, or Europe (Ireland) eu-west-1 Regions as a target for a rule. Firehose delivery stream (Kinesis Data Firehose) Inspector assessment template (Amazon Inspector) Kinesis stream (Kinesis Data Stream) Lambda function Redshift clusters (Data API statement execution) Amazon SNS topic Amazon SQS queues (includes FIFO queues SSM Automation SSM OpsItem SSM Run Command Step Functions state machines Creating rules with built-in targets is supported only in the Management Console. The built-in targets are EC2 CreateSnapshot API call, EC2 RebootInstances API call, EC2 StopInstances API call, and EC2 TerminateInstances API call. For some target types, PutTargets provides target-specific parameters. If the target is a Kinesis data stream, you can optionally specify which shard the event goes to by using the KinesisParameters argument. To invoke a command on multiple EC2 instances with one rule, you can use the RunCommandParameters field. To be able to make API calls against the resources that you own, Amazon EventBridge needs the appropriate permissions. For Lambda and Amazon SNS resources, EventBridge relies on resource-based policies. For EC2 instances, Kinesis Data Streams, Step Functions state machines and API Gateway REST APIs, EventBridge relies on IAM roles that you specify in the RoleARN argument in PutTargets. For more information, see Authentication and Access Control in the Amazon EventBridge User Guide. If another Amazon Web Services account is in the same region and has granted you permission (using PutPermission), you can send events to that account. Set that account's event bus as a target of the rules in your account. To send the matched events to the other account, specify that account's event bus as the Arn value when you run PutTargets. If your account sends events to another account, your account is charged for each sent event. Each event sent to another account is charged as a custom event. The account receiving the event is not charged. For more information, see Amazon EventBridge Pricing. Input, InputPath, and InputTransformer are not available with PutTarget if the target is an event bus of a different Amazon Web Services account. If you are setting the event bus of another account as the target, and that account granted permission to your account through an organization instead of directly by the account ID, then you must specify a RoleArn with proper permissions in the Target structure. For more information, see Sending and Receiving Events Between Amazon Web Services Accounts in the Amazon EventBridge User Guide. For more information about enabling cross-account events, see PutPermission. Input, InputPath, and InputTransformer are mutually exclusive and optional parameters of a target. When a rule is triggered due to a matched event: If none of the following arguments are specified for a target, then the entire event is passed to the target in JSON format (unless the target is Amazon EC2 Run Command or Amazon ECS task, in which case nothing from the event is passed to the target). If Input is specified in the form of valid JSON, then the matched event is overridden with this constant. If InputPath is specified in the form of JSONPath (for example, $.detail), then only the part of the event specified in the path is passed to the target (for example, only the detail part of the event is passed). If InputTransformer is specified, then one or more specified JSONPaths are extracted from the event and used as values in a template that you specify as the input to the target. When you specify InputPath or InputTransformer, you must use JSON dot notation, not bracket notation. When you add targets to a rule and the associated rule triggers soon after, new or updated targets might not be immediately invoked. Allow a short period of time for changes to take effect. This action can partially fail if too many requests are made at the same time. If that happens, FailedEntryCount is non-zero in the response and each entry in FailedEntries provides the ID of the failed target and the error code.
|
343
|
+
* Adds the specified targets to the specified rule, or updates the targets if they are already associated with the rule. Targets are the resources that are invoked when a rule is triggered. You can configure the following as targets for Events: API destination Amazon API Gateway REST API endpoints API Gateway Batch job queue CloudWatch Logs group CodeBuild project CodePipeline Amazon EC2 CreateSnapshot API call Amazon EC2 RebootInstances API call Amazon EC2 StopInstances API call Amazon EC2 TerminateInstances API call Amazon ECS tasks Event bus in a different Amazon Web Services account or Region. You can use an event bus in the US East (N. Virginia) us-east-1, US West (Oregon) us-west-2, or Europe (Ireland) eu-west-1 Regions as a target for a rule. Firehose delivery stream (Kinesis Data Firehose) Inspector assessment template (Amazon Inspector) Kinesis stream (Kinesis Data Stream) Lambda function Redshift clusters (Data API statement execution) Amazon SNS topic Amazon SQS queues (includes FIFO queues SSM Automation SSM OpsItem SSM Run Command Step Functions state machines Creating rules with built-in targets is supported only in the Amazon Web Services Management Console. The built-in targets are EC2 CreateSnapshot API call, EC2 RebootInstances API call, EC2 StopInstances API call, and EC2 TerminateInstances API call. For some target types, PutTargets provides target-specific parameters. If the target is a Kinesis data stream, you can optionally specify which shard the event goes to by using the KinesisParameters argument. To invoke a command on multiple EC2 instances with one rule, you can use the RunCommandParameters field. To be able to make API calls against the resources that you own, Amazon EventBridge needs the appropriate permissions. For Lambda and Amazon SNS resources, EventBridge relies on resource-based policies. For EC2 instances, Kinesis Data Streams, Step Functions state machines and API Gateway REST APIs, EventBridge relies on IAM roles that you specify in the RoleARN argument in PutTargets. For more information, see Authentication and Access Control in the Amazon EventBridge User Guide. If another Amazon Web Services account is in the same region and has granted you permission (using PutPermission), you can send events to that account. Set that account's event bus as a target of the rules in your account. To send the matched events to the other account, specify that account's event bus as the Arn value when you run PutTargets. If your account sends events to another account, your account is charged for each sent event. Each event sent to another account is charged as a custom event. The account receiving the event is not charged. For more information, see Amazon EventBridge Pricing. Input, InputPath, and InputTransformer are not available with PutTarget if the target is an event bus of a different Amazon Web Services account. If you are setting the event bus of another account as the target, and that account granted permission to your account through an organization instead of directly by the account ID, then you must specify a RoleArn with proper permissions in the Target structure. For more information, see Sending and Receiving Events Between Amazon Web Services Accounts in the Amazon EventBridge User Guide. For more information about enabling cross-account events, see PutPermission. Input, InputPath, and InputTransformer are mutually exclusive and optional parameters of a target. When a rule is triggered due to a matched event: If none of the following arguments are specified for a target, then the entire event is passed to the target in JSON format (unless the target is Amazon EC2 Run Command or Amazon ECS task, in which case nothing from the event is passed to the target). If Input is specified in the form of valid JSON, then the matched event is overridden with this constant. If InputPath is specified in the form of JSONPath (for example, $.detail), then only the part of the event specified in the path is passed to the target (for example, only the detail part of the event is passed). If InputTransformer is specified, then one or more specified JSONPaths are extracted from the event and used as values in a template that you specify as the input to the target. When you specify InputPath or InputTransformer, you must use JSON dot notation, not bracket notation. When you add targets to a rule and the associated rule triggers soon after, new or updated targets might not be immediately invoked. Allow a short period of time for changes to take effect. This action can partially fail if too many requests are made at the same time. If that happens, FailedEntryCount is non-zero in the response and each entry in FailedEntries provides the ID of the failed target and the error code.
|
344
344
|
*/
|
345
345
|
putTargets(params: CloudWatchEvents.Types.PutTargetsRequest, callback?: (err: AWSError, data: CloudWatchEvents.Types.PutTargetsResponse) => void): Request<CloudWatchEvents.Types.PutTargetsResponse, AWSError>;
|
346
346
|
/**
|
347
|
-
* Adds the specified targets to the specified rule, or updates the targets if they are already associated with the rule. Targets are the resources that are invoked when a rule is triggered. You can configure the following as targets for Events: API destination Amazon API Gateway REST API endpoints API Gateway Batch job queue CloudWatch Logs group CodeBuild project CodePipeline Amazon EC2 CreateSnapshot API call Amazon EC2 RebootInstances API call Amazon EC2 StopInstances API call Amazon EC2 TerminateInstances API call Amazon ECS tasks Event bus in a different Amazon Web Services account or Region. You can use an event bus in the US East (N. Virginia) us-east-1, US West (Oregon) us-west-2, or Europe (Ireland) eu-west-1 Regions as a target for a rule. Firehose delivery stream (Kinesis Data Firehose) Inspector assessment template (Amazon Inspector) Kinesis stream (Kinesis Data Stream) Lambda function Redshift clusters (Data API statement execution) Amazon SNS topic Amazon SQS queues (includes FIFO queues SSM Automation SSM OpsItem SSM Run Command Step Functions state machines Creating rules with built-in targets is supported only in the Management Console. The built-in targets are EC2 CreateSnapshot API call, EC2 RebootInstances API call, EC2 StopInstances API call, and EC2 TerminateInstances API call. For some target types, PutTargets provides target-specific parameters. If the target is a Kinesis data stream, you can optionally specify which shard the event goes to by using the KinesisParameters argument. To invoke a command on multiple EC2 instances with one rule, you can use the RunCommandParameters field. To be able to make API calls against the resources that you own, Amazon EventBridge needs the appropriate permissions. For Lambda and Amazon SNS resources, EventBridge relies on resource-based policies. For EC2 instances, Kinesis Data Streams, Step Functions state machines and API Gateway REST APIs, EventBridge relies on IAM roles that you specify in the RoleARN argument in PutTargets. For more information, see Authentication and Access Control in the Amazon EventBridge User Guide. If another Amazon Web Services account is in the same region and has granted you permission (using PutPermission), you can send events to that account. Set that account's event bus as a target of the rules in your account. To send the matched events to the other account, specify that account's event bus as the Arn value when you run PutTargets. If your account sends events to another account, your account is charged for each sent event. Each event sent to another account is charged as a custom event. The account receiving the event is not charged. For more information, see Amazon EventBridge Pricing. Input, InputPath, and InputTransformer are not available with PutTarget if the target is an event bus of a different Amazon Web Services account. If you are setting the event bus of another account as the target, and that account granted permission to your account through an organization instead of directly by the account ID, then you must specify a RoleArn with proper permissions in the Target structure. For more information, see Sending and Receiving Events Between Amazon Web Services Accounts in the Amazon EventBridge User Guide. For more information about enabling cross-account events, see PutPermission. Input, InputPath, and InputTransformer are mutually exclusive and optional parameters of a target. When a rule is triggered due to a matched event: If none of the following arguments are specified for a target, then the entire event is passed to the target in JSON format (unless the target is Amazon EC2 Run Command or Amazon ECS task, in which case nothing from the event is passed to the target). If Input is specified in the form of valid JSON, then the matched event is overridden with this constant. If InputPath is specified in the form of JSONPath (for example, $.detail), then only the part of the event specified in the path is passed to the target (for example, only the detail part of the event is passed). If InputTransformer is specified, then one or more specified JSONPaths are extracted from the event and used as values in a template that you specify as the input to the target. When you specify InputPath or InputTransformer, you must use JSON dot notation, not bracket notation. When you add targets to a rule and the associated rule triggers soon after, new or updated targets might not be immediately invoked. Allow a short period of time for changes to take effect. This action can partially fail if too many requests are made at the same time. If that happens, FailedEntryCount is non-zero in the response and each entry in FailedEntries provides the ID of the failed target and the error code.
|
347
|
+
* Adds the specified targets to the specified rule, or updates the targets if they are already associated with the rule. Targets are the resources that are invoked when a rule is triggered. You can configure the following as targets for Events: API destination Amazon API Gateway REST API endpoints API Gateway Batch job queue CloudWatch Logs group CodeBuild project CodePipeline Amazon EC2 CreateSnapshot API call Amazon EC2 RebootInstances API call Amazon EC2 StopInstances API call Amazon EC2 TerminateInstances API call Amazon ECS tasks Event bus in a different Amazon Web Services account or Region. You can use an event bus in the US East (N. Virginia) us-east-1, US West (Oregon) us-west-2, or Europe (Ireland) eu-west-1 Regions as a target for a rule. Firehose delivery stream (Kinesis Data Firehose) Inspector assessment template (Amazon Inspector) Kinesis stream (Kinesis Data Stream) Lambda function Redshift clusters (Data API statement execution) Amazon SNS topic Amazon SQS queues (includes FIFO queues SSM Automation SSM OpsItem SSM Run Command Step Functions state machines Creating rules with built-in targets is supported only in the Amazon Web Services Management Console. The built-in targets are EC2 CreateSnapshot API call, EC2 RebootInstances API call, EC2 StopInstances API call, and EC2 TerminateInstances API call. For some target types, PutTargets provides target-specific parameters. If the target is a Kinesis data stream, you can optionally specify which shard the event goes to by using the KinesisParameters argument. To invoke a command on multiple EC2 instances with one rule, you can use the RunCommandParameters field. To be able to make API calls against the resources that you own, Amazon EventBridge needs the appropriate permissions. For Lambda and Amazon SNS resources, EventBridge relies on resource-based policies. For EC2 instances, Kinesis Data Streams, Step Functions state machines and API Gateway REST APIs, EventBridge relies on IAM roles that you specify in the RoleARN argument in PutTargets. For more information, see Authentication and Access Control in the Amazon EventBridge User Guide. If another Amazon Web Services account is in the same region and has granted you permission (using PutPermission), you can send events to that account. Set that account's event bus as a target of the rules in your account. To send the matched events to the other account, specify that account's event bus as the Arn value when you run PutTargets. If your account sends events to another account, your account is charged for each sent event. Each event sent to another account is charged as a custom event. The account receiving the event is not charged. For more information, see Amazon EventBridge Pricing. Input, InputPath, and InputTransformer are not available with PutTarget if the target is an event bus of a different Amazon Web Services account. If you are setting the event bus of another account as the target, and that account granted permission to your account through an organization instead of directly by the account ID, then you must specify a RoleArn with proper permissions in the Target structure. For more information, see Sending and Receiving Events Between Amazon Web Services Accounts in the Amazon EventBridge User Guide. For more information about enabling cross-account events, see PutPermission. Input, InputPath, and InputTransformer are mutually exclusive and optional parameters of a target. When a rule is triggered due to a matched event: If none of the following arguments are specified for a target, then the entire event is passed to the target in JSON format (unless the target is Amazon EC2 Run Command or Amazon ECS task, in which case nothing from the event is passed to the target). If Input is specified in the form of valid JSON, then the matched event is overridden with this constant. If InputPath is specified in the form of JSONPath (for example, $.detail), then only the part of the event specified in the path is passed to the target (for example, only the detail part of the event is passed). If InputTransformer is specified, then one or more specified JSONPaths are extracted from the event and used as values in a template that you specify as the input to the target. When you specify InputPath or InputTransformer, you must use JSON dot notation, not bracket notation. When you add targets to a rule and the associated rule triggers soon after, new or updated targets might not be immediately invoked. Allow a short period of time for changes to take effect. This action can partially fail if too many requests are made at the same time. If that happens, FailedEntryCount is non-zero in the response and each entry in FailedEntries provides the ID of the failed target and the error code.
|
348
348
|
*/
|
349
349
|
putTargets(callback?: (err: AWSError, data: CloudWatchEvents.Types.PutTargetsResponse) => void): Request<CloudWatchEvents.Types.PutTargetsResponse, AWSError>;
|
350
350
|
/**
|
@@ -189,6 +189,9 @@ declare class ConnectCampaigns extends Service {
|
|
189
189
|
updateCampaignOutboundCallConfig(callback?: (err: AWSError, data: {}) => void): Request<{}, AWSError>;
|
190
190
|
}
|
191
191
|
declare namespace ConnectCampaigns {
|
192
|
+
export interface AgentlessDialerConfig {
|
193
|
+
dialingCapacity?: DialingCapacity;
|
194
|
+
}
|
192
195
|
export interface AnswerMachineDetectionConfig {
|
193
196
|
/**
|
194
197
|
* Enable or disable answering machine detection
|
@@ -202,11 +205,11 @@ declare namespace ConnectCampaigns {
|
|
202
205
|
export type BandwidthAllocation = number;
|
203
206
|
export type Boolean = boolean;
|
204
207
|
export interface Campaign {
|
208
|
+
id: CampaignId;
|
205
209
|
arn: CampaignArn;
|
210
|
+
name: CampaignName;
|
206
211
|
connectInstanceId: InstanceId;
|
207
212
|
dialerConfig: DialerConfig;
|
208
|
-
id: CampaignId;
|
209
|
-
name: CampaignName;
|
210
213
|
outboundCallConfig: OutboundCallConfig;
|
211
214
|
tags?: TagMap;
|
212
215
|
}
|
@@ -218,24 +221,24 @@ declare namespace ConnectCampaigns {
|
|
218
221
|
export type CampaignName = string;
|
219
222
|
export type CampaignState = "Initialized"|"Running"|"Paused"|"Stopped"|"Failed"|string;
|
220
223
|
export interface CampaignSummary {
|
221
|
-
arn: CampaignArn;
|
222
|
-
connectInstanceId: InstanceId;
|
223
224
|
id: CampaignId;
|
225
|
+
arn: CampaignArn;
|
224
226
|
name: CampaignName;
|
227
|
+
connectInstanceId: InstanceId;
|
225
228
|
}
|
226
229
|
export type CampaignSummaryList = CampaignSummary[];
|
227
230
|
export type ClientToken = string;
|
228
231
|
export type ContactFlowId = string;
|
229
232
|
export interface CreateCampaignRequest {
|
233
|
+
name: CampaignName;
|
230
234
|
connectInstanceId: InstanceId;
|
231
235
|
dialerConfig: DialerConfig;
|
232
|
-
name: CampaignName;
|
233
236
|
outboundCallConfig: OutboundCallConfig;
|
234
237
|
tags?: TagMap;
|
235
238
|
}
|
236
239
|
export interface CreateCampaignResponse {
|
237
|
-
arn?: CampaignArn;
|
238
240
|
id?: CampaignId;
|
241
|
+
arn?: CampaignArn;
|
239
242
|
tags?: TagMap;
|
240
243
|
}
|
241
244
|
export interface DeleteCampaignRequest {
|
@@ -255,17 +258,19 @@ declare namespace ConnectCampaigns {
|
|
255
258
|
}
|
256
259
|
export type DestinationPhoneNumber = string;
|
257
260
|
export interface DialRequest {
|
258
|
-
attributes: Attributes;
|
259
261
|
clientToken: ClientToken;
|
260
|
-
expirationTime: TimeStamp;
|
261
262
|
phoneNumber: DestinationPhoneNumber;
|
263
|
+
expirationTime: TimeStamp;
|
264
|
+
attributes: Attributes;
|
262
265
|
}
|
263
266
|
export type DialRequestId = string;
|
264
267
|
export type DialRequestList = DialRequest[];
|
265
268
|
export interface DialerConfig {
|
266
|
-
predictiveDialerConfig?: PredictiveDialerConfig;
|
267
269
|
progressiveDialerConfig?: ProgressiveDialerConfig;
|
270
|
+
predictiveDialerConfig?: PredictiveDialerConfig;
|
271
|
+
agentlessDialerConfig?: AgentlessDialerConfig;
|
268
272
|
}
|
273
|
+
export type DialingCapacity = number;
|
269
274
|
export type Enabled = boolean;
|
270
275
|
export interface EncryptionConfig {
|
271
276
|
enabled: Enabled;
|
@@ -281,8 +286,8 @@ declare namespace ConnectCampaigns {
|
|
281
286
|
export type FailedCampaignStateResponseList = FailedCampaignStateResponse[];
|
282
287
|
export interface FailedRequest {
|
283
288
|
clientToken?: ClientToken;
|
284
|
-
failureCode?: FailureCode;
|
285
289
|
id?: DialRequestId;
|
290
|
+
failureCode?: FailureCode;
|
286
291
|
}
|
287
292
|
export type FailedRequestList = FailedRequest[];
|
288
293
|
export type FailureCode = "InvalidInput"|"RequestThrottled"|"UnknownError"|string;
|
@@ -292,8 +297,8 @@ declare namespace ConnectCampaigns {
|
|
292
297
|
}
|
293
298
|
export type GetCampaignStateBatchRequestCampaignIdsList = CampaignId[];
|
294
299
|
export interface GetCampaignStateBatchResponse {
|
295
|
-
failedRequests?: FailedCampaignStateResponseList;
|
296
300
|
successfulRequests?: SuccessfulCampaignStateResponseList;
|
301
|
+
failedRequests?: FailedCampaignStateResponseList;
|
297
302
|
}
|
298
303
|
export interface GetCampaignStateRequest {
|
299
304
|
id: CampaignId;
|
@@ -315,30 +320,30 @@ declare namespace ConnectCampaigns {
|
|
315
320
|
}
|
316
321
|
export interface InstanceConfig {
|
317
322
|
connectInstanceId: InstanceId;
|
318
|
-
encryptionConfig: EncryptionConfig;
|
319
323
|
serviceLinkedRoleArn: ServiceLinkedRoleArn;
|
324
|
+
encryptionConfig: EncryptionConfig;
|
320
325
|
}
|
321
326
|
export type InstanceId = string;
|
322
327
|
export interface InstanceIdFilter {
|
323
|
-
operator: InstanceIdFilterOperator;
|
324
328
|
value: InstanceId;
|
329
|
+
operator: InstanceIdFilterOperator;
|
325
330
|
}
|
326
331
|
export type InstanceIdFilterOperator = "Eq"|string;
|
327
332
|
export type InstanceOnboardingJobFailureCode = "EVENT_BRIDGE_ACCESS_DENIED"|"EVENT_BRIDGE_MANAGED_RULE_LIMIT_EXCEEDED"|"IAM_ACCESS_DENIED"|"KMS_ACCESS_DENIED"|"KMS_KEY_NOT_FOUND"|"INTERNAL_FAILURE"|string;
|
328
333
|
export interface InstanceOnboardingJobStatus {
|
329
334
|
connectInstanceId: InstanceId;
|
330
|
-
failureCode?: InstanceOnboardingJobFailureCode;
|
331
335
|
status: InstanceOnboardingJobStatusCode;
|
336
|
+
failureCode?: InstanceOnboardingJobFailureCode;
|
332
337
|
}
|
333
338
|
export type InstanceOnboardingJobStatusCode = "IN_PROGRESS"|"SUCCEEDED"|"FAILED"|string;
|
334
339
|
export interface ListCampaignsRequest {
|
335
|
-
filters?: CampaignFilters;
|
336
340
|
maxResults?: MaxResults;
|
337
341
|
nextToken?: NextToken;
|
342
|
+
filters?: CampaignFilters;
|
338
343
|
}
|
339
344
|
export interface ListCampaignsResponse {
|
340
|
-
campaignSummaryList?: CampaignSummaryList;
|
341
345
|
nextToken?: NextToken;
|
346
|
+
campaignSummaryList?: CampaignSummaryList;
|
342
347
|
}
|
343
348
|
export interface ListTagsForResourceRequest {
|
344
349
|
arn: Arn;
|
@@ -349,27 +354,29 @@ declare namespace ConnectCampaigns {
|
|
349
354
|
export type MaxResults = number;
|
350
355
|
export type NextToken = string;
|
351
356
|
export interface OutboundCallConfig {
|
352
|
-
answerMachineDetectionConfig?: AnswerMachineDetectionConfig;
|
353
357
|
connectContactFlowId: ContactFlowId;
|
354
|
-
connectQueueId: QueueId;
|
355
358
|
connectSourcePhoneNumber?: SourcePhoneNumber;
|
359
|
+
connectQueueId?: QueueId;
|
360
|
+
answerMachineDetectionConfig?: AnswerMachineDetectionConfig;
|
356
361
|
}
|
357
362
|
export interface PauseCampaignRequest {
|
358
363
|
id: CampaignId;
|
359
364
|
}
|
360
365
|
export interface PredictiveDialerConfig {
|
361
366
|
bandwidthAllocation: BandwidthAllocation;
|
367
|
+
dialingCapacity?: DialingCapacity;
|
362
368
|
}
|
363
369
|
export interface ProgressiveDialerConfig {
|
364
370
|
bandwidthAllocation: BandwidthAllocation;
|
371
|
+
dialingCapacity?: DialingCapacity;
|
365
372
|
}
|
366
373
|
export interface PutDialRequestBatchRequest {
|
367
|
-
dialRequests: DialRequestList;
|
368
374
|
id: CampaignId;
|
375
|
+
dialRequests: DialRequestList;
|
369
376
|
}
|
370
377
|
export interface PutDialRequestBatchResponse {
|
371
|
-
failedRequests?: FailedRequestList;
|
372
378
|
successfulRequests?: SuccessfulRequestList;
|
379
|
+
failedRequests?: FailedRequestList;
|
373
380
|
}
|
374
381
|
export type QueueId = string;
|
375
382
|
export interface ResumeCampaignRequest {
|
@@ -414,18 +421,18 @@ declare namespace ConnectCampaigns {
|
|
414
421
|
tagKeys: TagKeyList;
|
415
422
|
}
|
416
423
|
export interface UpdateCampaignDialerConfigRequest {
|
417
|
-
dialerConfig: DialerConfig;
|
418
424
|
id: CampaignId;
|
425
|
+
dialerConfig: DialerConfig;
|
419
426
|
}
|
420
427
|
export interface UpdateCampaignNameRequest {
|
421
428
|
id: CampaignId;
|
422
429
|
name: CampaignName;
|
423
430
|
}
|
424
431
|
export interface UpdateCampaignOutboundCallConfigRequest {
|
425
|
-
|
432
|
+
id: CampaignId;
|
426
433
|
connectContactFlowId?: ContactFlowId;
|
427
434
|
connectSourcePhoneNumber?: SourcePhoneNumber;
|
428
|
-
|
435
|
+
answerMachineDetectionConfig?: AnswerMachineDetectionConfig;
|
429
436
|
}
|
430
437
|
/**
|
431
438
|
* A string in YYYY-MM-DD format that represents the latest possible API version that can be used in this service. Specify 'latest' to use the latest possible version.
|
@@ -27,6 +27,14 @@ declare class ConnectParticipant extends Service {
|
|
27
27
|
* Creates the participant's connection. ParticipantToken is used for invoking this API instead of ConnectionToken. The participant token is valid for the lifetime of the participant – until they are part of a contact. The response URL for WEBSOCKET Type has a connect expiry timeout of 100s. Clients must manually connect to the returned websocket URL and subscribe to the desired topic. For chat, you need to publish the following on the established websocket connection: {"topic":"aws/subscribe","content":{"topics":["aws/chat"]}} Upon websocket URL expiry, as specified in the response ConnectionExpiry parameter, clients need to call this API again to obtain a new websocket URL and perform the same steps as before. Message streaming support: This API can also be used together with the StartContactStreaming API to create a participant connection for chat contacts that are not using a websocket. For more information about message streaming, Enable real-time chat message streaming in the Amazon Connect Administrator Guide. Feature specifications: For information about feature specifications, such as the allowed number of open websocket connections per participant, see Feature specifications in the Amazon Connect Administrator Guide. The Amazon Connect Participant Service APIs do not use Signature Version 4 authentication.
|
28
28
|
*/
|
29
29
|
createParticipantConnection(callback?: (err: AWSError, data: ConnectParticipant.Types.CreateParticipantConnectionResponse) => void): Request<ConnectParticipant.Types.CreateParticipantConnectionResponse, AWSError>;
|
30
|
+
/**
|
31
|
+
* Retrieves the view for the specified view token.
|
32
|
+
*/
|
33
|
+
describeView(params: ConnectParticipant.Types.DescribeViewRequest, callback?: (err: AWSError, data: ConnectParticipant.Types.DescribeViewResponse) => void): Request<ConnectParticipant.Types.DescribeViewResponse, AWSError>;
|
34
|
+
/**
|
35
|
+
* Retrieves the view for the specified view token.
|
36
|
+
*/
|
37
|
+
describeView(callback?: (err: AWSError, data: ConnectParticipant.Types.DescribeViewResponse) => void): Request<ConnectParticipant.Types.DescribeViewResponse, AWSError>;
|
30
38
|
/**
|
31
39
|
* Disconnects a participant. ConnectionToken is used for invoking this API instead of ParticipantToken. The Amazon Connect Participant Service APIs do not use Signature Version 4 authentication.
|
32
40
|
*/
|
@@ -77,6 +85,7 @@ declare class ConnectParticipant extends Service {
|
|
77
85
|
startAttachmentUpload(callback?: (err: AWSError, data: ConnectParticipant.Types.StartAttachmentUploadResponse) => void): Request<ConnectParticipant.Types.StartAttachmentUploadResponse, AWSError>;
|
78
86
|
}
|
79
87
|
declare namespace ConnectParticipant {
|
88
|
+
export type ARN = string;
|
80
89
|
export type ArtifactId = string;
|
81
90
|
export type ArtifactStatus = "APPROVED"|"REJECTED"|"IN_PROGRESS"|string;
|
82
91
|
export type AttachmentIdList = ArtifactId[];
|
@@ -139,7 +148,7 @@ declare namespace ConnectParticipant {
|
|
139
148
|
export type ContentType = string;
|
140
149
|
export interface CreateParticipantConnectionRequest {
|
141
150
|
/**
|
142
|
-
* Type of connection information required.
|
151
|
+
* Type of connection information required. If you need CONNECTION_CREDENTIALS along with marking participant as connected, pass CONNECTION_CREDENTIALS in Type.
|
143
152
|
*/
|
144
153
|
Type?: ConnectionTypeList;
|
145
154
|
/**
|
@@ -161,6 +170,22 @@ declare namespace ConnectParticipant {
|
|
161
170
|
*/
|
162
171
|
ConnectionCredentials?: ConnectionCredentials;
|
163
172
|
}
|
173
|
+
export interface DescribeViewRequest {
|
174
|
+
/**
|
175
|
+
* An encrypted token originating from the interactive message of a ShowView block operation. Represents the desired view.
|
176
|
+
*/
|
177
|
+
ViewToken: ViewToken;
|
178
|
+
/**
|
179
|
+
* The connection token.
|
180
|
+
*/
|
181
|
+
ConnectionToken: ParticipantToken;
|
182
|
+
}
|
183
|
+
export interface DescribeViewResponse {
|
184
|
+
/**
|
185
|
+
* A view resource object. Contains metadata and content necessary to render the view.
|
186
|
+
*/
|
187
|
+
View?: View;
|
188
|
+
}
|
164
189
|
export interface DisconnectParticipantRequest {
|
165
190
|
/**
|
166
191
|
* A unique, case-sensitive identifier that you provide to ensure the idempotency of the request. If not provided, the Amazon Web Services SDK populates this field. For more information about idempotency, see Making retries safe with idempotent APIs.
|
@@ -305,7 +330,7 @@ declare namespace ConnectParticipant {
|
|
305
330
|
export type NextToken = string;
|
306
331
|
export type NonEmptyClientToken = string;
|
307
332
|
export type ParticipantId = string;
|
308
|
-
export type ParticipantRole = "AGENT"|"CUSTOMER"|"SYSTEM"|string;
|
333
|
+
export type ParticipantRole = "AGENT"|"CUSTOMER"|"SYSTEM"|"CUSTOM_BOT"|string;
|
309
334
|
export type ParticipantToken = string;
|
310
335
|
export type PreSignedAttachmentUrl = string;
|
311
336
|
export type PreSignedConnectionUrl = string;
|
@@ -447,6 +472,50 @@ declare namespace ConnectParticipant {
|
|
447
472
|
export type UploadMetadataSignedHeadersKey = string;
|
448
473
|
export type UploadMetadataSignedHeadersValue = string;
|
449
474
|
export type UploadMetadataUrl = string;
|
475
|
+
export interface View {
|
476
|
+
/**
|
477
|
+
* The identifier of the view.
|
478
|
+
*/
|
479
|
+
Id?: ViewId;
|
480
|
+
/**
|
481
|
+
* The Amazon Resource Name (ARN) of the view.
|
482
|
+
*/
|
483
|
+
Arn?: ARN;
|
484
|
+
/**
|
485
|
+
* The name of the view.
|
486
|
+
*/
|
487
|
+
Name?: ViewName;
|
488
|
+
/**
|
489
|
+
* The current version of the view.
|
490
|
+
*/
|
491
|
+
Version?: ViewVersion;
|
492
|
+
/**
|
493
|
+
* View content containing all content necessary to render a view except for runtime input data.
|
494
|
+
*/
|
495
|
+
Content?: ViewContent;
|
496
|
+
}
|
497
|
+
export type ViewAction = string;
|
498
|
+
export type ViewActions = ViewAction[];
|
499
|
+
export interface ViewContent {
|
500
|
+
/**
|
501
|
+
* The schema representing the input data that the view template must be supplied to render.
|
502
|
+
*/
|
503
|
+
InputSchema?: ViewInputSchema;
|
504
|
+
/**
|
505
|
+
* The view template representing the structure of the view.
|
506
|
+
*/
|
507
|
+
Template?: ViewTemplate;
|
508
|
+
/**
|
509
|
+
* A list of actions possible from the view
|
510
|
+
*/
|
511
|
+
Actions?: ViewActions;
|
512
|
+
}
|
513
|
+
export type ViewId = string;
|
514
|
+
export type ViewInputSchema = string;
|
515
|
+
export type ViewName = string;
|
516
|
+
export type ViewTemplate = string;
|
517
|
+
export type ViewToken = string;
|
518
|
+
export type ViewVersion = number;
|
450
519
|
export interface Websocket {
|
451
520
|
/**
|
452
521
|
* The URL of the websocket.
|