cdk-comprehend-s3olap 2.0.131 → 2.0.133

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.
@@ -1,5 +1,17 @@
1
1
  {
2
2
  "pagination": {
3
+ "ListAdminAccountsForOrganization": {
4
+ "input_token": "NextToken",
5
+ "limit_key": "MaxResults",
6
+ "output_token": "NextToken",
7
+ "result_key": "AdminAccounts"
8
+ },
9
+ "ListAdminsManagingAccount": {
10
+ "input_token": "NextToken",
11
+ "limit_key": "MaxResults",
12
+ "output_token": "NextToken",
13
+ "result_key": "AdminAccounts"
14
+ },
3
15
  "ListAppsLists": {
4
16
  "input_token": "NextToken",
5
17
  "limit_key": "MaxResults",
@@ -147,6 +147,14 @@ declare class Connect extends Service {
147
147
  * Creates an Amazon Web Services resource association with an Amazon Connect instance.
148
148
  */
149
149
  createIntegrationAssociation(callback?: (err: AWSError, data: Connect.Types.CreateIntegrationAssociationResponse) => void): Request<Connect.Types.CreateIntegrationAssociationResponse, AWSError>;
150
+ /**
151
+ * Adds a new participant into an on-going chat contact. For more information, see Customize chat flow experiences by integrating custom participants.
152
+ */
153
+ createParticipant(params: Connect.Types.CreateParticipantRequest, callback?: (err: AWSError, data: Connect.Types.CreateParticipantResponse) => void): Request<Connect.Types.CreateParticipantResponse, AWSError>;
154
+ /**
155
+ * Adds a new participant into an on-going chat contact. For more information, see Customize chat flow experiences by integrating custom participants.
156
+ */
157
+ createParticipant(callback?: (err: AWSError, data: Connect.Types.CreateParticipantResponse) => void): Request<Connect.Types.CreateParticipantResponse, AWSError>;
150
158
  /**
151
159
  * This API is in preview release for Amazon Connect and is subject to change. Creates a new queue for the specified Amazon Connect instance. If the number being used in the input is claimed to a traffic distribution group, and you are calling this API using an instance in the Amazon Web Services Region where the traffic distribution group was created, you can use either a full phone number ARN or UUID value for the OutboundCallerIdNumberId value of the OutboundCallerConfig request body parameter. However, if the number is claimed to a traffic distribution group and you are calling this API using an instance in the alternate Amazon Web Services Region associated with the traffic distribution group, you must provide a full phone number ARN. If a UUID is provided in this scenario, you will receive a ResourceNotFoundException.
152
160
  */
@@ -2240,6 +2248,34 @@ declare namespace Connect {
2240
2248
  */
2241
2249
  IntegrationAssociationArn?: ARN;
2242
2250
  }
2251
+ export interface CreateParticipantRequest {
2252
+ /**
2253
+ * The identifier of the Amazon Connect instance. You can find the instance ID in the Amazon Resource Name (ARN) of the instance.
2254
+ */
2255
+ InstanceId: InstanceId;
2256
+ /**
2257
+ * The identifier of the contact in this instance of Amazon Connect. Only contacts in the CHAT channel are supported.
2258
+ */
2259
+ ContactId: ContactId;
2260
+ /**
2261
+ * 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.
2262
+ */
2263
+ ClientToken?: ClientToken;
2264
+ /**
2265
+ * Information identifying the participant. The only Valid value for ParticipantRole is CUSTOM_BOT. DisplayName is Required.
2266
+ */
2267
+ ParticipantDetails: ParticipantDetailsToAdd;
2268
+ }
2269
+ export interface CreateParticipantResponse {
2270
+ /**
2271
+ * The token used by the chat participant to call CreateParticipantConnection. The participant token is valid for the lifetime of a chat participant.
2272
+ */
2273
+ ParticipantCredentials?: ParticipantTokenCredentials;
2274
+ /**
2275
+ * The identifier for a chat participant. The participantId for a chat participant is the same throughout the chat lifecycle.
2276
+ */
2277
+ ParticipantId?: ParticipantId;
2278
+ }
2243
2279
  export interface CreateQueueRequest {
2244
2280
  /**
2245
2281
  * The identifier of the Amazon Connect instance. You can find the instance ID in the Amazon Resource Name (ARN) of the instance.
@@ -4016,6 +4052,7 @@ declare namespace Connect {
4016
4052
  */
4017
4053
  Minutes: MinutesLimit60;
4018
4054
  }
4055
+ export type ISO8601Datetime = string;
4019
4056
  export type InboundCallsEnabled = boolean;
4020
4057
  export interface Instance {
4021
4058
  /**
@@ -5145,7 +5182,7 @@ declare namespace Connect {
5145
5182
  }
5146
5183
  export interface MetricFilterV2 {
5147
5184
  /**
5148
- * The key to use for filtering data. Valid metric filter keys: INITIATION_METHOD, DISCONNECT_REASON
5185
+ * The key to use for filtering data. Valid metric filter keys: INITIATION_METHOD, DISCONNECT_REASON. These are the same values as the InitiationMethod and DisconnectReason in the contact record. For more information, see ContactTraceRecord in the Amazon Connect Administrator's Guide.
5149
5186
  */
5150
5187
  MetricFilterKey?: String;
5151
5188
  /**
@@ -5267,7 +5304,18 @@ declare namespace Connect {
5267
5304
  */
5268
5305
  DisplayName: DisplayName;
5269
5306
  }
5307
+ export interface ParticipantDetailsToAdd {
5308
+ /**
5309
+ * The role of the participant being added.
5310
+ */
5311
+ ParticipantRole?: ParticipantRole;
5312
+ /**
5313
+ * The display name of the participant.
5314
+ */
5315
+ DisplayName?: DisplayName;
5316
+ }
5270
5317
  export type ParticipantId = string;
5318
+ export type ParticipantRole = "AGENT"|"CUSTOMER"|"SYSTEM"|"CUSTOM_BOT"|string;
5271
5319
  export type ParticipantTimerAction = "Unset"|string;
5272
5320
  export type ParticipantTimerConfigList = ParticipantTimerConfiguration[];
5273
5321
  export interface ParticipantTimerConfiguration {
@@ -5297,6 +5345,16 @@ declare namespace Connect {
5297
5345
  ParticipantTimerDurationInMinutes?: ParticipantTimerDurationInMinutes;
5298
5346
  }
5299
5347
  export type ParticipantToken = string;
5348
+ export interface ParticipantTokenCredentials {
5349
+ /**
5350
+ * The token used by the chat participant to call CreateParticipantConnection. The participant token is valid for the lifetime of a chat participant.
5351
+ */
5352
+ ParticipantToken?: ParticipantToken;
5353
+ /**
5354
+ * The expiration of the token. It's specified in ISO 8601 format: yyyy-MM-ddThh:mm:ss.SSSZ. For example, 2019-11-08T02:41:28.172Z.
5355
+ */
5356
+ Expiry?: ISO8601Datetime;
5357
+ }
5300
5358
  export type Password = string;
5301
5359
  export type Percentage = number;
5302
5360
  export type PermissionsList = SecurityProfilePermission[];
@@ -2204,11 +2204,11 @@ declare namespace ECS {
2204
2204
  */
2205
2205
  tmpfs?: TmpfsList;
2206
2206
  /**
2207
- * The total amount of swap memory (in MiB) a container can use. This parameter will be translated to the --memory-swap option to docker run where the value would be the sum of the container memory plus the maxSwap value. If a maxSwap value of 0 is specified, the container will not use swap. Accepted values are 0 or any positive integer. If the maxSwap parameter is omitted, the container will use the swap configuration for the container instance it is running on. A maxSwap value must be set for the swappiness parameter to be used. If you're using tasks that use the Fargate launch type, the maxSwap parameter isn't supported.
2207
+ * The total amount of swap memory (in MiB) a container can use. This parameter will be translated to the --memory-swap option to docker run where the value would be the sum of the container memory plus the maxSwap value. If a maxSwap value of 0 is specified, the container will not use swap. Accepted values are 0 or any positive integer. If the maxSwap parameter is omitted, the container will use the swap configuration for the container instance it is running on. A maxSwap value must be set for the swappiness parameter to be used. If you're using tasks that use the Fargate launch type, the maxSwap parameter isn't supported. If you're using tasks on Amazon Linux 2023 the swappiness parameter isn't supported.
2208
2208
  */
2209
2209
  maxSwap?: BoxedInteger;
2210
2210
  /**
2211
- * This allows you to tune a container's memory swappiness behavior. A swappiness value of 0 will cause swapping to not happen unless absolutely necessary. A swappiness value of 100 will cause pages to be swapped very aggressively. Accepted values are whole numbers between 0 and 100. If the swappiness parameter is not specified, a default value of 60 is used. If a value is not specified for maxSwap then this parameter is ignored. This parameter maps to the --memory-swappiness option to docker run. If you're using tasks that use the Fargate launch type, the swappiness parameter isn't supported.
2211
+ * This allows you to tune a container's memory swappiness behavior. A swappiness value of 0 will cause swapping to not happen unless absolutely necessary. A swappiness value of 100 will cause pages to be swapped very aggressively. Accepted values are whole numbers between 0 and 100. If the swappiness parameter is not specified, a default value of 60 is used. If a value is not specified for maxSwap then this parameter is ignored. This parameter maps to the --memory-swappiness option to docker run. If you're using tasks that use the Fargate launch type, the swappiness parameter isn't supported. If you're using tasks on Amazon Linux 2023 the swappiness parameter isn't supported.
2212
2212
  */
2213
2213
  swappiness?: BoxedInteger;
2214
2214
  }