aws-sdk 2.1658.0 → 2.1660.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.
@@ -11,6 +11,22 @@ declare class QuickSight extends Service {
11
11
  */
12
12
  constructor(options?: QuickSight.Types.ClientConfiguration)
13
13
  config: Config & QuickSight.Types.ClientConfiguration;
14
+ /**
15
+ * Creates new reviewed answers for a Q Topic.
16
+ */
17
+ batchCreateTopicReviewedAnswer(params: QuickSight.Types.BatchCreateTopicReviewedAnswerRequest, callback?: (err: AWSError, data: QuickSight.Types.BatchCreateTopicReviewedAnswerResponse) => void): Request<QuickSight.Types.BatchCreateTopicReviewedAnswerResponse, AWSError>;
18
+ /**
19
+ * Creates new reviewed answers for a Q Topic.
20
+ */
21
+ batchCreateTopicReviewedAnswer(callback?: (err: AWSError, data: QuickSight.Types.BatchCreateTopicReviewedAnswerResponse) => void): Request<QuickSight.Types.BatchCreateTopicReviewedAnswerResponse, AWSError>;
22
+ /**
23
+ * Deletes reviewed answers for Q Topic.
24
+ */
25
+ batchDeleteTopicReviewedAnswer(params: QuickSight.Types.BatchDeleteTopicReviewedAnswerRequest, callback?: (err: AWSError, data: QuickSight.Types.BatchDeleteTopicReviewedAnswerResponse) => void): Request<QuickSight.Types.BatchDeleteTopicReviewedAnswerResponse, AWSError>;
26
+ /**
27
+ * Deletes reviewed answers for Q Topic.
28
+ */
29
+ batchDeleteTopicReviewedAnswer(callback?: (err: AWSError, data: QuickSight.Types.BatchDeleteTopicReviewedAnswerResponse) => void): Request<QuickSight.Types.BatchDeleteTopicReviewedAnswerResponse, AWSError>;
14
30
  /**
15
31
  * Cancels an ongoing ingestion of data into SPICE.
16
32
  */
@@ -987,6 +1003,14 @@ declare class QuickSight extends Service {
987
1003
  * Lists all of the refresh schedules for a topic.
988
1004
  */
989
1005
  listTopicRefreshSchedules(callback?: (err: AWSError, data: QuickSight.Types.ListTopicRefreshSchedulesResponse) => void): Request<QuickSight.Types.ListTopicRefreshSchedulesResponse, AWSError>;
1006
+ /**
1007
+ * Lists all reviewed answers for a Q Topic.
1008
+ */
1009
+ listTopicReviewedAnswers(params: QuickSight.Types.ListTopicReviewedAnswersRequest, callback?: (err: AWSError, data: QuickSight.Types.ListTopicReviewedAnswersResponse) => void): Request<QuickSight.Types.ListTopicReviewedAnswersResponse, AWSError>;
1010
+ /**
1011
+ * Lists all reviewed answers for a Q Topic.
1012
+ */
1013
+ listTopicReviewedAnswers(callback?: (err: AWSError, data: QuickSight.Types.ListTopicReviewedAnswersResponse) => void): Request<QuickSight.Types.ListTopicReviewedAnswersResponse, AWSError>;
990
1014
  /**
991
1015
  * Lists all of the topics within an account.
992
1016
  */
@@ -1487,6 +1511,28 @@ declare namespace QuickSight {
1487
1511
  AvailabilityStatus?: DashboardBehavior;
1488
1512
  }
1489
1513
  export type AdditionalDashboardIdList = ShortRestrictiveResourceId[];
1514
+ export interface AggFunction {
1515
+ /**
1516
+ * The aggregation of an Agg function.
1517
+ */
1518
+ Aggregation?: AggType;
1519
+ /**
1520
+ * The aggregation parameters for an Agg function.
1521
+ */
1522
+ AggregationFunctionParameters?: AggFunctionParamMap;
1523
+ /**
1524
+ * The period of an Agg function.
1525
+ */
1526
+ Period?: TopicTimeGranularity;
1527
+ /**
1528
+ * The period field for an Agg function.
1529
+ */
1530
+ PeriodField?: LimitedString;
1531
+ }
1532
+ export type AggFunctionParamKey = string;
1533
+ export type AggFunctionParamMap = {[key: string]: AggFunctionParamValue};
1534
+ export type AggFunctionParamValue = string;
1535
+ export type AggType = "SUM"|"MIN"|"MAX"|"COUNT"|"AVERAGE"|"DISTINCT_COUNT"|"STDEV"|"STDEVP"|"VAR"|"VARP"|"PERCENTILE"|"MEDIAN"|"PTD_SUM"|"PTD_MIN"|"PTD_MAX"|"PTD_COUNT"|"PTD_DISTINCT_COUNT"|"PTD_AVERAGE"|"COLUMN"|"CUSTOM"|string;
1490
1536
  export interface AggregationFunction {
1491
1537
  /**
1492
1538
  * Aggregation for numerical values.
@@ -1506,6 +1552,17 @@ declare namespace QuickSight {
1506
1552
  AttributeAggregationFunction?: AttributeAggregationFunction;
1507
1553
  }
1508
1554
  export type AggregationFunctionParameters = {[key: string]: LimitedString};
1555
+ export interface AggregationPartitionBy {
1556
+ /**
1557
+ * The field Name for an AggregationPartitionBy.
1558
+ */
1559
+ FieldName?: LimitedString;
1560
+ /**
1561
+ * The TimeGranularity for an AggregationPartitionBy.
1562
+ */
1563
+ TimeGranularity?: TimeGranularity;
1564
+ }
1565
+ export type AggregationPartitionByList = AggregationPartitionBy[];
1509
1566
  export interface AggregationSortConfiguration {
1510
1567
  /**
1511
1568
  * The column that determines the sort order of aggregated values.
@@ -1691,6 +1748,20 @@ declare namespace QuickSight {
1691
1748
  LastUpdatedTime?: Timestamp;
1692
1749
  }
1693
1750
  export type AnalysisSummaryList = AnalysisSummary[];
1751
+ export interface Anchor {
1752
+ /**
1753
+ * The AnchorType for the Anchor.
1754
+ */
1755
+ AnchorType?: AnchorType;
1756
+ /**
1757
+ * The TimeGranularity of the Anchor.
1758
+ */
1759
+ TimeGranularity?: TimeGranularity;
1760
+ /**
1761
+ * The offset of the Anchor.
1762
+ */
1763
+ Offset?: Integer;
1764
+ }
1694
1765
  export interface AnchorDateConfiguration {
1695
1766
  /**
1696
1767
  * The options for the date configuration. Choose one of the options below: NOW
@@ -1702,6 +1773,7 @@ declare namespace QuickSight {
1702
1773
  ParameterName?: ParameterName;
1703
1774
  }
1704
1775
  export type AnchorOption = "NOW"|string;
1776
+ export type AnchorType = "TODAY"|string;
1705
1777
  export interface AnonymousUserDashboardEmbeddingConfiguration {
1706
1778
  /**
1707
1779
  * The dashboard ID for the dashboard that you want the user to see first. This ID is included in the output URL. When the URL in response is accessed, Amazon QuickSight renders this dashboard. The Amazon Resource Name (ARN) of this dashboard must be included in the AuthorizedResourceArns parameter. Otherwise, the request will fail with InvalidParameterValueException.
@@ -1751,6 +1823,8 @@ declare namespace QuickSight {
1751
1823
  FileGroups?: SnapshotJobResultFileGroupList;
1752
1824
  }
1753
1825
  export type AnonymousUserSnapshotJobResultList = AnonymousUserSnapshotJobResult[];
1826
+ export type AnswerId = string;
1827
+ export type AnswerIds = AnswerId[];
1754
1828
  export interface ArcAxisConfiguration {
1755
1829
  /**
1756
1830
  * The arc axis range of a GaugeChartVisual.
@@ -2777,6 +2851,86 @@ declare namespace QuickSight {
2777
2851
  }
2778
2852
  export type BarsArrangement = "CLUSTERED"|"STACKED"|"STACKED_PERCENT"|string;
2779
2853
  export type BaseMapStyleType = "LIGHT_GRAY"|"DARK_GRAY"|"STREET"|"IMAGERY"|string;
2854
+ export interface BatchCreateTopicReviewedAnswerRequest {
2855
+ /**
2856
+ * The ID of the Amazon Web Services account that you want to create a reviewed answer in.
2857
+ */
2858
+ AwsAccountId: AwsAccountId;
2859
+ /**
2860
+ * The ID for the topic reviewed answer that you want to create. This ID is unique per Amazon Web Services Region for each Amazon Web Services account.
2861
+ */
2862
+ TopicId: TopicId;
2863
+ /**
2864
+ * The definition of the Answers to be created.
2865
+ */
2866
+ Answers: CreateTopicReviewedAnswers;
2867
+ }
2868
+ export interface BatchCreateTopicReviewedAnswerResponse {
2869
+ /**
2870
+ * The ID for the topic reviewed answer that you want to create. This ID is unique per Amazon Web Services Region for each Amazon Web Services account.
2871
+ */
2872
+ TopicId?: TopicId;
2873
+ /**
2874
+ * The Amazon Resource Name (ARN) of the topic.
2875
+ */
2876
+ TopicArn?: Arn;
2877
+ /**
2878
+ * The definition of Answers that are successfully created.
2879
+ */
2880
+ SucceededAnswers?: SucceededTopicReviewedAnswers;
2881
+ /**
2882
+ * The definition of Answers that are invalid and not created.
2883
+ */
2884
+ InvalidAnswers?: InvalidTopicReviewedAnswers;
2885
+ /**
2886
+ * The HTTP status of the request.
2887
+ */
2888
+ Status?: StatusCode;
2889
+ /**
2890
+ * The Amazon Web Services request ID for this operation.
2891
+ */
2892
+ RequestId?: String;
2893
+ }
2894
+ export interface BatchDeleteTopicReviewedAnswerRequest {
2895
+ /**
2896
+ * The ID of the Amazon Web Services account that you want to delete a reviewed answers in.
2897
+ */
2898
+ AwsAccountId: AwsAccountId;
2899
+ /**
2900
+ * The ID for the topic reviewed answer that you want to delete. This ID is unique per Amazon Web Services Region for each Amazon Web Services account.
2901
+ */
2902
+ TopicId: TopicId;
2903
+ /**
2904
+ * The Answer IDs of the Answers to be deleted.
2905
+ */
2906
+ AnswerIds?: AnswerIds;
2907
+ }
2908
+ export interface BatchDeleteTopicReviewedAnswerResponse {
2909
+ /**
2910
+ * The ID of the topic reviewed answer that you want to delete. This ID is unique per Amazon Web Services Region for each Amazon Web Services account.
2911
+ */
2912
+ TopicId?: TopicId;
2913
+ /**
2914
+ * The Amazon Resource Name (ARN) of the topic.
2915
+ */
2916
+ TopicArn?: Arn;
2917
+ /**
2918
+ * The definition of Answers that are successfully deleted.
2919
+ */
2920
+ SucceededAnswers?: SucceededTopicReviewedAnswers;
2921
+ /**
2922
+ * The definition of Answers that are invalid and not deleted.
2923
+ */
2924
+ InvalidAnswers?: InvalidTopicReviewedAnswers;
2925
+ /**
2926
+ * The Amazon Web Services request ID for this operation.
2927
+ */
2928
+ RequestId?: String;
2929
+ /**
2930
+ * The HTTP status of the request.
2931
+ */
2932
+ Status?: StatusCode;
2933
+ }
2780
2934
  export interface BigQueryParameters {
2781
2935
  /**
2782
2936
  * The Google Cloud Platform project ID where your datasource was created.
@@ -3054,6 +3208,7 @@ declare namespace QuickSight {
3054
3208
  Expression: CalculatedFieldExpression;
3055
3209
  }
3056
3210
  export type CalculatedFieldExpression = string;
3211
+ export type CalculatedFieldReferenceList = Identifier[];
3057
3212
  export type CalculatedFields = CalculatedField[];
3058
3213
  export interface CalculatedMeasureField {
3059
3214
  /**
@@ -3267,6 +3422,17 @@ declare namespace QuickSight {
3267
3422
  */
3268
3423
  ValueList?: StringList;
3269
3424
  }
3425
+ export interface CollectiveConstantEntry {
3426
+ /**
3427
+ * The ConstantType of a CollectiveConstantEntry.
3428
+ */
3429
+ ConstantType?: ConstantType;
3430
+ /**
3431
+ * The value of a CollectiveConstantEntry.
3432
+ */
3433
+ Value?: ConstantValueString;
3434
+ }
3435
+ export type CollectiveConstantEntryList = CollectiveConstantEntry[];
3270
3436
  export type ColorFillType = "DISCRETE"|"GRADIENT"|string;
3271
3437
  export type ColorList = HexColor[];
3272
3438
  export interface ColorScale {
@@ -3622,6 +3788,7 @@ declare namespace QuickSight {
3622
3788
  PercentageDisplayFormatConfiguration?: PercentageDisplayFormatConfiguration;
3623
3789
  }
3624
3790
  export type ComparisonMethod = "DIFFERENCE"|"PERCENT_DIFFERENCE"|"PERCENT"|string;
3791
+ export type ComparisonMethodType = "DIFF"|"PERC_DIFF"|"DIFF_AS_PERC"|"POP_CURRENT_DIFF_AS_PERC"|"POP_CURRENT_DIFF"|"POP_OVERTIME_DIFF_AS_PERC"|"POP_OVERTIME_DIFF"|"PERCENT_OF_TOTAL"|"RUNNING_SUM"|"MOVING_AVERAGE"|string;
3625
3792
  export interface Computation {
3626
3793
  /**
3627
3794
  * The top ranked and bottom ranked computation configuration.
@@ -3752,6 +3919,7 @@ declare namespace QuickSight {
3752
3919
  Color?: HexColor;
3753
3920
  }
3754
3921
  export type ConstantType = "SINGULAR"|"RANGE"|"COLLECTIVE"|string;
3922
+ export type ConstantValueString = string;
3755
3923
  export interface ContextMenuOption {
3756
3924
  /**
3757
3925
  * The availability status of the context menu options. If the value of this property is set to ENABLED, dashboard readers can interact with the context menu.
@@ -3769,6 +3937,25 @@ declare namespace QuickSight {
3769
3937
  ContributorDimensions: ContributorDimensionList;
3770
3938
  }
3771
3939
  export type ContributionAnalysisDefaultList = ContributionAnalysisDefault[];
3940
+ export type ContributionAnalysisDirection = "INCREASE"|"DECREASE"|"NEUTRAL"|string;
3941
+ export interface ContributionAnalysisFactor {
3942
+ /**
3943
+ * The field name of the ContributionAnalysisFactor.
3944
+ */
3945
+ FieldName?: LimitedString;
3946
+ }
3947
+ export type ContributionAnalysisFactorsList = ContributionAnalysisFactor[];
3948
+ export type ContributionAnalysisSortType = "ABSOLUTE_DIFFERENCE"|"CONTRIBUTION_PERCENTAGE"|"DEVIATION_FROM_EXPECTED"|"PERCENTAGE_DIFFERENCE"|string;
3949
+ export interface ContributionAnalysisTimeRanges {
3950
+ /**
3951
+ * The start range for the ContributionAnalysisTimeRanges.
3952
+ */
3953
+ StartRange?: TopicIRFilterOption;
3954
+ /**
3955
+ * The end range for the ContributionAnalysisTimeRanges.
3956
+ */
3957
+ EndRange?: TopicIRFilterOption;
3958
+ }
3772
3959
  export type ContributorDimensionList = ColumnIdentifier[];
3773
3960
  export type CopySourceArn = string;
3774
3961
  export interface CreateAccountCustomizationRequest {
@@ -4850,6 +5037,33 @@ declare namespace QuickSight {
4850
5037
  */
4851
5038
  Status?: StatusCode;
4852
5039
  }
5040
+ export interface CreateTopicReviewedAnswer {
5041
+ /**
5042
+ * The answer ID for the CreateTopicReviewedAnswer.
5043
+ */
5044
+ AnswerId: AnswerId;
5045
+ /**
5046
+ * The Dataset arn for the CreateTopicReviewedAnswer.
5047
+ */
5048
+ DatasetArn: Arn;
5049
+ /**
5050
+ * The Question to be created.
5051
+ */
5052
+ Question: LimitedString;
5053
+ /**
5054
+ * The Mir for the CreateTopicReviewedAnswer.
5055
+ */
5056
+ Mir?: TopicIR;
5057
+ /**
5058
+ * The PrimaryVisual for the CreateTopicReviewedAnswer.
5059
+ */
5060
+ PrimaryVisual?: TopicVisual;
5061
+ /**
5062
+ * The template for the CreateTopicReviewedAnswer.
5063
+ */
5064
+ Template?: TopicTemplate;
5065
+ }
5066
+ export type CreateTopicReviewedAnswers = CreateTopicReviewedAnswer[];
4853
5067
  export interface CreateVPCConnectionRequest {
4854
5068
  /**
4855
5069
  * The Amazon Web Services account ID of the account where you want to create a new VPC connection.
@@ -6294,6 +6508,14 @@ declare namespace QuickSight {
6294
6508
  * The configuration of info icon label options.
6295
6509
  */
6296
6510
  InfoIconLabelOptions?: SheetControlInfoIconLabelOptions;
6511
+ /**
6512
+ * The helper text visibility of the DateTimePickerControlDisplayOptions.
6513
+ */
6514
+ HelperTextVisibility?: Visibility;
6515
+ /**
6516
+ * The date icon visibility of the DateTimePickerControlDisplayOptions.
6517
+ */
6518
+ DateIconVisibility?: Visibility;
6297
6519
  }
6298
6520
  export interface DateTimeValueWhenUnsetConfiguration {
6299
6521
  /**
@@ -9303,6 +9525,21 @@ declare namespace QuickSight {
9303
9525
  */
9304
9526
  NestedFilter?: NestedFilter;
9305
9527
  }
9528
+ export interface FilterAggMetrics {
9529
+ /**
9530
+ * The metric operand of the FilterAggMetrics.
9531
+ */
9532
+ MetricOperand?: Identifier;
9533
+ /**
9534
+ * The function for the FilterAggMetrics.
9535
+ */
9536
+ Function?: AggType;
9537
+ /**
9538
+ * The sort direction for FilterAggMetrics.
9539
+ */
9540
+ SortDirection?: TopicSortDirection;
9541
+ }
9542
+ export type FilterAggMetricsList = FilterAggMetrics[];
9306
9543
  export type FilterClass = "ENFORCED_VALUE_FILTER"|"CONDITIONAL_VALUE_FILTER"|"NAMED_VALUE_FILTER"|string;
9307
9544
  export interface FilterControl {
9308
9545
  /**
@@ -10938,6 +11175,12 @@ declare namespace QuickSight {
10938
11175
  export type IAMPolicyAssignmentSummaryList = IAMPolicyAssignmentSummary[];
10939
11176
  export type IPv4Address = string;
10940
11177
  export type Icon = "CARET_UP"|"CARET_DOWN"|"PLUS"|"MINUS"|"ARROW_UP"|"ARROW_DOWN"|"ARROW_LEFT"|"ARROW_UP_LEFT"|"ARROW_DOWN_LEFT"|"ARROW_RIGHT"|"ARROW_UP_RIGHT"|"ARROW_DOWN_RIGHT"|"FACE_UP"|"FACE_DOWN"|"FACE_FLAT"|"ONE_BAR"|"TWO_BAR"|"THREE_BAR"|"CIRCLE"|"TRIANGLE"|"SQUARE"|"FLAG"|"THUMBS_UP"|"THUMBS_DOWN"|"CHECKMARK"|"X"|string;
11178
+ export interface Identifier {
11179
+ /**
11180
+ * The identity of the identifier.
11181
+ */
11182
+ Identity: LimitedString;
11183
+ }
10941
11184
  export interface IdentityCenterConfiguration {
10942
11185
  /**
10943
11186
  * A Boolean option that controls whether Trusted Identity Propagation should be used.
@@ -11144,6 +11387,17 @@ declare namespace QuickSight {
11144
11387
  */
11145
11388
  CustomValue?: SensitiveLong;
11146
11389
  }
11390
+ export interface InvalidTopicReviewedAnswer {
11391
+ /**
11392
+ * The answer ID for the InvalidTopicReviewedAnswer.
11393
+ */
11394
+ AnswerId?: AnswerId;
11395
+ /**
11396
+ * The error that is returned for the InvalidTopicReviewedAnswer.
11397
+ */
11398
+ Error?: ReviewedAnswerErrorCode;
11399
+ }
11400
+ export type InvalidTopicReviewedAnswers = InvalidTopicReviewedAnswer[];
11147
11401
  export type IpRestrictionRuleDescription = string;
11148
11402
  export type IpRestrictionRuleMap = {[key: string]: IpRestrictionRuleDescription};
11149
11403
  export interface ItemsLimitConfiguration {
@@ -12605,6 +12859,38 @@ declare namespace QuickSight {
12605
12859
  */
12606
12860
  RequestId?: String;
12607
12861
  }
12862
+ export interface ListTopicReviewedAnswersRequest {
12863
+ /**
12864
+ * The ID of the Amazon Web Services account that containd the reviewed answers that you want listed.
12865
+ */
12866
+ AwsAccountId: AwsAccountId;
12867
+ /**
12868
+ * The ID for the topic that contains the reviewed answer that you want to list. This ID is unique per Amazon Web Services Region for each Amazon Web Services account.
12869
+ */
12870
+ TopicId: TopicId;
12871
+ }
12872
+ export interface ListTopicReviewedAnswersResponse {
12873
+ /**
12874
+ * The ID for the topic that contains the reviewed answer that you want to list. This ID is unique per Amazon Web Services Region for each Amazon Web Services account.
12875
+ */
12876
+ TopicId?: TopicId;
12877
+ /**
12878
+ * The Amazon Resource Name (ARN) of the topic.
12879
+ */
12880
+ TopicArn?: Arn;
12881
+ /**
12882
+ * The definition of all Answers in the topic.
12883
+ */
12884
+ Answers?: TopicReviewedAnswers;
12885
+ /**
12886
+ * The HTTP status of the request.
12887
+ */
12888
+ Status?: StatusCode;
12889
+ /**
12890
+ * The Amazon Web Services request ID for this operation.
12891
+ */
12892
+ RequestId?: String;
12893
+ }
12608
12894
  export interface ListTopicsRequest {
12609
12895
  /**
12610
12896
  * The ID of the Amazon Web Services account that contains the topics that you want to list.
@@ -13003,6 +13289,12 @@ declare namespace QuickSight {
13003
13289
  AggregationFunctionParameters?: AggregationFunctionParameters;
13004
13290
  }
13005
13291
  export type NamedEntityDefinitions = NamedEntityDefinition[];
13292
+ export interface NamedEntityRef {
13293
+ /**
13294
+ * The NamedEntityName for the NamedEntityRef.
13295
+ */
13296
+ NamedEntityName?: LimitedString;
13297
+ }
13006
13298
  export type NamedFilterAggType = "NO_AGGREGATION"|"SUM"|"AVERAGE"|"COUNT"|"DISTINCT_COUNT"|"MAX"|"MEDIAN"|"MIN"|"STDEV"|"STDEVP"|"VAR"|"VARP"|string;
13007
13299
  export type NamedFilterType = "CATEGORY_FILTER"|"NUMERIC_EQUALITY_FILTER"|"NUMERIC_RANGE_FILTER"|"DATE_RANGE_FILTER"|"RELATIVE_DATE_FILTER"|string;
13008
13300
  export type Namespace = string;
@@ -13126,6 +13418,7 @@ declare namespace QuickSight {
13126
13418
  }
13127
13419
  export type NonEmptyString = string;
13128
13420
  export type NonRepeatingVisualsList = ShortRestrictiveResourceId[];
13421
+ export type NullFilterOption = "ALL_VALUES"|"NON_NULLS_ONLY"|"NULLS_ONLY"|string;
13129
13422
  export type NullString = string;
13130
13423
  export interface NullValueFormatConfiguration {
13131
13424
  /**
@@ -13355,6 +13648,7 @@ declare namespace QuickSight {
13355
13648
  FormatConfiguration?: NumberFormatConfiguration;
13356
13649
  }
13357
13650
  export type OnClause = string;
13651
+ export type OperandList = Identifier[];
13358
13652
  export type OptionalPort = number;
13359
13653
  export interface OracleParameters {
13360
13654
  /**
@@ -15042,6 +15336,7 @@ declare namespace QuickSight {
15042
15336
  RequestId?: String;
15043
15337
  }
15044
15338
  export type RestrictiveResourceId = string;
15339
+ export type ReviewedAnswerErrorCode = "INTERNAL_ERROR"|"MISSING_ANSWER"|"DATASET_DOES_NOT_EXIST"|"INVALID_DATASET_ARN"|"DUPLICATED_ANSWER"|"INVALID_DATA"|"MISSING_REQUIRED_FIELDS"|string;
15045
15340
  export type Role = "ADMIN"|"AUTHOR"|"READER"|"ADMIN_PRO"|"AUTHOR_PRO"|"READER_PRO"|string;
15046
15341
  export type RoleArn = string;
15047
15342
  export type RoleName = string;
@@ -16045,6 +16340,17 @@ declare namespace QuickSight {
16045
16340
  */
16046
16341
  InfoIconLabelOptions?: SheetControlInfoIconLabelOptions;
16047
16342
  }
16343
+ export interface Slot {
16344
+ /**
16345
+ * The slot ID of the slot.
16346
+ */
16347
+ SlotId?: LimitedString;
16348
+ /**
16349
+ * The visual ID for the slot.
16350
+ */
16351
+ VisualId?: LimitedString;
16352
+ }
16353
+ export type Slots = Slot[];
16048
16354
  export type SmallMultiplesAxisPlacement = "OUTSIDE"|"INSIDE"|string;
16049
16355
  export interface SmallMultiplesAxisProperties {
16050
16356
  /**
@@ -16587,6 +16893,13 @@ declare namespace QuickSight {
16587
16893
  */
16588
16894
  StyleTargets?: TableStyleTargetList;
16589
16895
  }
16896
+ export interface SucceededTopicReviewedAnswer {
16897
+ /**
16898
+ * The answer ID for the SucceededTopicReviewedAnswer.
16899
+ */
16900
+ AnswerId?: AnswerId;
16901
+ }
16902
+ export type SucceededTopicReviewedAnswers = SucceededTopicReviewedAnswer[];
16590
16903
  export type SuccessfulKeyRegistrationEntries = SuccessfulKeyRegistrationEntry[];
16591
16904
  export interface SuccessfulKeyRegistrationEntry {
16592
16905
  /**
@@ -17881,6 +18194,28 @@ declare namespace QuickSight {
17881
18194
  NonAdditive?: NullableBoolean;
17882
18195
  }
17883
18196
  export type TopicColumns = TopicColumn[];
18197
+ export interface TopicConstantValue {
18198
+ /**
18199
+ * The constant type of a TopicConstantValue.
18200
+ */
18201
+ ConstantType?: ConstantType;
18202
+ /**
18203
+ * The value of the TopicConstantValue.
18204
+ */
18205
+ Value?: ConstantValueString;
18206
+ /**
18207
+ * The minimum for the TopicConstantValue.
18208
+ */
18209
+ Minimum?: ConstantValueString;
18210
+ /**
18211
+ * The maximum for the TopicConstantValue.
18212
+ */
18213
+ Maximum?: ConstantValueString;
18214
+ /**
18215
+ * The value list of the TopicConstantValue.
18216
+ */
18217
+ ValueList?: CollectiveConstantEntryList;
18218
+ }
17884
18219
  export interface TopicDateRangeFilter {
17885
18220
  /**
17886
18221
  * A Boolean value that indicates whether the date range filter should include the boundary values. If set to true, the filter includes the start and end dates. If set to false, the filter excludes them.
@@ -17956,6 +18291,202 @@ declare namespace QuickSight {
17956
18291
  RelativeDateFilter?: TopicRelativeDateFilter;
17957
18292
  }
17958
18293
  export type TopicFilters = TopicFilter[];
18294
+ export interface TopicIR {
18295
+ /**
18296
+ * The metrics for the TopicIR.
18297
+ */
18298
+ Metrics?: TopicIRMetricList;
18299
+ /**
18300
+ * The GroupBy list for the TopicIR.
18301
+ */
18302
+ GroupByList?: TopicIRGroupByList;
18303
+ /**
18304
+ * The filters for the TopicIR.
18305
+ */
18306
+ Filters?: TopicIRFilterList;
18307
+ /**
18308
+ * The sort for the TopicIR.
18309
+ */
18310
+ Sort?: TopicSortClause;
18311
+ /**
18312
+ * The contribution analysis for the TopicIR.
18313
+ */
18314
+ ContributionAnalysis?: TopicIRContributionAnalysis;
18315
+ /**
18316
+ * The visual for the TopicIR.
18317
+ */
18318
+ Visual?: VisualOptions;
18319
+ }
18320
+ export interface TopicIRComparisonMethod {
18321
+ /**
18322
+ * The type for the TopicIRComparisonMethod.
18323
+ */
18324
+ Type?: ComparisonMethodType;
18325
+ /**
18326
+ * The period for the TopicIRComparisonMethod.
18327
+ */
18328
+ Period?: TopicTimeGranularity;
18329
+ /**
18330
+ * The window size for the TopicIRComparisonMethod.
18331
+ */
18332
+ WindowSize?: Integer;
18333
+ }
18334
+ export interface TopicIRContributionAnalysis {
18335
+ /**
18336
+ * The factors for a TopicIRContributionAnalysis.
18337
+ */
18338
+ Factors?: ContributionAnalysisFactorsList;
18339
+ /**
18340
+ * The time ranges for the TopicIRContributionAnalysis.
18341
+ */
18342
+ TimeRanges?: ContributionAnalysisTimeRanges;
18343
+ /**
18344
+ * The direction for the TopicIRContributionAnalysis.
18345
+ */
18346
+ Direction?: ContributionAnalysisDirection;
18347
+ /**
18348
+ * The sort type for the TopicIRContributionAnalysis.
18349
+ */
18350
+ SortType?: ContributionAnalysisSortType;
18351
+ }
18352
+ export type TopicIRFilterEntry = TopicIRFilterOption[];
18353
+ export type TopicIRFilterFunction = "CONTAINS"|"EXACT"|"STARTS_WITH"|"ENDS_WITH"|"CONTAINS_STRING"|"PREVIOUS"|"THIS"|"LAST"|"NEXT"|"NOW"|string;
18354
+ export type TopicIRFilterList = TopicIRFilterEntry[];
18355
+ export interface TopicIRFilterOption {
18356
+ /**
18357
+ * The filter type for the TopicIRFilterOption.
18358
+ */
18359
+ FilterType?: TopicIRFilterType;
18360
+ /**
18361
+ * The filter class for the TopicIRFilterOption.
18362
+ */
18363
+ FilterClass?: FilterClass;
18364
+ /**
18365
+ * The operand field for the TopicIRFilterOption.
18366
+ */
18367
+ OperandField?: Identifier;
18368
+ /**
18369
+ * The function for the TopicIRFilterOption.
18370
+ */
18371
+ Function?: TopicIRFilterFunction;
18372
+ /**
18373
+ * The constant for the TopicIRFilterOption.
18374
+ */
18375
+ Constant?: TopicConstantValue;
18376
+ /**
18377
+ * The inverse for the TopicIRFilterOption.
18378
+ */
18379
+ Inverse?: Boolean;
18380
+ /**
18381
+ * The null filter for the TopicIRFilterOption.
18382
+ */
18383
+ NullFilter?: NullFilterOption;
18384
+ /**
18385
+ * The aggregation for the TopicIRFilterOption.
18386
+ */
18387
+ Aggregation?: AggType;
18388
+ /**
18389
+ * The aggregation function parameters for the TopicIRFilterOption.
18390
+ */
18391
+ AggregationFunctionParameters?: AggFunctionParamMap;
18392
+ /**
18393
+ * The AggregationPartitionBy for the TopicIRFilterOption.
18394
+ */
18395
+ AggregationPartitionBy?: AggregationPartitionByList;
18396
+ /**
18397
+ * The range for the TopicIRFilterOption.
18398
+ */
18399
+ Range?: TopicConstantValue;
18400
+ /**
18401
+ * The inclusive for the TopicIRFilterOption.
18402
+ */
18403
+ Inclusive?: Boolean;
18404
+ /**
18405
+ * The time granularity for the TopicIRFilterOption.
18406
+ */
18407
+ TimeGranularity?: TimeGranularity;
18408
+ /**
18409
+ * The last next offset for the TopicIRFilterOption.
18410
+ */
18411
+ LastNextOffset?: TopicConstantValue;
18412
+ /**
18413
+ * The agg metrics for the TopicIRFilterOption.
18414
+ */
18415
+ AggMetrics?: FilterAggMetricsList;
18416
+ /**
18417
+ * The TopBottomLimit for the TopicIRFilterOption.
18418
+ */
18419
+ TopBottomLimit?: TopicConstantValue;
18420
+ /**
18421
+ * The sort direction for the TopicIRFilterOption.
18422
+ */
18423
+ SortDirection?: TopicSortDirection;
18424
+ /**
18425
+ * The anchor for the TopicIRFilterOption.
18426
+ */
18427
+ Anchor?: Anchor;
18428
+ }
18429
+ export type TopicIRFilterType = "CATEGORY_FILTER"|"NUMERIC_EQUALITY_FILTER"|"NUMERIC_RANGE_FILTER"|"DATE_RANGE_FILTER"|"RELATIVE_DATE_FILTER"|"TOP_BOTTOM_FILTER"|"EQUALS"|"RANK_LIMIT_FILTER"|"ACCEPT_ALL_FILTER"|string;
18430
+ export interface TopicIRGroupBy {
18431
+ /**
18432
+ * The field name for the TopicIRGroupBy.
18433
+ */
18434
+ FieldName?: Identifier;
18435
+ /**
18436
+ * The time granularity for the TopicIRGroupBy.
18437
+ */
18438
+ TimeGranularity?: TopicTimeGranularity;
18439
+ /**
18440
+ * The sort for the TopicIRGroupBy.
18441
+ */
18442
+ Sort?: TopicSortClause;
18443
+ /**
18444
+ * The display format for the TopicIRGroupBy.
18445
+ */
18446
+ DisplayFormat?: DisplayFormat;
18447
+ DisplayFormatOptions?: DisplayFormatOptions;
18448
+ /**
18449
+ * The named entity for the TopicIRGroupBy.
18450
+ */
18451
+ NamedEntity?: NamedEntityRef;
18452
+ }
18453
+ export type TopicIRGroupByList = TopicIRGroupBy[];
18454
+ export interface TopicIRMetric {
18455
+ /**
18456
+ * The metric ID for the TopicIRMetric.
18457
+ */
18458
+ MetricId?: Identifier;
18459
+ /**
18460
+ * The function for the TopicIRMetric.
18461
+ */
18462
+ Function?: AggFunction;
18463
+ /**
18464
+ * The operands for the TopicIRMetric.
18465
+ */
18466
+ Operands?: OperandList;
18467
+ /**
18468
+ * The comparison method for the TopicIRMetric.
18469
+ */
18470
+ ComparisonMethod?: TopicIRComparisonMethod;
18471
+ /**
18472
+ * The expression for the TopicIRMetric.
18473
+ */
18474
+ Expression?: Expression;
18475
+ /**
18476
+ * The calculated field references for the TopicIRMetric.
18477
+ */
18478
+ CalculatedFieldReferences?: CalculatedFieldReferenceList;
18479
+ /**
18480
+ * The display format for the TopicIRMetric.
18481
+ */
18482
+ DisplayFormat?: DisplayFormat;
18483
+ DisplayFormatOptions?: DisplayFormatOptions;
18484
+ /**
18485
+ * The named entity for the TopicIRMetric.
18486
+ */
18487
+ NamedEntity?: NamedEntityRef;
18488
+ }
18489
+ export type TopicIRMetricList = TopicIRMetric[];
17959
18490
  export type TopicId = string;
17960
18491
  export type TopicNamedEntities = TopicNamedEntity[];
17961
18492
  export interface TopicNamedEntity {
@@ -18090,6 +18621,37 @@ declare namespace QuickSight {
18090
18621
  Constant?: TopicSingularFilterConstant;
18091
18622
  }
18092
18623
  export type TopicRelativeDateFilterFunction = "PREVIOUS"|"THIS"|"LAST"|"NEXT"|"NOW"|string;
18624
+ export interface TopicReviewedAnswer {
18625
+ /**
18626
+ * The Amazon Resource Name (ARN) of the reviewed answer.
18627
+ */
18628
+ Arn?: Arn;
18629
+ /**
18630
+ * The answer ID of the reviewed answer.
18631
+ */
18632
+ AnswerId: AnswerId;
18633
+ /**
18634
+ * The Dataset ARN for the TopicReviewedAnswer.
18635
+ */
18636
+ DatasetArn: Arn;
18637
+ /**
18638
+ * The question for the TopicReviewedAnswer.
18639
+ */
18640
+ Question: LimitedString;
18641
+ /**
18642
+ * The mir for the TopicReviewedAnswer.
18643
+ */
18644
+ Mir?: TopicIR;
18645
+ /**
18646
+ * The primary visual for the TopicReviewedAnswer.
18647
+ */
18648
+ PrimaryVisual?: TopicVisual;
18649
+ /**
18650
+ * The template for the TopicReviewedAnswer.
18651
+ */
18652
+ Template?: TopicTemplate;
18653
+ }
18654
+ export type TopicReviewedAnswers = TopicReviewedAnswer[];
18093
18655
  export type TopicScheduleType = "HOURLY"|"DAILY"|"WEEKLY"|"MONTHLY"|string;
18094
18656
  export interface TopicSingularFilterConstant {
18095
18657
  /**
@@ -18101,6 +18663,17 @@ declare namespace QuickSight {
18101
18663
  */
18102
18664
  SingularConstant?: LimitedString;
18103
18665
  }
18666
+ export interface TopicSortClause {
18667
+ /**
18668
+ * The operand for a TopicSortClause.
18669
+ */
18670
+ Operand?: Identifier;
18671
+ /**
18672
+ * The sort direction for the TopicSortClause.
18673
+ */
18674
+ SortDirection?: TopicSortDirection;
18675
+ }
18676
+ export type TopicSortDirection = "ASCENDING"|"DESCENDING"|string;
18104
18677
  export type TopicSummaries = TopicSummary[];
18105
18678
  export interface TopicSummary {
18106
18679
  /**
@@ -18120,8 +18693,37 @@ declare namespace QuickSight {
18120
18693
  */
18121
18694
  UserExperienceVersion?: TopicUserExperienceVersion;
18122
18695
  }
18696
+ export interface TopicTemplate {
18697
+ /**
18698
+ * The template type for the TopicTemplate.
18699
+ */
18700
+ TemplateType?: LimitedString;
18701
+ /**
18702
+ * The slots for the TopicTemplate.
18703
+ */
18704
+ Slots?: Slots;
18705
+ }
18123
18706
  export type TopicTimeGranularity = "SECOND"|"MINUTE"|"HOUR"|"DAY"|"WEEK"|"MONTH"|"QUARTER"|"YEAR"|string;
18124
18707
  export type TopicUserExperienceVersion = "LEGACY"|"NEW_READER_EXPERIENCE"|string;
18708
+ export interface TopicVisual {
18709
+ /**
18710
+ * The visual ID for the TopicVisual.
18711
+ */
18712
+ VisualId?: LimitedString;
18713
+ /**
18714
+ * The role for the TopicVisual.
18715
+ */
18716
+ Role?: VisualRole;
18717
+ /**
18718
+ * The ir for the TopicVisual.
18719
+ */
18720
+ Ir?: TopicIR;
18721
+ /**
18722
+ * The supporting visuals for the TopicVisual.
18723
+ */
18724
+ SupportingVisuals?: TopicVisuals;
18725
+ }
18726
+ export type TopicVisuals = TopicVisual[];
18125
18727
  export interface TotalAggregationComputation {
18126
18728
  /**
18127
18729
  * The ID for a computation.
@@ -20208,6 +20810,12 @@ declare namespace QuickSight {
20208
20810
  */
20209
20811
  AvailabilityStatus?: DashboardBehavior;
20210
20812
  }
20813
+ export interface VisualOptions {
20814
+ /**
20815
+ * The type for a VisualOptions.
20816
+ */
20817
+ type?: LimitedString;
20818
+ }
20211
20819
  export interface VisualPalette {
20212
20820
  /**
20213
20821
  * The chart color options for the visual palette.
@@ -20218,6 +20826,7 @@ declare namespace QuickSight {
20218
20826
  */
20219
20827
  ColorMap?: DataPathColorList;
20220
20828
  }
20829
+ export type VisualRole = "PRIMARY"|"COMPLIMENTARY"|"MULTI_INTENT"|"FALLBACK"|"FRAGMENT"|string;
20221
20830
  export interface VisualSubtitleLabelOptions {
20222
20831
  /**
20223
20832
  * The visibility of the subtitle label.