cdk-lambda-subminute 2.0.470 → 2.0.471
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/.jsii +4 -4
- package/lib/cdk-lambda-subminute.js +3 -3
- package/node_modules/aws-sdk/README.md +1 -1
- package/node_modules/aws-sdk/apis/amplify-2017-07-25.min.json +76 -55
- package/node_modules/aws-sdk/apis/appstream-2016-12-01.min.json +181 -44
- package/node_modules/aws-sdk/apis/fis-2020-12-01.min.json +19 -5
- package/node_modules/aws-sdk/apis/glue-2017-03-31.min.json +41 -37
- package/node_modules/aws-sdk/clients/amplify.d.ts +20 -1
- package/node_modules/aws-sdk/clients/appstream.d.ts +200 -1
- package/node_modules/aws-sdk/clients/codebuild.d.ts +10 -10
- package/node_modules/aws-sdk/clients/fis.d.ts +21 -0
- package/node_modules/aws-sdk/clients/glue.d.ts +6 -0
- package/node_modules/aws-sdk/dist/aws-sdk-core-react-native.js +1 -1
- package/node_modules/aws-sdk/dist/aws-sdk-react-native.js +10 -6
- package/node_modules/aws-sdk/dist/aws-sdk.js +8 -4
- package/node_modules/aws-sdk/dist/aws-sdk.min.js +3 -3
- package/node_modules/aws-sdk/lib/core.js +1 -1
- package/node_modules/aws-sdk/lib/services/s3.js +5 -1
- package/node_modules/aws-sdk/package.json +1 -1
- package/node_modules/aws-sdk/scripts/region-checker/allowlist.js +2 -1
- package/package.json +2 -2
@@ -196,11 +196,11 @@ declare class CodeBuild extends Service {
|
|
196
196
|
*/
|
197
197
|
getResourcePolicy(callback?: (err: AWSError, data: CodeBuild.Types.GetResourcePolicyOutput) => void): Request<CodeBuild.Types.GetResourcePolicyOutput, AWSError>;
|
198
198
|
/**
|
199
|
-
* Imports the source repository credentials for an CodeBuild project that has its source code stored in a GitHub, GitHub Enterprise, or Bitbucket repository.
|
199
|
+
* Imports the source repository credentials for an CodeBuild project that has its source code stored in a GitHub, GitHub Enterprise, GitLab, GitLab Self Managed, or Bitbucket repository.
|
200
200
|
*/
|
201
201
|
importSourceCredentials(params: CodeBuild.Types.ImportSourceCredentialsInput, callback?: (err: AWSError, data: CodeBuild.Types.ImportSourceCredentialsOutput) => void): Request<CodeBuild.Types.ImportSourceCredentialsOutput, AWSError>;
|
202
202
|
/**
|
203
|
-
* Imports the source repository credentials for an CodeBuild project that has its source code stored in a GitHub, GitHub Enterprise, or Bitbucket repository.
|
203
|
+
* Imports the source repository credentials for an CodeBuild project that has its source code stored in a GitHub, GitHub Enterprise, GitLab, GitLab Self Managed, or Bitbucket repository.
|
204
204
|
*/
|
205
205
|
importSourceCredentials(callback?: (err: AWSError, data: CodeBuild.Types.ImportSourceCredentialsOutput) => void): Request<CodeBuild.Types.ImportSourceCredentialsOutput, AWSError>;
|
206
206
|
/**
|
@@ -416,7 +416,7 @@ declare namespace CodeBuild {
|
|
416
416
|
export type ArtifactNamespace = "NONE"|"BUILD_ID"|string;
|
417
417
|
export type ArtifactPackaging = "NONE"|"ZIP"|string;
|
418
418
|
export type ArtifactsType = "CODEPIPELINE"|"S3"|"NO_ARTIFACTS"|string;
|
419
|
-
export type AuthType = "OAUTH"|"BASIC_AUTH"|"PERSONAL_ACCESS_TOKEN"|"CODECONNECTIONS"|string;
|
419
|
+
export type AuthType = "OAUTH"|"BASIC_AUTH"|"PERSONAL_ACCESS_TOKEN"|"CODECONNECTIONS"|"SECRETS_MANAGER"|string;
|
420
420
|
export interface BatchDeleteBuildsInput {
|
421
421
|
/**
|
422
422
|
* The IDs of the builds to delete.
|
@@ -1578,7 +1578,7 @@ declare namespace CodeBuild {
|
|
1578
1578
|
*/
|
1579
1579
|
username?: NonEmptyString;
|
1580
1580
|
/**
|
1581
|
-
* For GitHub or GitHub Enterprise, this is the personal access token. For Bitbucket, this is either the access token or the app password. For the authType CODECONNECTIONS, this is the connectionArn.
|
1581
|
+
* For GitHub or GitHub Enterprise, this is the personal access token. For Bitbucket, this is either the access token or the app password. For the authType CODECONNECTIONS, this is the connectionArn. For the authType SECRETS_MANAGER, this is the secretArn.
|
1582
1582
|
*/
|
1583
1583
|
token: SensitiveNonEmptyString;
|
1584
1584
|
/**
|
@@ -1586,7 +1586,7 @@ declare namespace CodeBuild {
|
|
1586
1586
|
*/
|
1587
1587
|
serverType: ServerType;
|
1588
1588
|
/**
|
1589
|
-
* The type of authentication used to connect to a GitHub, GitHub Enterprise, GitLab, GitLab Self Managed, or Bitbucket repository. An OAUTH connection is not supported by the API and must be created using the CodeBuild console.
|
1589
|
+
* The type of authentication used to connect to a GitHub, GitHub Enterprise, GitLab, GitLab Self Managed, or Bitbucket repository. An OAUTH connection is not supported by the API and must be created using the CodeBuild console.
|
1590
1590
|
*/
|
1591
1591
|
authType: AuthType;
|
1592
1592
|
/**
|
@@ -2290,7 +2290,7 @@ declare namespace CodeBuild {
|
|
2290
2290
|
*/
|
2291
2291
|
buildspec?: String;
|
2292
2292
|
/**
|
2293
|
-
* Information about the authorization settings for CodeBuild to access the source code to be built.
|
2293
|
+
* Information about the authorization settings for CodeBuild to access the source code to be built.
|
2294
2294
|
*/
|
2295
2295
|
auth?: SourceAuth;
|
2296
2296
|
/**
|
@@ -2629,7 +2629,7 @@ declare namespace CodeBuild {
|
|
2629
2629
|
export type SortOrderType = "ASCENDING"|"DESCENDING"|string;
|
2630
2630
|
export interface SourceAuth {
|
2631
2631
|
/**
|
2632
|
-
* The authorization type to use. Valid options are OAUTH or
|
2632
|
+
* The authorization type to use. Valid options are OAUTH, CODECONNECTIONS, or SECRETS_MANAGER.
|
2633
2633
|
*/
|
2634
2634
|
type: SourceAuthType;
|
2635
2635
|
/**
|
@@ -2637,7 +2637,7 @@ declare namespace CodeBuild {
|
|
2637
2637
|
*/
|
2638
2638
|
resource?: String;
|
2639
2639
|
}
|
2640
|
-
export type SourceAuthType = "OAUTH"|"CODECONNECTIONS"|string;
|
2640
|
+
export type SourceAuthType = "OAUTH"|"CODECONNECTIONS"|"SECRETS_MANAGER"|string;
|
2641
2641
|
export interface SourceCredentialsInfo {
|
2642
2642
|
/**
|
2643
2643
|
* The Amazon Resource Name (ARN) of the token.
|
@@ -2648,11 +2648,11 @@ declare namespace CodeBuild {
|
|
2648
2648
|
*/
|
2649
2649
|
serverType?: ServerType;
|
2650
2650
|
/**
|
2651
|
-
* The type of authentication used by the credentials. Valid options are OAUTH, BASIC_AUTH, PERSONAL_ACCESS_TOKEN, or
|
2651
|
+
* The type of authentication used by the credentials. Valid options are OAUTH, BASIC_AUTH, PERSONAL_ACCESS_TOKEN, CODECONNECTIONS, or SECRETS_MANAGER.
|
2652
2652
|
*/
|
2653
2653
|
authType?: AuthType;
|
2654
2654
|
/**
|
2655
|
-
* The connection ARN if your
|
2655
|
+
* The connection ARN if your authType is CODECONNECTIONS or SECRETS_MANAGER.
|
2656
2656
|
*/
|
2657
2657
|
resource?: String;
|
2658
2658
|
}
|
@@ -596,6 +596,23 @@ declare namespace Fis {
|
|
596
596
|
logGroupArn?: CloudWatchLogGroupArn;
|
597
597
|
}
|
598
598
|
export type ExperimentEndTime = Date;
|
599
|
+
export interface ExperimentError {
|
600
|
+
/**
|
601
|
+
* The Amazon Web Services Account ID where the experiment failure occurred.
|
602
|
+
*/
|
603
|
+
accountId?: ExperimentErrorAccountId;
|
604
|
+
/**
|
605
|
+
* The error code for the failed experiment.
|
606
|
+
*/
|
607
|
+
code?: ExperimentErrorCode;
|
608
|
+
/**
|
609
|
+
* Context for the section of the experiment template that failed.
|
610
|
+
*/
|
611
|
+
location?: ExperimentErrorLocation;
|
612
|
+
}
|
613
|
+
export type ExperimentErrorAccountId = string;
|
614
|
+
export type ExperimentErrorCode = string;
|
615
|
+
export type ExperimentErrorLocation = string;
|
599
616
|
export type ExperimentId = string;
|
600
617
|
export interface ExperimentLogConfiguration {
|
601
618
|
/**
|
@@ -645,6 +662,10 @@ declare namespace Fis {
|
|
645
662
|
* The reason for the state.
|
646
663
|
*/
|
647
664
|
reason?: ExperimentStatusReason;
|
665
|
+
/**
|
666
|
+
* The error information of the experiment when the action has failed.
|
667
|
+
*/
|
668
|
+
error?: ExperimentError;
|
648
669
|
}
|
649
670
|
export type ExperimentStatus = "pending"|"initiating"|"running"|"completed"|"stopping"|"stopped"|"failed"|string;
|
650
671
|
export type ExperimentStatusReason = string;
|
@@ -8485,6 +8485,10 @@ declare namespace Glue {
|
|
8485
8485
|
* Specifies whether to include status details related to a request to create or update an Glue Data Catalog view.
|
8486
8486
|
*/
|
8487
8487
|
IncludeStatusDetails?: BooleanNullable;
|
8488
|
+
/**
|
8489
|
+
* Specifies the table fields returned by the GetTables call. This parameter doesn’t accept an empty list. The request must include NAME. The following are the valid combinations of values: NAME - Names of all tables in the database. NAME, TABLE_TYPE - Names of all tables and the table types.
|
8490
|
+
*/
|
8491
|
+
AttributesToGet?: TableAttributesList;
|
8488
8492
|
}
|
8489
8493
|
export interface GetTablesResponse {
|
8490
8494
|
/**
|
@@ -13870,6 +13874,8 @@ declare namespace Glue {
|
|
13870
13874
|
IsMultiDialectView?: NullableBoolean;
|
13871
13875
|
Status?: TableStatus;
|
13872
13876
|
}
|
13877
|
+
export type TableAttributes = "NAME"|"TABLE_TYPE"|string;
|
13878
|
+
export type TableAttributesList = TableAttributes[];
|
13873
13879
|
export interface TableError {
|
13874
13880
|
/**
|
13875
13881
|
* The name of the table. For Hive compatibility, this must be entirely lowercase.
|