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/README.md +1 -1
- package/apis/amplify-2017-07-25.min.json +76 -55
- package/apis/appstream-2016-12-01.min.json +181 -44
- package/apis/fis-2020-12-01.min.json +19 -5
- package/apis/glue-2017-03-31.min.json +41 -37
- package/clients/amplify.d.ts +20 -1
- package/clients/appstream.d.ts +200 -1
- package/clients/fis.d.ts +21 -0
- package/clients/glue.d.ts +6 -0
- package/dist/aws-sdk-core-react-native.js +1 -1
- package/dist/aws-sdk-react-native.js +5 -5
- package/dist/aws-sdk.js +3 -3
- package/dist/aws-sdk.min.js +2 -2
- package/lib/core.js +1 -1
- package/package.json +1 -1
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.
|