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.
@@ -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. Note that CODECONNECTIONS is only valid for GitLab and GitLab Self Managed.
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. This information is for the CodeBuild console's use only. Your code should not get or set this information directly.
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 CODECONNECTIONS.
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 CODECONNECTIONS.
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 serverType type is GITLAB or GITLAB_SELF_MANAGED and your authType is CODECONNECTIONS.
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.
@@ -83,7 +83,7 @@ return /******/ (function(modules) { // webpackBootstrap
83
83
  /**
84
84
  * @constant
85
85
  */
86
- VERSION: '2.1673.0',
86
+ VERSION: '2.1675.0',
87
87
 
88
88
  /**
89
89
  * @api private