aws-sdk 2.1673.0 → 2.1674.0

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/clients/fis.d.ts CHANGED
@@ -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;
package/clients/glue.d.ts CHANGED
@@ -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.1674.0',
87
87
 
88
88
  /**
89
89
  * @api private