aws-sdk 2.1433.0 → 2.1435.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +14 -1
- package/README.md +1 -1
- package/apis/amplifybackend-2020-08-11.min.json +4 -0
- package/apis/connect-2017-08-08.min.json +472 -314
- package/apis/connect-2017-08-08.paginators.json +6 -0
- package/apis/elasticloadbalancingv2-2015-12-01.min.json +49 -46
- package/apis/omics-2022-11-28.min.json +10 -8
- package/apis/quicksight-2018-04-01.min.json +1138 -1109
- package/apis/swf-2012-01-25.min.json +12 -3
- package/clients/cloudtrail.d.ts +4 -4
- package/clients/configservice.d.ts +1 -1
- package/clients/connect.d.ts +141 -7
- package/clients/ec2.d.ts +1 -1
- package/clients/elbv2.d.ts +23 -9
- package/clients/omics.d.ts +11 -2
- package/clients/quicksight.d.ts +64 -11
- package/clients/ses.d.ts +158 -158
- package/clients/swf.d.ts +18 -1
- package/clients/transfer.d.ts +11 -11
- package/dist/aws-sdk-core-react-native.js +1 -1
- package/dist/aws-sdk-react-native.js +8 -8
- package/dist/aws-sdk.js +530 -363
- package/dist/aws-sdk.min.js +81 -81
- package/lib/core.js +1 -1
- package/package.json +1 -1
package/clients/elbv2.d.ts
CHANGED
@@ -93,11 +93,11 @@ declare class ELBv2 extends Service {
|
|
93
93
|
*/
|
94
94
|
deleteTargetGroup(callback?: (err: AWSError, data: ELBv2.Types.DeleteTargetGroupOutput) => void): Request<ELBv2.Types.DeleteTargetGroupOutput, AWSError>;
|
95
95
|
/**
|
96
|
-
* Deregisters the specified targets from the specified target group. After the targets are deregistered, they no longer receive traffic from the load balancer.
|
96
|
+
* Deregisters the specified targets from the specified target group. After the targets are deregistered, they no longer receive traffic from the load balancer. Note: If the specified target does not exist, the action returns successfully.
|
97
97
|
*/
|
98
98
|
deregisterTargets(params: ELBv2.Types.DeregisterTargetsInput, callback?: (err: AWSError, data: ELBv2.Types.DeregisterTargetsOutput) => void): Request<ELBv2.Types.DeregisterTargetsOutput, AWSError>;
|
99
99
|
/**
|
100
|
-
* Deregisters the specified targets from the specified target group. After the targets are deregistered, they no longer receive traffic from the load balancer.
|
100
|
+
* Deregisters the specified targets from the specified target group. After the targets are deregistered, they no longer receive traffic from the load balancer. Note: If the specified target does not exist, the action returns successfully.
|
101
101
|
*/
|
102
102
|
deregisterTargets(callback?: (err: AWSError, data: ELBv2.Types.DeregisterTargetsOutput) => void): Request<ELBv2.Types.DeregisterTargetsOutput, AWSError>;
|
103
103
|
/**
|
@@ -269,11 +269,11 @@ declare class ELBv2 extends Service {
|
|
269
269
|
*/
|
270
270
|
setRulePriorities(callback?: (err: AWSError, data: ELBv2.Types.SetRulePrioritiesOutput) => void): Request<ELBv2.Types.SetRulePrioritiesOutput, AWSError>;
|
271
271
|
/**
|
272
|
-
* Associates the specified security groups with the specified Application Load Balancer. The specified security groups override the previously associated security groups. You can't
|
272
|
+
* Associates the specified security groups with the specified Application Load Balancer or Network Load Balancer. The specified security groups override the previously associated security groups. You can't perform this operation on a Network Load Balancer unless you specified a security group for the load balancer when you created it. You can't associate a security group with a Gateway Load Balancer.
|
273
273
|
*/
|
274
274
|
setSecurityGroups(params: ELBv2.Types.SetSecurityGroupsInput, callback?: (err: AWSError, data: ELBv2.Types.SetSecurityGroupsOutput) => void): Request<ELBv2.Types.SetSecurityGroupsOutput, AWSError>;
|
275
275
|
/**
|
276
|
-
* Associates the specified security groups with the specified Application Load Balancer. The specified security groups override the previously associated security groups. You can't
|
276
|
+
* Associates the specified security groups with the specified Application Load Balancer or Network Load Balancer. The specified security groups override the previously associated security groups. You can't perform this operation on a Network Load Balancer unless you specified a security group for the load balancer when you created it. You can't associate a security group with a Gateway Load Balancer.
|
277
277
|
*/
|
278
278
|
setSecurityGroups(callback?: (err: AWSError, data: ELBv2.Types.SetSecurityGroupsOutput) => void): Request<ELBv2.Types.SetSecurityGroupsOutput, AWSError>;
|
279
279
|
/**
|
@@ -602,7 +602,7 @@ declare namespace ELBv2 {
|
|
602
602
|
*/
|
603
603
|
SubnetMappings?: SubnetMappings;
|
604
604
|
/**
|
605
|
-
* [Application Load Balancers] The IDs of the security groups for the load balancer.
|
605
|
+
* [Application Load Balancers and Network Load Balancers] The IDs of the security groups for the load balancer.
|
606
606
|
*/
|
607
607
|
SecurityGroups?: SecurityGroups;
|
608
608
|
/**
|
@@ -1025,6 +1025,8 @@ declare namespace ELBv2 {
|
|
1025
1025
|
TargetHealthDescriptions?: TargetHealthDescriptions;
|
1026
1026
|
}
|
1027
1027
|
export type Description = string;
|
1028
|
+
export type EnforceSecurityGroupInboundRulesOnPrivateLinkTraffic = string;
|
1029
|
+
export type EnforceSecurityGroupInboundRulesOnPrivateLinkTrafficEnum = "on"|"off"|string;
|
1028
1030
|
export interface FixedResponseActionConfig {
|
1029
1031
|
/**
|
1030
1032
|
* The message.
|
@@ -1188,6 +1190,10 @@ declare namespace ELBv2 {
|
|
1188
1190
|
* [Application Load Balancers on Outposts] The ID of the customer-owned address pool.
|
1189
1191
|
*/
|
1190
1192
|
CustomerOwnedIpv4Pool?: CustomerOwnedIpv4Pool;
|
1193
|
+
/**
|
1194
|
+
* Indicates whether to evaluate inbound security group rules for traffic sent to a Network Load Balancer through Amazon Web Services PrivateLink.
|
1195
|
+
*/
|
1196
|
+
EnforceSecurityGroupInboundRulesOnPrivateLinkTraffic?: EnforceSecurityGroupInboundRulesOnPrivateLinkTraffic;
|
1191
1197
|
}
|
1192
1198
|
export interface LoadBalancerAddress {
|
1193
1199
|
/**
|
@@ -1599,12 +1605,20 @@ declare namespace ELBv2 {
|
|
1599
1605
|
* The IDs of the security groups.
|
1600
1606
|
*/
|
1601
1607
|
SecurityGroups: SecurityGroups;
|
1608
|
+
/**
|
1609
|
+
* Indicates whether to evaluate inbound security group rules for traffic sent to a Network Load Balancer through Amazon Web Services PrivateLink. The default is on.
|
1610
|
+
*/
|
1611
|
+
EnforceSecurityGroupInboundRulesOnPrivateLinkTraffic?: EnforceSecurityGroupInboundRulesOnPrivateLinkTrafficEnum;
|
1602
1612
|
}
|
1603
1613
|
export interface SetSecurityGroupsOutput {
|
1604
1614
|
/**
|
1605
1615
|
* The IDs of the security groups associated with the load balancer.
|
1606
1616
|
*/
|
1607
1617
|
SecurityGroupIds?: SecurityGroups;
|
1618
|
+
/**
|
1619
|
+
* Indicates whether to evaluate inbound security group rules for traffic sent to a Network Load Balancer through Amazon Web Services PrivateLink.
|
1620
|
+
*/
|
1621
|
+
EnforceSecurityGroupInboundRulesOnPrivateLinkTraffic?: EnforceSecurityGroupInboundRulesOnPrivateLinkTrafficEnum;
|
1608
1622
|
}
|
1609
1623
|
export interface SetSubnetsInput {
|
1610
1624
|
/**
|
@@ -1620,7 +1634,7 @@ declare namespace ELBv2 {
|
|
1620
1634
|
*/
|
1621
1635
|
SubnetMappings?: SubnetMappings;
|
1622
1636
|
/**
|
1623
|
-
* [Network Load Balancers] The type of IP addresses used by the subnets for your load balancer. The possible values are ipv4 (for IPv4 addresses) and dualstack (for IPv4 and IPv6 addresses). You can’t specify dualstack for a load balancer with a UDP or TCP_UDP listener.
|
1637
|
+
* [Network Load Balancers] The type of IP addresses used by the subnets for your load balancer. The possible values are ipv4 (for IPv4 addresses) and dualstack (for IPv4 and IPv6 addresses). You can’t specify dualstack for a load balancer with a UDP or TCP_UDP listener.
|
1624
1638
|
*/
|
1625
1639
|
IpAddressType?: IpAddressType;
|
1626
1640
|
}
|
@@ -1718,7 +1732,7 @@ declare namespace ELBv2 {
|
|
1718
1732
|
*/
|
1719
1733
|
Id: TargetId;
|
1720
1734
|
/**
|
1721
|
-
* The port on which the target is listening. If the target group protocol is GENEVE, the supported port is 6081. If the target type is alb, the targeted Application Load Balancer must have at least one listener whose port matches the target group port.
|
1735
|
+
* The port on which the target is listening. If the target group protocol is GENEVE, the supported port is 6081. If the target type is alb, the targeted Application Load Balancer must have at least one listener whose port matches the target group port. This parameter is not used if the target is a Lambda function.
|
1722
1736
|
*/
|
1723
1737
|
Port?: Port;
|
1724
1738
|
/**
|
@@ -1741,7 +1755,7 @@ declare namespace ELBv2 {
|
|
1741
1755
|
*/
|
1742
1756
|
Protocol?: ProtocolEnum;
|
1743
1757
|
/**
|
1744
|
-
* The port on which the targets are listening.
|
1758
|
+
* The port on which the targets are listening. This parameter is not used if the target is a Lambda function.
|
1745
1759
|
*/
|
1746
1760
|
Port?: Port;
|
1747
1761
|
/**
|
@@ -1785,7 +1799,7 @@ declare namespace ELBv2 {
|
|
1785
1799
|
*/
|
1786
1800
|
Matcher?: Matcher;
|
1787
1801
|
/**
|
1788
|
-
* The Amazon Resource
|
1802
|
+
* The Amazon Resource Name (ARN) of the load balancer that routes traffic to this target group. You can use each target group with only one load balancer.
|
1789
1803
|
*/
|
1790
1804
|
LoadBalancerArns?: LoadBalancerArns;
|
1791
1805
|
/**
|
package/clients/omics.d.ts
CHANGED
@@ -2271,6 +2271,10 @@ declare namespace Omics {
|
|
2271
2271
|
* The number of Graphics Processing Units (GPU) specified in the task.
|
2272
2272
|
*/
|
2273
2273
|
gpus?: GetRunTaskResponseGpusInteger;
|
2274
|
+
/**
|
2275
|
+
* The instance type for a task.
|
2276
|
+
*/
|
2277
|
+
instanceType?: TaskInstanceType;
|
2274
2278
|
}
|
2275
2279
|
export type GetRunTaskResponseCpusInteger = number;
|
2276
2280
|
export type GetRunTaskResponseGpusInteger = number;
|
@@ -2686,7 +2690,7 @@ declare namespace Omics {
|
|
2686
2690
|
*/
|
2687
2691
|
ids?: ListAnnotationImportJobsRequestIdsList;
|
2688
2692
|
/**
|
2689
|
-
*
|
2693
|
+
* Specifies the pagination token from a previous request to retrieve the next page of results.
|
2690
2694
|
*/
|
2691
2695
|
nextToken?: ListAnnotationImportJobsRequestNextTokenString;
|
2692
2696
|
/**
|
@@ -2703,7 +2707,7 @@ declare namespace Omics {
|
|
2703
2707
|
*/
|
2704
2708
|
annotationImportJobs?: AnnotationImportJobItems;
|
2705
2709
|
/**
|
2706
|
-
*
|
2710
|
+
* Specifies the pagination token from a previous request to retrieve the next page of results.
|
2707
2711
|
*/
|
2708
2712
|
nextToken?: String;
|
2709
2713
|
}
|
@@ -4231,6 +4235,7 @@ declare namespace Omics {
|
|
4231
4235
|
}
|
4232
4236
|
export type TagValue = string;
|
4233
4237
|
export type TaskId = string;
|
4238
|
+
export type TaskInstanceType = string;
|
4234
4239
|
export type TaskList = TaskListItem[];
|
4235
4240
|
export interface TaskListItem {
|
4236
4241
|
/**
|
@@ -4269,6 +4274,10 @@ declare namespace Omics {
|
|
4269
4274
|
* The number of Graphics Processing Units (GPU) specified for the task.
|
4270
4275
|
*/
|
4271
4276
|
gpus?: TaskListItemGpusInteger;
|
4277
|
+
/**
|
4278
|
+
* The instance type for a task.
|
4279
|
+
*/
|
4280
|
+
instanceType?: TaskInstanceType;
|
4272
4281
|
}
|
4273
4282
|
export type TaskListItemCpusInteger = number;
|
4274
4283
|
export type TaskListItemGpusInteger = number;
|
package/clients/quicksight.d.ts
CHANGED
@@ -1044,11 +1044,11 @@ declare class QuickSight extends Service {
|
|
1044
1044
|
*/
|
1045
1045
|
startAssetBundleImportJob(callback?: (err: AWSError, data: QuickSight.Types.StartAssetBundleImportJobResponse) => void): Request<QuickSight.Types.StartAssetBundleImportJobResponse, AWSError>;
|
1046
1046
|
/**
|
1047
|
-
* Starts an asynchronous job that generates a dashboard snapshot. You can request
|
1047
|
+
* Starts an asynchronous job that generates a dashboard snapshot. You can request one of the following format configurations per API call. 1 paginated PDF 5 CSVs Poll job descriptions with a DescribeDashboardSnapshotJob API call. Once the job succeeds, use the DescribeDashboardSnapshotJobResult API to obtain the download URIs that the job generates.
|
1048
1048
|
*/
|
1049
1049
|
startDashboardSnapshotJob(params: QuickSight.Types.StartDashboardSnapshotJobRequest, callback?: (err: AWSError, data: QuickSight.Types.StartDashboardSnapshotJobResponse) => void): Request<QuickSight.Types.StartDashboardSnapshotJobResponse, AWSError>;
|
1050
1050
|
/**
|
1051
|
-
* Starts an asynchronous job that generates a dashboard snapshot. You can request
|
1051
|
+
* Starts an asynchronous job that generates a dashboard snapshot. You can request one of the following format configurations per API call. 1 paginated PDF 5 CSVs Poll job descriptions with a DescribeDashboardSnapshotJob API call. Once the job succeeds, use the DescribeDashboardSnapshotJobResult API to obtain the download URIs that the job generates.
|
1052
1052
|
*/
|
1053
1053
|
startDashboardSnapshotJob(callback?: (err: AWSError, data: QuickSight.Types.StartDashboardSnapshotJobResponse) => void): Request<QuickSight.Types.StartDashboardSnapshotJobResponse, AWSError>;
|
1054
1054
|
/**
|
@@ -1332,7 +1332,12 @@ declare namespace QuickSight {
|
|
1332
1332
|
* The status of your account subscription.
|
1333
1333
|
*/
|
1334
1334
|
AccountSubscriptionStatus?: String;
|
1335
|
+
/**
|
1336
|
+
* The Amazon Resource Name (ARN) for the IAM Identity Center instance.
|
1337
|
+
*/
|
1338
|
+
IAMIdentityCenterInstanceArn?: String;
|
1335
1339
|
}
|
1340
|
+
export type AccountName = string;
|
1336
1341
|
export interface AccountSettings {
|
1337
1342
|
/**
|
1338
1343
|
* The "account name" you provided for the Amazon QuickSight subscription in your Amazon Web Services account. You create this name when you sign up for Amazon QuickSight. It is unique in all of Amazon Web Services and it appears only when users sign in.
|
@@ -2116,7 +2121,7 @@ declare namespace QuickSight {
|
|
2116
2121
|
*/
|
2117
2122
|
Database: Database;
|
2118
2123
|
}
|
2119
|
-
export type AuthenticationMethodOption = "IAM_AND_QUICKSIGHT"|"IAM_ONLY"|"ACTIVE_DIRECTORY"|string;
|
2124
|
+
export type AuthenticationMethodOption = "IAM_AND_QUICKSIGHT"|"IAM_ONLY"|"ACTIVE_DIRECTORY"|"IAM_IDENTITY_CENTER"|string;
|
2120
2125
|
export type AuthorSpecifiedAggregation = "COUNT"|"DISTINCT_COUNT"|"MIN"|"MAX"|"MEDIAN"|"SUM"|"AVERAGE"|"STDEV"|"STDEVP"|"VAR"|"VARP"|"PERCENTILE"|string;
|
2121
2126
|
export type AuthorSpecifiedAggregations = AuthorSpecifiedAggregation[];
|
2122
2127
|
export type AwsAccountId = string;
|
@@ -3347,7 +3352,7 @@ declare namespace QuickSight {
|
|
3347
3352
|
/**
|
3348
3353
|
* The name of your Amazon QuickSight account. This name is unique over all of Amazon Web Services, and it appears only when users sign in. You can't change AccountName value after the Amazon QuickSight account is created.
|
3349
3354
|
*/
|
3350
|
-
AccountName:
|
3355
|
+
AccountName: AccountName;
|
3351
3356
|
/**
|
3352
3357
|
* The email address that you want Amazon QuickSight to send notifications to regarding your Amazon QuickSight account or Amazon QuickSight subscription.
|
3353
3358
|
*/
|
@@ -5786,7 +5791,7 @@ declare namespace QuickSight {
|
|
5786
5791
|
*/
|
5787
5792
|
CustomValue?: SensitiveDouble;
|
5788
5793
|
}
|
5789
|
-
export type DefaultAggregation = "SUM"|"MAX"|"MIN"|"COUNT"|"DISTINCT_COUNT"|"AVERAGE"|string;
|
5794
|
+
export type DefaultAggregation = "SUM"|"MAX"|"MIN"|"COUNT"|"DISTINCT_COUNT"|"AVERAGE"|"MEDIAN"|"STDEV"|"STDEVP"|"VAR"|"VARP"|string;
|
5790
5795
|
export interface DefaultFormatting {
|
5791
5796
|
/**
|
5792
5797
|
* The display format. Valid values for this structure are AUTO, PERCENT, CURRENCY, NUMBER, DATE, and STRING.
|
@@ -9913,7 +9918,7 @@ declare namespace QuickSight {
|
|
9913
9918
|
export type IdentityName = string;
|
9914
9919
|
export type IdentityNameList = IdentityName[];
|
9915
9920
|
export type IdentityStore = "QUICKSIGHT"|string;
|
9916
|
-
export type IdentityType = "IAM"|"QUICKSIGHT"|string;
|
9921
|
+
export type IdentityType = "IAM"|"QUICKSIGHT"|"IAM_IDENTITY_CENTER"|string;
|
9917
9922
|
export interface IncrementalRefresh {
|
9918
9923
|
/**
|
9919
9924
|
* The lookback window setup for an incremental refresh configuration.
|
@@ -12882,6 +12887,18 @@ declare namespace QuickSight {
|
|
12882
12887
|
* 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.
|
12883
12888
|
*/
|
12884
12889
|
CollapsedRowDimensionsVisibility?: Visibility;
|
12890
|
+
/**
|
12891
|
+
* The layout for the row dimension headers of a pivot table. Choose one of the following options. TABULAR: (Default) Each row field is displayed in a separate column. HIERARCHY: All row fields are displayed in a single column. Indentation is used to differentiate row headers of different fields.
|
12892
|
+
*/
|
12893
|
+
RowsLayout?: PivotTableRowsLayout;
|
12894
|
+
/**
|
12895
|
+
* The options for the label that is located above the row headers. This option is only applicable when RowsLayout is set to HIERARCHY.
|
12896
|
+
*/
|
12897
|
+
RowsLabelOptions?: PivotTableRowsLabelOptions;
|
12898
|
+
/**
|
12899
|
+
* The default cell width of the pivot table.
|
12900
|
+
*/
|
12901
|
+
DefaultCellWidth?: PixelLength;
|
12885
12902
|
}
|
12886
12903
|
export interface PivotTablePaginatedReportOptions {
|
12887
12904
|
/**
|
@@ -12893,6 +12910,18 @@ declare namespace QuickSight {
|
|
12893
12910
|
*/
|
12894
12911
|
OverflowColumnHeaderVisibility?: Visibility;
|
12895
12912
|
}
|
12913
|
+
export interface PivotTableRowsLabelOptions {
|
12914
|
+
/**
|
12915
|
+
* The visibility of the rows label.
|
12916
|
+
*/
|
12917
|
+
Visibility?: Visibility;
|
12918
|
+
/**
|
12919
|
+
* The custom label string for the rows label.
|
12920
|
+
*/
|
12921
|
+
CustomLabel?: PivotTableRowsLabelText;
|
12922
|
+
}
|
12923
|
+
export type PivotTableRowsLabelText = string;
|
12924
|
+
export type PivotTableRowsLayout = "TABULAR"|"HIERARCHY"|string;
|
12896
12925
|
export interface PivotTableSortBy {
|
12897
12926
|
/**
|
12898
12927
|
* The field sort (field id, direction) for the pivot table sort by options.
|
@@ -13730,6 +13759,10 @@ declare namespace QuickSight {
|
|
13730
13759
|
* Determines the list of row alternate colors.
|
13731
13760
|
*/
|
13732
13761
|
RowAlternateColors?: RowAlternateColorList;
|
13762
|
+
/**
|
13763
|
+
* The primary background color options for alternate rows.
|
13764
|
+
*/
|
13765
|
+
UsePrimaryBackgroundColor?: WidgetStatus;
|
13733
13766
|
}
|
13734
13767
|
export interface RowInfo {
|
13735
13768
|
/**
|
@@ -14752,7 +14785,7 @@ declare namespace QuickSight {
|
|
14752
14785
|
*/
|
14753
14786
|
SheetSelections: SnapshotFileSheetSelectionList;
|
14754
14787
|
/**
|
14755
|
-
* The format of the snapshot file to be generated. You can choose between CSV
|
14788
|
+
* The format of the snapshot file to be generated. You can choose between CSV or PDF.
|
14756
14789
|
*/
|
14757
14790
|
FormatType: SnapshotFileFormatType;
|
14758
14791
|
}
|
@@ -14767,7 +14800,7 @@ declare namespace QuickSight {
|
|
14767
14800
|
export type SnapshotFileList = SnapshotFile[];
|
14768
14801
|
export interface SnapshotFileSheetSelection {
|
14769
14802
|
/**
|
14770
|
-
* The sheet ID of the dashboard to generate the snapshot artifact from. This value is required for CSV
|
14803
|
+
* The sheet ID of the dashboard to generate the snapshot artifact from. This value is required for CSV and PDF format types.
|
14771
14804
|
*/
|
14772
14805
|
SheetId: ShortRestrictiveResourceId;
|
14773
14806
|
/**
|
@@ -14775,7 +14808,7 @@ declare namespace QuickSight {
|
|
14775
14808
|
*/
|
14776
14809
|
SelectionScope: SnapshotFileSheetSelectionScope;
|
14777
14810
|
/**
|
14778
|
-
* A
|
14811
|
+
* A list of visual IDs that are located in the selected sheet. This structure supports tables and pivot tables. This structure is required if you are generating a CSV. You can add a maximum of 1 visual ID to this structure.
|
14779
14812
|
*/
|
14780
14813
|
VisualIds?: SnapshotFileSheetSelectionVisualIdList;
|
14781
14814
|
}
|
@@ -15142,6 +15175,7 @@ declare namespace QuickSight {
|
|
15142
15175
|
*/
|
15143
15176
|
CustomValue?: SensitiveString;
|
15144
15177
|
}
|
15178
|
+
export type StyledCellType = "TOTAL"|"METRIC_HEADER"|"VALUE"|string;
|
15145
15179
|
export type SubnetId = string;
|
15146
15180
|
export type SubnetIdList = SubnetId[];
|
15147
15181
|
export interface SubtotalOptions {
|
@@ -15173,6 +15207,10 @@ declare namespace QuickSight {
|
|
15173
15207
|
* The cell styling options for the subtotals of header cells.
|
15174
15208
|
*/
|
15175
15209
|
MetricHeaderCellStyle?: TableCellStyle;
|
15210
|
+
/**
|
15211
|
+
* The style targets options for subtotals.
|
15212
|
+
*/
|
15213
|
+
StyleTargets?: TableStyleTargetList;
|
15176
15214
|
}
|
15177
15215
|
export type Suffix = string;
|
15178
15216
|
export type Synonyms = LimitedString[];
|
@@ -15479,6 +15517,13 @@ declare namespace QuickSight {
|
|
15479
15517
|
*/
|
15480
15518
|
PaginationConfiguration?: PaginationConfiguration;
|
15481
15519
|
}
|
15520
|
+
export interface TableStyleTarget {
|
15521
|
+
/**
|
15522
|
+
* The cell type of the table style target.
|
15523
|
+
*/
|
15524
|
+
CellType: StyledCellType;
|
15525
|
+
}
|
15526
|
+
export type TableStyleTargetList = TableStyleTarget[];
|
15482
15527
|
export type TableTotalsPlacement = "START"|"END"|string;
|
15483
15528
|
export type TableTotalsScrollStatus = "PINNED"|"SCROLLED"|string;
|
15484
15529
|
export interface TableUnaggregatedFieldWells {
|
@@ -16305,6 +16350,10 @@ declare namespace QuickSight {
|
|
16305
16350
|
* The other names or aliases for the calculated field cell value.
|
16306
16351
|
*/
|
16307
16352
|
CellValueSynonyms?: CellValueSynonyms;
|
16353
|
+
/**
|
16354
|
+
* The non additive for the table style target.
|
16355
|
+
*/
|
16356
|
+
NonAdditive?: NullableBoolean;
|
16308
16357
|
}
|
16309
16358
|
export type TopicCalculatedFields = TopicCalculatedField[];
|
16310
16359
|
export interface TopicCategoryFilter {
|
@@ -16361,7 +16410,7 @@ declare namespace QuickSight {
|
|
16361
16410
|
*/
|
16362
16411
|
ColumnDataRole?: ColumnDataRole;
|
16363
16412
|
/**
|
16364
|
-
* The type of aggregation that is performed on the column data when it's queried.
|
16413
|
+
* The type of aggregation that is performed on the column data when it's queried.
|
16365
16414
|
*/
|
16366
16415
|
Aggregation?: DefaultAggregation;
|
16367
16416
|
/**
|
@@ -16404,6 +16453,10 @@ declare namespace QuickSight {
|
|
16404
16453
|
* The other names or aliases for the column cell value.
|
16405
16454
|
*/
|
16406
16455
|
CellValueSynonyms?: CellValueSynonyms;
|
16456
|
+
/**
|
16457
|
+
* The non additive value for the column.
|
16458
|
+
*/
|
16459
|
+
NonAdditive?: NullableBoolean;
|
16407
16460
|
}
|
16408
16461
|
export type TopicColumns = TopicColumn[];
|
16409
16462
|
export interface TopicDateRangeFilter {
|
@@ -18359,7 +18412,7 @@ declare namespace QuickSight {
|
|
18359
18412
|
export type ValueWhenUnsetOption = "RECOMMENDED_VALUE"|"NULL"|string;
|
18360
18413
|
export type VersionDescription = string;
|
18361
18414
|
export type VersionNumber = number;
|
18362
|
-
export type VerticalTextAlignment = "TOP"|"MIDDLE"|"BOTTOM"|string;
|
18415
|
+
export type VerticalTextAlignment = "TOP"|"MIDDLE"|"BOTTOM"|"AUTO"|string;
|
18363
18416
|
export type Visibility = "HIDDEN"|"VISIBLE"|string;
|
18364
18417
|
export type VisiblePanelColumns = number;
|
18365
18418
|
export type VisiblePanelRows = number;
|