cdk-lambda-subminute 2.0.325 → 2.0.327
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/.jsii +16 -3
- package/lib/cdk-lambda-subminute.js +3 -3
- package/node_modules/aws-sdk/README.md +1 -1
- package/node_modules/aws-sdk/apis/b2bi-2022-06-23.examples.json +0 -709
- package/node_modules/aws-sdk/apis/billingconductor-2021-07-30.min.json +84 -20
- package/node_modules/aws-sdk/apis/cloud9-2017-09-23.examples.json +1 -1
- package/node_modules/aws-sdk/apis/connect-2017-08-08.min.json +457 -269
- package/node_modules/aws-sdk/apis/firehose-2015-08-04.min.json +85 -65
- package/node_modules/aws-sdk/apis/gamelift-2015-10-01.min.json +4 -1
- package/node_modules/aws-sdk/apis/iot-2015-05-28.min.json +479 -317
- package/node_modules/aws-sdk/apis/metadata.json +4 -0
- package/node_modules/aws-sdk/apis/neptune-graph-2023-11-29.examples.json +5 -0
- package/node_modules/aws-sdk/apis/neptune-graph-2023-11-29.min.json +1286 -0
- package/node_modules/aws-sdk/apis/neptune-graph-2023-11-29.paginators.json +28 -0
- package/node_modules/aws-sdk/apis/quicksight-2018-04-01.min.json +548 -466
- package/node_modules/aws-sdk/apis/sagemaker-2017-07-24.min.json +1284 -1266
- package/node_modules/aws-sdk/clients/all.d.ts +1 -0
- package/node_modules/aws-sdk/clients/all.js +2 -1
- package/node_modules/aws-sdk/clients/appstream.d.ts +1 -1
- package/node_modules/aws-sdk/clients/b2bi.d.ts +45 -45
- package/node_modules/aws-sdk/clients/billingconductor.d.ts +98 -3
- package/node_modules/aws-sdk/clients/cloud9.d.ts +1 -1
- package/node_modules/aws-sdk/clients/connect.d.ts +250 -42
- package/node_modules/aws-sdk/clients/controltower.d.ts +3 -3
- package/node_modules/aws-sdk/clients/firehose.d.ts +24 -0
- package/node_modules/aws-sdk/clients/gamelift.d.ts +14 -10
- package/node_modules/aws-sdk/clients/iot.d.ts +173 -1
- package/node_modules/aws-sdk/clients/kms.d.ts +101 -101
- package/node_modules/aws-sdk/clients/neptunegraph.d.ts +1394 -0
- package/node_modules/aws-sdk/clients/neptunegraph.js +19 -0
- package/node_modules/aws-sdk/clients/opensearch.d.ts +23 -23
- package/node_modules/aws-sdk/clients/quicksight.d.ts +75 -3
- package/node_modules/aws-sdk/clients/rds.d.ts +1 -1
- package/node_modules/aws-sdk/clients/sagemaker.d.ts +234 -212
- package/node_modules/aws-sdk/clients/workspaces.d.ts +3 -3
- package/node_modules/aws-sdk/dist/aws-sdk-core-react-native.js +2 -2
- package/node_modules/aws-sdk/dist/aws-sdk-react-native.js +69 -11
- package/node_modules/aws-sdk/dist/aws-sdk.js +1032 -655
- package/node_modules/aws-sdk/dist/aws-sdk.min.js +83 -83
- package/node_modules/aws-sdk/dist-tools/service-collector.js +1 -1
- package/node_modules/aws-sdk/lib/config_service_placeholders.d.ts +2 -0
- package/node_modules/aws-sdk/lib/core.js +1 -1
- package/node_modules/aws-sdk/lib/services/neptunegraph.js +14 -0
- package/node_modules/aws-sdk/package.json +1 -1
- package/package.json +3 -3
@@ -0,0 +1,19 @@
|
|
1
|
+
require('../lib/node_loader');
|
2
|
+
var AWS = require('../lib/core');
|
3
|
+
var Service = AWS.Service;
|
4
|
+
var apiLoader = AWS.apiLoader;
|
5
|
+
|
6
|
+
apiLoader.services['neptunegraph'] = {};
|
7
|
+
AWS.NeptuneGraph = Service.defineService('neptunegraph', ['2023-11-29']);
|
8
|
+
require('../lib/services/neptunegraph');
|
9
|
+
Object.defineProperty(apiLoader.services['neptunegraph'], '2023-11-29', {
|
10
|
+
get: function get() {
|
11
|
+
var model = require('../apis/neptune-graph-2023-11-29.min.json');
|
12
|
+
model.paginators = require('../apis/neptune-graph-2023-11-29.paginators.json').pagination;
|
13
|
+
return model;
|
14
|
+
},
|
15
|
+
enumerable: true,
|
16
|
+
configurable: true
|
17
|
+
});
|
18
|
+
|
19
|
+
module.exports = AWS.NeptuneGraph;
|
@@ -20,11 +20,11 @@ declare class OpenSearch extends Service {
|
|
20
20
|
*/
|
21
21
|
acceptInboundConnection(callback?: (err: AWSError, data: OpenSearch.Types.AcceptInboundConnectionResponse) => void): Request<OpenSearch.Types.AcceptInboundConnectionResponse, AWSError>;
|
22
22
|
/**
|
23
|
-
*
|
23
|
+
* Creates a new direct-query data source to the specified domain. For more information, see Creating Amazon OpenSearch Service data source integrations with Amazon S3.
|
24
24
|
*/
|
25
25
|
addDataSource(params: OpenSearch.Types.AddDataSourceRequest, callback?: (err: AWSError, data: OpenSearch.Types.AddDataSourceResponse) => void): Request<OpenSearch.Types.AddDataSourceResponse, AWSError>;
|
26
26
|
/**
|
27
|
-
*
|
27
|
+
* Creates a new direct-query data source to the specified domain. For more information, see Creating Amazon OpenSearch Service data source integrations with Amazon S3.
|
28
28
|
*/
|
29
29
|
addDataSource(callback?: (err: AWSError, data: OpenSearch.Types.AddDataSourceResponse) => void): Request<OpenSearch.Types.AddDataSourceResponse, AWSError>;
|
30
30
|
/**
|
@@ -92,11 +92,11 @@ declare class OpenSearch extends Service {
|
|
92
92
|
*/
|
93
93
|
createVpcEndpoint(callback?: (err: AWSError, data: OpenSearch.Types.CreateVpcEndpointResponse) => void): Request<OpenSearch.Types.CreateVpcEndpointResponse, AWSError>;
|
94
94
|
/**
|
95
|
-
* Deletes
|
95
|
+
* Deletes a direct-query data source. For more information, see Deleting an Amazon OpenSearch Service data source with Amazon S3.
|
96
96
|
*/
|
97
97
|
deleteDataSource(params: OpenSearch.Types.DeleteDataSourceRequest, callback?: (err: AWSError, data: OpenSearch.Types.DeleteDataSourceResponse) => void): Request<OpenSearch.Types.DeleteDataSourceResponse, AWSError>;
|
98
98
|
/**
|
99
|
-
* Deletes
|
99
|
+
* Deletes a direct-query data source. For more information, see Deleting an Amazon OpenSearch Service data source with Amazon S3.
|
100
100
|
*/
|
101
101
|
deleteDataSource(callback?: (err: AWSError, data: OpenSearch.Types.DeleteDataSourceResponse) => void): Request<OpenSearch.Types.DeleteDataSourceResponse, AWSError>;
|
102
102
|
/**
|
@@ -276,11 +276,11 @@ declare class OpenSearch extends Service {
|
|
276
276
|
*/
|
277
277
|
getCompatibleVersions(callback?: (err: AWSError, data: OpenSearch.Types.GetCompatibleVersionsResponse) => void): Request<OpenSearch.Types.GetCompatibleVersionsResponse, AWSError>;
|
278
278
|
/**
|
279
|
-
*
|
279
|
+
* Retrieves information about a direct query data source.
|
280
280
|
*/
|
281
281
|
getDataSource(params: OpenSearch.Types.GetDataSourceRequest, callback?: (err: AWSError, data: OpenSearch.Types.GetDataSourceResponse) => void): Request<OpenSearch.Types.GetDataSourceResponse, AWSError>;
|
282
282
|
/**
|
283
|
-
*
|
283
|
+
* Retrieves information about a direct query data source.
|
284
284
|
*/
|
285
285
|
getDataSource(callback?: (err: AWSError, data: OpenSearch.Types.GetDataSourceResponse) => void): Request<OpenSearch.Types.GetDataSourceResponse, AWSError>;
|
286
286
|
/**
|
@@ -316,11 +316,11 @@ declare class OpenSearch extends Service {
|
|
316
316
|
*/
|
317
317
|
getUpgradeStatus(callback?: (err: AWSError, data: OpenSearch.Types.GetUpgradeStatusResponse) => void): Request<OpenSearch.Types.GetUpgradeStatusResponse, AWSError>;
|
318
318
|
/**
|
319
|
-
*
|
319
|
+
* Lists direct-query data sources for a specific domain. For more information, see For more information, see Working with Amazon OpenSearch Service direct queries with Amazon S3.
|
320
320
|
*/
|
321
321
|
listDataSources(params: OpenSearch.Types.ListDataSourcesRequest, callback?: (err: AWSError, data: OpenSearch.Types.ListDataSourcesResponse) => void): Request<OpenSearch.Types.ListDataSourcesResponse, AWSError>;
|
322
322
|
/**
|
323
|
-
*
|
323
|
+
* Lists direct-query data sources for a specific domain. For more information, see For more information, see Working with Amazon OpenSearch Service direct queries with Amazon S3.
|
324
324
|
*/
|
325
325
|
listDataSources(callback?: (err: AWSError, data: OpenSearch.Types.ListDataSourcesResponse) => void): Request<OpenSearch.Types.ListDataSourcesResponse, AWSError>;
|
326
326
|
/**
|
@@ -460,11 +460,11 @@ declare class OpenSearch extends Service {
|
|
460
460
|
*/
|
461
461
|
startServiceSoftwareUpdate(callback?: (err: AWSError, data: OpenSearch.Types.StartServiceSoftwareUpdateResponse) => void): Request<OpenSearch.Types.StartServiceSoftwareUpdateResponse, AWSError>;
|
462
462
|
/**
|
463
|
-
* Updates
|
463
|
+
* Updates a direct-query data source. For more information, see Working with Amazon OpenSearch Service data source integrations with Amazon S3.
|
464
464
|
*/
|
465
465
|
updateDataSource(params: OpenSearch.Types.UpdateDataSourceRequest, callback?: (err: AWSError, data: OpenSearch.Types.UpdateDataSourceResponse) => void): Request<OpenSearch.Types.UpdateDataSourceResponse, AWSError>;
|
466
466
|
/**
|
467
|
-
* Updates
|
467
|
+
* Updates a direct-query data source. For more information, see Working with Amazon OpenSearch Service data source integrations with Amazon S3.
|
468
468
|
*/
|
469
469
|
updateDataSource(callback?: (err: AWSError, data: OpenSearch.Types.UpdateDataSourceResponse) => void): Request<OpenSearch.Types.UpdateDataSourceResponse, AWSError>;
|
470
470
|
/**
|
@@ -552,11 +552,11 @@ declare namespace OpenSearch {
|
|
552
552
|
export type ActionType = "SERVICE_SOFTWARE_UPDATE"|"JVM_HEAP_SIZE_TUNING"|"JVM_YOUNG_GEN_TUNING"|string;
|
553
553
|
export interface AddDataSourceRequest {
|
554
554
|
/**
|
555
|
-
* The name of the domain.
|
555
|
+
* The name of the domain to add the data source to.
|
556
556
|
*/
|
557
557
|
DomainName: DomainName;
|
558
558
|
/**
|
559
|
-
*
|
559
|
+
* A name for the data source.
|
560
560
|
*/
|
561
561
|
Name: DataSourceName;
|
562
562
|
/**
|
@@ -570,7 +570,7 @@ declare namespace OpenSearch {
|
|
570
570
|
}
|
571
571
|
export interface AddDataSourceResponse {
|
572
572
|
/**
|
573
|
-
* A message associated with the data source.
|
573
|
+
* A message associated with creation of the data source.
|
574
574
|
*/
|
575
575
|
Message?: String;
|
576
576
|
}
|
@@ -1253,7 +1253,7 @@ declare namespace OpenSearch {
|
|
1253
1253
|
export type DataSourceName = string;
|
1254
1254
|
export interface DataSourceType {
|
1255
1255
|
/**
|
1256
|
-
*
|
1256
|
+
* An Amazon S3 data source.
|
1257
1257
|
*/
|
1258
1258
|
S3GlueDataCatalog?: S3GlueDataCatalog;
|
1259
1259
|
}
|
@@ -1263,13 +1263,13 @@ declare namespace OpenSearch {
|
|
1263
1263
|
*/
|
1264
1264
|
DomainName: DomainName;
|
1265
1265
|
/**
|
1266
|
-
* The name of the data source.
|
1266
|
+
* The name of the data source to delete.
|
1267
1267
|
*/
|
1268
1268
|
Name: DataSourceName;
|
1269
1269
|
}
|
1270
1270
|
export interface DeleteDataSourceResponse {
|
1271
1271
|
/**
|
1272
|
-
* A message associated with the
|
1272
|
+
* A message associated with deletion of the data source.
|
1273
1273
|
*/
|
1274
1274
|
Message?: String;
|
1275
1275
|
}
|
@@ -1781,7 +1781,7 @@ declare namespace OpenSearch {
|
|
1781
1781
|
*/
|
1782
1782
|
EnforceHTTPS?: Boolean;
|
1783
1783
|
/**
|
1784
|
-
* Specify the TLS security policy to apply to the HTTPS endpoint of the domain. The policy can be one of the following values: Policy-Min-TLS-1-0-2019-07: TLS security policy
|
1784
|
+
* Specify the TLS security policy to apply to the HTTPS endpoint of the domain. The policy can be one of the following values: Policy-Min-TLS-1-0-2019-07: TLS security policy that supports TLS version 1.0 to TLS version 1.2 Policy-Min-TLS-1-2-2019-07: TLS security policy that supports only TLS version 1.2
|
1785
1785
|
*/
|
1786
1786
|
TLSSecurityPolicy?: TLSSecurityPolicy;
|
1787
1787
|
/**
|
@@ -2207,7 +2207,7 @@ declare namespace OpenSearch {
|
|
2207
2207
|
*/
|
2208
2208
|
DomainName: DomainName;
|
2209
2209
|
/**
|
2210
|
-
* The name of the data source.
|
2210
|
+
* The name of the data source to get information about.
|
2211
2211
|
*/
|
2212
2212
|
Name: DataSourceName;
|
2213
2213
|
}
|
@@ -2463,7 +2463,7 @@ declare namespace OpenSearch {
|
|
2463
2463
|
}
|
2464
2464
|
export interface ListDataSourcesResponse {
|
2465
2465
|
/**
|
2466
|
-
* A list of
|
2466
|
+
* A list of data sources associated with specified domain.
|
2467
2467
|
*/
|
2468
2468
|
DataSources?: DataSourceList;
|
2469
2469
|
}
|
@@ -3155,7 +3155,7 @@ declare namespace OpenSearch {
|
|
3155
3155
|
export type S3BucketName = string;
|
3156
3156
|
export interface S3GlueDataCatalog {
|
3157
3157
|
/**
|
3158
|
-
* The
|
3158
|
+
* >The Amazon Resource Name (ARN) for the S3 Glue Data Catalog.
|
3159
3159
|
*/
|
3160
3160
|
RoleArn?: RoleArn;
|
3161
3161
|
}
|
@@ -3452,7 +3452,7 @@ declare namespace OpenSearch {
|
|
3452
3452
|
*/
|
3453
3453
|
DomainName: DomainName;
|
3454
3454
|
/**
|
3455
|
-
* The name of the data source.
|
3455
|
+
* The name of the data source to modify.
|
3456
3456
|
*/
|
3457
3457
|
Name: DataSourceName;
|
3458
3458
|
/**
|
@@ -3460,13 +3460,13 @@ declare namespace OpenSearch {
|
|
3460
3460
|
*/
|
3461
3461
|
DataSourceType: DataSourceType;
|
3462
3462
|
/**
|
3463
|
-
* A description of the data source.
|
3463
|
+
* A new description of the data source.
|
3464
3464
|
*/
|
3465
3465
|
Description?: DataSourceDescription;
|
3466
3466
|
}
|
3467
3467
|
export interface UpdateDataSourceResponse {
|
3468
3468
|
/**
|
3469
|
-
* A message associated with the data source.
|
3469
|
+
* A message associated with the updated data source.
|
3470
3470
|
*/
|
3471
3471
|
Message?: String;
|
3472
3472
|
}
|
@@ -28,11 +28,11 @@ declare class QuickSight extends Service {
|
|
28
28
|
*/
|
29
29
|
createAccountCustomization(callback?: (err: AWSError, data: QuickSight.Types.CreateAccountCustomizationResponse) => void): Request<QuickSight.Types.CreateAccountCustomizationResponse, AWSError>;
|
30
30
|
/**
|
31
|
-
* Creates an Amazon QuickSight account, or subscribes to Amazon QuickSight Q. The Amazon Web Services Region for the account is derived from what is configured in the CLI or SDK.
|
31
|
+
* Creates an Amazon QuickSight account, or subscribes to Amazon QuickSight Q. The Amazon Web Services Region for the account is derived from what is configured in the CLI or SDK. Before you use this operation, make sure that you can connect to an existing Amazon Web Services account. If you don't have an Amazon Web Services account, see Sign up for Amazon Web Services in the Amazon QuickSight User Guide. The person who signs up for Amazon QuickSight needs to have the correct Identity and Access Management (IAM) permissions. For more information, see IAM Policy Examples for Amazon QuickSight in the Amazon QuickSight User Guide. If your IAM policy includes both the Subscribe and CreateAccountSubscription actions, make sure that both actions are set to Allow. If either action is set to Deny, the Deny action prevails and your API call fails. You can't pass an existing IAM role to access other Amazon Web Services services using this API operation. To pass your existing IAM role to Amazon QuickSight, see Passing IAM roles to Amazon QuickSight in the Amazon QuickSight User Guide. You can't set default resource access on the new account from the Amazon QuickSight API. Instead, add default resource access from the Amazon QuickSight console. For more information about setting default resource access to Amazon Web Services services, see Setting default resource access to Amazon Web Services services in the Amazon QuickSight User Guide.
|
32
32
|
*/
|
33
33
|
createAccountSubscription(params: QuickSight.Types.CreateAccountSubscriptionRequest, callback?: (err: AWSError, data: QuickSight.Types.CreateAccountSubscriptionResponse) => void): Request<QuickSight.Types.CreateAccountSubscriptionResponse, AWSError>;
|
34
34
|
/**
|
35
|
-
* Creates an Amazon QuickSight account, or subscribes to Amazon QuickSight Q. The Amazon Web Services Region for the account is derived from what is configured in the CLI or SDK.
|
35
|
+
* Creates an Amazon QuickSight account, or subscribes to Amazon QuickSight Q. The Amazon Web Services Region for the account is derived from what is configured in the CLI or SDK. Before you use this operation, make sure that you can connect to an existing Amazon Web Services account. If you don't have an Amazon Web Services account, see Sign up for Amazon Web Services in the Amazon QuickSight User Guide. The person who signs up for Amazon QuickSight needs to have the correct Identity and Access Management (IAM) permissions. For more information, see IAM Policy Examples for Amazon QuickSight in the Amazon QuickSight User Guide. If your IAM policy includes both the Subscribe and CreateAccountSubscription actions, make sure that both actions are set to Allow. If either action is set to Deny, the Deny action prevails and your API call fails. You can't pass an existing IAM role to access other Amazon Web Services services using this API operation. To pass your existing IAM role to Amazon QuickSight, see Passing IAM roles to Amazon QuickSight in the Amazon QuickSight User Guide. You can't set default resource access on the new account from the Amazon QuickSight API. Instead, add default resource access from the Amazon QuickSight console. For more information about setting default resource access to Amazon Web Services services, see Setting default resource access to Amazon Web Services services in the Amazon QuickSight User Guide.
|
36
36
|
*/
|
37
37
|
createAccountSubscription(callback?: (err: AWSError, data: QuickSight.Types.CreateAccountSubscriptionResponse) => void): Request<QuickSight.Types.CreateAccountSubscriptionResponse, AWSError>;
|
38
38
|
/**
|
@@ -1163,6 +1163,14 @@ declare class QuickSight extends Service {
|
|
1163
1163
|
* Updates a dashboard in an Amazon Web Services account. Updating a Dashboard creates a new dashboard version but does not immediately publish the new version. You can update the published version of a dashboard by using the UpdateDashboardPublishedVersion API operation.
|
1164
1164
|
*/
|
1165
1165
|
updateDashboard(callback?: (err: AWSError, data: QuickSight.Types.UpdateDashboardResponse) => void): Request<QuickSight.Types.UpdateDashboardResponse, AWSError>;
|
1166
|
+
/**
|
1167
|
+
* Updates the linked analyses on a dashboard.
|
1168
|
+
*/
|
1169
|
+
updateDashboardLinks(params: QuickSight.Types.UpdateDashboardLinksRequest, callback?: (err: AWSError, data: QuickSight.Types.UpdateDashboardLinksResponse) => void): Request<QuickSight.Types.UpdateDashboardLinksResponse, AWSError>;
|
1170
|
+
/**
|
1171
|
+
* Updates the linked analyses on a dashboard.
|
1172
|
+
*/
|
1173
|
+
updateDashboardLinks(callback?: (err: AWSError, data: QuickSight.Types.UpdateDashboardLinksResponse) => void): Request<QuickSight.Types.UpdateDashboardLinksResponse, AWSError>;
|
1166
1174
|
/**
|
1167
1175
|
* Updates read and write permissions on a dashboard.
|
1168
1176
|
*/
|
@@ -3373,6 +3381,7 @@ declare namespace QuickSight {
|
|
3373
3381
|
* The label options (label text, label visibility, and sort icon visibility) of a combo chart's secondary y-axis(line) field well.
|
3374
3382
|
*/
|
3375
3383
|
SecondaryYAxisLabelOptions?: ChartAxisLabelOptions;
|
3384
|
+
SingleAxisOptions?: SingleAxisOptions;
|
3376
3385
|
/**
|
3377
3386
|
* The label options (label text, label visibility, and sort icon visibility) of a combo chart's color field well.
|
3378
3387
|
*/
|
@@ -3881,6 +3890,10 @@ declare namespace QuickSight {
|
|
3881
3890
|
* A structure that contains the permissions of a shareable link to the dashboard.
|
3882
3891
|
*/
|
3883
3892
|
LinkSharingConfiguration?: LinkSharingConfiguration;
|
3893
|
+
/**
|
3894
|
+
* A list of analysis Amazon Resource Names (ARNs) to be linked to the dashboard.
|
3895
|
+
*/
|
3896
|
+
LinkEntities?: LinkEntityArnList;
|
3884
3897
|
}
|
3885
3898
|
export interface CreateDashboardResponse {
|
3886
3899
|
/**
|
@@ -5009,6 +5022,10 @@ declare namespace QuickSight {
|
|
5009
5022
|
* The last time that this dashboard was updated.
|
5010
5023
|
*/
|
5011
5024
|
LastUpdatedTime?: Timestamp;
|
5025
|
+
/**
|
5026
|
+
* A list of analysis Amazon Resource Names (ARNs) to be linked to the dashboard.
|
5027
|
+
*/
|
5028
|
+
LinkEntities?: LinkEntityArnList;
|
5012
5029
|
}
|
5013
5030
|
export type DashboardBehavior = "ENABLED"|"DISABLED"|string;
|
5014
5031
|
export interface DashboardError {
|
@@ -11091,6 +11108,7 @@ declare namespace QuickSight {
|
|
11091
11108
|
* The options that determine the presentation of the secondary y-axis label.
|
11092
11109
|
*/
|
11093
11110
|
SecondaryYAxisLabelOptions?: ChartAxisLabelOptions;
|
11111
|
+
SingleAxisOptions?: SingleAxisOptions;
|
11094
11112
|
/**
|
11095
11113
|
* The options that determine the default presentation of all line series in LineChartVisual.
|
11096
11114
|
*/
|
@@ -11252,6 +11270,8 @@ declare namespace QuickSight {
|
|
11252
11270
|
*/
|
11253
11271
|
MissingDataConfigurations?: MissingDataConfigurationList;
|
11254
11272
|
}
|
11273
|
+
export type LinkEntityArn = string;
|
11274
|
+
export type LinkEntityArnList = LinkEntityArn[];
|
11255
11275
|
export interface LinkSharingConfiguration {
|
11256
11276
|
/**
|
11257
11277
|
* A structure that contains the permissions of a shareable link.
|
@@ -14794,6 +14814,10 @@ declare namespace QuickSight {
|
|
14794
14814
|
* The field wells of the visual.
|
14795
14815
|
*/
|
14796
14816
|
FieldWells?: ScatterPlotFieldWells;
|
14817
|
+
/**
|
14818
|
+
* The sort configuration of a scatter plot.
|
14819
|
+
*/
|
14820
|
+
SortConfiguration?: ScatterPlotSortConfiguration;
|
14797
14821
|
/**
|
14798
14822
|
* The label options (label text, label visibility, and sort icon visibility) of the scatter plot's x-axis.
|
14799
14823
|
*/
|
@@ -14837,6 +14861,9 @@ declare namespace QuickSight {
|
|
14837
14861
|
*/
|
14838
14862
|
ScatterPlotUnaggregatedFieldWells?: ScatterPlotUnaggregatedFieldWells;
|
14839
14863
|
}
|
14864
|
+
export interface ScatterPlotSortConfiguration {
|
14865
|
+
ScatterPlotLimitConfiguration?: ItemsLimitConfiguration;
|
14866
|
+
}
|
14840
14867
|
export interface ScatterPlotUnaggregatedFieldWells {
|
14841
14868
|
/**
|
14842
14869
|
* The x-axis field well of a scatter plot. The x-axis is a dimension field and cannot be aggregated.
|
@@ -15512,6 +15539,13 @@ declare namespace QuickSight {
|
|
15512
15539
|
}
|
15513
15540
|
export type SimpleNumericalAggregationFunction = "SUM"|"AVERAGE"|"MIN"|"MAX"|"COUNT"|"DISTINCT_COUNT"|"VAR"|"VARP"|"STDEV"|"STDEVP"|"MEDIAN"|string;
|
15514
15541
|
export type SimpleTotalAggregationFunction = "DEFAULT"|"SUM"|"AVERAGE"|"MIN"|"MAX"|"NONE"|string;
|
15542
|
+
export interface SingleAxisOptions {
|
15543
|
+
/**
|
15544
|
+
* The Y axis options of a single axis configuration.
|
15545
|
+
*/
|
15546
|
+
YAxisOptions?: YAxisOptions;
|
15547
|
+
}
|
15548
|
+
export type SingleYAxisOption = "PRIMARY_Y_AXIS"|string;
|
15515
15549
|
export type SiteBaseUrl = string;
|
15516
15550
|
export interface SliderControlDisplayOptions {
|
15517
15551
|
/**
|
@@ -15683,7 +15717,7 @@ declare namespace QuickSight {
|
|
15683
15717
|
/**
|
15684
15718
|
* A structure that contains details about the Amazon S3 bucket that the generated dashboard snapshot is saved in.
|
15685
15719
|
*/
|
15686
|
-
BucketConfiguration
|
15720
|
+
BucketConfiguration: S3BucketConfiguration;
|
15687
15721
|
}
|
15688
15722
|
export type SnapshotS3DestinationConfigurationList = SnapshotS3DestinationConfiguration[];
|
15689
15723
|
export interface SnapshotUserConfiguration {
|
@@ -18077,6 +18111,38 @@ declare namespace QuickSight {
|
|
18077
18111
|
*/
|
18078
18112
|
RequestId?: String;
|
18079
18113
|
}
|
18114
|
+
export interface UpdateDashboardLinksRequest {
|
18115
|
+
/**
|
18116
|
+
* The ID of the Amazon Web Services account that contains the dashboard whose links you want to update.
|
18117
|
+
*/
|
18118
|
+
AwsAccountId: AwsAccountId;
|
18119
|
+
/**
|
18120
|
+
* The ID for the dashboard.
|
18121
|
+
*/
|
18122
|
+
DashboardId: ShortRestrictiveResourceId;
|
18123
|
+
/**
|
18124
|
+
* list of analysis Amazon Resource Names (ARNs) to be linked to the dashboard.
|
18125
|
+
*/
|
18126
|
+
LinkEntities: LinkEntityArnList;
|
18127
|
+
}
|
18128
|
+
export interface UpdateDashboardLinksResponse {
|
18129
|
+
/**
|
18130
|
+
* The Amazon Web Services request ID for this operation.
|
18131
|
+
*/
|
18132
|
+
RequestId?: String;
|
18133
|
+
/**
|
18134
|
+
* The HTTP status of the request.
|
18135
|
+
*/
|
18136
|
+
Status?: StatusCode;
|
18137
|
+
/**
|
18138
|
+
* The Amazon Resource Name (ARN) of the dashboard.
|
18139
|
+
*/
|
18140
|
+
DashboardArn?: Arn;
|
18141
|
+
/**
|
18142
|
+
* A list of analysis Amazon Resource Names (ARNs) to be linked to the dashboard.
|
18143
|
+
*/
|
18144
|
+
LinkEntities?: LinkEntityArnList;
|
18145
|
+
}
|
18080
18146
|
export interface UpdateDashboardPermissionsRequest {
|
18081
18147
|
/**
|
18082
18148
|
* The ID of the Amazon Web Services account that contains the dashboard whose permissions you're updating.
|
@@ -19822,6 +19888,12 @@ declare namespace QuickSight {
|
|
19822
19888
|
export type WordCloudWordPadding = "NONE"|"SMALL"|"MEDIUM"|"LARGE"|string;
|
19823
19889
|
export type WordCloudWordScaling = "EMPHASIZE"|"NORMAL"|string;
|
19824
19890
|
export type WorkGroup = string;
|
19891
|
+
export interface YAxisOptions {
|
19892
|
+
/**
|
19893
|
+
* The Y axis type to be used in the chart. If you choose PRIMARY_Y_AXIS, the primary Y Axis is located on the leftmost vertical axis of the chart.
|
19894
|
+
*/
|
19895
|
+
YAxis: SingleYAxisOption;
|
19896
|
+
}
|
19825
19897
|
/**
|
19826
19898
|
* A string in YYYY-MM-DD format that represents the latest possible API version that can be used in this service. Specify 'latest' to use the latest possible version.
|
19827
19899
|
*/
|
@@ -2204,7 +2204,7 @@ declare namespace RDS {
|
|
2204
2204
|
*/
|
2205
2205
|
DBInstanceIdentifier: String;
|
2206
2206
|
/**
|
2207
|
-
* The amount of storage in gibibytes (GiB) to allocate for the DB instance. This setting doesn't apply to Amazon Aurora DB instances. Aurora cluster volumes automatically grow as the amount of data in your database increases, though you are only charged for the space that you use in an Aurora cluster volume. Amazon RDS Custom Constraints to the amount of storage for each storage type are the following: General Purpose (SSD) storage (gp2, gp3): Must be an integer from 40 to 65536 for RDS Custom for Oracle, 16384 for RDS Custom for SQL Server. Provisioned IOPS storage (io1): Must be an integer from 40 to 65536 for RDS Custom for Oracle, 16384 for RDS Custom for SQL Server. RDS for Db2 Constraints to the amount of storage for each storage type are the following: General Purpose (SSD) storage (
|
2207
|
+
* The amount of storage in gibibytes (GiB) to allocate for the DB instance. This setting doesn't apply to Amazon Aurora DB instances. Aurora cluster volumes automatically grow as the amount of data in your database increases, though you are only charged for the space that you use in an Aurora cluster volume. Amazon RDS Custom Constraints to the amount of storage for each storage type are the following: General Purpose (SSD) storage (gp2, gp3): Must be an integer from 40 to 65536 for RDS Custom for Oracle, 16384 for RDS Custom for SQL Server. Provisioned IOPS storage (io1): Must be an integer from 40 to 65536 for RDS Custom for Oracle, 16384 for RDS Custom for SQL Server. RDS for Db2 Constraints to the amount of storage for each storage type are the following: General Purpose (SSD) storage (gp3): Must be an integer from 20 to 64000. Provisioned IOPS storage (io1): Must be an integer from 100 to 64000. RDS for MariaDB Constraints to the amount of storage for each storage type are the following: General Purpose (SSD) storage (gp2, gp3): Must be an integer from 20 to 65536. Provisioned IOPS storage (io1): Must be an integer from 100 to 65536. Magnetic storage (standard): Must be an integer from 5 to 3072. RDS for MySQL Constraints to the amount of storage for each storage type are the following: General Purpose (SSD) storage (gp2, gp3): Must be an integer from 20 to 65536. Provisioned IOPS storage (io1): Must be an integer from 100 to 65536. Magnetic storage (standard): Must be an integer from 5 to 3072. RDS for Oracle Constraints to the amount of storage for each storage type are the following: General Purpose (SSD) storage (gp2, gp3): Must be an integer from 20 to 65536. Provisioned IOPS storage (io1): Must be an integer from 100 to 65536. Magnetic storage (standard): Must be an integer from 10 to 3072. RDS for PostgreSQL Constraints to the amount of storage for each storage type are the following: General Purpose (SSD) storage (gp2, gp3): Must be an integer from 20 to 65536. Provisioned IOPS storage (io1): Must be an integer from 100 to 65536. Magnetic storage (standard): Must be an integer from 5 to 3072. RDS for SQL Server Constraints to the amount of storage for each storage type are the following: General Purpose (SSD) storage (gp2, gp3): Enterprise and Standard editions: Must be an integer from 20 to 16384. Web and Express editions: Must be an integer from 20 to 16384. Provisioned IOPS storage (io1): Enterprise and Standard editions: Must be an integer from 100 to 16384. Web and Express editions: Must be an integer from 100 to 16384. Magnetic storage (standard): Enterprise and Standard editions: Must be an integer from 20 to 1024. Web and Express editions: Must be an integer from 20 to 1024.
|
2208
2208
|
*/
|
2209
2209
|
AllocatedStorage?: IntegerOptional;
|
2210
2210
|
/**
|