aws-sdk 2.1511.0 → 2.1512.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/athena-2017-05-18.min.json +110 -68
- package/apis/cleanroomsml-2023-09-06.min.json +1 -1
- package/clients/athena.d.ts +80 -5
- package/clients/cleanroomsml.d.ts +1 -1
- package/clients/cloudformation.d.ts +3 -3
- package/clients/ec2.d.ts +6 -6
- package/dist/aws-sdk-core-react-native.js +1 -1
- package/dist/aws-sdk-react-native.js +3 -3
- package/dist/aws-sdk.js +113 -71
- package/dist/aws-sdk.min.js +103 -103
- package/lib/core.js +1 -1
- package/package.json +1 -1
package/clients/athena.d.ts
CHANGED
@@ -596,6 +596,7 @@ declare namespace Athena {
|
|
596
596
|
ErrorMessage?: String;
|
597
597
|
}
|
598
598
|
export type AuthToken = string;
|
599
|
+
export type AuthenticationType = "DIRECTORY_IDENTITY"|string;
|
599
600
|
export type AwsAccountId = string;
|
600
601
|
export interface BatchGetNamedQueryInput {
|
601
602
|
/**
|
@@ -847,7 +848,7 @@ declare namespace Athena {
|
|
847
848
|
*/
|
848
849
|
Scale?: Integer;
|
849
850
|
/**
|
850
|
-
*
|
851
|
+
* Unsupported constraint. This value always shows as UNKNOWN.
|
851
852
|
*/
|
852
853
|
Nullable?: ColumnNullable;
|
853
854
|
/**
|
@@ -1325,6 +1326,10 @@ declare namespace Athena {
|
|
1325
1326
|
* The name of the data catalog to return.
|
1326
1327
|
*/
|
1327
1328
|
Name: CatalogNameString;
|
1329
|
+
/**
|
1330
|
+
* The name of the workgroup. Required if making an IAM Identity Center request.
|
1331
|
+
*/
|
1332
|
+
WorkGroup?: WorkGroupName;
|
1328
1333
|
}
|
1329
1334
|
export interface GetDataCatalogOutput {
|
1330
1335
|
/**
|
@@ -1341,6 +1346,10 @@ declare namespace Athena {
|
|
1341
1346
|
* The name of the database to return.
|
1342
1347
|
*/
|
1343
1348
|
DatabaseName: NameString;
|
1349
|
+
/**
|
1350
|
+
* The name of the workgroup for which the metadata is being fetched. Required if requesting an IAM Identity Center enabled Glue Data Catalog.
|
1351
|
+
*/
|
1352
|
+
WorkGroup?: WorkGroupName;
|
1344
1353
|
}
|
1345
1354
|
export interface GetDatabaseOutput {
|
1346
1355
|
/**
|
@@ -1513,6 +1522,10 @@ declare namespace Athena {
|
|
1513
1522
|
* The name of the table for which metadata is returned.
|
1514
1523
|
*/
|
1515
1524
|
TableName: NameString;
|
1525
|
+
/**
|
1526
|
+
* The name of the workgroup for which the metadata is being fetched. Required if requesting an IAM Identity Center enabled Glue Data Catalog.
|
1527
|
+
*/
|
1528
|
+
WorkGroup?: WorkGroupName;
|
1516
1529
|
}
|
1517
1530
|
export interface GetTableMetadataOutput {
|
1518
1531
|
/**
|
@@ -1533,6 +1546,18 @@ declare namespace Athena {
|
|
1533
1546
|
WorkGroup?: WorkGroup;
|
1534
1547
|
}
|
1535
1548
|
export type IdempotencyToken = string;
|
1549
|
+
export type IdentityCenterApplicationArn = string;
|
1550
|
+
export interface IdentityCenterConfiguration {
|
1551
|
+
/**
|
1552
|
+
* Specifies whether the workgroup is IAM Identity Center supported.
|
1553
|
+
*/
|
1554
|
+
EnableIdentityCenter?: BoxedBoolean;
|
1555
|
+
/**
|
1556
|
+
* The IAM Identity Center instance ARN that the workgroup associates to.
|
1557
|
+
*/
|
1558
|
+
IdentityCenterInstanceArn?: IdentityCenterInstanceArn;
|
1559
|
+
}
|
1560
|
+
export type IdentityCenterInstanceArn = string;
|
1536
1561
|
export interface ImportNotebookInput {
|
1537
1562
|
/**
|
1538
1563
|
* The name of the Spark enabled workgroup to import the notebook to.
|
@@ -1641,6 +1666,10 @@ declare namespace Athena {
|
|
1641
1666
|
* Specifies the maximum number of data catalogs to return.
|
1642
1667
|
*/
|
1643
1668
|
MaxResults?: MaxDataCatalogsCount;
|
1669
|
+
/**
|
1670
|
+
* The name of the workgroup. Required if making an IAM Identity Center request.
|
1671
|
+
*/
|
1672
|
+
WorkGroup?: WorkGroupName;
|
1644
1673
|
}
|
1645
1674
|
export interface ListDataCatalogsOutput {
|
1646
1675
|
/**
|
@@ -1665,6 +1694,10 @@ declare namespace Athena {
|
|
1665
1694
|
* Specifies the maximum number of results to return.
|
1666
1695
|
*/
|
1667
1696
|
MaxResults?: MaxDatabasesCount;
|
1697
|
+
/**
|
1698
|
+
* The name of the workgroup for which the metadata is being fetched. Required if requesting an IAM Identity Center enabled Glue Data Catalog.
|
1699
|
+
*/
|
1700
|
+
WorkGroup?: WorkGroupName;
|
1668
1701
|
}
|
1669
1702
|
export interface ListDatabasesOutput {
|
1670
1703
|
/**
|
@@ -1901,6 +1934,10 @@ declare namespace Athena {
|
|
1901
1934
|
* Specifies the maximum number of results to return.
|
1902
1935
|
*/
|
1903
1936
|
MaxResults?: MaxTableMetadataCount;
|
1937
|
+
/**
|
1938
|
+
* The name of the workgroup for which the metadata is being fetched. Required if requesting an IAM Identity Center enabled Glue Data Catalog.
|
1939
|
+
*/
|
1940
|
+
WorkGroup?: WorkGroupName;
|
1904
1941
|
}
|
1905
1942
|
export interface ListTableMetadataOutput {
|
1906
1943
|
/**
|
@@ -2145,6 +2182,10 @@ declare namespace Athena {
|
|
2145
2182
|
* The kind of query statement that was run.
|
2146
2183
|
*/
|
2147
2184
|
SubstatementType?: String;
|
2185
|
+
/**
|
2186
|
+
* Specifies whether Amazon S3 access grants are enabled for query results.
|
2187
|
+
*/
|
2188
|
+
QueryResultsS3AccessGrantsConfiguration?: QueryResultsS3AccessGrantsConfiguration;
|
2148
2189
|
}
|
2149
2190
|
export interface QueryExecutionContext {
|
2150
2191
|
/**
|
@@ -2220,6 +2261,20 @@ declare namespace Athena {
|
|
2220
2261
|
*/
|
2221
2262
|
AthenaError?: AthenaError;
|
2222
2263
|
}
|
2264
|
+
export interface QueryResultsS3AccessGrantsConfiguration {
|
2265
|
+
/**
|
2266
|
+
* Specifies whether Amazon S3 access grants are enabled for query results.
|
2267
|
+
*/
|
2268
|
+
EnableS3AccessGrants: BoxedBoolean;
|
2269
|
+
/**
|
2270
|
+
* When enabled, appends the user ID as an Amazon S3 path prefix to the query result output location.
|
2271
|
+
*/
|
2272
|
+
CreateUserLevelPrefix?: BoxedBoolean;
|
2273
|
+
/**
|
2274
|
+
* The authentication type used for Amazon S3 access grants. Currently, only DIRECTORY_IDENTITY is supported.
|
2275
|
+
*/
|
2276
|
+
AuthenticationType: AuthenticationType;
|
2277
|
+
}
|
2223
2278
|
export interface QueryRuntimeStatistics {
|
2224
2279
|
Timeline?: QueryRuntimeStatisticsTimeline;
|
2225
2280
|
Rows?: QueryRuntimeStatisticsRows;
|
@@ -2434,7 +2489,7 @@ declare namespace Athena {
|
|
2434
2489
|
export type S3Uri = string;
|
2435
2490
|
export interface SessionConfiguration {
|
2436
2491
|
/**
|
2437
|
-
* The ARN of the execution role used
|
2492
|
+
* The ARN of the execution role used to access user resources for Spark sessions and Identity Center enabled workgroups. This property applies only to Spark enabled workgroups and Identity Center enabled workgroups.
|
2438
2493
|
*/
|
2439
2494
|
ExecutionRole?: RoleArn;
|
2440
2495
|
/**
|
@@ -2544,7 +2599,7 @@ declare namespace Athena {
|
|
2544
2599
|
*/
|
2545
2600
|
QueryString: QueryString;
|
2546
2601
|
/**
|
2547
|
-
* A unique case-sensitive string used to ensure the request to create the query is idempotent (executes only once). If another StartQueryExecution request is received, the same response is returned and another query is not created.
|
2602
|
+
* A unique case-sensitive string used to ensure the request to create the query is idempotent (executes only once). If another StartQueryExecution request is received, the same response is returned and another query is not created. An error is returned if a parameter, such as QueryString, has changed. A call to StartQueryExecution that uses a previous client request token returns the same QueryExecutionId even if the requester doesn't have permission on the tables specified in QueryString. This token is listed as not required because Amazon Web Services SDKs (for example the Amazon Web Services SDK for Java) auto-generate the token for users. If you are not using the Amazon Web Services SDK or the Amazon Web Services CLI, you must provide this token or the action will fail.
|
2548
2603
|
*/
|
2549
2604
|
ClientRequestToken?: IdempotencyToken;
|
2550
2605
|
/**
|
@@ -2919,6 +2974,10 @@ declare namespace Athena {
|
|
2919
2974
|
* The date and time the workgroup was created.
|
2920
2975
|
*/
|
2921
2976
|
CreationTime?: _Date;
|
2977
|
+
/**
|
2978
|
+
* The ARN of the IAM Identity Center enabled application associated with the workgroup.
|
2979
|
+
*/
|
2980
|
+
IdentityCenterApplicationArn?: IdentityCenterApplicationArn;
|
2922
2981
|
}
|
2923
2982
|
export interface WorkGroupConfiguration {
|
2924
2983
|
/**
|
@@ -2950,7 +3009,7 @@ declare namespace Athena {
|
|
2950
3009
|
*/
|
2951
3010
|
AdditionalConfiguration?: NameString;
|
2952
3011
|
/**
|
2953
|
-
*
|
3012
|
+
* The ARN of the execution role used to access user resources for Spark sessions and Identity Center enabled workgroups. This property applies only to Spark enabled workgroups and Identity Center enabled workgroups.
|
2954
3013
|
*/
|
2955
3014
|
ExecutionRole?: RoleArn;
|
2956
3015
|
/**
|
@@ -2961,6 +3020,14 @@ declare namespace Athena {
|
|
2961
3020
|
* Enforces a minimal level of encryption for the workgroup for query and calculation results that are written to Amazon S3. When enabled, workgroup users can set encryption only to the minimum level set by the administrator or higher when they submit queries. The EnforceWorkGroupConfiguration setting takes precedence over the EnableMinimumEncryptionConfiguration flag. This means that if EnforceWorkGroupConfiguration is true, the EnableMinimumEncryptionConfiguration flag is ignored, and the workgroup configuration for encryption is used.
|
2962
3021
|
*/
|
2963
3022
|
EnableMinimumEncryptionConfiguration?: BoxedBoolean;
|
3023
|
+
/**
|
3024
|
+
* Specifies whether the workgroup is IAM Identity Center supported.
|
3025
|
+
*/
|
3026
|
+
IdentityCenterConfiguration?: IdentityCenterConfiguration;
|
3027
|
+
/**
|
3028
|
+
* Specifies whether Amazon S3 access grants are enabled for query results.
|
3029
|
+
*/
|
3030
|
+
QueryResultsS3AccessGrantsConfiguration?: QueryResultsS3AccessGrantsConfiguration;
|
2964
3031
|
}
|
2965
3032
|
export interface WorkGroupConfigurationUpdates {
|
2966
3033
|
/**
|
@@ -3000,7 +3067,7 @@ declare namespace Athena {
|
|
3000
3067
|
*/
|
3001
3068
|
AdditionalConfiguration?: NameString;
|
3002
3069
|
/**
|
3003
|
-
* The ARN of the execution role used to access user resources. This property applies only to Spark
|
3070
|
+
* The ARN of the execution role used to access user resources for Spark sessions and Identity Center enabled workgroups. This property applies only to Spark enabled workgroups and Identity Center enabled workgroups.
|
3004
3071
|
*/
|
3005
3072
|
ExecutionRole?: RoleArn;
|
3006
3073
|
CustomerContentEncryptionConfiguration?: CustomerContentEncryptionConfiguration;
|
@@ -3008,6 +3075,10 @@ declare namespace Athena {
|
|
3008
3075
|
* Enforces a minimal level of encryption for the workgroup for query and calculation results that are written to Amazon S3. When enabled, workgroup users can set encryption only to the minimum level set by the administrator or higher when they submit queries. This setting does not apply to Spark-enabled workgroups. The EnforceWorkGroupConfiguration setting takes precedence over the EnableMinimumEncryptionConfiguration flag. This means that if EnforceWorkGroupConfiguration is true, the EnableMinimumEncryptionConfiguration flag is ignored, and the workgroup configuration for encryption is used.
|
3009
3076
|
*/
|
3010
3077
|
EnableMinimumEncryptionConfiguration?: BoxedBoolean;
|
3078
|
+
/**
|
3079
|
+
* Specifies whether Amazon S3 access grants are enabled for query results.
|
3080
|
+
*/
|
3081
|
+
QueryResultsS3AccessGrantsConfiguration?: QueryResultsS3AccessGrantsConfiguration;
|
3011
3082
|
}
|
3012
3083
|
export type WorkGroupDescriptionString = string;
|
3013
3084
|
export type WorkGroupName = string;
|
@@ -3034,6 +3105,10 @@ declare namespace Athena {
|
|
3034
3105
|
* The engine version setting for all queries on the workgroup. Queries on the AmazonAthenaPreviewFunctionality workgroup run on the preview engine regardless of this setting.
|
3035
3106
|
*/
|
3036
3107
|
EngineVersion?: EngineVersion;
|
3108
|
+
/**
|
3109
|
+
* The ARN of the IAM Identity Center enabled application associated with the workgroup.
|
3110
|
+
*/
|
3111
|
+
IdentityCenterApplicationArn?: IdentityCenterApplicationArn;
|
3037
3112
|
}
|
3038
3113
|
export type WorkGroupsList = WorkGroupSummary[];
|
3039
3114
|
export type datumList = Datum[];
|
@@ -487,7 +487,7 @@ declare namespace CleanRoomsML {
|
|
487
487
|
*/
|
488
488
|
audienceSizeConfig?: AudienceSizeConfig;
|
489
489
|
/**
|
490
|
-
* Configure how the service tags audience generation jobs created using this configured audience model. If you specify NONE, the tags from the StartAudienceGenerationJob request determine the tags of the audience generation job. If you specify FROM_PARENT_RESOURCE, the audience generation job inherits the tags from the configured audience model, by default. Tags in the StartAudienceGenerationJob will override the default.
|
490
|
+
* Configure how the service tags audience generation jobs created using this configured audience model. If you specify NONE, the tags from the StartAudienceGenerationJob request determine the tags of the audience generation job. If you specify FROM_PARENT_RESOURCE, the audience generation job inherits the tags from the configured audience model, by default. Tags in the StartAudienceGenerationJob will override the default. When the client is in a different account than the configured audience model, the tags from the client are never applied to a resource in the caller's account.
|
491
491
|
*/
|
492
492
|
childResourceTagOnCreatePolicy?: TagOnCreatePolicy;
|
493
493
|
/**
|
@@ -909,7 +909,7 @@ declare namespace CloudFormation {
|
|
909
909
|
*/
|
910
910
|
RootChangeSetId?: ChangeSetId;
|
911
911
|
/**
|
912
|
-
* Indicates if the
|
912
|
+
* Indicates if the change set imports resources that already exist.
|
913
913
|
*/
|
914
914
|
ImportExistingResources?: ImportExistingResources;
|
915
915
|
}
|
@@ -1016,7 +1016,7 @@ declare namespace CloudFormation {
|
|
1016
1016
|
*/
|
1017
1017
|
OnStackFailure?: OnStackFailure;
|
1018
1018
|
/**
|
1019
|
-
* Indicates if the
|
1019
|
+
* Indicates if the change set imports resources that already exist. This parameter can only import resources that have custom names in templates. For more information, see name type in the CloudFormation User Guide. To import resources that do not accept custom names, such as EC2 instances, use the resource import feature instead. For more information, see Bringing existing resources into CloudFormation management in the CloudFormation User Guide.
|
1020
1020
|
*/
|
1021
1021
|
ImportExistingResources?: ImportExistingResources;
|
1022
1022
|
}
|
@@ -1521,7 +1521,7 @@ declare namespace CloudFormation {
|
|
1521
1521
|
*/
|
1522
1522
|
OnStackFailure?: OnStackFailure;
|
1523
1523
|
/**
|
1524
|
-
* Indicates if the
|
1524
|
+
* Indicates if the change set imports resources that already exist. This parameter can only import resources that have custom names in templates. To import resources that do not accept custom names, such as EC2 instances, use the resource import feature instead.
|
1525
1525
|
*/
|
1526
1526
|
ImportExistingResources?: ImportExistingResources;
|
1527
1527
|
}
|
package/clients/ec2.d.ts
CHANGED
@@ -5242,9 +5242,9 @@ declare namespace EC2 {
|
|
5242
5242
|
*/
|
5243
5243
|
Max?: Integer;
|
5244
5244
|
}
|
5245
|
-
export type AcceleratorManufacturer = "amazon-web-services"|"amd"|"nvidia"|"xilinx"|string;
|
5245
|
+
export type AcceleratorManufacturer = "amazon-web-services"|"amd"|"nvidia"|"xilinx"|"habana"|string;
|
5246
5246
|
export type AcceleratorManufacturerSet = AcceleratorManufacturer[];
|
5247
|
-
export type AcceleratorName = "a100"|"inferentia"|"k520"|"k80"|"m60"|"radeon-pro-v520"|"t4"|"vu9p"|"v100"|string;
|
5247
|
+
export type AcceleratorName = "a100"|"inferentia"|"k520"|"k80"|"m60"|"radeon-pro-v520"|"t4"|"vu9p"|"v100"|"a10g"|"h100"|"t4g"|string;
|
5248
5248
|
export type AcceleratorNameSet = AcceleratorName[];
|
5249
5249
|
export interface AcceleratorTotalMemoryMiB {
|
5250
5250
|
/**
|
@@ -24781,11 +24781,11 @@ declare namespace EC2 {
|
|
24781
24781
|
*/
|
24782
24782
|
AcceleratorCount?: AcceleratorCount;
|
24783
24783
|
/**
|
24784
|
-
* Indicates whether instance types must have accelerators by specific manufacturers. For instance types with
|
24784
|
+
* Indicates whether instance types must have accelerators by specific manufacturers. For instance types with Amazon Web Services devices, specify amazon-web-services. For instance types with AMD devices, specify amd. For instance types with Habana devices, specify habana. For instance types with NVIDIA devices, specify nvidia. For instance types with Xilinx devices, specify xilinx. Default: Any manufacturer
|
24785
24785
|
*/
|
24786
24786
|
AcceleratorManufacturers?: AcceleratorManufacturerSet;
|
24787
24787
|
/**
|
24788
|
-
* The accelerators that must be on the instance type. For instance types with NVIDIA A100 GPUs, specify a100. For instance types with NVIDIA
|
24788
|
+
* The accelerators that must be on the instance type. For instance types with NVIDIA A10G GPUs, specify a10g. For instance types with NVIDIA A100 GPUs, specify a100. For instance types with NVIDIA H100 GPUs, specify h100. For instance types with Amazon Web Services Inferentia chips, specify inferentia. For instance types with NVIDIA GRID K520 GPUs, specify k520. For instance types with NVIDIA K80 GPUs, specify k80. For instance types with NVIDIA M60 GPUs, specify m60. For instance types with AMD Radeon Pro V520 GPUs, specify radeon-pro-v520. For instance types with NVIDIA T4 GPUs, specify t4. For instance types with NVIDIA T4G GPUs, specify t4g. For instance types with Xilinx VU9P FPGAs, specify vu9p. For instance types with NVIDIA V100 GPUs, specify v100. Default: Any accelerator
|
24789
24789
|
*/
|
24790
24790
|
AcceleratorNames?: AcceleratorNameSet;
|
24791
24791
|
/**
|
@@ -24875,11 +24875,11 @@ declare namespace EC2 {
|
|
24875
24875
|
*/
|
24876
24876
|
AcceleratorCount?: AcceleratorCountRequest;
|
24877
24877
|
/**
|
24878
|
-
* Indicates whether instance types must have accelerators by specific manufacturers. For instance types with
|
24878
|
+
* Indicates whether instance types must have accelerators by specific manufacturers. For instance types with Amazon Web Services devices, specify amazon-web-services. For instance types with AMD devices, specify amd. For instance types with Habana devices, specify habana. For instance types with NVIDIA devices, specify nvidia. For instance types with Xilinx devices, specify xilinx. Default: Any manufacturer
|
24879
24879
|
*/
|
24880
24880
|
AcceleratorManufacturers?: AcceleratorManufacturerSet;
|
24881
24881
|
/**
|
24882
|
-
* The accelerators that must be on the instance type. For instance types with NVIDIA A100 GPUs, specify a100. For instance types with NVIDIA
|
24882
|
+
* The accelerators that must be on the instance type. For instance types with NVIDIA A10G GPUs, specify a10g. For instance types with NVIDIA A100 GPUs, specify a100. For instance types with NVIDIA H100 GPUs, specify h100. For instance types with Amazon Web Services Inferentia chips, specify inferentia. For instance types with NVIDIA GRID K520 GPUs, specify k520. For instance types with NVIDIA K80 GPUs, specify k80. For instance types with NVIDIA M60 GPUs, specify m60. For instance types with AMD Radeon Pro V520 GPUs, specify radeon-pro-v520. For instance types with NVIDIA T4 GPUs, specify t4. For instance types with NVIDIA T4G GPUs, specify t4g. For instance types with Xilinx VU9P FPGAs, specify vu9p. For instance types with NVIDIA V100 GPUs, specify v100. Default: Any accelerator
|
24883
24883
|
*/
|
24884
24884
|
AcceleratorNames?: AcceleratorNameSet;
|
24885
24885
|
/**
|