cdk-comprehend-s3olap 2.0.84 → 2.0.87

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.
Files changed (48) hide show
  1. package/.jsii +4 -4
  2. package/lib/cdk-comprehend-s3olap.js +2 -2
  3. package/lib/comprehend-lambdas.js +2 -2
  4. package/lib/iam-roles.js +4 -4
  5. package/node_modules/aws-sdk/CHANGELOG.md +16 -1
  6. package/node_modules/aws-sdk/README.md +1 -1
  7. package/node_modules/aws-sdk/apis/cognito-idp-2016-04-18.min.json +60 -51
  8. package/node_modules/aws-sdk/apis/connect-2017-08-08.min.json +275 -134
  9. package/node_modules/aws-sdk/apis/connect-2017-08-08.paginators.json +18 -0
  10. package/node_modules/aws-sdk/apis/controltower-2018-05-10.examples.json +5 -0
  11. package/node_modules/aws-sdk/apis/controltower-2018-05-10.min.json +148 -0
  12. package/node_modules/aws-sdk/apis/controltower-2018-05-10.paginators.json +10 -0
  13. package/node_modules/aws-sdk/apis/identitystore-2020-06-15.min.json +732 -15
  14. package/node_modules/aws-sdk/apis/identitystore-2020-06-15.paginators.json +16 -2
  15. package/node_modules/aws-sdk/apis/iotthingsgraph-2018-09-06.min.json +105 -35
  16. package/node_modules/aws-sdk/apis/ivs-2020-07-14.min.json +25 -19
  17. package/node_modules/aws-sdk/apis/mediapackage-2017-10-12.min.json +57 -54
  18. package/node_modules/aws-sdk/apis/metadata.json +3 -0
  19. package/node_modules/aws-sdk/apis/rds-data-2018-08-01.min.json +132 -132
  20. package/node_modules/aws-sdk/apis/sagemaker-2017-07-24.min.json +590 -564
  21. package/node_modules/aws-sdk/clients/all.d.ts +1 -0
  22. package/node_modules/aws-sdk/clients/all.js +2 -1
  23. package/node_modules/aws-sdk/clients/cloudfront.d.ts +7 -7
  24. package/node_modules/aws-sdk/clients/codegurureviewer.d.ts +134 -134
  25. package/node_modules/aws-sdk/clients/cognitoidentityserviceprovider.d.ts +24 -11
  26. package/node_modules/aws-sdk/clients/connect.d.ts +144 -10
  27. package/node_modules/aws-sdk/clients/controltower.d.ts +169 -0
  28. package/node_modules/aws-sdk/clients/controltower.js +18 -0
  29. package/node_modules/aws-sdk/clients/identitystore.d.ts +806 -22
  30. package/node_modules/aws-sdk/clients/iotthingsgraph.d.ts +2 -2
  31. package/node_modules/aws-sdk/clients/ivs.d.ts +9 -0
  32. package/node_modules/aws-sdk/clients/mediapackage.d.ts +2 -0
  33. package/node_modules/aws-sdk/clients/rdsdataservice.d.ts +130 -130
  34. package/node_modules/aws-sdk/clients/route53.d.ts +1 -1
  35. package/node_modules/aws-sdk/clients/sagemaker.d.ts +72 -17
  36. package/node_modules/aws-sdk/dist/aws-sdk-core-react-native.js +2 -2
  37. package/node_modules/aws-sdk/dist/aws-sdk-react-native.js +51 -14
  38. package/node_modules/aws-sdk/dist/aws-sdk.js +359 -188
  39. package/node_modules/aws-sdk/dist/aws-sdk.min.js +79 -79
  40. package/node_modules/aws-sdk/lib/config_service_placeholders.d.ts +2 -0
  41. package/node_modules/aws-sdk/lib/core.js +1 -1
  42. package/node_modules/aws-sdk/package.json +1 -1
  43. package/node_modules/es-abstract/2020/SameValueNonNumeric.js +1 -1
  44. package/node_modules/es-abstract/2021/SameValueNonNumeric.js +1 -1
  45. package/node_modules/es-abstract/2022/SameValueNonNumeric.js +1 -1
  46. package/node_modules/es-abstract/CHANGELOG.md +8 -0
  47. package/node_modules/es-abstract/package.json +9 -8
  48. package/package.json +10 -9
@@ -1575,6 +1575,7 @@ declare namespace CognitoIdentityServiceProvider {
1575
1575
  export type AuthEventsType = AuthEventType[];
1576
1576
  export type AuthFlowType = "USER_SRP_AUTH"|"REFRESH_TOKEN_AUTH"|"REFRESH_TOKEN"|"CUSTOM_AUTH"|"ADMIN_NO_SRP_AUTH"|"USER_PASSWORD_AUTH"|"ADMIN_USER_PASSWORD_AUTH"|string;
1577
1577
  export type AuthParametersType = {[key: string]: StringType};
1578
+ export type AuthSessionValidityType = number;
1578
1579
  export interface AuthenticationResultType {
1579
1580
  /**
1580
1581
  * A valid access token that Amazon Cognito issued to the user who you want to authenticate.
@@ -1985,6 +1986,10 @@ declare namespace CognitoIdentityServiceProvider {
1985
1986
  * Activates the propagation of additional user context data. For more information about propagation of user context data, see Adding advanced security to a user pool. If you don’t include this parameter, you can't send device fingerprint information, including source IP address, to Amazon Cognito advanced security. You can only activate EnablePropagateAdditionalUserContextData in an app client that has a client secret.
1986
1987
  */
1987
1988
  EnablePropagateAdditionalUserContextData?: WrappedBooleanType;
1989
+ /**
1990
+ * Amazon Cognito creates a session token for each API request in an authentication flow. AuthSessionValidity is the duration, in minutes, of that session token. Your user pool native user must respond to each authentication challenge before the session expires.
1991
+ */
1992
+ AuthSessionValidity?: AuthSessionValidityType;
1988
1993
  }
1989
1994
  export interface CreateUserPoolClientResponse {
1990
1995
  /**
@@ -2038,15 +2043,15 @@ declare namespace CognitoIdentityServiceProvider {
2038
2043
  */
2039
2044
  UsernameAttributes?: UsernameAttributesListType;
2040
2045
  /**
2041
- * A string representing the SMS verification message.
2046
+ * This parameter is no longer used. See VerificationMessageTemplateType.
2042
2047
  */
2043
2048
  SmsVerificationMessage?: SmsVerificationMessageType;
2044
2049
  /**
2045
- * A string representing the email verification message. EmailVerificationMessage is allowed only if EmailSendingAccount is DEVELOPER.
2050
+ * This parameter is no longer used. See VerificationMessageTemplateType.
2046
2051
  */
2047
2052
  EmailVerificationMessage?: EmailVerificationMessageType;
2048
2053
  /**
2049
- * A string representing the email verification subject. EmailVerificationSubject is allowed only if EmailSendingAccount is DEVELOPER.
2054
+ * This parameter is no longer used. See VerificationMessageTemplateType.
2050
2055
  */
2051
2056
  EmailVerificationSubject?: EmailVerificationSubjectType;
2052
2057
  /**
@@ -2325,11 +2330,11 @@ declare namespace CognitoIdentityServiceProvider {
2325
2330
  export type DescriptionType = string;
2326
2331
  export interface DeviceConfigurationType {
2327
2332
  /**
2328
- * When true, device authentication can replace SMS and time-based one-time password (TOTP) factors for multi-factor authentication (MFA). Regardless of the value of this field, users that sign in with new devices that have not been confirmed or remembered must provide a second factor if your user pool requires MFA.
2333
+ * When true, a remembered device can sign in with device authentication instead of SMS and time-based one-time password (TOTP) factors for multi-factor authentication (MFA). Whether or not ChallengeRequiredOnNewDevice is true, users who sign in with devices that have not been confirmed or remembered must still provide a second factor in a user pool that requires MFA.
2329
2334
  */
2330
2335
  ChallengeRequiredOnNewDevice?: BooleanType;
2331
2336
  /**
2332
- * When true, Amazon Cognito doesn't remember newly-confirmed devices. Users who want to authenticate with their device can instead opt in to remembering their device. To collect a choice from your user, create an input prompt in your app and return the value that the user chooses in an UpdateDeviceStatus API request.
2337
+ * When true, Amazon Cognito doesn't automatically remember a user's device when your app sends a ConfirmDevice API request. In your app, create a prompt for your user to choose whether they want to remember their device. Return the user's choice in an UpdateDeviceStatus API request. When DeviceOnlyRememberedOnUserPrompt is false, Amazon Cognito immediately remembers devices that you register in a ConfirmDevice API request.
2333
2338
  */
2334
2339
  DeviceOnlyRememberedOnUserPrompt?: BooleanType;
2335
2340
  }
@@ -4074,6 +4079,10 @@ declare namespace CognitoIdentityServiceProvider {
4074
4079
  * Activates the propagation of additional user context data. For more information about propagation of user context data, see Adding advanced security to a user pool. If you don’t include this parameter, you can't send device fingerprint information, including source IP address, to Amazon Cognito advanced security. You can only activate EnablePropagateAdditionalUserContextData in an app client that has a client secret.
4075
4080
  */
4076
4081
  EnablePropagateAdditionalUserContextData?: WrappedBooleanType;
4082
+ /**
4083
+ * Amazon Cognito creates a session token for each API request in an authentication flow. AuthSessionValidity is the duration, in minutes, of that session token. Your user pool native user must respond to each authentication challenge before the session expires.
4084
+ */
4085
+ AuthSessionValidity?: AuthSessionValidityType;
4077
4086
  }
4078
4087
  export interface UpdateUserPoolClientResponse {
4079
4088
  /**
@@ -4119,15 +4128,15 @@ declare namespace CognitoIdentityServiceProvider {
4119
4128
  */
4120
4129
  AutoVerifiedAttributes?: VerifiedAttributesListType;
4121
4130
  /**
4122
- * A container with information about the SMS verification message.
4131
+ * This parameter is no longer used. See VerificationMessageTemplateType.
4123
4132
  */
4124
4133
  SmsVerificationMessage?: SmsVerificationMessageType;
4125
4134
  /**
4126
- * The contents of the email verification message.
4135
+ * This parameter is no longer used. See VerificationMessageTemplateType.
4127
4136
  */
4128
4137
  EmailVerificationMessage?: EmailVerificationMessageType;
4129
4138
  /**
4130
- * The subject of the email verification message.
4139
+ * This parameter is no longer used. See VerificationMessageTemplateType.
4131
4140
  */
4132
4141
  EmailVerificationSubject?: EmailVerificationSubjectType;
4133
4142
  /**
@@ -4371,6 +4380,10 @@ declare namespace CognitoIdentityServiceProvider {
4371
4380
  * When EnablePropagateAdditionalUserContextData is true, Amazon Cognito accepts an IpAddress value that you send in the UserContextData parameter. The UserContextData parameter sends information to Amazon Cognito advanced security for risk analysis. You can send UserContextData when you sign in Amazon Cognito native users with the InitiateAuth and RespondToAuthChallenge API operations. When EnablePropagateAdditionalUserContextData is false, you can't send your user's source IP address to Amazon Cognito advanced security with unauthenticated API operations. EnablePropagateAdditionalUserContextData doesn't affect whether you can send a source IP address in a ContextData parameter with the authenticated API operations AdminInitiateAuth and AdminRespondToAuthChallenge. You can only activate EnablePropagateAdditionalUserContextData in an app client that has a client secret. For more information about propagation of user context data, see Adding user device and session data to API requests.
4372
4381
  */
4373
4382
  EnablePropagateAdditionalUserContextData?: WrappedBooleanType;
4383
+ /**
4384
+ * Amazon Cognito creates a session token for each API request in an authentication flow. AuthSessionValidity is the duration, in minutes, of that session token. Your user pool native user must respond to each authentication challenge before the session expires.
4385
+ */
4386
+ AuthSessionValidity?: AuthSessionValidityType;
4374
4387
  }
4375
4388
  export interface UserPoolDescriptionType {
4376
4389
  /**
@@ -4456,15 +4469,15 @@ declare namespace CognitoIdentityServiceProvider {
4456
4469
  */
4457
4470
  UsernameAttributes?: UsernameAttributesListType;
4458
4471
  /**
4459
- * The contents of the SMS verification message.
4472
+ * This parameter is no longer used. See VerificationMessageTemplateType.
4460
4473
  */
4461
4474
  SmsVerificationMessage?: SmsVerificationMessageType;
4462
4475
  /**
4463
- * The contents of the email verification message.
4476
+ * This parameter is no longer used. See VerificationMessageTemplateType.
4464
4477
  */
4465
4478
  EmailVerificationMessage?: EmailVerificationMessageType;
4466
4479
  /**
4467
- * The subject of the email verification message.
4480
+ * This parameter is no longer used. See VerificationMessageTemplateType.
4468
4481
  */
4469
4482
  EmailVerificationSubject?: EmailVerificationSubjectType;
4470
4483
  /**
@@ -324,11 +324,11 @@ declare class Connect extends Service {
324
324
  */
325
325
  describeAgentStatus(callback?: (err: AWSError, data: Connect.Types.DescribeAgentStatusResponse) => void): Request<Connect.Types.DescribeAgentStatusResponse, AWSError>;
326
326
  /**
327
- * This API is in preview release for Amazon Connect and is subject to change. Describes the specified contact. Contact information remains available in Amazon Connect for 24 months, and then it is deleted.
327
+ * This API is in preview release for Amazon Connect and is subject to change. Describes the specified contact. Contact information remains available in Amazon Connect for 24 months, and then it is deleted. Only data from November 12, 2021, and later is returned by this API.
328
328
  */
329
329
  describeContact(params: Connect.Types.DescribeContactRequest, callback?: (err: AWSError, data: Connect.Types.DescribeContactResponse) => void): Request<Connect.Types.DescribeContactResponse, AWSError>;
330
330
  /**
331
- * This API is in preview release for Amazon Connect and is subject to change. Describes the specified contact. Contact information remains available in Amazon Connect for 24 months, and then it is deleted.
331
+ * This API is in preview release for Amazon Connect and is subject to change. Describes the specified contact. Contact information remains available in Amazon Connect for 24 months, and then it is deleted. Only data from November 12, 2021, and later is returned by this API.
332
332
  */
333
333
  describeContact(callback?: (err: AWSError, data: Connect.Types.DescribeContactResponse) => void): Request<Connect.Types.DescribeContactResponse, AWSError>;
334
334
  /**
@@ -588,11 +588,11 @@ declare class Connect extends Service {
588
588
  */
589
589
  listApprovedOrigins(callback?: (err: AWSError, data: Connect.Types.ListApprovedOriginsResponse) => void): Request<Connect.Types.ListApprovedOriginsResponse, AWSError>;
590
590
  /**
591
- * This API is in preview release for Amazon Connect and is subject to change. For the specified version of Amazon Lex, returns a paginated list of all the Amazon Lex bots currently associated with the instance.
591
+ * This API is in preview release for Amazon Connect and is subject to change. For the specified version of Amazon Lex, returns a paginated list of all the Amazon Lex bots currently associated with the instance. Use this API to returns both Amazon Lex V1 and V2 bots.
592
592
  */
593
593
  listBots(params: Connect.Types.ListBotsRequest, callback?: (err: AWSError, data: Connect.Types.ListBotsResponse) => void): Request<Connect.Types.ListBotsResponse, AWSError>;
594
594
  /**
595
- * This API is in preview release for Amazon Connect and is subject to change. For the specified version of Amazon Lex, returns a paginated list of all the Amazon Lex bots currently associated with the instance.
595
+ * This API is in preview release for Amazon Connect and is subject to change. For the specified version of Amazon Lex, returns a paginated list of all the Amazon Lex bots currently associated with the instance. Use this API to returns both Amazon Lex V1 and V2 bots.
596
596
  */
597
597
  listBots(callback?: (err: AWSError, data: Connect.Types.ListBotsResponse) => void): Request<Connect.Types.ListBotsResponse, AWSError>;
598
598
  /**
@@ -676,11 +676,11 @@ declare class Connect extends Service {
676
676
  */
677
677
  listLambdaFunctions(callback?: (err: AWSError, data: Connect.Types.ListLambdaFunctionsResponse) => void): Request<Connect.Types.ListLambdaFunctionsResponse, AWSError>;
678
678
  /**
679
- * This API is in preview release for Amazon Connect and is subject to change. Returns a paginated list of all the Amazon Lex bots currently associated with the instance.
679
+ * This API is in preview release for Amazon Connect and is subject to change. Returns a paginated list of all the Amazon Lex V1 bots currently associated with the instance. To return both Amazon Lex V1 and V2 bots, use the ListBots API.
680
680
  */
681
681
  listLexBots(params: Connect.Types.ListLexBotsRequest, callback?: (err: AWSError, data: Connect.Types.ListLexBotsResponse) => void): Request<Connect.Types.ListLexBotsResponse, AWSError>;
682
682
  /**
683
- * This API is in preview release for Amazon Connect and is subject to change. Returns a paginated list of all the Amazon Lex bots currently associated with the instance.
683
+ * This API is in preview release for Amazon Connect and is subject to change. Returns a paginated list of all the Amazon Lex V1 bots currently associated with the instance. To return both Amazon Lex V1 and V2 bots, use the ListBots API.
684
684
  */
685
685
  listLexBots(callback?: (err: AWSError, data: Connect.Types.ListLexBotsResponse) => void): Request<Connect.Types.ListLexBotsResponse, AWSError>;
686
686
  /**
@@ -843,6 +843,22 @@ declare class Connect extends Service {
843
843
  * Searches for available phone numbers that you can claim to your Amazon Connect instance.
844
844
  */
845
845
  searchAvailablePhoneNumbers(callback?: (err: AWSError, data: Connect.Types.SearchAvailablePhoneNumbersResponse) => void): Request<Connect.Types.SearchAvailablePhoneNumbersResponse, AWSError>;
846
+ /**
847
+ * This API is in preview release for Amazon Connect and is subject to change. Searches queues in an Amazon Connect instance, with optional filtering.
848
+ */
849
+ searchQueues(params: Connect.Types.SearchQueuesRequest, callback?: (err: AWSError, data: Connect.Types.SearchQueuesResponse) => void): Request<Connect.Types.SearchQueuesResponse, AWSError>;
850
+ /**
851
+ * This API is in preview release for Amazon Connect and is subject to change. Searches queues in an Amazon Connect instance, with optional filtering.
852
+ */
853
+ searchQueues(callback?: (err: AWSError, data: Connect.Types.SearchQueuesResponse) => void): Request<Connect.Types.SearchQueuesResponse, AWSError>;
854
+ /**
855
+ * This API is in preview release for Amazon Connect and is subject to change. Searches routing profiles in an Amazon Connect instance, with optional filtering.
856
+ */
857
+ searchRoutingProfiles(params: Connect.Types.SearchRoutingProfilesRequest, callback?: (err: AWSError, data: Connect.Types.SearchRoutingProfilesResponse) => void): Request<Connect.Types.SearchRoutingProfilesResponse, AWSError>;
858
+ /**
859
+ * This API is in preview release for Amazon Connect and is subject to change. Searches routing profiles in an Amazon Connect instance, with optional filtering.
860
+ */
861
+ searchRoutingProfiles(callback?: (err: AWSError, data: Connect.Types.SearchRoutingProfilesResponse) => void): Request<Connect.Types.SearchRoutingProfilesResponse, AWSError>;
846
862
  /**
847
863
  * This API is in preview release for Amazon Connect and is subject to change. Searches security profiles in an Amazon Connect instance, with optional filtering.
848
864
  */
@@ -2188,7 +2204,7 @@ declare namespace Connect {
2188
2204
  */
2189
2205
  Description?: SecurityProfileDescription;
2190
2206
  /**
2191
- * Permissions assigned to the security profile.
2207
+ * Permissions assigned to the security profile. For a list of valid permissions, see List of security profile permissions.
2192
2208
  */
2193
2209
  Permissions?: PermissionsList;
2194
2210
  /**
@@ -4432,7 +4448,7 @@ declare namespace Connect {
4432
4448
  }
4433
4449
  export interface ListSecurityProfilePermissionsResponse {
4434
4450
  /**
4435
- * The permissions granted to the security profile.
4451
+ * The permissions granted to the security profile. For a complete list of valid permissions, see List of security profile permissions.
4436
4452
  */
4437
4453
  Permissions?: PermissionsList;
4438
4454
  /**
@@ -4584,6 +4600,7 @@ declare namespace Connect {
4584
4600
  */
4585
4601
  NextToken?: NextToken;
4586
4602
  }
4603
+ export type Long = number;
4587
4604
  export type MaxResult10 = number;
4588
4605
  export type MaxResult100 = number;
4589
4606
  export type MaxResult1000 = number;
@@ -4801,6 +4818,26 @@ declare namespace Connect {
4801
4818
  */
4802
4819
  Arn?: ARN;
4803
4820
  }
4821
+ export type QueueSearchConditionList = QueueSearchCriteria[];
4822
+ export interface QueueSearchCriteria {
4823
+ /**
4824
+ * A list of conditions which would be applied together with an OR condition.
4825
+ */
4826
+ OrConditions?: QueueSearchConditionList;
4827
+ /**
4828
+ * A list of conditions which would be applied together with an AND condition.
4829
+ */
4830
+ AndConditions?: QueueSearchConditionList;
4831
+ StringCondition?: StringCondition;
4832
+ /**
4833
+ * The type of queue.
4834
+ */
4835
+ QueueTypeCondition?: SearchableQueueType;
4836
+ }
4837
+ export interface QueueSearchFilter {
4838
+ TagFilter?: ControlPlaneTagFilter;
4839
+ }
4840
+ export type QueueSearchSummaryList = Queue[];
4804
4841
  export type QueueStatus = "ENABLED"|"DISABLED"|string;
4805
4842
  export interface QueueSummary {
4806
4843
  /**
@@ -5008,9 +5045,18 @@ declare namespace Connect {
5008
5045
  * The tags used to organize, track, or control access for this resource. For example, { "tags": {"key1":"value1", "key2":"value2"} }.
5009
5046
  */
5010
5047
  Tags?: TagMap;
5048
+ /**
5049
+ * The number of associated queues in routing profile.
5050
+ */
5051
+ NumberOfAssociatedQueues?: Long;
5052
+ /**
5053
+ * The number of associated users in routing profile.
5054
+ */
5055
+ NumberOfAssociatedUsers?: Long;
5011
5056
  }
5012
5057
  export type RoutingProfileDescription = string;
5013
5058
  export type RoutingProfileId = string;
5059
+ export type RoutingProfileList = RoutingProfile[];
5014
5060
  export type RoutingProfileName = string;
5015
5061
  export interface RoutingProfileQueueConfig {
5016
5062
  /**
@@ -5075,6 +5121,21 @@ declare namespace Connect {
5075
5121
  */
5076
5122
  Arn?: ARN;
5077
5123
  }
5124
+ export type RoutingProfileSearchConditionList = RoutingProfileSearchCriteria[];
5125
+ export interface RoutingProfileSearchCriteria {
5126
+ /**
5127
+ * A list of conditions which would be applied together with an OR condition.
5128
+ */
5129
+ OrConditions?: RoutingProfileSearchConditionList;
5130
+ /**
5131
+ * A list of conditions which would be applied together with an AND condition.
5132
+ */
5133
+ AndConditions?: RoutingProfileSearchConditionList;
5134
+ StringCondition?: StringCondition;
5135
+ }
5136
+ export interface RoutingProfileSearchFilter {
5137
+ TagFilter?: ControlPlaneTagFilter;
5138
+ }
5078
5139
  export interface RoutingProfileSummary {
5079
5140
  /**
5080
5141
  * The identifier of the routing profile.
@@ -5140,6 +5201,78 @@ declare namespace Connect {
5140
5201
  */
5141
5202
  AvailableNumbersList?: AvailableNumbersList;
5142
5203
  }
5204
+ export interface SearchQueuesRequest {
5205
+ /**
5206
+ * The identifier of the Amazon Connect instance. You can find the instanceId in the ARN of the instance.
5207
+ */
5208
+ InstanceId: InstanceId;
5209
+ /**
5210
+ * The token for the next set of results. Use the value returned in the previous response in the next request to retrieve the next set of results.
5211
+ */
5212
+ NextToken?: NextToken2500;
5213
+ /**
5214
+ * The maximum number of results to return per page.
5215
+ */
5216
+ MaxResults?: MaxResult100;
5217
+ /**
5218
+ * Filters to be applied to search results.
5219
+ */
5220
+ SearchFilter?: QueueSearchFilter;
5221
+ /**
5222
+ * The search criteria to be used to return queues.
5223
+ */
5224
+ SearchCriteria?: QueueSearchCriteria;
5225
+ }
5226
+ export interface SearchQueuesResponse {
5227
+ /**
5228
+ * Information about the queues.
5229
+ */
5230
+ Queues?: QueueSearchSummaryList;
5231
+ /**
5232
+ * If there are additional results, this is the token for the next set of results.
5233
+ */
5234
+ NextToken?: NextToken2500;
5235
+ /**
5236
+ * The total number of queues which matched your search query.
5237
+ */
5238
+ ApproximateTotalCount?: ApproximateTotalCount;
5239
+ }
5240
+ export interface SearchRoutingProfilesRequest {
5241
+ /**
5242
+ * The identifier of the Amazon Connect instance. You can find the instanceId in the ARN of the instance.
5243
+ */
5244
+ InstanceId: InstanceId;
5245
+ /**
5246
+ * The token for the next set of results. Use the value returned in the previous response in the next request to retrieve the next set of results.
5247
+ */
5248
+ NextToken?: NextToken2500;
5249
+ /**
5250
+ * The maximum number of results to return per page.
5251
+ */
5252
+ MaxResults?: MaxResult100;
5253
+ /**
5254
+ * Filters to be applied to search results.
5255
+ */
5256
+ SearchFilter?: RoutingProfileSearchFilter;
5257
+ /**
5258
+ * The search criteria to be used to return routing profiles.
5259
+ */
5260
+ SearchCriteria?: RoutingProfileSearchCriteria;
5261
+ }
5262
+ export interface SearchRoutingProfilesResponse {
5263
+ /**
5264
+ * Information about the routing profiles.
5265
+ */
5266
+ RoutingProfiles?: RoutingProfileList;
5267
+ /**
5268
+ * If there are additional results, this is the token for the next set of results.
5269
+ */
5270
+ NextToken?: NextToken2500;
5271
+ /**
5272
+ * The total number of routing profiles which matched your search query.
5273
+ */
5274
+ ApproximateTotalCount?: ApproximateTotalCount;
5275
+ }
5143
5276
  export interface SearchSecurityProfilesRequest {
5144
5277
  /**
5145
5278
  * The identifier of the Amazon Connect instance. You can find the instanceId in the ARN of the instance.
@@ -5245,6 +5378,7 @@ declare namespace Connect {
5245
5378
  */
5246
5379
  NextToken?: VocabularyNextToken;
5247
5380
  }
5381
+ export type SearchableQueueType = "STANDARD"|string;
5248
5382
  export interface SecurityKey {
5249
5383
  /**
5250
5384
  * The existing association identifier that uniquely identifies the resource type and storage config for the given instance ID.
@@ -5892,7 +6026,7 @@ declare namespace Connect {
5892
6026
  */
5893
6027
  ContactFlowId: ContactFlowId;
5894
6028
  /**
5895
- * TThe name of the flow.
6029
+ * The name of the flow.
5896
6030
  */
5897
6031
  Name?: ContactFlowName;
5898
6032
  /**
@@ -6255,7 +6389,7 @@ declare namespace Connect {
6255
6389
  */
6256
6390
  Description?: SecurityProfileDescription;
6257
6391
  /**
6258
- * The permissions granted to a security profile.
6392
+ * The permissions granted to a security profile. For a list of valid permissions, see List of security profile permissions.
6259
6393
  */
6260
6394
  Permissions?: PermissionsList;
6261
6395
  /**
@@ -0,0 +1,169 @@
1
+ import {Request} from '../lib/request';
2
+ import {Response} from '../lib/response';
3
+ import {AWSError} from '../lib/error';
4
+ import {Service} from '../lib/service';
5
+ import {ServiceConfigurationOptions} from '../lib/service';
6
+ import {ConfigBase as Config} from '../lib/config-base';
7
+ interface Blob {}
8
+ declare class ControlTower extends Service {
9
+ /**
10
+ * Constructs a service object. This object has one method for each API operation.
11
+ */
12
+ constructor(options?: ControlTower.Types.ClientConfiguration)
13
+ config: Config & ControlTower.Types.ClientConfiguration;
14
+ /**
15
+ * This API call turns off a control. It starts an asynchronous operation that deletes AWS resources on the specified organizational unit and the accounts it contains. The resources will vary according to the control that you specify.
16
+ */
17
+ disableControl(params: ControlTower.Types.DisableControlInput, callback?: (err: AWSError, data: ControlTower.Types.DisableControlOutput) => void): Request<ControlTower.Types.DisableControlOutput, AWSError>;
18
+ /**
19
+ * This API call turns off a control. It starts an asynchronous operation that deletes AWS resources on the specified organizational unit and the accounts it contains. The resources will vary according to the control that you specify.
20
+ */
21
+ disableControl(callback?: (err: AWSError, data: ControlTower.Types.DisableControlOutput) => void): Request<ControlTower.Types.DisableControlOutput, AWSError>;
22
+ /**
23
+ * This API call activates a control. It starts an asynchronous operation that creates AWS resources on the specified organizational unit and the accounts it contains. The resources created will vary according to the control that you specify.
24
+ */
25
+ enableControl(params: ControlTower.Types.EnableControlInput, callback?: (err: AWSError, data: ControlTower.Types.EnableControlOutput) => void): Request<ControlTower.Types.EnableControlOutput, AWSError>;
26
+ /**
27
+ * This API call activates a control. It starts an asynchronous operation that creates AWS resources on the specified organizational unit and the accounts it contains. The resources created will vary according to the control that you specify.
28
+ */
29
+ enableControl(callback?: (err: AWSError, data: ControlTower.Types.EnableControlOutput) => void): Request<ControlTower.Types.EnableControlOutput, AWSError>;
30
+ /**
31
+ * Returns the status of a particular EnableControl or DisableControl operation. Displays a message in case of error. Details for an operation are available for 90 days.
32
+ */
33
+ getControlOperation(params: ControlTower.Types.GetControlOperationInput, callback?: (err: AWSError, data: ControlTower.Types.GetControlOperationOutput) => void): Request<ControlTower.Types.GetControlOperationOutput, AWSError>;
34
+ /**
35
+ * Returns the status of a particular EnableControl or DisableControl operation. Displays a message in case of error. Details for an operation are available for 90 days.
36
+ */
37
+ getControlOperation(callback?: (err: AWSError, data: ControlTower.Types.GetControlOperationOutput) => void): Request<ControlTower.Types.GetControlOperationOutput, AWSError>;
38
+ /**
39
+ * Lists the controls enabled by AWS Control Tower on the specified organizational unit and the accounts it contains.
40
+ */
41
+ listEnabledControls(params: ControlTower.Types.ListEnabledControlsInput, callback?: (err: AWSError, data: ControlTower.Types.ListEnabledControlsOutput) => void): Request<ControlTower.Types.ListEnabledControlsOutput, AWSError>;
42
+ /**
43
+ * Lists the controls enabled by AWS Control Tower on the specified organizational unit and the accounts it contains.
44
+ */
45
+ listEnabledControls(callback?: (err: AWSError, data: ControlTower.Types.ListEnabledControlsOutput) => void): Request<ControlTower.Types.ListEnabledControlsOutput, AWSError>;
46
+ }
47
+ declare namespace ControlTower {
48
+ export type ControlIdentifier = string;
49
+ export interface ControlOperation {
50
+ /**
51
+ * The time that the operation finished.
52
+ */
53
+ endTime?: SyntheticTimestamp_date_time;
54
+ /**
55
+ * One of ENABLE_CONTROL or DISABLE_CONTROL.
56
+ */
57
+ operationType?: ControlOperationType;
58
+ /**
59
+ * The time that the operation began.
60
+ */
61
+ startTime?: SyntheticTimestamp_date_time;
62
+ /**
63
+ * One of IN_PROGRESS, SUCEEDED, or FAILED.
64
+ */
65
+ status?: ControlOperationStatus;
66
+ /**
67
+ * If the operation result is FAILED, this string contains a message explaining why the operation failed.
68
+ */
69
+ statusMessage?: String;
70
+ }
71
+ export type ControlOperationStatus = "SUCCEEDED"|"FAILED"|"IN_PROGRESS"|string;
72
+ export type ControlOperationType = "ENABLE_CONTROL"|"DISABLE_CONTROL"|string;
73
+ export interface DisableControlInput {
74
+ /**
75
+ * The ARN of the control. Only Strongly recommended and Elective controls are permitted, with the exception of the Region deny guardrail.
76
+ */
77
+ controlIdentifier: ControlIdentifier;
78
+ /**
79
+ * The ARN of the organizational unit.
80
+ */
81
+ targetIdentifier: TargetIdentifier;
82
+ }
83
+ export interface DisableControlOutput {
84
+ /**
85
+ * The ID of the asynchronous operation, which is used to track status. The operation is available for 90 days.
86
+ */
87
+ operationIdentifier: OperationIdentifier;
88
+ }
89
+ export interface EnableControlInput {
90
+ /**
91
+ * The ARN of the control. Only Strongly recommended and Elective controls are permitted, with the exception of the Region deny guardrail.
92
+ */
93
+ controlIdentifier: ControlIdentifier;
94
+ /**
95
+ * The ARN of the organizational unit.
96
+ */
97
+ targetIdentifier: TargetIdentifier;
98
+ }
99
+ export interface EnableControlOutput {
100
+ /**
101
+ * The ID of the asynchronous operation, which is used to track status. The operation is available for 90 days.
102
+ */
103
+ operationIdentifier: OperationIdentifier;
104
+ }
105
+ export interface EnabledControlSummary {
106
+ /**
107
+ * The ARN of the control. Only Strongly recommended and Elective controls are permitted, with the exception of the Region deny guardrail.
108
+ */
109
+ controlIdentifier?: ControlIdentifier;
110
+ }
111
+ export type EnabledControls = EnabledControlSummary[];
112
+ export interface GetControlOperationInput {
113
+ /**
114
+ * The ID of the asynchronous operation, which is used to track status. The operation is available for 90 days.
115
+ */
116
+ operationIdentifier: OperationIdentifier;
117
+ }
118
+ export interface GetControlOperationOutput {
119
+ /**
120
+ *
121
+ */
122
+ controlOperation: ControlOperation;
123
+ }
124
+ export interface ListEnabledControlsInput {
125
+ /**
126
+ * How many results to return per API call.
127
+ */
128
+ maxResults?: MaxResults;
129
+ /**
130
+ * The token to continue the list from a previous API call with the same parameters.
131
+ */
132
+ nextToken?: String;
133
+ /**
134
+ * The ARN of the organizational unit.
135
+ */
136
+ targetIdentifier: TargetIdentifier;
137
+ }
138
+ export interface ListEnabledControlsOutput {
139
+ /**
140
+ * Lists the controls enabled by AWS Control Tower on the specified organizational unit and the accounts it contains.
141
+ */
142
+ enabledControls: EnabledControls;
143
+ /**
144
+ * Retrieves the next page of results. If the string is empty, the current response is the end of the results.
145
+ */
146
+ nextToken?: String;
147
+ }
148
+ export type MaxResults = number;
149
+ export type OperationIdentifier = string;
150
+ export type String = string;
151
+ export type SyntheticTimestamp_date_time = Date;
152
+ export type TargetIdentifier = string;
153
+ /**
154
+ * 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.
155
+ */
156
+ export type apiVersion = "2018-05-10"|"latest"|string;
157
+ export interface ClientApiVersions {
158
+ /**
159
+ * 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.
160
+ */
161
+ apiVersion?: apiVersion;
162
+ }
163
+ export type ClientConfiguration = ServiceConfigurationOptions & ClientApiVersions;
164
+ /**
165
+ * Contains interfaces for use with the ControlTower client.
166
+ */
167
+ export import Types = ControlTower;
168
+ }
169
+ export = ControlTower;
@@ -0,0 +1,18 @@
1
+ require('../lib/node_loader');
2
+ var AWS = require('../lib/core');
3
+ var Service = AWS.Service;
4
+ var apiLoader = AWS.apiLoader;
5
+
6
+ apiLoader.services['controltower'] = {};
7
+ AWS.ControlTower = Service.defineService('controltower', ['2018-05-10']);
8
+ Object.defineProperty(apiLoader.services['controltower'], '2018-05-10', {
9
+ get: function get() {
10
+ var model = require('../apis/controltower-2018-05-10.min.json');
11
+ model.paginators = require('../apis/controltower-2018-05-10.paginators.json').pagination;
12
+ return model;
13
+ },
14
+ enumerable: true,
15
+ configurable: true
16
+ });
17
+
18
+ module.exports = AWS.ControlTower;