cdk-lambda-subminute 2.0.332 → 2.0.333

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 (33) hide show
  1. package/.jsii +3 -3
  2. package/lib/cdk-lambda-subminute.js +3 -3
  3. package/node_modules/aws-sdk/README.md +1 -1
  4. package/node_modules/aws-sdk/apis/amp-2020-08-01.min.json +12 -8
  5. package/node_modules/aws-sdk/apis/appintegrations-2020-07-29.examples.json +36 -0
  6. package/node_modules/aws-sdk/apis/appintegrations-2020-07-29.min.json +120 -29
  7. package/node_modules/aws-sdk/apis/appintegrations-2020-07-29.paginators.json +6 -0
  8. package/node_modules/aws-sdk/apis/bedrock-agent-2023-06-05.min.json +41 -10
  9. package/node_modules/aws-sdk/apis/codecommit-2015-04-13.min.json +113 -78
  10. package/node_modules/aws-sdk/apis/connect-2017-08-08.min.json +1053 -416
  11. package/node_modules/aws-sdk/apis/connect-2017-08-08.paginators.json +34 -0
  12. package/node_modules/aws-sdk/apis/medialive-2017-10-14.min.json +104 -72
  13. package/node_modules/aws-sdk/apis/neptune-graph-2023-11-29.waiters2.json +168 -0
  14. package/node_modules/aws-sdk/apis/rds-2014-10-31.min.json +51 -9
  15. package/node_modules/aws-sdk/apis/sagemaker-2017-07-24.min.json +354 -322
  16. package/node_modules/aws-sdk/clients/amp.d.ts +17 -0
  17. package/node_modules/aws-sdk/clients/appintegrations.d.ts +77 -0
  18. package/node_modules/aws-sdk/clients/bedrockagent.d.ts +19 -1
  19. package/node_modules/aws-sdk/clients/codecommit.d.ts +65 -0
  20. package/node_modules/aws-sdk/clients/connect.d.ts +656 -1
  21. package/node_modules/aws-sdk/clients/medialive.d.ts +36 -4
  22. package/node_modules/aws-sdk/clients/neptunegraph.d.ts +65 -0
  23. package/node_modules/aws-sdk/clients/neptunegraph.js +1 -0
  24. package/node_modules/aws-sdk/clients/rds.d.ts +51 -3
  25. package/node_modules/aws-sdk/clients/rdsdataservice.d.ts +3 -3
  26. package/node_modules/aws-sdk/clients/sagemaker.d.ts +43 -1
  27. package/node_modules/aws-sdk/dist/aws-sdk-core-react-native.js +1 -1
  28. package/node_modules/aws-sdk/dist/aws-sdk-react-native.js +18 -11
  29. package/node_modules/aws-sdk/dist/aws-sdk.js +1241 -489
  30. package/node_modules/aws-sdk/dist/aws-sdk.min.js +105 -105
  31. package/node_modules/aws-sdk/lib/core.js +1 -1
  32. package/node_modules/aws-sdk/package.json +1 -1
  33. package/package.json +3 -3
@@ -429,6 +429,10 @@ declare namespace Amp {
429
429
  * Optional, user-provided tags for this workspace.
430
430
  */
431
431
  tags?: TagMap;
432
+ /**
433
+ * Optional, customer managed KMS key used to encrypt data for this workspace
434
+ */
435
+ kmsKeyArn?: KmsKeyArn;
432
436
  }
433
437
  export interface CreateWorkspaceResponse {
434
438
  /**
@@ -447,6 +451,10 @@ declare namespace Amp {
447
451
  * The tags of this workspace.
448
452
  */
449
453
  tags?: TagMap;
454
+ /**
455
+ * Customer managed KMS key ARN for this workspace
456
+ */
457
+ kmsKeyArn?: KmsKeyArn;
450
458
  }
451
459
  export interface DeleteAlertManagerDefinitionRequest {
452
460
  /**
@@ -609,6 +617,7 @@ declare namespace Amp {
609
617
  }
610
618
  export type IamRoleArn = string;
611
619
  export type IdempotencyToken = string;
620
+ export type KmsKeyArn = string;
612
621
  export interface ListRuleGroupsNamespacesRequest {
613
622
  /**
614
623
  * The ID of the workspace.
@@ -1077,6 +1086,10 @@ declare namespace Amp {
1077
1086
  * The tags of this workspace.
1078
1087
  */
1079
1088
  tags?: TagMap;
1089
+ /**
1090
+ * The customer managed KMS key of this workspace.
1091
+ */
1092
+ kmsKeyArn?: KmsKeyArn;
1080
1093
  }
1081
1094
  export type WorkspaceId = string;
1082
1095
  export interface WorkspaceStatus {
@@ -1111,6 +1124,10 @@ declare namespace Amp {
1111
1124
  * The tags of this workspace.
1112
1125
  */
1113
1126
  tags?: TagMap;
1127
+ /**
1128
+ * Customer managed KMS key ARN for this workspace
1129
+ */
1130
+ kmsKeyArn?: KmsKeyArn;
1114
1131
  }
1115
1132
  export type WorkspaceSummaryList = WorkspaceSummary[];
1116
1133
  /**
@@ -35,6 +35,14 @@ declare class AppIntegrations extends Service {
35
35
  * Creates an EventIntegration, given a specified name, description, and a reference to an Amazon EventBridge bus in your account and a partner event source that pushes events to that bus. No objects are created in the your account, only metadata that is persisted on the EventIntegration control plane.
36
36
  */
37
37
  createEventIntegration(callback?: (err: AWSError, data: AppIntegrations.Types.CreateEventIntegrationResponse) => void): Request<AppIntegrations.Types.CreateEventIntegrationResponse, AWSError>;
38
+ /**
39
+ * Deletes the Application. Only Applications that don't have any Application Associations can be deleted.
40
+ */
41
+ deleteApplication(params: AppIntegrations.Types.DeleteApplicationRequest, callback?: (err: AWSError, data: AppIntegrations.Types.DeleteApplicationResponse) => void): Request<AppIntegrations.Types.DeleteApplicationResponse, AWSError>;
42
+ /**
43
+ * Deletes the Application. Only Applications that don't have any Application Associations can be deleted.
44
+ */
45
+ deleteApplication(callback?: (err: AWSError, data: AppIntegrations.Types.DeleteApplicationResponse) => void): Request<AppIntegrations.Types.DeleteApplicationResponse, AWSError>;
38
46
  /**
39
47
  * Deletes the DataIntegration. Only DataIntegrations that don't have any DataIntegrationAssociations can be deleted. Deleting a DataIntegration also deletes the underlying Amazon AppFlow flow and service linked role. You cannot create a DataIntegration association for a DataIntegration that has been previously associated. Use a different DataIntegration, or recreate the DataIntegration using the CreateDataIntegration API.
40
48
  */
@@ -75,6 +83,14 @@ declare class AppIntegrations extends Service {
75
83
  * Returns information about the event integration.
76
84
  */
77
85
  getEventIntegration(callback?: (err: AWSError, data: AppIntegrations.Types.GetEventIntegrationResponse) => void): Request<AppIntegrations.Types.GetEventIntegrationResponse, AWSError>;
86
+ /**
87
+ * Returns a paginated list of application associations for an application.
88
+ */
89
+ listApplicationAssociations(params: AppIntegrations.Types.ListApplicationAssociationsRequest, callback?: (err: AWSError, data: AppIntegrations.Types.ListApplicationAssociationsResponse) => void): Request<AppIntegrations.Types.ListApplicationAssociationsResponse, AWSError>;
90
+ /**
91
+ * Returns a paginated list of application associations for an application.
92
+ */
93
+ listApplicationAssociations(callback?: (err: AWSError, data: AppIntegrations.Types.ListApplicationAssociationsResponse) => void): Request<AppIntegrations.Types.ListApplicationAssociationsResponse, AWSError>;
78
94
  /**
79
95
  * This API is in preview release and subject to change. Lists applications in the account.
80
96
  */
@@ -166,6 +182,21 @@ declare class AppIntegrations extends Service {
166
182
  }
167
183
  declare namespace AppIntegrations {
168
184
  export type ApplicationApprovedOrigins = ApplicationTrustedSource[];
185
+ export interface ApplicationAssociationSummary {
186
+ /**
187
+ * The Amazon Resource Name (ARN) of the Application Association.
188
+ */
189
+ ApplicationAssociationArn?: Arn;
190
+ /**
191
+ * The Amazon Resource Name (ARN) of the Application.
192
+ */
193
+ ApplicationArn?: Arn;
194
+ /**
195
+ * The identifier for the client that is associated with the Application Association.
196
+ */
197
+ ClientId?: ClientId;
198
+ }
199
+ export type ApplicationAssociationsList = ApplicationAssociationSummary[];
169
200
  export type ApplicationName = string;
170
201
  export type ApplicationNamespace = string;
171
202
  export interface ApplicationSourceConfig {
@@ -239,6 +270,10 @@ declare namespace AppIntegrations {
239
270
  * The tags used to organize, track, or control access for this resource. For example, { "tags": {"key1":"value1", "key2":"value2"} }.
240
271
  */
241
272
  Tags?: TagMap;
273
+ /**
274
+ * The configuration of events or requests that the application has access to.
275
+ */
276
+ Permissions?: PermissionList;
242
277
  }
243
278
  export interface CreateApplicationResponse {
244
279
  /**
@@ -396,6 +431,14 @@ declare namespace AppIntegrations {
396
431
  SourceURI?: SourceURI;
397
432
  }
398
433
  export type DataIntegrationsList = DataIntegrationSummary[];
434
+ export interface DeleteApplicationRequest {
435
+ /**
436
+ * The Amazon Resource Name (ARN) of the Application.
437
+ */
438
+ Arn: ArnOrUUID;
439
+ }
440
+ export interface DeleteApplicationResponse {
441
+ }
399
442
  export interface DeleteDataIntegrationRequest {
400
443
  /**
401
444
  * A unique identifier for the DataIntegration.
@@ -552,6 +595,10 @@ declare namespace AppIntegrations {
552
595
  * The tags used to organize, track, or control access for this resource. For example, { "tags": {"key1":"value1", "key2":"value2"} }.
553
596
  */
554
597
  Tags?: TagMap;
598
+ /**
599
+ * The configuration of events or requests that the application has access to.
600
+ */
601
+ Permissions?: PermissionList;
555
602
  }
556
603
  export interface GetDataIntegrationRequest {
557
604
  /**
@@ -635,6 +682,30 @@ declare namespace AppIntegrations {
635
682
  }
636
683
  export type IdempotencyToken = string;
637
684
  export type Identifier = string;
685
+ export interface ListApplicationAssociationsRequest {
686
+ /**
687
+ * A unique identifier for the Application.
688
+ */
689
+ ApplicationId: ArnOrUUID;
690
+ /**
691
+ * 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.
692
+ */
693
+ NextToken?: NextToken;
694
+ /**
695
+ * The maximum number of results to return per page.
696
+ */
697
+ MaxResults?: MaxResults;
698
+ }
699
+ export interface ListApplicationAssociationsResponse {
700
+ /**
701
+ * List of Application Associations for the Application.
702
+ */
703
+ ApplicationAssociations?: ApplicationAssociationsList;
704
+ /**
705
+ * If there are additional results, this is the token for the next set of results.
706
+ */
707
+ NextToken?: NextToken;
708
+ }
638
709
  export interface ListApplicationsRequest {
639
710
  /**
640
711
  * 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.
@@ -762,6 +833,8 @@ declare namespace AppIntegrations {
762
833
  export type NonBlankString = string;
763
834
  export type Object = string;
764
835
  export type ObjectConfiguration = {[key: string]: FieldsMap};
836
+ export type Permission = string;
837
+ export type PermissionList = Permission[];
765
838
  export interface Publication {
766
839
  /**
767
840
  * The name of the publication.
@@ -860,6 +933,10 @@ declare namespace AppIntegrations {
860
933
  * The events that the application publishes.
861
934
  */
862
935
  Publications?: PublicationList;
936
+ /**
937
+ * The configuration of events or requests that the application has access to.
938
+ */
939
+ Permissions?: PermissionList;
863
940
  }
864
941
  export interface UpdateApplicationResponse {
865
942
  }
@@ -500,6 +500,7 @@ declare namespace BedrockAgent {
500
500
  }
501
501
  export type ChunkingStrategy = "FIXED_SIZE"|"NONE"|string;
502
502
  export type ClientToken = string;
503
+ export type ColumnName = string;
503
504
  export interface CreateAgentActionGroupRequest {
504
505
  /**
505
506
  * Id generated at the server side when an Agent is created
@@ -894,7 +895,7 @@ declare namespace BedrockAgent {
894
895
  export type KnowledgeBaseRoleArn = string;
895
896
  export type KnowledgeBaseState = "ENABLED"|"DISABLED"|string;
896
897
  export type KnowledgeBaseStatus = "CREATING"|"ACTIVE"|"DELETING"|"UPDATING"|"FAILED"|string;
897
- export type KnowledgeBaseStorageType = "OPENSEARCH_SERVERLESS"|"PINECONE"|"REDIS_ENTERPRISE_CLOUD"|string;
898
+ export type KnowledgeBaseStorageType = "OPENSEARCH_SERVERLESS"|"PINECONE"|"REDIS_ENTERPRISE_CLOUD"|"RDS"|string;
898
899
  export type KnowledgeBaseSummaries = KnowledgeBaseSummary[];
899
900
  export interface KnowledgeBaseSummary {
900
901
  knowledgeBaseId: Id;
@@ -1063,6 +1064,22 @@ declare namespace BedrockAgent {
1063
1064
  }
1064
1065
  export type PromptState = "ENABLED"|"DISABLED"|string;
1065
1066
  export type PromptType = "PRE_PROCESSING"|"ORCHESTRATION"|"POST_PROCESSING"|"KNOWLEDGE_BASE_RESPONSE_GENERATION"|string;
1067
+ export type RdsArn = string;
1068
+ export interface RdsConfiguration {
1069
+ resourceArn: RdsArn;
1070
+ credentialsSecretArn: SecretArn;
1071
+ databaseName: RdsDatabaseName;
1072
+ tableName: RdsTableName;
1073
+ fieldMapping: RdsFieldMapping;
1074
+ }
1075
+ export type RdsDatabaseName = string;
1076
+ export interface RdsFieldMapping {
1077
+ primaryKeyField: ColumnName;
1078
+ vectorField: ColumnName;
1079
+ textField: ColumnName;
1080
+ metadataField: ColumnName;
1081
+ }
1082
+ export type RdsTableName = string;
1066
1083
  export type RecommendedAction = string;
1067
1084
  export type RecommendedActions = RecommendedAction[];
1068
1085
  export interface RedisEnterpriseCloudConfiguration {
@@ -1112,6 +1129,7 @@ declare namespace BedrockAgent {
1112
1129
  opensearchServerlessConfiguration?: OpenSearchServerlessConfiguration;
1113
1130
  pineconeConfiguration?: PineconeConfiguration;
1114
1131
  redisEnterpriseCloudConfiguration?: RedisEnterpriseCloudConfiguration;
1132
+ rdsConfiguration?: RdsConfiguration;
1115
1133
  }
1116
1134
  export type String = string;
1117
1135
  export type TagKey = string;
@@ -627,6 +627,14 @@ declare class CodeCommit extends Service {
627
627
  * Sets or changes the comment or description for a repository. The description field for a repository accepts all HTML characters and all valid Unicode characters. Applications that do not HTML-encode the description and display it in a webpage can expose users to potentially malicious code. Make sure that you HTML-encode the description field in any application that uses this API to display the repository description on a webpage.
628
628
  */
629
629
  updateRepositoryDescription(callback?: (err: AWSError, data: {}) => void): Request<{}, AWSError>;
630
+ /**
631
+ * Updates the Key Management Service encryption key used to encrypt and decrypt a CodeCommit repository.
632
+ */
633
+ updateRepositoryEncryptionKey(params: CodeCommit.Types.UpdateRepositoryEncryptionKeyInput, callback?: (err: AWSError, data: CodeCommit.Types.UpdateRepositoryEncryptionKeyOutput) => void): Request<CodeCommit.Types.UpdateRepositoryEncryptionKeyOutput, AWSError>;
634
+ /**
635
+ * Updates the Key Management Service encryption key used to encrypt and decrypt a CodeCommit repository.
636
+ */
637
+ updateRepositoryEncryptionKey(callback?: (err: AWSError, data: CodeCommit.Types.UpdateRepositoryEncryptionKeyOutput) => void): Request<CodeCommit.Types.UpdateRepositoryEncryptionKeyOutput, AWSError>;
630
638
  /**
631
639
  * Renames a repository. The repository name must be unique across the calling Amazon Web Services account. Repository names are limited to 100 alphanumeric, dash, and underscore characters, and cannot include certain characters. The suffix .git is prohibited. For more information about the limits on repository names, see Quotas in the CodeCommit User Guide.
632
640
  */
@@ -964,6 +972,26 @@ declare namespace CodeCommit {
964
972
  */
965
973
  errors?: BatchGetCommitsErrorsList;
966
974
  }
975
+ export interface BatchGetRepositoriesError {
976
+ /**
977
+ * The ID of a repository that either could not be found or was not in a valid state.
978
+ */
979
+ repositoryId?: RepositoryId;
980
+ /**
981
+ * The name of a repository that either could not be found or was not in a valid state.
982
+ */
983
+ repositoryName?: RepositoryName;
984
+ /**
985
+ * An error code that specifies the type of failure.
986
+ */
987
+ errorCode?: BatchGetRepositoriesErrorCodeEnum;
988
+ /**
989
+ * An error message that provides detail about why the repository either was not found or was not in a valid state.
990
+ */
991
+ errorMessage?: ErrorMessage;
992
+ }
993
+ export type BatchGetRepositoriesErrorCodeEnum = "EncryptionIntegrityChecksFailedException"|"EncryptionKeyAccessDeniedException"|"EncryptionKeyDisabledException"|"EncryptionKeyNotFoundException"|"EncryptionKeyUnavailableException"|"RepositoryDoesNotExistException"|string;
994
+ export type BatchGetRepositoriesErrorsList = BatchGetRepositoriesError[];
967
995
  export interface BatchGetRepositoriesInput {
968
996
  /**
969
997
  * The names of the repositories to get information about. The length constraint limit is for each string in the array. The array itself can be empty.
@@ -979,6 +1007,10 @@ declare namespace CodeCommit {
979
1007
  * Returns a list of repository names for which information could not be found.
980
1008
  */
981
1009
  repositoriesNotFound?: RepositoryNotFoundList;
1010
+ /**
1011
+ * Returns information about any errors returned when attempting to retrieve information about the repositories.
1012
+ */
1013
+ errors?: BatchGetRepositoriesErrorsList;
982
1014
  }
983
1015
  export interface BlobMetadata {
984
1016
  /**
@@ -1383,6 +1415,10 @@ declare namespace CodeCommit {
1383
1415
  * One or more tag key-value pairs to use when tagging this repository.
1384
1416
  */
1385
1417
  tags?: TagsMap;
1418
+ /**
1419
+ * The ID of the encryption key. You can view the ID of an encryption key in the KMS console, or use the KMS APIs to programmatically retrieve a key ID. For more information about acceptable values for kmsKeyID, see KeyId in the Decrypt API description in the Key Management Service API Reference. If no key is specified, the default aws/codecommit Amazon Web Services managed key is used.
1420
+ */
1421
+ kmsKeyId?: KmsKeyId;
1386
1422
  }
1387
1423
  export interface CreateRepositoryOutput {
1388
1424
  /**
@@ -2364,6 +2400,7 @@ declare namespace CodeCommit {
2364
2400
  export type IsMove = boolean;
2365
2401
  export type IsObjectTypeConflict = boolean;
2366
2402
  export type KeepEmptyFolders = boolean;
2403
+ export type KmsKeyId = string;
2367
2404
  export type LastModifiedDate = Date;
2368
2405
  export type Limit = number;
2369
2406
  export type LineNumber = number;
@@ -3464,6 +3501,10 @@ declare namespace CodeCommit {
3464
3501
  * The Amazon Resource Name (ARN) of the repository.
3465
3502
  */
3466
3503
  Arn?: Arn;
3504
+ /**
3505
+ * The ID of the Key Management Service encryption key used to encrypt and decrypt the repository.
3506
+ */
3507
+ kmsKeyId?: KmsKeyId;
3467
3508
  }
3468
3509
  export type RepositoryMetadataList = RepositoryMetadata[];
3469
3510
  export type RepositoryName = string;
@@ -3813,6 +3854,30 @@ declare namespace CodeCommit {
3813
3854
  */
3814
3855
  repositoryDescription?: RepositoryDescription;
3815
3856
  }
3857
+ export interface UpdateRepositoryEncryptionKeyInput {
3858
+ /**
3859
+ * The name of the repository for which you want to update the KMS encryption key used to encrypt and decrypt the repository.
3860
+ */
3861
+ repositoryName: RepositoryName;
3862
+ /**
3863
+ * The ID of the encryption key. You can view the ID of an encryption key in the KMS console, or use the KMS APIs to programmatically retrieve a key ID. For more information about acceptable values for keyID, see KeyId in the Decrypt API description in the Key Management Service API Reference.
3864
+ */
3865
+ kmsKeyId: KmsKeyId;
3866
+ }
3867
+ export interface UpdateRepositoryEncryptionKeyOutput {
3868
+ /**
3869
+ * The ID of the repository.
3870
+ */
3871
+ repositoryId?: RepositoryId;
3872
+ /**
3873
+ * The ID of the encryption key.
3874
+ */
3875
+ kmsKeyId?: KmsKeyId;
3876
+ /**
3877
+ * The ID of the encryption key formerly used to encrypt and decrypt the repository.
3878
+ */
3879
+ originalKmsKeyId?: KmsKeyId;
3880
+ }
3816
3881
  export interface UpdateRepositoryNameInput {
3817
3882
  /**
3818
3883
  * The current name of the repository.