@pulumi/aws-native 1.19.0-alpha.1735326593 → 1.19.0-alpha.1735329117
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/appconfig/deployment.d.ts +111 -0
- package/appconfig/deployment.js +91 -0
- package/appconfig/deployment.js.map +1 -0
- package/appconfig/getDeployment.d.ts +43 -0
- package/appconfig/getDeployment.js +32 -0
- package/appconfig/getDeployment.js.map +1 -0
- package/appconfig/index.d.ts +6 -0
- package/appconfig/index.js +8 -1
- package/appconfig/index.js.map +1 -1
- package/bedrock/knowledgeBase.d.ts +2 -2
- package/bedrock/knowledgeBase.js +0 -3
- package/bedrock/knowledgeBase.js.map +1 -1
- package/cloudformation/stack.d.ts +2 -2
- package/datazone/dataSource.d.ts +2 -2
- package/ec2/getVpcEndpoint.d.ts +6 -0
- package/ec2/getVpcEndpoint.js.map +1 -1
- package/ec2/getVpcEndpointService.d.ts +5 -0
- package/ec2/getVpcEndpointService.js.map +1 -1
- package/ec2/launchTemplate.d.ts +2 -2
- package/ec2/vpcCidrBlock.d.ts +8 -0
- package/ec2/vpcCidrBlock.js +3 -1
- package/ec2/vpcCidrBlock.js.map +1 -1
- package/ec2/vpcEndpoint.d.ts +24 -0
- package/ec2/vpcEndpoint.js.map +1 -1
- package/ec2/vpcEndpointService.d.ts +10 -0
- package/ec2/vpcEndpointService.js +2 -0
- package/ec2/vpcEndpointService.js.map +1 -1
- package/ecs/getService.d.ts +1 -1
- package/ecs/service.d.ts +2 -2
- package/ecs/taskDefinition.d.ts +6 -0
- package/ecs/taskDefinition.js.map +1 -1
- package/eks/cluster.d.ts +6 -6
- package/eks/getCluster.d.ts +3 -3
- package/kendra/index_.d.ts +2 -2
- package/logs/getLogGroup.d.ts +7 -0
- package/logs/getLogGroup.js.map +1 -1
- package/logs/logGroup.d.ts +14 -0
- package/logs/logGroup.js.map +1 -1
- package/m2/environment.d.ts +6 -0
- package/m2/environment.js.map +1 -1
- package/package.json +3 -3
- package/package.json.dev +2 -2
- package/qbusiness/dataAccessor.d.ts +2 -2
- package/qbusiness/dataAccessor.js +3 -0
- package/qbusiness/dataAccessor.js.map +1 -1
- package/quicksight/customPermissions.d.ts +27 -0
- package/quicksight/customPermissions.js.map +1 -1
- package/quicksight/dataSet.d.ts +6 -0
- package/quicksight/dataSet.js.map +1 -1
- package/quicksight/getCustomPermissions.d.ts +21 -0
- package/quicksight/getCustomPermissions.js.map +1 -1
- package/quicksight/getDataSet.d.ts +3 -0
- package/quicksight/getDataSet.js.map +1 -1
- package/rds/dbCluster.d.ts +20 -18
- package/rds/dbCluster.js.map +1 -1
- package/rds/dbInstance.d.ts +5 -1
- package/rds/dbInstance.js +2 -2
- package/rds/dbInstance.js.map +1 -1
- package/rds/getDbCluster.d.ts +9 -8
- package/rds/getDbCluster.js.map +1 -1
- package/rds/getDbInstance.d.ts +0 -4
- package/rds/getDbInstance.js.map +1 -1
- package/types/enums/bedrock/index.d.ts +17 -0
- package/types/enums/bedrock/index.js +11 -1
- package/types/enums/bedrock/index.js.map +1 -1
- package/types/enums/ec2/index.d.ts +9 -0
- package/types/enums/ec2/index.js.map +1 -1
- package/types/enums/opensearchservice/index.d.ts +3 -0
- package/types/enums/opensearchservice/index.js.map +1 -1
- package/types/enums/quicksight/index.d.ts +0 -19
- package/types/enums/quicksight/index.js +4 -20
- package/types/enums/quicksight/index.js.map +1 -1
- package/types/input.d.ts +440 -149
- package/types/output.d.ts +440 -149
- package/types/output.js.map +1 -1
package/types/output.d.ts
CHANGED
|
@@ -2156,6 +2156,20 @@ export declare namespace appconfig {
|
|
|
2156
2156
|
*/
|
|
2157
2157
|
type?: string;
|
|
2158
2158
|
}
|
|
2159
|
+
interface DeploymentDynamicExtensionParameters {
|
|
2160
|
+
/**
|
|
2161
|
+
* The ARN or ID of the extension for which you are inserting a dynamic parameter.
|
|
2162
|
+
*/
|
|
2163
|
+
extensionReference?: string;
|
|
2164
|
+
/**
|
|
2165
|
+
* The parameter name.
|
|
2166
|
+
*/
|
|
2167
|
+
parameterName?: string;
|
|
2168
|
+
/**
|
|
2169
|
+
* The parameter value.
|
|
2170
|
+
*/
|
|
2171
|
+
parameterValue?: string;
|
|
2172
|
+
}
|
|
2159
2173
|
/**
|
|
2160
2174
|
* Amazon CloudWatch alarm to monitor during the deployment process.
|
|
2161
2175
|
*/
|
|
@@ -9209,6 +9223,9 @@ export declare namespace bedrock {
|
|
|
9209
9223
|
parameters?: {
|
|
9210
9224
|
[key: string]: outputs.bedrock.AgentParameterDetail;
|
|
9211
9225
|
};
|
|
9226
|
+
/**
|
|
9227
|
+
* Contains information if user confirmation is required to invoke the function.
|
|
9228
|
+
*/
|
|
9212
9229
|
requireConfirmation?: enums.bedrock.AgentRequireConfirmation;
|
|
9213
9230
|
}
|
|
9214
9231
|
/**
|
|
@@ -9371,6 +9388,15 @@ export declare namespace bedrock {
|
|
|
9371
9388
|
*/
|
|
9372
9389
|
copyFrom: string;
|
|
9373
9390
|
}
|
|
9391
|
+
/**
|
|
9392
|
+
* Settings for a Bedrock Data Automation used to parse documents for a data source.
|
|
9393
|
+
*/
|
|
9394
|
+
interface DataSourceBedrockDataAutomationConfiguration {
|
|
9395
|
+
/**
|
|
9396
|
+
* Specifies whether to enable parsing of multimodal data, including both text and/or images.
|
|
9397
|
+
*/
|
|
9398
|
+
parsingModality?: enums.bedrock.DataSourceParsingModality;
|
|
9399
|
+
}
|
|
9374
9400
|
/**
|
|
9375
9401
|
* Settings for a foundation model used to parse documents for a data source.
|
|
9376
9402
|
*/
|
|
@@ -9379,6 +9405,10 @@ export declare namespace bedrock {
|
|
|
9379
9405
|
* The model's ARN.
|
|
9380
9406
|
*/
|
|
9381
9407
|
modelArn: string;
|
|
9408
|
+
/**
|
|
9409
|
+
* Specifies whether to enable parsing of multimodal data, including both text and/or images.
|
|
9410
|
+
*/
|
|
9411
|
+
parsingModality?: enums.bedrock.DataSourceParsingModality;
|
|
9382
9412
|
/**
|
|
9383
9413
|
* Instructions for interpreting the contents of a document.
|
|
9384
9414
|
*/
|
|
@@ -9564,6 +9594,10 @@ export declare namespace bedrock {
|
|
|
9564
9594
|
* Settings for parsing document contents
|
|
9565
9595
|
*/
|
|
9566
9596
|
interface DataSourceParsingConfiguration {
|
|
9597
|
+
/**
|
|
9598
|
+
* If you specify `BEDROCK_DATA_AUTOMATION` as the parsing strategy for ingesting your data source, use this object to modify configurations for using the Amazon Bedrock Data Automation parser.
|
|
9599
|
+
*/
|
|
9600
|
+
bedrockDataAutomationConfiguration?: outputs.bedrock.DataSourceBedrockDataAutomationConfiguration;
|
|
9567
9601
|
/**
|
|
9568
9602
|
* If you specify `BEDROCK_FOUNDATION_MODEL` as the parsing strategy for ingesting your data source, use this object to modify configurations for using a foundation model to parse documents.
|
|
9569
9603
|
*/
|
|
@@ -11057,6 +11091,10 @@ export declare namespace bedrock {
|
|
|
11057
11091
|
* Contains details about the embeddings model used for the knowledge base.
|
|
11058
11092
|
*/
|
|
11059
11093
|
interface KnowledgeBaseConfiguration {
|
|
11094
|
+
/**
|
|
11095
|
+
* Settings for an Amazon Kendra knowledge base.
|
|
11096
|
+
*/
|
|
11097
|
+
kendraKnowledgeBaseConfiguration?: outputs.bedrock.KnowledgeBaseKendraKnowledgeBaseConfiguration;
|
|
11060
11098
|
/**
|
|
11061
11099
|
* The type of data that the data source is converted into for the knowledge base.
|
|
11062
11100
|
*/
|
|
@@ -11064,7 +11102,7 @@ export declare namespace bedrock {
|
|
|
11064
11102
|
/**
|
|
11065
11103
|
* Contains details about the model that's used to convert the data source into vector embeddings.
|
|
11066
11104
|
*/
|
|
11067
|
-
vectorKnowledgeBaseConfiguration
|
|
11105
|
+
vectorKnowledgeBaseConfiguration?: outputs.bedrock.KnowledgeBaseVectorKnowledgeBaseConfiguration;
|
|
11068
11106
|
}
|
|
11069
11107
|
/**
|
|
11070
11108
|
* The embeddings model configuration details for the vector model used in Knowledge Base.
|
|
@@ -11075,6 +11113,15 @@ export declare namespace bedrock {
|
|
|
11075
11113
|
*/
|
|
11076
11114
|
bedrockEmbeddingModelConfiguration?: outputs.bedrock.KnowledgeBaseBedrockEmbeddingModelConfiguration;
|
|
11077
11115
|
}
|
|
11116
|
+
/**
|
|
11117
|
+
* Configurations for a Kendra knowledge base
|
|
11118
|
+
*/
|
|
11119
|
+
interface KnowledgeBaseKendraKnowledgeBaseConfiguration {
|
|
11120
|
+
/**
|
|
11121
|
+
* The ARN of the Amazon Kendra index.
|
|
11122
|
+
*/
|
|
11123
|
+
kendraIndexArn: string;
|
|
11124
|
+
}
|
|
11078
11125
|
/**
|
|
11079
11126
|
* Contains the storage configuration of the knowledge base in MongoDb Atlas Cloud.
|
|
11080
11127
|
*/
|
|
@@ -11239,6 +11286,15 @@ export declare namespace bedrock {
|
|
|
11239
11286
|
*/
|
|
11240
11287
|
vectorField: string;
|
|
11241
11288
|
}
|
|
11289
|
+
/**
|
|
11290
|
+
* An Amazon S3 location.
|
|
11291
|
+
*/
|
|
11292
|
+
interface KnowledgeBaseS3Location {
|
|
11293
|
+
/**
|
|
11294
|
+
* The location's URI
|
|
11295
|
+
*/
|
|
11296
|
+
uri: string;
|
|
11297
|
+
}
|
|
11242
11298
|
/**
|
|
11243
11299
|
* The vector store service in which the knowledge base is stored.
|
|
11244
11300
|
*/
|
|
@@ -11264,6 +11320,19 @@ export declare namespace bedrock {
|
|
|
11264
11320
|
*/
|
|
11265
11321
|
type: enums.bedrock.KnowledgeBaseStorageType;
|
|
11266
11322
|
}
|
|
11323
|
+
/**
|
|
11324
|
+
* Configurations for supplemental data storage.
|
|
11325
|
+
*/
|
|
11326
|
+
interface KnowledgeBaseSupplementalDataStorageConfiguration {
|
|
11327
|
+
supplementalDataStorageLocations: outputs.bedrock.KnowledgeBaseSupplementalDataStorageLocation[];
|
|
11328
|
+
}
|
|
11329
|
+
/**
|
|
11330
|
+
* Supplemental data storage location.
|
|
11331
|
+
*/
|
|
11332
|
+
interface KnowledgeBaseSupplementalDataStorageLocation {
|
|
11333
|
+
s3Location?: outputs.bedrock.KnowledgeBaseS3Location;
|
|
11334
|
+
supplementalDataStorageLocationType: enums.bedrock.KnowledgeBaseSupplementalDataStorageLocationType;
|
|
11335
|
+
}
|
|
11267
11336
|
/**
|
|
11268
11337
|
* Contains details about the model used to create vector embeddings for the knowledge base.
|
|
11269
11338
|
*/
|
|
@@ -11276,6 +11345,10 @@ export declare namespace bedrock {
|
|
|
11276
11345
|
* The embeddings model configuration details for the vector model used in Knowledge Base.
|
|
11277
11346
|
*/
|
|
11278
11347
|
embeddingModelConfiguration?: outputs.bedrock.KnowledgeBaseEmbeddingModelConfiguration;
|
|
11348
|
+
/**
|
|
11349
|
+
* If you include multimodal data from your data source, use this object to specify configurations for the storage location of the images extracted from your documents. These images can be retrieved and returned to the end user. They can also be used in generation when using [RetrieveAndGenerate](https://docs.aws.amazon.com/bedrock/latest/APIReference/API_agent-runtime_RetrieveAndGenerate.html) .
|
|
11350
|
+
*/
|
|
11351
|
+
supplementalDataStorageConfiguration?: outputs.bedrock.KnowledgeBaseSupplementalDataStorageConfiguration;
|
|
11279
11352
|
}
|
|
11280
11353
|
/**
|
|
11281
11354
|
* Target Agent to invoke with Prompt
|
|
@@ -11491,6 +11564,9 @@ export declare namespace bedrock {
|
|
|
11491
11564
|
* Prompt variant
|
|
11492
11565
|
*/
|
|
11493
11566
|
interface PromptVariant {
|
|
11567
|
+
/**
|
|
11568
|
+
* Specifies a generative AI resource with which to use the prompt.
|
|
11569
|
+
*/
|
|
11494
11570
|
genAiResource?: outputs.bedrock.PromptGenAiResourceProperties;
|
|
11495
11571
|
/**
|
|
11496
11572
|
* Contains inference configurations for the prompt variant.
|
|
@@ -11853,7 +11929,13 @@ export declare namespace cassandra {
|
|
|
11853
11929
|
targetValue: number;
|
|
11854
11930
|
}
|
|
11855
11931
|
interface TypeField {
|
|
11932
|
+
/**
|
|
11933
|
+
* The name of the field.
|
|
11934
|
+
*/
|
|
11856
11935
|
fieldName: string;
|
|
11936
|
+
/**
|
|
11937
|
+
* The data type of the field. This can be any Cassandra data type or another user-defined type.
|
|
11938
|
+
*/
|
|
11857
11939
|
fieldType: string;
|
|
11858
11940
|
}
|
|
11859
11941
|
}
|
|
@@ -12992,6 +13074,10 @@ export declare namespace cloudfront {
|
|
|
12992
13074
|
* A complex type that contains information about CNAMEs (alternate domain names), if any, for this distribution.
|
|
12993
13075
|
*/
|
|
12994
13076
|
aliases?: string[];
|
|
13077
|
+
/**
|
|
13078
|
+
* ID of the Anycast static IP list that is associated with the distribution.
|
|
13079
|
+
*/
|
|
13080
|
+
anycastIpListId?: string;
|
|
12995
13081
|
/**
|
|
12996
13082
|
* A complex type that contains zero or more ``CacheBehavior`` elements.
|
|
12997
13083
|
*/
|
|
@@ -13027,12 +13113,12 @@ export declare namespace cloudfront {
|
|
|
13027
13113
|
*/
|
|
13028
13114
|
defaultCacheBehavior: outputs.cloudfront.DistributionDefaultCacheBehavior;
|
|
13029
13115
|
/**
|
|
13030
|
-
*
|
|
13031
|
-
*
|
|
13116
|
+
* When a viewer requests the root URL for your distribution, the default root object is the object that you want CloudFront to request from your origin. For example, if your root URL is ``https://www.example.com``, you can specify CloudFront to return the ``index.html`` file as the default root object. You can specify a default root object so that viewers see a specific file or object, instead of another object in your distribution (for example, ``https://www.example.com/product-description.html``). A default root object avoids exposing the contents of your distribution.
|
|
13117
|
+
* You can specify the object name or a path to the object name (for example, ``index.html`` or ``exampleFolderName/index.html``). Your string can't begin with a forward slash (``/``). Only specify the object name or the path to the object.
|
|
13032
13118
|
* If you don't want to specify a default root object when you create a distribution, include an empty ``DefaultRootObject`` element.
|
|
13033
13119
|
* To delete the default root object from an existing distribution, update the distribution configuration and include an empty ``DefaultRootObject`` element.
|
|
13034
13120
|
* To replace the default root object, update the distribution configuration and specify the new object.
|
|
13035
|
-
* For more information about the default root object, see [
|
|
13121
|
+
* For more information about the default root object, see [Specify a default root object](https://docs.aws.amazon.com/AmazonCloudFront/latest/DeveloperGuide/DefaultRootObject.html) in the *Amazon CloudFront Developer Guide*.
|
|
13036
13122
|
*/
|
|
13037
13123
|
defaultRootObject?: string;
|
|
13038
13124
|
/**
|
|
@@ -13175,7 +13261,7 @@ export declare namespace cloudfront {
|
|
|
13175
13261
|
httpsPort?: number;
|
|
13176
13262
|
/**
|
|
13177
13263
|
* Specifies how long, in seconds, CloudFront persists its connection to the origin. The minimum timeout is 1 second, the maximum is 60 seconds, and the default (if you don't specify otherwise) is 5 seconds.
|
|
13178
|
-
* For more information, see [
|
|
13264
|
+
* For more information, see [Keep-alive timeout (custom origins only)](https://docs.aws.amazon.com/AmazonCloudFront/latest/DeveloperGuide/distribution-web-values-specify.html#DownloadDistValuesOriginKeepaliveTimeout) in the *Amazon CloudFront Developer Guide*.
|
|
13179
13265
|
*/
|
|
13180
13266
|
originKeepaliveTimeout?: number;
|
|
13181
13267
|
/**
|
|
@@ -13187,7 +13273,7 @@ export declare namespace cloudfront {
|
|
|
13187
13273
|
originProtocolPolicy: string;
|
|
13188
13274
|
/**
|
|
13189
13275
|
* Specifies how long, in seconds, CloudFront waits for a response from the origin. This is also known as the *origin response timeout*. The minimum timeout is 1 second, the maximum is 60 seconds, and the default (if you don't specify otherwise) is 30 seconds.
|
|
13190
|
-
* For more information, see [
|
|
13276
|
+
* For more information, see [Response timeout (custom origins only)](https://docs.aws.amazon.com/AmazonCloudFront/latest/DeveloperGuide/distribution-web-values-specify.html#DownloadDistValuesOriginResponseTimeout) in the *Amazon CloudFront Developer Guide*.
|
|
13191
13277
|
*/
|
|
13192
13278
|
originReadTimeout?: number;
|
|
13193
13279
|
/**
|
|
@@ -13380,6 +13466,11 @@ export declare namespace cloudfront {
|
|
|
13380
13466
|
*/
|
|
13381
13467
|
restrictionType: string;
|
|
13382
13468
|
}
|
|
13469
|
+
/**
|
|
13470
|
+
* Amazon CloudFront supports gRPC, an open-source remote procedure call (RPC) framework built on HTTP/2. gRPC offers bi-directional streaming and binary protocol that buffers payloads, making it suitable for applications that require low latency communications.
|
|
13471
|
+
* To enable your distribution to handle gRPC requests, you must include HTTP/2 as one of the supported ``HTTP`` versions and allow ``HTTP`` methods, including ``POST``.
|
|
13472
|
+
* For more information, see [Using gRPC with CloudFront distributions](https://docs.aws.amazon.com/AmazonCloudFront/latest/DeveloperGuide/distribution-using-grpc.html) in the *Amazon CloudFront Developer Guide*.
|
|
13473
|
+
*/
|
|
13383
13474
|
interface DistributionGrpcConfig {
|
|
13384
13475
|
/**
|
|
13385
13476
|
* Enables your CloudFront distribution to receive gRPC requests and to proxy them directly to your origins.
|
|
@@ -13451,11 +13542,12 @@ export declare namespace cloudfront {
|
|
|
13451
13542
|
originAccessIdentity?: string;
|
|
13452
13543
|
}
|
|
13453
13544
|
/**
|
|
13454
|
-
* A complex type that
|
|
13545
|
+
* A complex type that specifies whether access logs are written for the distribution.
|
|
13546
|
+
* If you already enabled standard logging (legacy) and you want to enable standard logging (v2) to send your access logs to Amazon S3, we recommend that you specify a *different* Amazon S3 bucket or use a *separate path* in the same bucket (for example, use a log prefix or partitioning). This helps you keep track of which log files are associated with which logging subscription and prevents log files from overwriting each other. For more information, see [Standard logging (access logs)](https://docs.aws.amazon.com/AmazonCloudFront/latest/DeveloperGuide/AccessLogs.html) in the *Amazon CloudFront Developer Guide*.
|
|
13455
13547
|
*/
|
|
13456
13548
|
interface DistributionLogging {
|
|
13457
13549
|
/**
|
|
13458
|
-
* The Amazon S3 bucket to store the access logs in, for example, ``
|
|
13550
|
+
* The Amazon S3 bucket to store the access logs in, for example, ``amzn-s3-demo-bucket.s3.amazonaws.com``.
|
|
13459
13551
|
*/
|
|
13460
13552
|
bucket?: string;
|
|
13461
13553
|
/**
|
|
@@ -13546,7 +13638,8 @@ export declare namespace cloudfront {
|
|
|
13546
13638
|
headerValue: string;
|
|
13547
13639
|
}
|
|
13548
13640
|
/**
|
|
13549
|
-
* An origin group includes two origins (a primary origin and a
|
|
13641
|
+
* An origin group includes two origins (a primary origin and a secondary origin to failover to) and a failover criteria that you specify. You create an origin group to support origin failover in CloudFront. When you create or update a distribution, you can specify the origin group instead of a single origin, and CloudFront will failover from the primary origin to the secondary origin under the failover conditions that you've chosen.
|
|
13642
|
+
* Optionally, you can choose selection criteria for your origin group to specify how your origins are selected when your distribution routes viewer requests.
|
|
13550
13643
|
*/
|
|
13551
13644
|
interface DistributionOriginGroup {
|
|
13552
13645
|
/**
|
|
@@ -13562,7 +13655,7 @@ export declare namespace cloudfront {
|
|
|
13562
13655
|
*/
|
|
13563
13656
|
members: outputs.cloudfront.DistributionOriginGroupMembers;
|
|
13564
13657
|
/**
|
|
13565
|
-
* The selection criteria for the origin group. For more information, see [Create an origin group](https://docs.aws.amazon.com/AmazonCloudFront/latest/DeveloperGuide/high_availability_origin_failover.html#concept_origin_groups.creating) in the *Amazon CloudFront Developer Guide
|
|
13658
|
+
* The selection criteria for the origin group. For more information, see [Create an origin group](https://docs.aws.amazon.com/AmazonCloudFront/latest/DeveloperGuide/high_availability_origin_failover.html#concept_origin_groups.creating) in the *Amazon CloudFront Developer Guide*.
|
|
13566
13659
|
*/
|
|
13567
13660
|
selectionCriteria?: enums.cloudfront.DistributionOriginGroupSelectionCriteria;
|
|
13568
13661
|
}
|
|
@@ -18887,6 +18980,9 @@ export declare namespace databrew {
|
|
|
18887
18980
|
* The Amazon S3 bucket name.
|
|
18888
18981
|
*/
|
|
18889
18982
|
bucket: string;
|
|
18983
|
+
/**
|
|
18984
|
+
* The AWS account ID of the bucket owner.
|
|
18985
|
+
*/
|
|
18890
18986
|
bucketOwner?: string;
|
|
18891
18987
|
/**
|
|
18892
18988
|
* The unique name of the object in the bucket.
|
|
@@ -19930,17 +20026,23 @@ export declare namespace datasync {
|
|
|
19930
20026
|
}
|
|
19931
20027
|
export declare namespace datazone {
|
|
19932
20028
|
/**
|
|
19933
|
-
* Specifies the configuration of the data source. It can be set to either glueRunConfiguration or redshiftRunConfiguration.
|
|
20029
|
+
* Specifies the configuration of the data source. It can be set to either glueRunConfiguration or redshiftRunConfiguration or sageMakerRunConfiguration.
|
|
19934
20030
|
*/
|
|
19935
20031
|
interface DataSourceConfigurationInput0Properties {
|
|
19936
20032
|
glueRunConfiguration?: outputs.datazone.DataSourceGlueRunConfigurationInput;
|
|
19937
20033
|
}
|
|
19938
20034
|
/**
|
|
19939
|
-
* Specifies the configuration of the data source. It can be set to either glueRunConfiguration or redshiftRunConfiguration.
|
|
20035
|
+
* Specifies the configuration of the data source. It can be set to either glueRunConfiguration or redshiftRunConfiguration or sageMakerRunConfiguration.
|
|
19940
20036
|
*/
|
|
19941
20037
|
interface DataSourceConfigurationInput1Properties {
|
|
19942
20038
|
redshiftRunConfiguration?: outputs.datazone.DataSourceRedshiftRunConfigurationInput;
|
|
19943
20039
|
}
|
|
20040
|
+
/**
|
|
20041
|
+
* Specifies the configuration of the data source. It can be set to either glueRunConfiguration or redshiftRunConfiguration or sageMakerRunConfiguration.
|
|
20042
|
+
*/
|
|
20043
|
+
interface DataSourceConfigurationInput2Properties {
|
|
20044
|
+
sageMakerRunConfiguration?: outputs.datazone.DataSourceSageMakerRunConfigurationInput;
|
|
20045
|
+
}
|
|
19944
20046
|
/**
|
|
19945
20047
|
* The search filter expression.
|
|
19946
20048
|
*/
|
|
@@ -20066,6 +20168,17 @@ export declare namespace datazone {
|
|
|
20066
20168
|
*/
|
|
20067
20169
|
schemaName?: string;
|
|
20068
20170
|
}
|
|
20171
|
+
/**
|
|
20172
|
+
* The configuration details of the Amazon SageMaker data source.
|
|
20173
|
+
*/
|
|
20174
|
+
interface DataSourceSageMakerRunConfigurationInput {
|
|
20175
|
+
/**
|
|
20176
|
+
* The tracking assets of the Amazon SageMaker run.
|
|
20177
|
+
*/
|
|
20178
|
+
trackingAssets: {
|
|
20179
|
+
[key: string]: any;
|
|
20180
|
+
};
|
|
20181
|
+
}
|
|
20069
20182
|
/**
|
|
20070
20183
|
* The schedule of the data source runs.
|
|
20071
20184
|
*/
|
|
@@ -21507,6 +21620,9 @@ export declare namespace ec2 {
|
|
|
21507
21620
|
min?: number;
|
|
21508
21621
|
}
|
|
21509
21622
|
interface Ec2FleetBaselinePerformanceFactorsRequest {
|
|
21623
|
+
/**
|
|
21624
|
+
* The CPU performance to consider, using an instance family as the baseline reference.
|
|
21625
|
+
*/
|
|
21510
21626
|
cpu?: outputs.ec2.Ec2FleetCpuPerformanceFactorRequest;
|
|
21511
21627
|
}
|
|
21512
21628
|
interface Ec2FleetCapacityRebalance {
|
|
@@ -21540,6 +21656,11 @@ export declare namespace ec2 {
|
|
|
21540
21656
|
usageStrategy?: enums.ec2.Ec2FleetCapacityReservationOptionsRequestUsageStrategy;
|
|
21541
21657
|
}
|
|
21542
21658
|
interface Ec2FleetCpuPerformanceFactorRequest {
|
|
21659
|
+
/**
|
|
21660
|
+
* Specify an instance family to use as the baseline reference for CPU performance. All instance types that match your specified attributes will be compared against the CPU performance of the referenced instance family, regardless of CPU manufacturer or architecture differences.
|
|
21661
|
+
*
|
|
21662
|
+
* > Currently, only one instance family can be specified in the list.
|
|
21663
|
+
*/
|
|
21543
21664
|
references?: outputs.ec2.Ec2FleetPerformanceFactorReferenceRequest[];
|
|
21544
21665
|
}
|
|
21545
21666
|
interface Ec2FleetFleetLaunchTemplateConfigRequest {
|
|
@@ -21711,6 +21832,9 @@ export declare namespace ec2 {
|
|
|
21711
21832
|
* Default: No minimum or maximum limits
|
|
21712
21833
|
*/
|
|
21713
21834
|
baselineEbsBandwidthMbps?: outputs.ec2.Ec2FleetBaselineEbsBandwidthMbpsRequest;
|
|
21835
|
+
/**
|
|
21836
|
+
* The baseline performance to consider, using an instance family as a baseline reference. The instance family establishes the lowest acceptable level of performance. Amazon EC2 uses this baseline to guide instance type selection, but there is no guarantee that the selected instance types will always exceed the baseline for every application. Currently, this parameter only supports CPU performance as a baseline performance factor. For more information, see [Performance protection](https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/ec2-fleet-attribute-based-instance-type-selection.html#ec2fleet-abis-performance-protection) in the *Amazon EC2 User Guide* .
|
|
21837
|
+
*/
|
|
21714
21838
|
baselinePerformanceFactors?: outputs.ec2.Ec2FleetBaselinePerformanceFactorsRequest;
|
|
21715
21839
|
/**
|
|
21716
21840
|
* Indicates whether burstable performance T instance types are included, excluded, or required. For more information, see [Burstable performance instances](https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/burstable-performance-instances.html) .
|
|
@@ -21946,6 +22070,26 @@ export declare namespace ec2 {
|
|
|
21946
22070
|
singleInstanceType?: boolean;
|
|
21947
22071
|
}
|
|
21948
22072
|
interface Ec2FleetPerformanceFactorReferenceRequest {
|
|
22073
|
+
/**
|
|
22074
|
+
* The instance family to use as a baseline reference.
|
|
22075
|
+
*
|
|
22076
|
+
* > Ensure that you specify the correct value for the instance family. The instance family is everything before the period ( `.` ) in the instance type name. For example, in the instance type `c6i.large` , the instance family is `c6i` , not `c6` . For more information, see [Amazon EC2 instance type naming conventions](https://docs.aws.amazon.com/ec2/latest/instancetypes/instance-type-names.html) in *Amazon EC2 Instance Types* .
|
|
22077
|
+
*
|
|
22078
|
+
* The following instance families are *not supported* for performance protection:
|
|
22079
|
+
*
|
|
22080
|
+
* - `c1`
|
|
22081
|
+
* - `g3` | `g3s`
|
|
22082
|
+
* - `hpc7g`
|
|
22083
|
+
* - `m1` | `m2`
|
|
22084
|
+
* - `mac1` | `mac2` | `mac2-m1ultra` | `mac2-m2` | `mac2-m2pro`
|
|
22085
|
+
* - `p3dn` | `p4d` | `p5`
|
|
22086
|
+
* - `t1`
|
|
22087
|
+
* - `u-12tb1` | `u-18tb1` | `u-24tb1` | `u-3tb1` | `u-6tb1` | `u-9tb1` | `u7i-12tb` | `u7in-16tb` | `u7in-24tb` | `u7in-32tb`
|
|
22088
|
+
*
|
|
22089
|
+
* If you enable performance protection by specifying a supported instance family, the returned instance types will exclude the above unsupported instance families.
|
|
22090
|
+
*
|
|
22091
|
+
* If you specify an unsupported instance family as a value for baseline performance, the API returns an empty response response for [GetInstanceTypesFromInstanceRequirements](https://docs.aws.amazon.com/AWSEC2/latest/APIReference/API_GetInstanceTypesFromInstanceRequirements.html) and an exception for [CreateFleet](https://docs.aws.amazon.com/AWSEC2/latest/APIReference/API_CreateFleet.html) , [RequestSpotFleet](https://docs.aws.amazon.com/AWSEC2/latest/APIReference/API_RequestSpotFleet.html) , [ModifyFleet](https://docs.aws.amazon.com/AWSEC2/latest/APIReference/API_ModifyFleet.html) , and [ModifySpotFleetRequest](https://docs.aws.amazon.com/AWSEC2/latest/APIReference/API_ModifySpotFleetRequest.html) .
|
|
22092
|
+
*/
|
|
21949
22093
|
instanceFamily?: string;
|
|
21950
22094
|
}
|
|
21951
22095
|
interface Ec2FleetPlacement {
|
|
@@ -22455,6 +22599,10 @@ export declare namespace ec2 {
|
|
|
22455
22599
|
*/
|
|
22456
22600
|
min?: number;
|
|
22457
22601
|
}
|
|
22602
|
+
/**
|
|
22603
|
+
* The baseline performance to consider, using an instance family as a baseline reference. The instance family establishes the lowest acceptable level of performance. Amazon EC2 uses this baseline to guide instance type selection, but there is no guarantee that the selected instance types will always exceed the baseline for every application.
|
|
22604
|
+
* Currently, this parameter only supports CPU performance as a baseline performance factor. For example, specifying ``c6i`` would use the CPU performance of the ``c6i`` family as the baseline reference.
|
|
22605
|
+
*/
|
|
22458
22606
|
interface LaunchTemplateBaselinePerformanceFactors {
|
|
22459
22607
|
/**
|
|
22460
22608
|
* The CPU performance to consider, using an instance family as the baseline reference.
|
|
@@ -22490,7 +22638,8 @@ export declare namespace ec2 {
|
|
|
22490
22638
|
interface LaunchTemplateCapacityReservationSpecification {
|
|
22491
22639
|
/**
|
|
22492
22640
|
* Indicates the instance's Capacity Reservation preferences. Possible preferences include:
|
|
22493
|
-
* + ``
|
|
22641
|
+
* + ``capacity-reservations-only`` - The instance will only run in a Capacity Reservation or Capacity Reservation group. If capacity isn't available, the instance will fail to launch.
|
|
22642
|
+
* + ``open`` - The instance can run in any ``open`` Capacity Reservation that has matching attributes (instance type, platform, Availability Zone, tenancy).
|
|
22494
22643
|
* + ``none`` - The instance avoids running in a Capacity Reservation even if one is available. The instance runs in On-Demand capacity.
|
|
22495
22644
|
*/
|
|
22496
22645
|
capacityReservationPreference?: string;
|
|
@@ -22530,6 +22679,9 @@ export declare namespace ec2 {
|
|
|
22530
22679
|
*/
|
|
22531
22680
|
udpTimeout?: number;
|
|
22532
22681
|
}
|
|
22682
|
+
/**
|
|
22683
|
+
* Specifies the CPU performance to consider when using an instance family as the baseline reference.
|
|
22684
|
+
*/
|
|
22533
22685
|
interface LaunchTemplateCpu {
|
|
22534
22686
|
/**
|
|
22535
22687
|
* The instance family to use as the baseline reference for CPU performance. All instance types that match your specified attributes are compared against the CPU performance of the referenced instance family, regardless of CPU manufacturer or architecture differences.
|
|
@@ -22604,7 +22756,8 @@ export declare namespace ec2 {
|
|
|
22604
22756
|
*/
|
|
22605
22757
|
elasticGpuSpecifications?: outputs.ec2.LaunchTemplateElasticGpuSpecification[];
|
|
22606
22758
|
/**
|
|
22607
|
-
*
|
|
22759
|
+
* Amazon Elastic Inference is no longer available.
|
|
22760
|
+
* An elastic inference accelerator to associate with the instance. Elastic inference accelerators are a resource you can attach to your Amazon EC2 instances to accelerate your Deep Learning (DL) inference workloads.
|
|
22608
22761
|
* You cannot specify accelerators from different generations in the same request.
|
|
22609
22762
|
* Starting April 15, 2023, AWS will not onboard new customers to Amazon Elastic Inference (EI), and will help current customers migrate their workloads to options that offer better price and performance. After April 15, 2023, new customers will not be able to launch instances with Amazon EI accelerators in Amazon SageMaker, Amazon ECS, or Amazon EC2. However, customers who have used Amazon EI at least once during the past 30-day period are considered current customers and will be able to continue using the service.
|
|
22610
22763
|
*/
|
|
@@ -22652,7 +22805,7 @@ export declare namespace ec2 {
|
|
|
22652
22805
|
*
|
|
22653
22806
|
* If you specify ``InstanceRequirements``, you can't specify ``InstanceType``.
|
|
22654
22807
|
* Attribute-based instance type selection is only supported when using Auto Scaling groups, EC2 Fleet, and Spot Fleet to launch instances. If you plan to use the launch template in the [launch instance wizard](https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/ec2-launch-instance-wizard.html), or with the [RunInstances](https://docs.aws.amazon.com/AWSEC2/latest/APIReference/API_RunInstances.html) API or [AWS::EC2::Instance](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-instance.html) AWS CloudFormation resource, you can't specify ``InstanceRequirements``.
|
|
22655
|
-
* For more information, see [
|
|
22808
|
+
* For more information, see [Specify attributes for instance type selection for EC2 Fleet or Spot Fleet](https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/ec2-fleet-attribute-based-instance-type-selection.html) and [Spot placement score](https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/spot-placement-score.html) in the *Amazon EC2 User Guide*.
|
|
22656
22809
|
*/
|
|
22657
22810
|
instanceRequirements?: outputs.ec2.LaunchTemplateInstanceRequirements;
|
|
22658
22811
|
/**
|
|
@@ -22715,8 +22868,7 @@ export declare namespace ec2 {
|
|
|
22715
22868
|
*/
|
|
22716
22869
|
securityGroups?: string[];
|
|
22717
22870
|
/**
|
|
22718
|
-
* The tags to apply to
|
|
22719
|
-
* To tag a resource after it has been created, see [CreateTags](https://docs.aws.amazon.com/AWSEC2/latest/APIReference/API_CreateTags.html).
|
|
22871
|
+
* The tags to apply to resources that are created during instance launch.
|
|
22720
22872
|
* To tag the launch template itself, use [TagSpecifications](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-launchtemplate.html#cfn-ec2-launchtemplate-tagspecifications).
|
|
22721
22873
|
*/
|
|
22722
22874
|
tagSpecifications?: outputs.ec2.TagSpecification[];
|
|
@@ -22751,7 +22903,7 @@ export declare namespace ec2 {
|
|
|
22751
22903
|
*/
|
|
22752
22904
|
iops?: number;
|
|
22753
22905
|
/**
|
|
22754
|
-
*
|
|
22906
|
+
* Identifier (key ID, key alias, key ARN, or alias ARN) of the customer managed KMS key to use for EBS encryption.
|
|
22755
22907
|
*/
|
|
22756
22908
|
kmsKeyId?: string;
|
|
22757
22909
|
/**
|
|
@@ -22885,7 +23037,7 @@ export declare namespace ec2 {
|
|
|
22885
23037
|
*
|
|
22886
23038
|
* If you specify ``InstanceRequirements``, you can't specify ``InstanceType``.
|
|
22887
23039
|
* Attribute-based instance type selection is only supported when using Auto Scaling groups, EC2 Fleet, and Spot Fleet to launch instances. If you plan to use the launch template in the [launch instance wizard](https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/ec2-launch-instance-wizard.html), or with the [RunInstances](https://docs.aws.amazon.com/AWSEC2/latest/APIReference/API_RunInstances.html) API or [AWS::EC2::Instance](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-instance.html) AWS CloudFormation resource, you can't specify ``InstanceRequirements``.
|
|
22888
|
-
* For more information, see [
|
|
23040
|
+
* For more information, see [Specify attributes for instance type selection for EC2 Fleet or Spot Fleet](https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/ec2-fleet-attribute-based-instance-type-selection.html) and [Spot placement score](https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/spot-placement-score.html) in the *Amazon EC2 User Guide*.
|
|
22889
23041
|
*/
|
|
22890
23042
|
interface LaunchTemplateInstanceRequirements {
|
|
22891
23043
|
/**
|
|
@@ -22932,7 +23084,6 @@ export declare namespace ec2 {
|
|
|
22932
23084
|
* The accelerator types that must be on the instance type.
|
|
22933
23085
|
* + For instance types with GPU accelerators, specify ``gpu``.
|
|
22934
23086
|
* + For instance types with FPGA accelerators, specify ``fpga``.
|
|
22935
|
-
* + For instance types with inference accelerators, specify ``inference``.
|
|
22936
23087
|
*
|
|
22937
23088
|
* Default: Any accelerator type
|
|
22938
23089
|
*/
|
|
@@ -22960,7 +23111,7 @@ export declare namespace ec2 {
|
|
|
22960
23111
|
*/
|
|
22961
23112
|
baselineEbsBandwidthMbps?: outputs.ec2.LaunchTemplateBaselineEbsBandwidthMbps;
|
|
22962
23113
|
/**
|
|
22963
|
-
* The baseline performance to consider, using an instance family as a baseline reference. The instance family establishes the lowest acceptable level of performance. Amazon EC2 uses this baseline to guide instance type selection, but there is no guarantee that the selected instance types will always exceed the baseline for every application. Currently, this parameter only supports CPU performance as a baseline performance factor. For more information, see [Performance protection](https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/ec2-fleet-attribute-based-instance-type-selection.html#ec2fleet-abis-performance-protection) in the *Amazon EC2 User Guide
|
|
23114
|
+
* The baseline performance to consider, using an instance family as a baseline reference. The instance family establishes the lowest acceptable level of performance. Amazon EC2 uses this baseline to guide instance type selection, but there is no guarantee that the selected instance types will always exceed the baseline for every application. Currently, this parameter only supports CPU performance as a baseline performance factor. For more information, see [Performance protection](https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/ec2-fleet-attribute-based-instance-type-selection.html#ec2fleet-abis-performance-protection) in the *Amazon EC2 User Guide*.
|
|
22964
23115
|
*/
|
|
22965
23116
|
baselinePerformanceFactors?: outputs.ec2.LaunchTemplateBaselinePerformanceFactors;
|
|
22966
23117
|
/**
|
|
@@ -22977,6 +23128,7 @@ export declare namespace ec2 {
|
|
|
22977
23128
|
* + For instance types with Intel CPUs, specify ``intel``.
|
|
22978
23129
|
* + For instance types with AMD CPUs, specify ``amd``.
|
|
22979
23130
|
* + For instance types with AWS CPUs, specify ``amazon-web-services``.
|
|
23131
|
+
* + For instance types with Apple CPUs, specify ``apple``.
|
|
22980
23132
|
*
|
|
22981
23133
|
* Don't confuse the CPU manufacturer with the CPU architecture. Instances will be launched with a compatible CPU architecture based on the Amazon Machine Image (AMI) that you specify in your launch template.
|
|
22982
23134
|
* Default: Any manufacturer
|
|
@@ -23248,9 +23400,10 @@ export declare namespace ec2 {
|
|
|
23248
23400
|
*/
|
|
23249
23401
|
groups?: string[];
|
|
23250
23402
|
/**
|
|
23251
|
-
* The type of network interface. To create an Elastic Fabric Adapter (EFA), specify ``efa``. For more information, see [Elastic Fabric Adapter](https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/efa.html) in the *Amazon EC2 User Guide*.
|
|
23403
|
+
* The type of network interface. To create an Elastic Fabric Adapter (EFA), specify ``efa`` or ``efa``. For more information, see [Elastic Fabric Adapter](https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/efa.html) in the *Amazon EC2 User Guide*.
|
|
23252
23404
|
* If you are not creating an EFA, specify ``interface`` or omit this parameter.
|
|
23253
|
-
*
|
|
23405
|
+
* If you specify ``efa-only``, do not assign any IP addresses to the network interface. EFA-only network interfaces do not support IP addresses.
|
|
23406
|
+
* Valid values: ``interface`` | ``efa`` | ``efa-only``
|
|
23254
23407
|
*/
|
|
23255
23408
|
interfaceType?: string;
|
|
23256
23409
|
/**
|
|
@@ -23392,9 +23545,24 @@ export declare namespace ec2 {
|
|
|
23392
23545
|
*/
|
|
23393
23546
|
privateIpAddress?: string;
|
|
23394
23547
|
}
|
|
23548
|
+
/**
|
|
23549
|
+
* Specifies an instance family to use as the baseline reference for CPU performance.
|
|
23550
|
+
*/
|
|
23395
23551
|
interface LaunchTemplateReference {
|
|
23396
23552
|
/**
|
|
23397
|
-
* The instance family to
|
|
23553
|
+
* The instance family to use as a baseline reference.
|
|
23554
|
+
* Ensure that you specify the correct value for the instance family. The instance family is everything before the period (``.``) in the instance type name. For example, in the instance type ``c6i.large``, the instance family is ``c6i``, not ``c6``. For more information, see [Amazon EC2 instance type naming conventions](https://docs.aws.amazon.com/ec2/latest/instancetypes/instance-type-names.html) in *Amazon EC2 Instance Types*.
|
|
23555
|
+
* The following instance families are *not supported* for performance protection:
|
|
23556
|
+
* + ``c1``
|
|
23557
|
+
* + ``g3`` | ``g3s``
|
|
23558
|
+
* + ``hpc7g``
|
|
23559
|
+
* + ``m1`` | ``m2``
|
|
23560
|
+
* + ``mac1`` | ``mac2`` | ``mac2-m1ultra`` | ``mac2-m2`` | ``mac2-m2pro``
|
|
23561
|
+
* + ``p3dn`` | ``p4d`` | ``p5``
|
|
23562
|
+
* + ``t1``
|
|
23563
|
+
* + ``u-12tb1`` | ``u-18tb1`` | ``u-24tb1`` | ``u-3tb1`` | ``u-6tb1`` | ``u-9tb1`` | ``u7i-12tb`` | ``u7in-16tb`` | ``u7in-24tb`` | ``u7in-32tb``
|
|
23564
|
+
*
|
|
23565
|
+
* If you enable performance protection by specifying a supported instance family, the returned instance types will exclude the above unsupported instance families.
|
|
23398
23566
|
*/
|
|
23399
23567
|
instanceFamily?: string;
|
|
23400
23568
|
}
|
|
@@ -23445,6 +23613,7 @@ export declare namespace ec2 {
|
|
|
23445
23613
|
}
|
|
23446
23614
|
/**
|
|
23447
23615
|
* Specifies the tags to apply to the launch template during creation.
|
|
23616
|
+
* To specify the tags for the resources that are created during instance launch, use [AWS::EC2::LaunchTemplate TagSpecification](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-tagspecification.html).
|
|
23448
23617
|
* ``LaunchTemplateTagSpecification`` is a property of [AWS::EC2::LaunchTemplate](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-launchtemplate.html).
|
|
23449
23618
|
*/
|
|
23450
23619
|
interface LaunchTemplateTagSpecification {
|
|
@@ -24354,6 +24523,9 @@ export declare namespace ec2 {
|
|
|
24354
24523
|
min?: number;
|
|
24355
24524
|
}
|
|
24356
24525
|
interface SpotFleetBaselinePerformanceFactorsRequest {
|
|
24526
|
+
/**
|
|
24527
|
+
* The CPU performance to consider, using an instance family as the baseline reference.
|
|
24528
|
+
*/
|
|
24357
24529
|
cpu?: outputs.ec2.SpotFleetCpuPerformanceFactorRequest;
|
|
24358
24530
|
}
|
|
24359
24531
|
interface SpotFleetBlockDeviceMapping {
|
|
@@ -24391,6 +24563,11 @@ export declare namespace ec2 {
|
|
|
24391
24563
|
classicLoadBalancers: outputs.ec2.SpotFleetClassicLoadBalancer[];
|
|
24392
24564
|
}
|
|
24393
24565
|
interface SpotFleetCpuPerformanceFactorRequest {
|
|
24566
|
+
/**
|
|
24567
|
+
* Specify an instance family to use as the baseline reference for CPU performance. All instance types that match your specified attributes will be compared against the CPU performance of the referenced instance family, regardless of CPU manufacturer or architecture differences.
|
|
24568
|
+
*
|
|
24569
|
+
* > Currently, only one instance family can be specified in the list.
|
|
24570
|
+
*/
|
|
24394
24571
|
references?: outputs.ec2.SpotFleetPerformanceFactorReferenceRequest[];
|
|
24395
24572
|
}
|
|
24396
24573
|
interface SpotFleetEbsBlockDevice {
|
|
@@ -24616,6 +24793,9 @@ export declare namespace ec2 {
|
|
|
24616
24793
|
* Default: No minimum or maximum limits
|
|
24617
24794
|
*/
|
|
24618
24795
|
baselineEbsBandwidthMbps?: outputs.ec2.SpotFleetBaselineEbsBandwidthMbpsRequest;
|
|
24796
|
+
/**
|
|
24797
|
+
* The baseline performance to consider, using an instance family as a baseline reference. The instance family establishes the lowest acceptable level of performance. Amazon EC2 uses this baseline to guide instance type selection, but there is no guarantee that the selected instance types will always exceed the baseline for every application. Currently, this parameter only supports CPU performance as a baseline performance factor. For more information, see [Performance protection](https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/ec2-fleet-attribute-based-instance-type-selection.html#ec2fleet-abis-performance-protection) in the *Amazon EC2 User Guide* .
|
|
24798
|
+
*/
|
|
24619
24799
|
baselinePerformanceFactors?: outputs.ec2.SpotFleetBaselinePerformanceFactorsRequest;
|
|
24620
24800
|
/**
|
|
24621
24801
|
* Indicates whether burstable performance T instance types are included, excluded, or required. For more information, see [Burstable performance instances](https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/burstable-performance-instances.html) .
|
|
@@ -24961,6 +25141,26 @@ export declare namespace ec2 {
|
|
|
24961
25141
|
min?: number;
|
|
24962
25142
|
}
|
|
24963
25143
|
interface SpotFleetPerformanceFactorReferenceRequest {
|
|
25144
|
+
/**
|
|
25145
|
+
* The instance family to use as a baseline reference.
|
|
25146
|
+
*
|
|
25147
|
+
* > Ensure that you specify the correct value for the instance family. The instance family is everything before the period ( `.` ) in the instance type name. For example, in the instance type `c6i.large` , the instance family is `c6i` , not `c6` . For more information, see [Amazon EC2 instance type naming conventions](https://docs.aws.amazon.com/ec2/latest/instancetypes/instance-type-names.html) in *Amazon EC2 Instance Types* .
|
|
25148
|
+
*
|
|
25149
|
+
* The following instance families are *not supported* for performance protection:
|
|
25150
|
+
*
|
|
25151
|
+
* - `c1`
|
|
25152
|
+
* - `g3` | `g3s`
|
|
25153
|
+
* - `hpc7g`
|
|
25154
|
+
* - `m1` | `m2`
|
|
25155
|
+
* - `mac1` | `mac2` | `mac2-m1ultra` | `mac2-m2` | `mac2-m2pro`
|
|
25156
|
+
* - `p3dn` | `p4d` | `p5`
|
|
25157
|
+
* - `t1`
|
|
25158
|
+
* - `u-12tb1` | `u-18tb1` | `u-24tb1` | `u-3tb1` | `u-6tb1` | `u-9tb1` | `u7i-12tb` | `u7in-16tb` | `u7in-24tb` | `u7in-32tb`
|
|
25159
|
+
*
|
|
25160
|
+
* If you enable performance protection by specifying a supported instance family, the returned instance types will exclude the above unsupported instance families.
|
|
25161
|
+
*
|
|
25162
|
+
* If you specify an unsupported instance family as a value for baseline performance, the API returns an empty response for [GetInstanceTypesFromInstanceRequirements](https://docs.aws.amazon.com/AWSEC2/latest/APIReference/API_GetInstanceTypesFromInstanceRequirements.html) and an exception for [CreateFleet](https://docs.aws.amazon.com/AWSEC2/latest/APIReference/API_CreateFleet.html) , [RequestSpotFleet](https://docs.aws.amazon.com/AWSEC2/latest/APIReference/API_RequestSpotFleet.html) , [ModifyFleet](https://docs.aws.amazon.com/AWSEC2/latest/APIReference/API_ModifyFleet.html) , and [ModifySpotFleetRequest](https://docs.aws.amazon.com/AWSEC2/latest/APIReference/API_ModifySpotFleetRequest.html) .
|
|
25163
|
+
*/
|
|
24964
25164
|
instanceFamily?: string;
|
|
24965
25165
|
}
|
|
24966
25166
|
interface SpotFleetPrivateIpAddressSpecification {
|
|
@@ -25198,7 +25398,7 @@ export declare namespace ec2 {
|
|
|
25198
25398
|
kmsKeyArn?: string;
|
|
25199
25399
|
}
|
|
25200
25400
|
/**
|
|
25201
|
-
* Specifies the tags to apply to
|
|
25401
|
+
* Specifies the tags to apply to resources that are created during instance launch.
|
|
25202
25402
|
* ``TagSpecification`` is a property type of [TagSpecifications](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-launchtemplatedata.html#cfn-ec2-launchtemplate-launchtemplatedata-tagspecifications). [TagSpecifications](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-launchtemplatedata.html#cfn-ec2-launchtemplate-launchtemplatedata-tagspecifications) is a property of [AWS::EC2::LaunchTemplate LaunchTemplateData](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-launchtemplatedata.html).
|
|
25203
25403
|
*/
|
|
25204
25404
|
interface TagSpecification {
|
|
@@ -25436,7 +25636,13 @@ export declare namespace ec2 {
|
|
|
25436
25636
|
userInfoEndpoint?: string;
|
|
25437
25637
|
}
|
|
25438
25638
|
interface VpcEndpointDnsOptionsSpecification {
|
|
25639
|
+
/**
|
|
25640
|
+
* The DNS records created for the endpoint.
|
|
25641
|
+
*/
|
|
25439
25642
|
dnsRecordIpType?: enums.ec2.VpcEndpointDnsOptionsSpecificationDnsRecordIpType;
|
|
25643
|
+
/**
|
|
25644
|
+
* Indicates whether to enable private DNS only for inbound endpoints. This option is available only for services that support both gateway and interface endpoints. It routes traffic that originates from the VPC to the gateway endpoint and traffic that originates from on-premises to the interface endpoint.
|
|
25645
|
+
*/
|
|
25440
25646
|
privateDnsOnlyForInboundResolverEndpoint?: enums.ec2.VpcEndpointDnsOptionsSpecificationPrivateDnsOnlyForInboundResolverEndpoint;
|
|
25441
25647
|
}
|
|
25442
25648
|
/**
|
|
@@ -26162,13 +26368,15 @@ export declare namespace ecs {
|
|
|
26162
26368
|
deploymentCircuitBreaker?: outputs.ecs.ServiceDeploymentCircuitBreaker;
|
|
26163
26369
|
/**
|
|
26164
26370
|
* If a service is using the rolling update (``ECS``) deployment type, the ``maximumPercent`` parameter represents an upper limit on the number of your service's tasks that are allowed in the ``RUNNING`` or ``PENDING`` state during a deployment, as a percentage of the ``desiredCount`` (rounded down to the nearest integer). This parameter enables you to define the deployment batch size. For example, if your service is using the ``REPLICA`` service scheduler and has a ``desiredCount`` of four tasks and a ``maximumPercent`` value of 200%, the scheduler may start four new tasks before stopping the four older tasks (provided that the cluster resources required to do this are available). The default ``maximumPercent`` value for a service using the ``REPLICA`` service scheduler is 200%.
|
|
26371
|
+
* The Amazon ECS scheduler uses this parameter to replace unhealthy tasks by starting replacement tasks first and then stopping the unhealthy tasks, as long as cluster resources for starting replacement tasks are available. For more information about how the scheduler replaces unhealthy tasks, see [Amazon ECS services](https://docs.aws.amazon.com/AmazonECS/latest/developerguide/ecs_services.html).
|
|
26165
26372
|
* If a service is using either the blue/green (``CODE_DEPLOY``) or ``EXTERNAL`` deployment types, and tasks in the service use the EC2 launch type, the *maximum percent* value is set to the default value. The *maximum percent* value is used to define the upper limit on the number of the tasks in the service that remain in the ``RUNNING`` state while the container instances are in the ``DRAINING`` state.
|
|
26166
26373
|
* You can't specify a custom ``maximumPercent`` value for a service that uses either the blue/green (``CODE_DEPLOY``) or ``EXTERNAL`` deployment types and has tasks that use the EC2 launch type.
|
|
26167
|
-
* If the tasks in the service use the Fargate launch type, the maximum percent value is not used
|
|
26374
|
+
* If the service uses either the blue/green (``CODE_DEPLOY``) or ``EXTERNAL`` deployment types, and the tasks in the service use the Fargate launch type, the maximum percent value is not used. The value is still returned when describing your service.
|
|
26168
26375
|
*/
|
|
26169
26376
|
maximumPercent?: number;
|
|
26170
26377
|
/**
|
|
26171
26378
|
* If a service is using the rolling update (``ECS``) deployment type, the ``minimumHealthyPercent`` represents a lower limit on the number of your service's tasks that must remain in the ``RUNNING`` state during a deployment, as a percentage of the ``desiredCount`` (rounded up to the nearest integer). This parameter enables you to deploy without using additional cluster capacity. For example, if your service has a ``desiredCount`` of four tasks and a ``minimumHealthyPercent`` of 50%, the service scheduler may stop two existing tasks to free up cluster capacity before starting two new tasks.
|
|
26379
|
+
* If any tasks are unhealthy and if ``maximumPercent`` doesn't allow the Amazon ECS scheduler to start replacement tasks, the scheduler stops the unhealthy tasks one-by-one — using the ``minimumHealthyPercent`` as a constraint — to clear up capacity to launch replacement tasks. For more information about how the scheduler replaces unhealthy tasks, see [Amazon ECS services](https://docs.aws.amazon.com/AmazonECS/latest/developerguide/ecs_services.html) .
|
|
26172
26380
|
* For services that *do not* use a load balancer, the following should be noted:
|
|
26173
26381
|
* + A service is considered healthy if all essential containers within the tasks in the service pass their health checks.
|
|
26174
26382
|
* + If a task has no essential containers with a health check defined, the service scheduler will wait for 40 seconds after a task reaches a ``RUNNING`` state before the task is counted towards the minimum healthy percent total.
|
|
@@ -46038,6 +46246,15 @@ export declare namespace mediaconnect {
|
|
|
46038
46246
|
*/
|
|
46039
46247
|
maxOutputs: number;
|
|
46040
46248
|
}
|
|
46249
|
+
/**
|
|
46250
|
+
* The settings related to the multicast source.
|
|
46251
|
+
*/
|
|
46252
|
+
interface BridgeMulticastSourceSettings {
|
|
46253
|
+
/**
|
|
46254
|
+
* The IP address of the source for source-specific multicast (SSM).
|
|
46255
|
+
*/
|
|
46256
|
+
multicastSourceIp?: string;
|
|
46257
|
+
}
|
|
46041
46258
|
/**
|
|
46042
46259
|
* The output of the bridge. A network output is delivered to your premises.
|
|
46043
46260
|
*/
|
|
@@ -46075,6 +46292,10 @@ export declare namespace mediaconnect {
|
|
|
46075
46292
|
* The network source multicast IP.
|
|
46076
46293
|
*/
|
|
46077
46294
|
multicastIp: string;
|
|
46295
|
+
/**
|
|
46296
|
+
* The settings related to the multicast source.
|
|
46297
|
+
*/
|
|
46298
|
+
multicastSourceSettings?: outputs.mediaconnect.BridgeMulticastSourceSettings;
|
|
46078
46299
|
/**
|
|
46079
46300
|
* The name of the network source.
|
|
46080
46301
|
*/
|
|
@@ -46160,6 +46381,10 @@ export declare namespace mediaconnect {
|
|
|
46160
46381
|
* The network source multicast IP.
|
|
46161
46382
|
*/
|
|
46162
46383
|
multicastIp: string;
|
|
46384
|
+
/**
|
|
46385
|
+
* The settings related to the multicast source.
|
|
46386
|
+
*/
|
|
46387
|
+
multicastSourceSettings?: outputs.mediaconnect.BridgeSourceMulticastSourceSettings;
|
|
46163
46388
|
/**
|
|
46164
46389
|
* The network source's gateway network name.
|
|
46165
46390
|
*/
|
|
@@ -46173,6 +46398,15 @@ export declare namespace mediaconnect {
|
|
|
46173
46398
|
*/
|
|
46174
46399
|
protocol: enums.mediaconnect.BridgeSourceProtocolEnum;
|
|
46175
46400
|
}
|
|
46401
|
+
/**
|
|
46402
|
+
* The settings related to the multicast source.
|
|
46403
|
+
*/
|
|
46404
|
+
interface BridgeSourceMulticastSourceSettings {
|
|
46405
|
+
/**
|
|
46406
|
+
* The IP address of the source for source-specific multicast (SSM).
|
|
46407
|
+
*/
|
|
46408
|
+
multicastSourceIp?: string;
|
|
46409
|
+
}
|
|
46176
46410
|
/**
|
|
46177
46411
|
* The priority you want to assign to a source. You can have a primary stream and a backup stream or two equally prioritized streams.
|
|
46178
46412
|
*/
|
|
@@ -50235,6 +50469,9 @@ export declare namespace opensearchservice {
|
|
|
50235
50469
|
* Indicates whether Multi-AZ with Standby deployment option is enabled. For more information, see [Multi-AZ with Standby](https://docs.aws.amazon.com/opensearch-service/latest/developerguide/managedomains-multiaz.html#managedomains-za-standby) .
|
|
50236
50470
|
*/
|
|
50237
50471
|
multiAzWithStandbyEnabled?: boolean;
|
|
50472
|
+
/**
|
|
50473
|
+
* List of node options for the domain.
|
|
50474
|
+
*/
|
|
50238
50475
|
nodeOptions?: outputs.opensearchservice.DomainNodeOption[];
|
|
50239
50476
|
/**
|
|
50240
50477
|
* The number of warm nodes in the cluster.
|
|
@@ -50419,12 +50656,27 @@ export declare namespace opensearchservice {
|
|
|
50419
50656
|
masterUserPassword?: string;
|
|
50420
50657
|
}
|
|
50421
50658
|
interface DomainNodeConfig {
|
|
50659
|
+
/**
|
|
50660
|
+
* The number of nodes of a particular node type in the cluster.
|
|
50661
|
+
*/
|
|
50422
50662
|
count?: number;
|
|
50663
|
+
/**
|
|
50664
|
+
* A boolean that indicates whether a particular node type is enabled or not.
|
|
50665
|
+
*/
|
|
50423
50666
|
enabled?: boolean;
|
|
50667
|
+
/**
|
|
50668
|
+
* The instance type of a particular node type in the cluster.
|
|
50669
|
+
*/
|
|
50424
50670
|
type?: string;
|
|
50425
50671
|
}
|
|
50426
50672
|
interface DomainNodeOption {
|
|
50673
|
+
/**
|
|
50674
|
+
* Container for specifying configuration of any node type.
|
|
50675
|
+
*/
|
|
50427
50676
|
nodeConfig?: outputs.opensearchservice.DomainNodeConfig;
|
|
50677
|
+
/**
|
|
50678
|
+
* Container for node type like coordinating.
|
|
50679
|
+
*/
|
|
50428
50680
|
nodeType?: enums.opensearchservice.DomainNodeOptionNodeType;
|
|
50429
50681
|
}
|
|
50430
50682
|
interface DomainNodeToNodeEncryptionOptions {
|
|
@@ -61055,22 +61307,73 @@ export declare namespace quicksight {
|
|
|
61055
61307
|
yAxis: enums.quicksight.AnalysisSingleYAxisOption;
|
|
61056
61308
|
}
|
|
61057
61309
|
interface CustomPermissionsCapabilities {
|
|
61310
|
+
/**
|
|
61311
|
+
* The ability to add or run anomaly detection.
|
|
61312
|
+
*/
|
|
61058
61313
|
addOrRunAnomalyDetectionForAnalyses?: enums.quicksight.CustomPermissionsCapabilityState;
|
|
61314
|
+
/**
|
|
61315
|
+
* The ability to create and update email reports.
|
|
61316
|
+
*/
|
|
61059
61317
|
createAndUpdateDashboardEmailReports?: enums.quicksight.CustomPermissionsCapabilityState;
|
|
61318
|
+
/**
|
|
61319
|
+
* The ability to create and update data sources.
|
|
61320
|
+
*/
|
|
61060
61321
|
createAndUpdateDataSources?: enums.quicksight.CustomPermissionsCapabilityState;
|
|
61322
|
+
/**
|
|
61323
|
+
* The ability to create and update datasets.
|
|
61324
|
+
*/
|
|
61061
61325
|
createAndUpdateDatasets?: enums.quicksight.CustomPermissionsCapabilityState;
|
|
61326
|
+
/**
|
|
61327
|
+
* The ability to export to Create and Update themes.
|
|
61328
|
+
*/
|
|
61062
61329
|
createAndUpdateThemes?: enums.quicksight.CustomPermissionsCapabilityState;
|
|
61330
|
+
/**
|
|
61331
|
+
* The ability to create and update threshold alerts.
|
|
61332
|
+
*/
|
|
61063
61333
|
createAndUpdateThresholdAlerts?: enums.quicksight.CustomPermissionsCapabilityState;
|
|
61334
|
+
/**
|
|
61335
|
+
* The ability to create shared folders.
|
|
61336
|
+
*/
|
|
61064
61337
|
createSharedFolders?: enums.quicksight.CustomPermissionsCapabilityState;
|
|
61338
|
+
/**
|
|
61339
|
+
* The ability to create a SPICE dataset.
|
|
61340
|
+
*/
|
|
61065
61341
|
createSpiceDataset?: enums.quicksight.CustomPermissionsCapabilityState;
|
|
61342
|
+
/**
|
|
61343
|
+
* The ability to export to CSV files.
|
|
61344
|
+
*/
|
|
61066
61345
|
exportToCsv?: enums.quicksight.CustomPermissionsCapabilityState;
|
|
61346
|
+
/**
|
|
61347
|
+
* The ability to export to Excel files.
|
|
61348
|
+
*/
|
|
61067
61349
|
exportToExcel?: enums.quicksight.CustomPermissionsCapabilityState;
|
|
61350
|
+
/**
|
|
61351
|
+
* The ability to rename shared folders.
|
|
61352
|
+
*/
|
|
61068
61353
|
renameSharedFolders?: enums.quicksight.CustomPermissionsCapabilityState;
|
|
61354
|
+
/**
|
|
61355
|
+
* The ability to share analyses.
|
|
61356
|
+
*/
|
|
61069
61357
|
shareAnalyses?: enums.quicksight.CustomPermissionsCapabilityState;
|
|
61358
|
+
/**
|
|
61359
|
+
* The ability to share dashboards.
|
|
61360
|
+
*/
|
|
61070
61361
|
shareDashboards?: enums.quicksight.CustomPermissionsCapabilityState;
|
|
61362
|
+
/**
|
|
61363
|
+
* The ability to share data sources.
|
|
61364
|
+
*/
|
|
61071
61365
|
shareDataSources?: enums.quicksight.CustomPermissionsCapabilityState;
|
|
61366
|
+
/**
|
|
61367
|
+
* The ability to share datasets.
|
|
61368
|
+
*/
|
|
61072
61369
|
shareDatasets?: enums.quicksight.CustomPermissionsCapabilityState;
|
|
61370
|
+
/**
|
|
61371
|
+
* The ability to subscribe to email reports.
|
|
61372
|
+
*/
|
|
61073
61373
|
subscribeDashboardEmailReports?: enums.quicksight.CustomPermissionsCapabilityState;
|
|
61374
|
+
/**
|
|
61375
|
+
* The ability to view account SPICE capacity.
|
|
61376
|
+
*/
|
|
61074
61377
|
viewAccountSpiceCapacity?: enums.quicksight.CustomPermissionsCapabilityState;
|
|
61075
61378
|
}
|
|
61076
61379
|
/**
|
|
@@ -66766,7 +67069,7 @@ export declare namespace quicksight {
|
|
|
66766
67069
|
/**
|
|
66767
67070
|
* The menu options of a visual in a dashboard.
|
|
66768
67071
|
*/
|
|
66769
|
-
visualMenuOption?:
|
|
67072
|
+
visualMenuOption?: any;
|
|
66770
67073
|
/**
|
|
66771
67074
|
* The visual publish options of a visual in a dashboard.
|
|
66772
67075
|
*/
|
|
@@ -69052,12 +69355,6 @@ export declare namespace quicksight {
|
|
|
69052
69355
|
*/
|
|
69053
69356
|
urlOperation?: outputs.quicksight.DashboardCustomActionUrlOperation;
|
|
69054
69357
|
}
|
|
69055
|
-
interface DashboardVisualMenuOption {
|
|
69056
|
-
/**
|
|
69057
|
-
* The availaiblity status of a visual's menu options.
|
|
69058
|
-
*/
|
|
69059
|
-
availabilityStatus?: enums.quicksight.DashboardBehavior;
|
|
69060
|
-
}
|
|
69061
69358
|
interface DashboardVisualPalette {
|
|
69062
69359
|
/**
|
|
69063
69360
|
* The chart color options for the visual palette.
|
|
@@ -70036,7 +70333,7 @@ export declare namespace quicksight {
|
|
|
70036
70333
|
/**
|
|
70037
70334
|
* Information about the format for the S3 source file or files.
|
|
70038
70335
|
*/
|
|
70039
|
-
uploadSettings?:
|
|
70336
|
+
uploadSettings?: any;
|
|
70040
70337
|
}
|
|
70041
70338
|
/**
|
|
70042
70339
|
* <p>A string parameter for a dataset.</p>
|
|
@@ -70135,31 +70432,6 @@ export declare namespace quicksight {
|
|
|
70135
70432
|
*/
|
|
70136
70433
|
tagNames: enums.quicksight.DataSetColumnTagName[];
|
|
70137
70434
|
}
|
|
70138
|
-
/**
|
|
70139
|
-
* <p>Information about the format for a source file or files.</p>
|
|
70140
|
-
*/
|
|
70141
|
-
interface DataSetUploadSettings {
|
|
70142
|
-
/**
|
|
70143
|
-
* <p>Whether the file has a header row, or the files each have a header row.</p>
|
|
70144
|
-
*/
|
|
70145
|
-
containsHeader?: boolean;
|
|
70146
|
-
/**
|
|
70147
|
-
* <p>The delimiter between values in the file.</p>
|
|
70148
|
-
*/
|
|
70149
|
-
delimiter?: string;
|
|
70150
|
-
/**
|
|
70151
|
-
* File format.
|
|
70152
|
-
*/
|
|
70153
|
-
format?: enums.quicksight.DataSetFileFormat;
|
|
70154
|
-
/**
|
|
70155
|
-
* <p>A row number to start reading data from.</p>
|
|
70156
|
-
*/
|
|
70157
|
-
startFromRow?: number;
|
|
70158
|
-
/**
|
|
70159
|
-
* Text qualifier.
|
|
70160
|
-
*/
|
|
70161
|
-
textQualifier?: enums.quicksight.DataSetTextQualifier;
|
|
70162
|
-
}
|
|
70163
70435
|
/**
|
|
70164
70436
|
* <p>The usage configuration to apply to child datasets that reference this dataset as a source.</p>
|
|
70165
70437
|
*/
|
|
@@ -71003,7 +71275,7 @@ export declare namespace quicksight {
|
|
|
71003
71275
|
/**
|
|
71004
71276
|
* Determines whether or not the axis line is visible.
|
|
71005
71277
|
*/
|
|
71006
|
-
axisLineVisibility?:
|
|
71278
|
+
axisLineVisibility?: any;
|
|
71007
71279
|
/**
|
|
71008
71280
|
* String based length that is composed of value and unit in px
|
|
71009
71281
|
*/
|
|
@@ -71015,7 +71287,7 @@ export declare namespace quicksight {
|
|
|
71015
71287
|
/**
|
|
71016
71288
|
* Determines whether or not the grid line is visible.
|
|
71017
71289
|
*/
|
|
71018
|
-
gridLineVisibility?:
|
|
71290
|
+
gridLineVisibility?: any;
|
|
71019
71291
|
/**
|
|
71020
71292
|
* The scroll bar options for an axis.
|
|
71021
71293
|
*/
|
|
@@ -71344,11 +71616,11 @@ export declare namespace quicksight {
|
|
|
71344
71616
|
/**
|
|
71345
71617
|
* Determines the visibility of all data points of the box plot.
|
|
71346
71618
|
*/
|
|
71347
|
-
allDataPointsVisibility?:
|
|
71619
|
+
allDataPointsVisibility?: any;
|
|
71348
71620
|
/**
|
|
71349
71621
|
* Determines the visibility of the outlier in a box plot.
|
|
71350
71622
|
*/
|
|
71351
|
-
outlierVisibility?:
|
|
71623
|
+
outlierVisibility?: any;
|
|
71352
71624
|
/**
|
|
71353
71625
|
* The style options of the box plot.
|
|
71354
71626
|
*/
|
|
@@ -71528,14 +71800,14 @@ export declare namespace quicksight {
|
|
|
71528
71800
|
/**
|
|
71529
71801
|
* The visibility configuration of the sort icon on a chart's axis label.
|
|
71530
71802
|
*/
|
|
71531
|
-
sortIconVisibility?:
|
|
71803
|
+
sortIconVisibility?: any;
|
|
71532
71804
|
/**
|
|
71533
71805
|
* The visibility of an axis label on a chart. Choose one of the following options:
|
|
71534
71806
|
*
|
|
71535
71807
|
* - `VISIBLE` : Shows the axis.
|
|
71536
71808
|
* - `HIDDEN` : Hides the axis.
|
|
71537
71809
|
*/
|
|
71538
|
-
visibility?:
|
|
71810
|
+
visibility?: any;
|
|
71539
71811
|
}
|
|
71540
71812
|
interface TemplateClusterMarker {
|
|
71541
71813
|
/**
|
|
@@ -71681,7 +71953,7 @@ export declare namespace quicksight {
|
|
|
71681
71953
|
/**
|
|
71682
71954
|
* The visibility of the tooltip item.
|
|
71683
71955
|
*/
|
|
71684
|
-
visibility?:
|
|
71956
|
+
visibility?: any;
|
|
71685
71957
|
}
|
|
71686
71958
|
interface TemplateComboChartAggregatedFieldWells {
|
|
71687
71959
|
/**
|
|
@@ -72247,7 +72519,7 @@ export declare namespace quicksight {
|
|
|
72247
72519
|
/**
|
|
72248
72520
|
* Determines the visibility of the category field labels.
|
|
72249
72521
|
*/
|
|
72250
|
-
categoryLabelVisibility?:
|
|
72522
|
+
categoryLabelVisibility?: any;
|
|
72251
72523
|
/**
|
|
72252
72524
|
* The option that determines the data label type.
|
|
72253
72525
|
*/
|
|
@@ -72267,7 +72539,7 @@ export declare namespace quicksight {
|
|
|
72267
72539
|
/**
|
|
72268
72540
|
* Determines the visibility of the measure field labels.
|
|
72269
72541
|
*/
|
|
72270
|
-
measureLabelVisibility?:
|
|
72542
|
+
measureLabelVisibility?: any;
|
|
72271
72543
|
/**
|
|
72272
72544
|
* Determines whether overlap is enabled or disabled for the data labels.
|
|
72273
72545
|
*/
|
|
@@ -72279,11 +72551,11 @@ export declare namespace quicksight {
|
|
|
72279
72551
|
/**
|
|
72280
72552
|
* Determines the visibility of the total.
|
|
72281
72553
|
*/
|
|
72282
|
-
totalsVisibility?:
|
|
72554
|
+
totalsVisibility?: any;
|
|
72283
72555
|
/**
|
|
72284
72556
|
* Determines the visibility of the data labels.
|
|
72285
72557
|
*/
|
|
72286
|
-
visibility?:
|
|
72558
|
+
visibility?: any;
|
|
72287
72559
|
}
|
|
72288
72560
|
interface TemplateDataLabelType {
|
|
72289
72561
|
/**
|
|
@@ -72333,7 +72605,7 @@ export declare namespace quicksight {
|
|
|
72333
72605
|
/**
|
|
72334
72606
|
* The visibility of the data label.
|
|
72335
72607
|
*/
|
|
72336
|
-
visibility?:
|
|
72608
|
+
visibility?: any;
|
|
72337
72609
|
}
|
|
72338
72610
|
interface TemplateDataPathSort {
|
|
72339
72611
|
/**
|
|
@@ -72413,7 +72685,7 @@ export declare namespace quicksight {
|
|
|
72413
72685
|
/**
|
|
72414
72686
|
* Determines whether or not missing dates are displayed.
|
|
72415
72687
|
*/
|
|
72416
|
-
missingDateVisibility?:
|
|
72688
|
+
missingDateVisibility?: any;
|
|
72417
72689
|
}
|
|
72418
72690
|
interface TemplateDateDimensionField {
|
|
72419
72691
|
/**
|
|
@@ -72831,7 +73103,7 @@ export declare namespace quicksight {
|
|
|
72831
73103
|
/**
|
|
72832
73104
|
* Determines the visibility of the label in a donut chart. In the Amazon QuickSight console, this option is called `'Show total'` .
|
|
72833
73105
|
*/
|
|
72834
|
-
labelVisibility?:
|
|
73106
|
+
labelVisibility?: any;
|
|
72835
73107
|
}
|
|
72836
73108
|
interface TemplateDonutOptions {
|
|
72837
73109
|
/**
|
|
@@ -72962,7 +73234,7 @@ export declare namespace quicksight {
|
|
|
72962
73234
|
/**
|
|
72963
73235
|
* The visibility of `Show aggregations` .
|
|
72964
73236
|
*/
|
|
72965
|
-
aggregationVisibility?:
|
|
73237
|
+
aggregationVisibility?: any;
|
|
72966
73238
|
/**
|
|
72967
73239
|
* The fields configuration in the tooltip.
|
|
72968
73240
|
*/
|
|
@@ -72983,7 +73255,7 @@ export declare namespace quicksight {
|
|
|
72983
73255
|
/**
|
|
72984
73256
|
* The visibility of the field label.
|
|
72985
73257
|
*/
|
|
72986
|
-
visibility?:
|
|
73258
|
+
visibility?: any;
|
|
72987
73259
|
}
|
|
72988
73260
|
interface TemplateFieldSeriesItem {
|
|
72989
73261
|
/**
|
|
@@ -73038,7 +73310,7 @@ export declare namespace quicksight {
|
|
|
73038
73310
|
/**
|
|
73039
73311
|
* The visibility of the tooltip item.
|
|
73040
73312
|
*/
|
|
73041
|
-
visibility?:
|
|
73313
|
+
visibility?: any;
|
|
73042
73314
|
}
|
|
73043
73315
|
interface TemplateFilledMapAggregatedFieldWells {
|
|
73044
73316
|
/**
|
|
@@ -73680,7 +73952,7 @@ export declare namespace quicksight {
|
|
|
73680
73952
|
/**
|
|
73681
73953
|
* The visibility of an element within a free-form layout.
|
|
73682
73954
|
*/
|
|
73683
|
-
visibility?:
|
|
73955
|
+
visibility?: any;
|
|
73684
73956
|
/**
|
|
73685
73957
|
* String based length that is composed of value and unit in px
|
|
73686
73958
|
*/
|
|
@@ -73702,7 +73974,7 @@ export declare namespace quicksight {
|
|
|
73702
73974
|
/**
|
|
73703
73975
|
* The background visibility of a free-form layout element.
|
|
73704
73976
|
*/
|
|
73705
|
-
visibility?:
|
|
73977
|
+
visibility?: any;
|
|
73706
73978
|
}
|
|
73707
73979
|
interface TemplateFreeFormLayoutElementBorderStyle {
|
|
73708
73980
|
/**
|
|
@@ -73712,7 +73984,7 @@ export declare namespace quicksight {
|
|
|
73712
73984
|
/**
|
|
73713
73985
|
* The border visibility of a free-form layout element.
|
|
73714
73986
|
*/
|
|
73715
|
-
visibility?:
|
|
73987
|
+
visibility?: any;
|
|
73716
73988
|
}
|
|
73717
73989
|
interface TemplateFreeFormLayoutScreenCanvasSizeOptions {
|
|
73718
73990
|
/**
|
|
@@ -73770,7 +74042,7 @@ export declare namespace quicksight {
|
|
|
73770
74042
|
/**
|
|
73771
74043
|
* The visibility of the category labels within the data labels.
|
|
73772
74044
|
*/
|
|
73773
|
-
categoryLabelVisibility?:
|
|
74045
|
+
categoryLabelVisibility?: any;
|
|
73774
74046
|
/**
|
|
73775
74047
|
* The color of the data label text.
|
|
73776
74048
|
*/
|
|
@@ -73788,7 +74060,7 @@ export declare namespace quicksight {
|
|
|
73788
74060
|
/**
|
|
73789
74061
|
* The visibility of the measure labels within the data labels.
|
|
73790
74062
|
*/
|
|
73791
|
-
measureLabelVisibility?:
|
|
74063
|
+
measureLabelVisibility?: any;
|
|
73792
74064
|
/**
|
|
73793
74065
|
* Determines the positioning of the data label relative to a section of the funnel.
|
|
73794
74066
|
*/
|
|
@@ -73796,7 +74068,7 @@ export declare namespace quicksight {
|
|
|
73796
74068
|
/**
|
|
73797
74069
|
* The visibility option that determines if data labels are displayed.
|
|
73798
74070
|
*/
|
|
73799
|
-
visibility?:
|
|
74071
|
+
visibility?: any;
|
|
73800
74072
|
}
|
|
73801
74073
|
interface TemplateFunnelChartFieldWells {
|
|
73802
74074
|
/**
|
|
@@ -74654,7 +74926,7 @@ export declare namespace quicksight {
|
|
|
74654
74926
|
/**
|
|
74655
74927
|
* The tooltip visibility of the sparkline.
|
|
74656
74928
|
*/
|
|
74657
|
-
tooltipVisibility?:
|
|
74929
|
+
tooltipVisibility?: any;
|
|
74658
74930
|
/**
|
|
74659
74931
|
* The type of the sparkline.
|
|
74660
74932
|
*/
|
|
@@ -74662,7 +74934,7 @@ export declare namespace quicksight {
|
|
|
74662
74934
|
/**
|
|
74663
74935
|
* The visibility of the sparkline.
|
|
74664
74936
|
*/
|
|
74665
|
-
visibility?:
|
|
74937
|
+
visibility?: any;
|
|
74666
74938
|
}
|
|
74667
74939
|
interface TemplateKpiVisual {
|
|
74668
74940
|
/**
|
|
@@ -74719,7 +74991,7 @@ export declare namespace quicksight {
|
|
|
74719
74991
|
/**
|
|
74720
74992
|
* Determines whether or not the label is visible.
|
|
74721
74993
|
*/
|
|
74722
|
-
visibility?:
|
|
74994
|
+
visibility?: any;
|
|
74723
74995
|
}
|
|
74724
74996
|
interface TemplateLayout {
|
|
74725
74997
|
/**
|
|
@@ -74763,7 +75035,7 @@ export declare namespace quicksight {
|
|
|
74763
75035
|
/**
|
|
74764
75036
|
* Determines whether or not the legend is visible.
|
|
74765
75037
|
*/
|
|
74766
|
-
visibility?:
|
|
75038
|
+
visibility?: any;
|
|
74767
75039
|
/**
|
|
74768
75040
|
* String based length that is composed of value and unit in px
|
|
74769
75041
|
*/
|
|
@@ -74906,7 +75178,7 @@ export declare namespace quicksight {
|
|
|
74906
75178
|
/**
|
|
74907
75179
|
* Configuration option that determines whether to show the line for the series.
|
|
74908
75180
|
*/
|
|
74909
|
-
lineVisibility?:
|
|
75181
|
+
lineVisibility?: any;
|
|
74910
75182
|
/**
|
|
74911
75183
|
* String based length that is composed of value and unit in px
|
|
74912
75184
|
*/
|
|
@@ -74934,7 +75206,7 @@ export declare namespace quicksight {
|
|
|
74934
75206
|
/**
|
|
74935
75207
|
* Configuration option that determines whether to show the markers in the series.
|
|
74936
75208
|
*/
|
|
74937
|
-
markerVisibility?:
|
|
75209
|
+
markerVisibility?: any;
|
|
74938
75210
|
}
|
|
74939
75211
|
interface TemplateLineChartSeriesSettings {
|
|
74940
75212
|
/**
|
|
@@ -75027,19 +75299,19 @@ export declare namespace quicksight {
|
|
|
75027
75299
|
/**
|
|
75028
75300
|
* The visibility configuration of the search options in a list control.
|
|
75029
75301
|
*/
|
|
75030
|
-
visibility?:
|
|
75302
|
+
visibility?: any;
|
|
75031
75303
|
}
|
|
75032
75304
|
interface TemplateListControlSelectAllOptions {
|
|
75033
75305
|
/**
|
|
75034
75306
|
* The visibility configuration of the `Select all` options in a list control.
|
|
75035
75307
|
*/
|
|
75036
|
-
visibility?:
|
|
75308
|
+
visibility?: any;
|
|
75037
75309
|
}
|
|
75038
75310
|
interface TemplateLoadingAnimation {
|
|
75039
75311
|
/**
|
|
75040
75312
|
* The visibility configuration of `LoadingAnimation` .
|
|
75041
75313
|
*/
|
|
75042
|
-
visibility?:
|
|
75314
|
+
visibility?: any;
|
|
75043
75315
|
}
|
|
75044
75316
|
interface TemplateLocalNavigationConfiguration {
|
|
75045
75317
|
/**
|
|
@@ -75071,7 +75343,7 @@ export declare namespace quicksight {
|
|
|
75071
75343
|
/**
|
|
75072
75344
|
* The visibility of the maximum label.
|
|
75073
75345
|
*/
|
|
75074
|
-
visibility?:
|
|
75346
|
+
visibility?: any;
|
|
75075
75347
|
}
|
|
75076
75348
|
interface TemplateMaximumMinimumComputation {
|
|
75077
75349
|
/**
|
|
@@ -75142,7 +75414,7 @@ export declare namespace quicksight {
|
|
|
75142
75414
|
/**
|
|
75143
75415
|
* The visibility of the minimum label.
|
|
75144
75416
|
*/
|
|
75145
|
-
visibility?:
|
|
75417
|
+
visibility?: any;
|
|
75146
75418
|
}
|
|
75147
75419
|
interface TemplateMissingDataConfiguration {
|
|
75148
75420
|
/**
|
|
@@ -75442,7 +75714,7 @@ export declare namespace quicksight {
|
|
|
75442
75714
|
/**
|
|
75443
75715
|
* Determines whether or not a background for each small multiples panel is rendered.
|
|
75444
75716
|
*/
|
|
75445
|
-
backgroundVisibility?:
|
|
75717
|
+
backgroundVisibility?: any;
|
|
75446
75718
|
/**
|
|
75447
75719
|
* Sets the line color of panel borders.
|
|
75448
75720
|
*/
|
|
@@ -75458,7 +75730,7 @@ export declare namespace quicksight {
|
|
|
75458
75730
|
/**
|
|
75459
75731
|
* Determines whether or not each panel displays a border.
|
|
75460
75732
|
*/
|
|
75461
|
-
borderVisibility?:
|
|
75733
|
+
borderVisibility?: any;
|
|
75462
75734
|
/**
|
|
75463
75735
|
* String based length that is composed of value and unit in px
|
|
75464
75736
|
*/
|
|
@@ -75466,7 +75738,7 @@ export declare namespace quicksight {
|
|
|
75466
75738
|
/**
|
|
75467
75739
|
* Determines whether or not negative space between sibling panels is rendered.
|
|
75468
75740
|
*/
|
|
75469
|
-
gutterVisibility?:
|
|
75741
|
+
gutterVisibility?: any;
|
|
75470
75742
|
/**
|
|
75471
75743
|
* Configures the title display within each small multiples panel.
|
|
75472
75744
|
*/
|
|
@@ -75481,7 +75753,7 @@ export declare namespace quicksight {
|
|
|
75481
75753
|
/**
|
|
75482
75754
|
* Determines whether or not panel titles are displayed.
|
|
75483
75755
|
*/
|
|
75484
|
-
visibility?:
|
|
75756
|
+
visibility?: any;
|
|
75485
75757
|
}
|
|
75486
75758
|
interface TemplateParameterControl {
|
|
75487
75759
|
/**
|
|
@@ -76016,7 +76288,7 @@ export declare namespace quicksight {
|
|
|
76016
76288
|
/**
|
|
76017
76289
|
* The visibility of the pivot table field.
|
|
76018
76290
|
*/
|
|
76019
|
-
visibility?:
|
|
76291
|
+
visibility?: any;
|
|
76020
76292
|
}
|
|
76021
76293
|
interface TemplatePivotTableFieldOptions {
|
|
76022
76294
|
/**
|
|
@@ -76052,7 +76324,7 @@ export declare namespace quicksight {
|
|
|
76052
76324
|
/**
|
|
76053
76325
|
* The visibility setting of a pivot table's collapsed row dimension fields. If the value of this structure is `HIDDEN` , all collapsed columns in a pivot table are automatically hidden. The default value is `VISIBLE` .
|
|
76054
76326
|
*/
|
|
76055
|
-
collapsedRowDimensionsVisibility?:
|
|
76327
|
+
collapsedRowDimensionsVisibility?: any;
|
|
76056
76328
|
/**
|
|
76057
76329
|
* The table cell style of the column header.
|
|
76058
76330
|
*/
|
|
@@ -76060,7 +76332,7 @@ export declare namespace quicksight {
|
|
|
76060
76332
|
/**
|
|
76061
76333
|
* The visibility of the column names.
|
|
76062
76334
|
*/
|
|
76063
|
-
columnNamesVisibility?:
|
|
76335
|
+
columnNamesVisibility?: any;
|
|
76064
76336
|
/**
|
|
76065
76337
|
* String based length that is composed of value and unit in px
|
|
76066
76338
|
*/
|
|
@@ -76095,21 +76367,21 @@ export declare namespace quicksight {
|
|
|
76095
76367
|
/**
|
|
76096
76368
|
* The visibility of the single metric options.
|
|
76097
76369
|
*/
|
|
76098
|
-
singleMetricVisibility?:
|
|
76370
|
+
singleMetricVisibility?: any;
|
|
76099
76371
|
/**
|
|
76100
76372
|
* Determines the visibility of the pivot table.
|
|
76101
76373
|
*/
|
|
76102
|
-
toggleButtonsVisibility?:
|
|
76374
|
+
toggleButtonsVisibility?: any;
|
|
76103
76375
|
}
|
|
76104
76376
|
interface TemplatePivotTablePaginatedReportOptions {
|
|
76105
76377
|
/**
|
|
76106
76378
|
* The visibility of the repeating header rows on each page.
|
|
76107
76379
|
*/
|
|
76108
|
-
overflowColumnHeaderVisibility?:
|
|
76380
|
+
overflowColumnHeaderVisibility?: any;
|
|
76109
76381
|
/**
|
|
76110
76382
|
* The visibility of the printing table overflow across pages.
|
|
76111
76383
|
*/
|
|
76112
|
-
verticalOverflowVisibility?:
|
|
76384
|
+
verticalOverflowVisibility?: any;
|
|
76113
76385
|
}
|
|
76114
76386
|
interface TemplatePivotTableRowsLabelOptions {
|
|
76115
76387
|
/**
|
|
@@ -76119,7 +76391,7 @@ export declare namespace quicksight {
|
|
|
76119
76391
|
/**
|
|
76120
76392
|
* The visibility of the rows label.
|
|
76121
76393
|
*/
|
|
76122
|
-
visibility?:
|
|
76394
|
+
visibility?: any;
|
|
76123
76395
|
}
|
|
76124
76396
|
interface TemplatePivotTableSortBy {
|
|
76125
76397
|
/**
|
|
@@ -76214,7 +76486,7 @@ export declare namespace quicksight {
|
|
|
76214
76486
|
/**
|
|
76215
76487
|
* The visibility configuration for the total cells.
|
|
76216
76488
|
*/
|
|
76217
|
-
totalsVisibility?:
|
|
76489
|
+
totalsVisibility?: any;
|
|
76218
76490
|
/**
|
|
76219
76491
|
* The cell styling options for the totals of value cells.
|
|
76220
76492
|
*/
|
|
@@ -76274,7 +76546,7 @@ export declare namespace quicksight {
|
|
|
76274
76546
|
/**
|
|
76275
76547
|
* The visibility of the progress bar.
|
|
76276
76548
|
*/
|
|
76277
|
-
visibility?:
|
|
76549
|
+
visibility?: any;
|
|
76278
76550
|
}
|
|
76279
76551
|
interface TemplateQueryExecutionOptions {
|
|
76280
76552
|
/**
|
|
@@ -76300,13 +76572,13 @@ export declare namespace quicksight {
|
|
|
76300
76572
|
/**
|
|
76301
76573
|
* The visibility settings of a radar chart.
|
|
76302
76574
|
*/
|
|
76303
|
-
visibility?:
|
|
76575
|
+
visibility?: any;
|
|
76304
76576
|
}
|
|
76305
76577
|
interface TemplateRadarChartConfiguration {
|
|
76306
76578
|
/**
|
|
76307
76579
|
* Determines the visibility of the colors of alternatign bands in a radar chart.
|
|
76308
76580
|
*/
|
|
76309
|
-
alternateBandColorsVisibility?:
|
|
76581
|
+
alternateBandColorsVisibility?: any;
|
|
76310
76582
|
/**
|
|
76311
76583
|
* The color of the even-numbered alternate bands of a radar chart.
|
|
76312
76584
|
*/
|
|
@@ -76425,7 +76697,7 @@ export declare namespace quicksight {
|
|
|
76425
76697
|
/**
|
|
76426
76698
|
* The visibility of the range ends label.
|
|
76427
76699
|
*/
|
|
76428
|
-
visibility?:
|
|
76700
|
+
visibility?: any;
|
|
76429
76701
|
}
|
|
76430
76702
|
interface TemplateReferenceLine {
|
|
76431
76703
|
/**
|
|
@@ -76895,7 +77167,7 @@ export declare namespace quicksight {
|
|
|
76895
77167
|
/**
|
|
76896
77168
|
* The visibility of the data zoom scroll bar.
|
|
76897
77169
|
*/
|
|
76898
|
-
visibility?:
|
|
77170
|
+
visibility?: any;
|
|
76899
77171
|
/**
|
|
76900
77172
|
* The visibility range for the data zoom scroll bar.
|
|
76901
77173
|
*/
|
|
@@ -76905,7 +77177,7 @@ export declare namespace quicksight {
|
|
|
76905
77177
|
/**
|
|
76906
77178
|
* Determines the visibility of the secondary value.
|
|
76907
77179
|
*/
|
|
76908
|
-
visibility?:
|
|
77180
|
+
visibility?: any;
|
|
76909
77181
|
}
|
|
76910
77182
|
interface TemplateSectionAfterPageBreak {
|
|
76911
77183
|
/**
|
|
@@ -77034,7 +77306,7 @@ export declare namespace quicksight {
|
|
|
77034
77306
|
/**
|
|
77035
77307
|
* The visibility configuration of info icon label options.
|
|
77036
77308
|
*/
|
|
77037
|
-
visibility?:
|
|
77309
|
+
visibility?: any;
|
|
77038
77310
|
}
|
|
77039
77311
|
interface TemplateSheetControlLayout {
|
|
77040
77312
|
/**
|
|
@@ -77111,7 +77383,7 @@ export declare namespace quicksight {
|
|
|
77111
77383
|
* - `VISIBLE`
|
|
77112
77384
|
* - `HIDDEN`
|
|
77113
77385
|
*/
|
|
77114
|
-
visibility?:
|
|
77386
|
+
visibility?: any;
|
|
77115
77387
|
}
|
|
77116
77388
|
interface TemplateSheetElementRenderingRule {
|
|
77117
77389
|
/**
|
|
@@ -77143,7 +77415,7 @@ export declare namespace quicksight {
|
|
|
77143
77415
|
}
|
|
77144
77416
|
interface TemplateSheetImageTooltipConfiguration {
|
|
77145
77417
|
tooltipText?: outputs.quicksight.TemplateSheetImageTooltipText;
|
|
77146
|
-
visibility?:
|
|
77418
|
+
visibility?: any;
|
|
77147
77419
|
}
|
|
77148
77420
|
interface TemplateSheetImageTooltipText {
|
|
77149
77421
|
plainText?: string;
|
|
@@ -77377,7 +77649,7 @@ export declare namespace quicksight {
|
|
|
77377
77649
|
/**
|
|
77378
77650
|
* The visibility configuration for the subtotal cells.
|
|
77379
77651
|
*/
|
|
77380
|
-
totalsVisibility?:
|
|
77652
|
+
totalsVisibility?: any;
|
|
77381
77653
|
/**
|
|
77382
77654
|
* The cell styling options for the subtotals of value cells.
|
|
77383
77655
|
*/
|
|
@@ -77455,7 +77727,7 @@ export declare namespace quicksight {
|
|
|
77455
77727
|
/**
|
|
77456
77728
|
* The visibility of the table cells.
|
|
77457
77729
|
*/
|
|
77458
|
-
visibility?:
|
|
77730
|
+
visibility?: any;
|
|
77459
77731
|
}
|
|
77460
77732
|
interface TemplateTableConditionalFormatting {
|
|
77461
77733
|
/**
|
|
@@ -77561,7 +77833,7 @@ export declare namespace quicksight {
|
|
|
77561
77833
|
/**
|
|
77562
77834
|
* The visibility of a table field.
|
|
77563
77835
|
*/
|
|
77564
|
-
visibility?:
|
|
77836
|
+
visibility?: any;
|
|
77565
77837
|
/**
|
|
77566
77838
|
* String based length that is composed of value and unit in px
|
|
77567
77839
|
*/
|
|
@@ -77629,11 +77901,11 @@ export declare namespace quicksight {
|
|
|
77629
77901
|
/**
|
|
77630
77902
|
* The visibility of repeating header rows on each page.
|
|
77631
77903
|
*/
|
|
77632
|
-
overflowColumnHeaderVisibility?:
|
|
77904
|
+
overflowColumnHeaderVisibility?: any;
|
|
77633
77905
|
/**
|
|
77634
77906
|
* The visibility of printing table overflow across pages.
|
|
77635
77907
|
*/
|
|
77636
|
-
verticalOverflowVisibility?:
|
|
77908
|
+
verticalOverflowVisibility?: any;
|
|
77637
77909
|
}
|
|
77638
77910
|
interface TemplateTablePinnedFieldOptions {
|
|
77639
77911
|
/**
|
|
@@ -77758,7 +78030,7 @@ export declare namespace quicksight {
|
|
|
77758
78030
|
/**
|
|
77759
78031
|
* The visibility configuration of the placeholder options in a text control.
|
|
77760
78032
|
*/
|
|
77761
|
-
visibility?:
|
|
78033
|
+
visibility?: any;
|
|
77762
78034
|
}
|
|
77763
78035
|
interface TemplateTextFieldControlDisplayOptions {
|
|
77764
78036
|
/**
|
|
@@ -77782,7 +78054,7 @@ export declare namespace quicksight {
|
|
|
77782
78054
|
/**
|
|
77783
78055
|
* Determines the visibility of the thousands separator.
|
|
77784
78056
|
*/
|
|
77785
|
-
visibility?:
|
|
78057
|
+
visibility?: any;
|
|
77786
78058
|
}
|
|
77787
78059
|
interface TemplateTimeBasedForecastProperties {
|
|
77788
78060
|
/**
|
|
@@ -77952,7 +78224,7 @@ export declare namespace quicksight {
|
|
|
77952
78224
|
/**
|
|
77953
78225
|
* Determines whether or not the tooltip is visible.
|
|
77954
78226
|
*/
|
|
77955
|
-
tooltipVisibility?:
|
|
78227
|
+
tooltipVisibility?: any;
|
|
77956
78228
|
}
|
|
77957
78229
|
interface TemplateTopBottomFilter {
|
|
77958
78230
|
/**
|
|
@@ -78104,7 +78376,7 @@ export declare namespace quicksight {
|
|
|
78104
78376
|
/**
|
|
78105
78377
|
* The visibility configuration for the total cells.
|
|
78106
78378
|
*/
|
|
78107
|
-
totalsVisibility?:
|
|
78379
|
+
totalsVisibility?: any;
|
|
78108
78380
|
}
|
|
78109
78381
|
interface TemplateTreeMapAggregatedFieldWells {
|
|
78110
78382
|
/**
|
|
@@ -78205,7 +78477,7 @@ export declare namespace quicksight {
|
|
|
78205
78477
|
/**
|
|
78206
78478
|
* The visibility of the trend arrows.
|
|
78207
78479
|
*/
|
|
78208
|
-
visibility?:
|
|
78480
|
+
visibility?: any;
|
|
78209
78481
|
}
|
|
78210
78482
|
interface TemplateUnaggregatedField {
|
|
78211
78483
|
/**
|
|
@@ -78544,7 +78816,7 @@ export declare namespace quicksight {
|
|
|
78544
78816
|
/**
|
|
78545
78817
|
* The visibility of the subtitle label.
|
|
78546
78818
|
*/
|
|
78547
|
-
visibility?:
|
|
78819
|
+
visibility?: any;
|
|
78548
78820
|
}
|
|
78549
78821
|
interface TemplateVisualTitleLabelOptions {
|
|
78550
78822
|
/**
|
|
@@ -78554,7 +78826,7 @@ export declare namespace quicksight {
|
|
|
78554
78826
|
/**
|
|
78555
78827
|
* The visibility of the title label.
|
|
78556
78828
|
*/
|
|
78557
|
-
visibility?:
|
|
78829
|
+
visibility?: any;
|
|
78558
78830
|
}
|
|
78559
78831
|
interface TemplateWaterfallChartAggregatedFieldWells {
|
|
78560
78832
|
/**
|
|
@@ -79814,9 +80086,15 @@ export declare namespace rds {
|
|
|
79814
80086
|
*/
|
|
79815
80087
|
maxCapacity?: number;
|
|
79816
80088
|
/**
|
|
79817
|
-
* The minimum number of Aurora capacity units (ACUs) for a DB instance in an Aurora Serverless v2 cluster. You can specify ACU values in half-step increments, such as 8, 8.5, 9, and so on.
|
|
80089
|
+
* The minimum number of Aurora capacity units (ACUs) for a DB instance in an Aurora Serverless v2 cluster. You can specify ACU values in half-step increments, such as 8, 8.5, 9, and so on. For Aurora versions that support the Aurora Serverless v2 auto-pause feature, the smallest value that you can use is 0. For versions that don't support Aurora Serverless v2 auto-pause, the smallest value that you can use is 0.5.
|
|
79818
80090
|
*/
|
|
79819
80091
|
minCapacity?: number;
|
|
80092
|
+
/**
|
|
80093
|
+
* Specifies the number of seconds an Aurora Serverless v2 DB instance must be idle before Aurora attempts to automatically pause it.
|
|
80094
|
+
*
|
|
80095
|
+
* Specify a value between 300 seconds (five minutes) and 86,400 seconds (one day). The default is 300 seconds.
|
|
80096
|
+
*/
|
|
80097
|
+
secondsUntilAutoPause?: number;
|
|
79820
80098
|
}
|
|
79821
80099
|
/**
|
|
79822
80100
|
* The details of the DB instance’s server certificate.
|
|
@@ -83690,6 +83968,9 @@ export declare namespace sagemaker {
|
|
|
83690
83968
|
* The settings for a custom Amazon EFS file system.
|
|
83691
83969
|
*/
|
|
83692
83970
|
efsFileSystemConfig?: outputs.sagemaker.DomainEfsFileSystemConfig;
|
|
83971
|
+
/**
|
|
83972
|
+
* The settings for a custom Amazon FSx for Lustre file system.
|
|
83973
|
+
*/
|
|
83693
83974
|
fSxLustreFileSystemConfig?: outputs.sagemaker.DomainFSxLustreFileSystemConfig;
|
|
83694
83975
|
}
|
|
83695
83976
|
/**
|
|
@@ -83802,7 +84083,13 @@ export declare namespace sagemaker {
|
|
|
83802
84083
|
fileSystemPath?: string;
|
|
83803
84084
|
}
|
|
83804
84085
|
interface DomainFSxLustreFileSystemConfig {
|
|
84086
|
+
/**
|
|
84087
|
+
* The globally unique, 17-digit, ID of the file system, assigned by Amazon FSx for Lustre.
|
|
84088
|
+
*/
|
|
83805
84089
|
fileSystemId: string;
|
|
84090
|
+
/**
|
|
84091
|
+
* The path to the file system directory that is accessible in Amazon SageMaker Studio. Permitted users can access only this directory and below.
|
|
84092
|
+
*/
|
|
83806
84093
|
fileSystemPath?: string;
|
|
83807
84094
|
}
|
|
83808
84095
|
interface DomainIdleSettings {
|
|
@@ -86989,6 +87276,8 @@ export declare namespace sagemaker {
|
|
|
86989
87276
|
interface SpaceSettings {
|
|
86990
87277
|
/**
|
|
86991
87278
|
* The type of app created within the space.
|
|
87279
|
+
*
|
|
87280
|
+
* If using the [UpdateSpace](https://docs.aws.amazon.com/sagemaker/latest/APIReference/API_UpdateSpace.html) API, you can't change the app type of your space by specifying a different value for this field.
|
|
86992
87281
|
*/
|
|
86993
87282
|
appType?: enums.sagemaker.SpaceAppType;
|
|
86994
87283
|
/**
|
|
@@ -87066,6 +87355,9 @@ export declare namespace sagemaker {
|
|
|
87066
87355
|
* The settings for a custom Amazon EFS file system.
|
|
87067
87356
|
*/
|
|
87068
87357
|
efsFileSystemConfig?: outputs.sagemaker.UserProfileEfsFileSystemConfig;
|
|
87358
|
+
/**
|
|
87359
|
+
* The settings for a custom Amazon FSx for Lustre file system.
|
|
87360
|
+
*/
|
|
87069
87361
|
fSxLustreFileSystemConfig?: outputs.sagemaker.UserProfileFSxLustreFileSystemConfig;
|
|
87070
87362
|
}
|
|
87071
87363
|
/**
|
|
@@ -87128,7 +87420,13 @@ export declare namespace sagemaker {
|
|
|
87128
87420
|
fileSystemPath?: string;
|
|
87129
87421
|
}
|
|
87130
87422
|
interface UserProfileFSxLustreFileSystemConfig {
|
|
87423
|
+
/**
|
|
87424
|
+
* The globally unique, 17-digit, ID of the file system, assigned by Amazon FSx for Lustre.
|
|
87425
|
+
*/
|
|
87131
87426
|
fileSystemId: string;
|
|
87427
|
+
/**
|
|
87428
|
+
* The path to the file system directory that is accessible in Amazon SageMaker Studio. Permitted users can access only this directory and below.
|
|
87429
|
+
*/
|
|
87132
87430
|
fileSystemPath?: string;
|
|
87133
87431
|
}
|
|
87134
87432
|
interface UserProfileIdleSettings {
|
|
@@ -88743,29 +89041,13 @@ export declare namespace securityhub {
|
|
|
88743
89041
|
/**
|
|
88744
89042
|
* A timestamp that provides the end date for the date filter.
|
|
88745
89043
|
*
|
|
88746
|
-
*
|
|
88747
|
-
*
|
|
88748
|
-
* - `YYYY-MM-DDTHH:MM:SSZ` (for example, `2019-01-31T23:00:00Z` )
|
|
88749
|
-
* - `YYYY-MM-DDTHH:MM:SS.mmmmmmmmmZ` (for example, `2019-01-31T23:00:00.123456789Z` )
|
|
88750
|
-
* - `YYYY-MM-DDTHH:MM:SS+HH:MM` (for example, `2024-01-04T15:25:10+17:59` )
|
|
88751
|
-
* - `YYYY-MM-DDTHH:MM:SS-HHMM` (for example, `2024-01-04T15:25:10-1759` )
|
|
88752
|
-
* - `YYYY-MM-DDTHH:MM:SS.mmmmmmmmm+HH:MM` (for example, `2024-01-04T15:25:10.123456789+17:59` )
|
|
88753
|
-
*
|
|
88754
|
-
* If a finding provider sends a finding to Security Hub that contains a timestamp in nanoseconds, we round it to milliseconds. For example, we round `2024-10-31T23:00:00.123456789Z` to `2024-10-31T23:00:00.123Z` .
|
|
89044
|
+
* For more information about the validation and formatting of timestamp fields in AWS Security Hub , see [Timestamps](https://docs.aws.amazon.com/securityhub/1.0/APIReference/Welcome.html#timestamps) .
|
|
88755
89045
|
*/
|
|
88756
89046
|
end?: string;
|
|
88757
89047
|
/**
|
|
88758
89048
|
* A timestamp that provides the start date for the date filter.
|
|
88759
89049
|
*
|
|
88760
|
-
*
|
|
88761
|
-
*
|
|
88762
|
-
* - `YYYY-MM-DDTHH:MM:SSZ` (for example, `2019-01-31T23:00:00Z` )
|
|
88763
|
-
* - `YYYY-MM-DDTHH:MM:SS.mmmmmmmmmZ` (for example, `2019-01-31T23:00:00.123456789Z` )
|
|
88764
|
-
* - `YYYY-MM-DDTHH:MM:SS+HH:MM` (for example, `2024-01-04T15:25:10+17:59` )
|
|
88765
|
-
* - `YYYY-MM-DDTHH:MM:SS-HHMM` (for example, `2024-01-04T15:25:10-1759` )
|
|
88766
|
-
* - `YYYY-MM-DDTHH:MM:SS.mmmmmmmmm+HH:MM` (for example, `2024-01-04T15:25:10.123456789+17:59` )
|
|
88767
|
-
*
|
|
88768
|
-
* If a finding provider sends a finding to Security Hub that contains a timestamp in nanoseconds, we round it to milliseconds. For example, we round `2024-10-31T23:00:00.123456789Z` to `2024-10-31T23:00:00.123Z` .
|
|
89050
|
+
* For more information about the validation and formatting of timestamp fields in AWS Security Hub , see [Timestamps](https://docs.aws.amazon.com/securityhub/1.0/APIReference/Welcome.html#timestamps) .
|
|
88769
89051
|
*/
|
|
88770
89052
|
start?: string;
|
|
88771
89053
|
}
|
|
@@ -89455,6 +89737,12 @@ export declare namespace ses {
|
|
|
89455
89737
|
mailboxArn: string;
|
|
89456
89738
|
roleArn: string;
|
|
89457
89739
|
}
|
|
89740
|
+
interface MailManagerRuleSetDeliverToQBusinessAction {
|
|
89741
|
+
actionFailurePolicy?: enums.ses.MailManagerRuleSetActionFailurePolicy;
|
|
89742
|
+
applicationId: string;
|
|
89743
|
+
indexId: string;
|
|
89744
|
+
roleArn: string;
|
|
89745
|
+
}
|
|
89458
89746
|
interface MailManagerRuleSetDropAction {
|
|
89459
89747
|
}
|
|
89460
89748
|
interface MailManagerRuleSetRelayAction {
|
|
@@ -89469,7 +89757,7 @@ export declare namespace ses {
|
|
|
89469
89757
|
/**
|
|
89470
89758
|
* The list of actions to execute when the conditions match the incoming email, and none of the "unless conditions" match.
|
|
89471
89759
|
*/
|
|
89472
|
-
actions: (outputs.ses.MailManagerRuleSetRuleAction0Properties | outputs.ses.MailManagerRuleSetRuleAction1Properties | outputs.ses.MailManagerRuleSetRuleAction2Properties | outputs.ses.MailManagerRuleSetRuleAction3Properties | outputs.ses.MailManagerRuleSetRuleAction4Properties | outputs.ses.MailManagerRuleSetRuleAction5Properties | outputs.ses.MailManagerRuleSetRuleAction6Properties | outputs.ses.MailManagerRuleSetRuleAction7Properties)[];
|
|
89760
|
+
actions: (outputs.ses.MailManagerRuleSetRuleAction0Properties | outputs.ses.MailManagerRuleSetRuleAction1Properties | outputs.ses.MailManagerRuleSetRuleAction2Properties | outputs.ses.MailManagerRuleSetRuleAction3Properties | outputs.ses.MailManagerRuleSetRuleAction4Properties | outputs.ses.MailManagerRuleSetRuleAction5Properties | outputs.ses.MailManagerRuleSetRuleAction6Properties | outputs.ses.MailManagerRuleSetRuleAction7Properties | outputs.ses.MailManagerRuleSetRuleAction8Properties)[];
|
|
89473
89761
|
/**
|
|
89474
89762
|
* The conditions of this rule. All conditions must match the email for the actions to be executed. An empty list of conditions means that all emails match, but are still subject to any "unless conditions"
|
|
89475
89763
|
*/
|
|
@@ -89507,6 +89795,9 @@ export declare namespace ses {
|
|
|
89507
89795
|
interface MailManagerRuleSetRuleAction7Properties {
|
|
89508
89796
|
deliverToMailbox: outputs.ses.MailManagerRuleSetDeliverToMailboxAction;
|
|
89509
89797
|
}
|
|
89798
|
+
interface MailManagerRuleSetRuleAction8Properties {
|
|
89799
|
+
deliverToQBusiness: outputs.ses.MailManagerRuleSetDeliverToQBusinessAction;
|
|
89800
|
+
}
|
|
89510
89801
|
interface MailManagerRuleSetRuleBooleanExpression {
|
|
89511
89802
|
evaluate: outputs.ses.MailManagerRuleSetRuleBooleanToEvaluateProperties;
|
|
89512
89803
|
operator: enums.ses.MailManagerRuleSetRuleBooleanOperator;
|
|
@@ -92784,7 +93075,7 @@ export declare namespace wafv2 {
|
|
|
92784
93075
|
*/
|
|
92785
93076
|
forwardedIpConfig?: outputs.wafv2.RuleGroupForwardedIpConfiguration;
|
|
92786
93077
|
/**
|
|
92787
|
-
* The limit on requests
|
|
93078
|
+
* The limit on requests during the specified evaluation window for a single aggregation instance for the rate-based rule. If the rate-based statement includes a `ScopeDownStatement` , this limit is applied only to the requests that match the statement.
|
|
92788
93079
|
*
|
|
92789
93080
|
* Examples:
|
|
92790
93081
|
*
|
|
@@ -94101,7 +94392,7 @@ export declare namespace wafv2 {
|
|
|
94101
94392
|
*/
|
|
94102
94393
|
forwardedIpConfig?: outputs.wafv2.WebAclForwardedIpConfiguration;
|
|
94103
94394
|
/**
|
|
94104
|
-
* The limit on requests
|
|
94395
|
+
* The limit on requests during the specified evaluation window for a single aggregation instance for the rate-based rule. If the rate-based statement includes a `ScopeDownStatement` , this limit is applied only to the requests that match the statement.
|
|
94105
94396
|
*
|
|
94106
94397
|
* Examples:
|
|
94107
94398
|
*
|