cdk-docker-image-deployment 0.0.152 → 0.0.153
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 +3 -3
- package/lib/destination.js +1 -1
- package/lib/docker-image-deployment.js +1 -1
- package/lib/source.js +1 -1
- package/node_modules/aws-sdk/CHANGELOG.md +10 -1
- package/node_modules/aws-sdk/README.md +1 -1
- package/node_modules/aws-sdk/apis/appconfig-2019-10-09.min.json +5 -2
- package/node_modules/aws-sdk/apis/ec2-2016-11-15.min.json +50 -0
- package/node_modules/aws-sdk/apis/quicksight-2018-04-01.min.json +417 -262
- package/node_modules/aws-sdk/clients/appconfig.d.ts +25 -13
- package/node_modules/aws-sdk/clients/ec2.d.ts +45 -45
- package/node_modules/aws-sdk/clients/elbv2.d.ts +2 -2
- package/node_modules/aws-sdk/clients/quicksight.d.ts +234 -17
- package/node_modules/aws-sdk/dist/aws-sdk-core-react-native.js +1 -1
- package/node_modules/aws-sdk/dist/aws-sdk-react-native.js +4 -4
- package/node_modules/aws-sdk/dist/aws-sdk.js +53 -3
- package/node_modules/aws-sdk/dist/aws-sdk.min.js +73 -73
- package/node_modules/aws-sdk/lib/core.js +1 -1
- package/node_modules/aws-sdk/package.json +1 -1
- package/package.json +4 -4
|
@@ -36,19 +36,19 @@ declare class QuickSight extends Service {
|
|
|
36
36
|
*/
|
|
37
37
|
createAccountSubscription(callback?: (err: AWSError, data: QuickSight.Types.CreateAccountSubscriptionResponse) => void): Request<QuickSight.Types.CreateAccountSubscriptionResponse, AWSError>;
|
|
38
38
|
/**
|
|
39
|
-
* Creates an analysis in Amazon QuickSight.
|
|
39
|
+
* Creates an analysis in Amazon QuickSight. Analyses can be created either from a template or from an AnalysisDefinition.
|
|
40
40
|
*/
|
|
41
41
|
createAnalysis(params: QuickSight.Types.CreateAnalysisRequest, callback?: (err: AWSError, data: QuickSight.Types.CreateAnalysisResponse) => void): Request<QuickSight.Types.CreateAnalysisResponse, AWSError>;
|
|
42
42
|
/**
|
|
43
|
-
* Creates an analysis in Amazon QuickSight.
|
|
43
|
+
* Creates an analysis in Amazon QuickSight. Analyses can be created either from a template or from an AnalysisDefinition.
|
|
44
44
|
*/
|
|
45
45
|
createAnalysis(callback?: (err: AWSError, data: QuickSight.Types.CreateAnalysisResponse) => void): Request<QuickSight.Types.CreateAnalysisResponse, AWSError>;
|
|
46
46
|
/**
|
|
47
|
-
* Creates a dashboard from a template. To first create a template, see the CreateTemplate API operation. A dashboard is an entity in Amazon QuickSight that identifies Amazon QuickSight reports, created from analyses. You can share Amazon QuickSight dashboards. With the right permissions, you can create scheduled email reports from them. If you have the correct permissions, you can create a dashboard from a template that exists in a different Amazon Web Services account.
|
|
47
|
+
* Creates a dashboard from either a template or directly with a DashboardDefinition. To first create a template, see the CreateTemplate API operation. A dashboard is an entity in Amazon QuickSight that identifies Amazon QuickSight reports, created from analyses. You can share Amazon QuickSight dashboards. With the right permissions, you can create scheduled email reports from them. If you have the correct permissions, you can create a dashboard from a template that exists in a different Amazon Web Services account.
|
|
48
48
|
*/
|
|
49
49
|
createDashboard(params: QuickSight.Types.CreateDashboardRequest, callback?: (err: AWSError, data: QuickSight.Types.CreateDashboardResponse) => void): Request<QuickSight.Types.CreateDashboardResponse, AWSError>;
|
|
50
50
|
/**
|
|
51
|
-
* Creates a dashboard from a template. To first create a template, see the CreateTemplate API operation. A dashboard is an entity in Amazon QuickSight that identifies Amazon QuickSight reports, created from analyses. You can share Amazon QuickSight dashboards. With the right permissions, you can create scheduled email reports from them. If you have the correct permissions, you can create a dashboard from a template that exists in a different Amazon Web Services account.
|
|
51
|
+
* Creates a dashboard from either a template or directly with a DashboardDefinition. To first create a template, see the CreateTemplate API operation. A dashboard is an entity in Amazon QuickSight that identifies Amazon QuickSight reports, created from analyses. You can share Amazon QuickSight dashboards. With the right permissions, you can create scheduled email reports from them. If you have the correct permissions, you can create a dashboard from a template that exists in a different Amazon Web Services account.
|
|
52
52
|
*/
|
|
53
53
|
createDashboard(callback?: (err: AWSError, data: QuickSight.Types.CreateDashboardResponse) => void): Request<QuickSight.Types.CreateDashboardResponse, AWSError>;
|
|
54
54
|
/**
|
|
@@ -124,11 +124,11 @@ declare class QuickSight extends Service {
|
|
|
124
124
|
*/
|
|
125
125
|
createNamespace(callback?: (err: AWSError, data: QuickSight.Types.CreateNamespaceResponse) => void): Request<QuickSight.Types.CreateNamespaceResponse, AWSError>;
|
|
126
126
|
/**
|
|
127
|
-
* Creates a template from an existing Amazon QuickSight analysis or template. You can use the resulting template to create
|
|
127
|
+
* Creates a template either from a TemplateDefinition or from an existing Amazon QuickSight analysis or template. You can use the resulting template to create additional dashboards, templates, or analyses. A template is an entity in Amazon QuickSight that encapsulates the metadata required to create an analysis and that you can use to create s dashboard. A template adds a layer of abstraction by using placeholders to replace the dataset associated with the analysis. You can use templates to create dashboards by replacing dataset placeholders with datasets that follow the same schema that was used to create the source analysis and template.
|
|
128
128
|
*/
|
|
129
129
|
createTemplate(params: QuickSight.Types.CreateTemplateRequest, callback?: (err: AWSError, data: QuickSight.Types.CreateTemplateResponse) => void): Request<QuickSight.Types.CreateTemplateResponse, AWSError>;
|
|
130
130
|
/**
|
|
131
|
-
* Creates a template from an existing Amazon QuickSight analysis or template. You can use the resulting template to create
|
|
131
|
+
* Creates a template either from a TemplateDefinition or from an existing Amazon QuickSight analysis or template. You can use the resulting template to create additional dashboards, templates, or analyses. A template is an entity in Amazon QuickSight that encapsulates the metadata required to create an analysis and that you can use to create s dashboard. A template adds a layer of abstraction by using placeholders to replace the dataset associated with the analysis. You can use templates to create dashboards by replacing dataset placeholders with datasets that follow the same schema that was used to create the source analysis and template.
|
|
132
132
|
*/
|
|
133
133
|
createTemplate(callback?: (err: AWSError, data: QuickSight.Types.CreateTemplateResponse) => void): Request<QuickSight.Types.CreateTemplateResponse, AWSError>;
|
|
134
134
|
/**
|
|
@@ -2021,7 +2021,7 @@ declare namespace QuickSight {
|
|
|
2021
2021
|
/**
|
|
2022
2022
|
* The configuration for a CategoryFilter.
|
|
2023
2023
|
*/
|
|
2024
|
-
Configuration
|
|
2024
|
+
Configuration: CategoryFilterConfiguration;
|
|
2025
2025
|
}
|
|
2026
2026
|
export interface CategoryFilterConfiguration {
|
|
2027
2027
|
/**
|
|
@@ -2671,7 +2671,7 @@ declare namespace QuickSight {
|
|
|
2671
2671
|
*/
|
|
2672
2672
|
Permissions?: ResourcePermissionList;
|
|
2673
2673
|
/**
|
|
2674
|
-
* A source entity to use for the analysis that you're creating. This metadata structure contains details that describe a source template and one or more datasets.
|
|
2674
|
+
* A source entity to use for the analysis that you're creating. This metadata structure contains details that describe a source template and one or more datasets. Either a SourceEntity or a Definition must be provided in order for the request to be valid.
|
|
2675
2675
|
*/
|
|
2676
2676
|
SourceEntity?: AnalysisSourceEntity;
|
|
2677
2677
|
/**
|
|
@@ -2683,7 +2683,7 @@ declare namespace QuickSight {
|
|
|
2683
2683
|
*/
|
|
2684
2684
|
Tags?: TagList;
|
|
2685
2685
|
/**
|
|
2686
|
-
* The definition of an analysis. A definition is the data model of all features in a Dashboard, Template, or Analysis.
|
|
2686
|
+
* The definition of an analysis. A definition is the data model of all features in a Dashboard, Template, or Analysis. Either a SourceEntity or a Definition must be provided in order for the request to be valid.
|
|
2687
2687
|
*/
|
|
2688
2688
|
Definition?: AnalysisDefinition;
|
|
2689
2689
|
}
|
|
@@ -2737,7 +2737,7 @@ declare namespace QuickSight {
|
|
|
2737
2737
|
*/
|
|
2738
2738
|
Permissions?: ResourcePermissionList;
|
|
2739
2739
|
/**
|
|
2740
|
-
* The entity that you are using as a source when you create the dashboard. In SourceEntity, you specify the type of object you're using as source. You can only create a dashboard from a template, so you use a SourceTemplate entity. If you need to create a dashboard from an analysis, first convert the analysis to a template by using the CreateTemplate API operation. For SourceTemplate, specify the Amazon Resource Name (ARN) of the source template. The SourceTemplateARN can contain any Amazon Web Services account and any Amazon QuickSight-supported Amazon Web Services Region. Use the DataSetReferences entity within SourceTemplate to list the replacement datasets for the placeholders listed in the original. The schema in each dataset must match its placeholder.
|
|
2740
|
+
* The entity that you are using as a source when you create the dashboard. In SourceEntity, you specify the type of object you're using as source. You can only create a dashboard from a template, so you use a SourceTemplate entity. If you need to create a dashboard from an analysis, first convert the analysis to a template by using the CreateTemplate API operation. For SourceTemplate, specify the Amazon Resource Name (ARN) of the source template. The SourceTemplateARN can contain any Amazon Web Services account and any Amazon QuickSight-supported Amazon Web Services Region. Use the DataSetReferences entity within SourceTemplate to list the replacement datasets for the placeholders listed in the original. The schema in each dataset must match its placeholder. Either a SourceEntity or a Definition must be provided in order for the request to be valid.
|
|
2741
2741
|
*/
|
|
2742
2742
|
SourceEntity?: DashboardSourceEntity;
|
|
2743
2743
|
/**
|
|
@@ -2757,7 +2757,7 @@ declare namespace QuickSight {
|
|
|
2757
2757
|
*/
|
|
2758
2758
|
ThemeArn?: Arn;
|
|
2759
2759
|
/**
|
|
2760
|
-
* The definition of a dashboard. A definition is the data model of all features in a Dashboard, Template, or Analysis.
|
|
2760
|
+
* The definition of a dashboard. A definition is the data model of all features in a Dashboard, Template, or Analysis. Either a SourceEntity or a Definition must be provided in order for the request to be valid.
|
|
2761
2761
|
*/
|
|
2762
2762
|
Definition?: DashboardVersionDefinition;
|
|
2763
2763
|
}
|
|
@@ -3270,7 +3270,7 @@ declare namespace QuickSight {
|
|
|
3270
3270
|
*/
|
|
3271
3271
|
Permissions?: ResourcePermissionList;
|
|
3272
3272
|
/**
|
|
3273
|
-
* The entity that you are using as a source when you create the template. In SourceEntity, you specify the type of object you're using as source: SourceTemplate for a template or SourceAnalysis for an analysis. Both of these require an Amazon Resource Name (ARN). For SourceTemplate, specify the ARN of the source template. For SourceAnalysis, specify the ARN of the source analysis. The SourceTemplate ARN can contain any Amazon Web Services account and any Amazon QuickSight-supported Amazon Web Services Region. Use the DataSetReferences entity within SourceTemplate or SourceAnalysis to list the replacement datasets for the placeholders listed in the original. The schema in each dataset must match its placeholder.
|
|
3273
|
+
* The entity that you are using as a source when you create the template. In SourceEntity, you specify the type of object you're using as source: SourceTemplate for a template or SourceAnalysis for an analysis. Both of these require an Amazon Resource Name (ARN). For SourceTemplate, specify the ARN of the source template. For SourceAnalysis, specify the ARN of the source analysis. The SourceTemplate ARN can contain any Amazon Web Services account and any Amazon QuickSight-supported Amazon Web Services Region. Use the DataSetReferences entity within SourceTemplate or SourceAnalysis to list the replacement datasets for the placeholders listed in the original. The schema in each dataset must match its placeholder. Either a SourceEntity or a Definition must be provided in order for the request to be valid.
|
|
3274
3274
|
*/
|
|
3275
3275
|
SourceEntity?: TemplateSourceEntity;
|
|
3276
3276
|
/**
|
|
@@ -3282,7 +3282,7 @@ declare namespace QuickSight {
|
|
|
3282
3282
|
*/
|
|
3283
3283
|
VersionDescription?: VersionDescription;
|
|
3284
3284
|
/**
|
|
3285
|
-
* The definition of a template. A definition is the data model of all features in a Dashboard, Template, or Analysis.
|
|
3285
|
+
* The definition of a template. A definition is the data model of all features in a Dashboard, Template, or Analysis. Either a SourceEntity or a Definition must be provided in order for the request to be valid.
|
|
3286
3286
|
*/
|
|
3287
3287
|
Definition?: TemplateVersionDefinition;
|
|
3288
3288
|
}
|
|
@@ -3660,7 +3660,7 @@ declare namespace QuickSight {
|
|
|
3660
3660
|
*/
|
|
3661
3661
|
Message?: NonEmptyString;
|
|
3662
3662
|
/**
|
|
3663
|
-
*
|
|
3663
|
+
* Lists the violated entities that caused the dashboard error.
|
|
3664
3664
|
*/
|
|
3665
3665
|
ViolatedEntities?: EntityList;
|
|
3666
3666
|
}
|
|
@@ -3682,9 +3682,37 @@ declare namespace QuickSight {
|
|
|
3682
3682
|
*/
|
|
3683
3683
|
SheetControlsOption?: SheetControlsOption;
|
|
3684
3684
|
/**
|
|
3685
|
-
*
|
|
3685
|
+
* The visual publish options of a visual in a dashboard.
|
|
3686
3686
|
*/
|
|
3687
3687
|
VisualPublishOptions?: DashboardVisualPublishOptions;
|
|
3688
|
+
/**
|
|
3689
|
+
* The sheet layout maximization options of a dashbaord.
|
|
3690
|
+
*/
|
|
3691
|
+
SheetLayoutElementMaximizationOption?: SheetLayoutElementMaximizationOption;
|
|
3692
|
+
/**
|
|
3693
|
+
* The menu options of a visual in a dashboard.
|
|
3694
|
+
*/
|
|
3695
|
+
VisualMenuOption?: VisualMenuOption;
|
|
3696
|
+
/**
|
|
3697
|
+
* The axis sort options of a dashboard.
|
|
3698
|
+
*/
|
|
3699
|
+
VisualAxisSortOption?: VisualAxisSortOption;
|
|
3700
|
+
/**
|
|
3701
|
+
* Determines if hidden fields are exported with a dashboard.
|
|
3702
|
+
*/
|
|
3703
|
+
ExportWithHiddenFieldsOption?: ExportWithHiddenFieldsOption;
|
|
3704
|
+
/**
|
|
3705
|
+
* The drill-down options of data points in a dashboard.
|
|
3706
|
+
*/
|
|
3707
|
+
DataPointDrillUpDownOption?: DataPointDrillUpDownOption;
|
|
3708
|
+
/**
|
|
3709
|
+
* The data point menu label options of a dashboard.
|
|
3710
|
+
*/
|
|
3711
|
+
DataPointMenuLabelOption?: DataPointMenuLabelOption;
|
|
3712
|
+
/**
|
|
3713
|
+
* The data point tool tip options of a dashboard.
|
|
3714
|
+
*/
|
|
3715
|
+
DataPointTooltipOption?: DataPointTooltipOption;
|
|
3688
3716
|
}
|
|
3689
3717
|
export interface DashboardSearchFilter {
|
|
3690
3718
|
/**
|
|
@@ -3861,7 +3889,7 @@ declare namespace QuickSight {
|
|
|
3861
3889
|
}
|
|
3862
3890
|
export interface DashboardVisualPublishOptions {
|
|
3863
3891
|
/**
|
|
3864
|
-
*
|
|
3892
|
+
* Determines if hidden fields are included in an exported dashboard.
|
|
3865
3893
|
*/
|
|
3866
3894
|
ExportHiddenFieldsOption?: ExportHiddenFieldsOption;
|
|
3867
3895
|
}
|
|
@@ -4035,6 +4063,24 @@ declare namespace QuickSight {
|
|
|
4035
4063
|
FieldValue: FieldValue;
|
|
4036
4064
|
}
|
|
4037
4065
|
export type DataPathValueList = DataPathValue[];
|
|
4066
|
+
export interface DataPointDrillUpDownOption {
|
|
4067
|
+
/**
|
|
4068
|
+
* The status of the drill down options of data points.
|
|
4069
|
+
*/
|
|
4070
|
+
AvailabilityStatus?: DashboardBehavior;
|
|
4071
|
+
}
|
|
4072
|
+
export interface DataPointMenuLabelOption {
|
|
4073
|
+
/**
|
|
4074
|
+
* The status of the data point menu options.
|
|
4075
|
+
*/
|
|
4076
|
+
AvailabilityStatus?: DashboardBehavior;
|
|
4077
|
+
}
|
|
4078
|
+
export interface DataPointTooltipOption {
|
|
4079
|
+
/**
|
|
4080
|
+
* The status of the data point tool tip options.
|
|
4081
|
+
*/
|
|
4082
|
+
AvailabilityStatus?: DashboardBehavior;
|
|
4083
|
+
}
|
|
4038
4084
|
export interface DataSet {
|
|
4039
4085
|
/**
|
|
4040
4086
|
* The Amazon Resource Name (ARN) of the resource.
|
|
@@ -5424,6 +5470,10 @@ declare namespace QuickSight {
|
|
|
5424
5470
|
* The Amazon Web Services request ID for this operation.
|
|
5425
5471
|
*/
|
|
5426
5472
|
RequestId?: String;
|
|
5473
|
+
/**
|
|
5474
|
+
* Options for publishing the dashboard: AvailabilityStatus for AdHocFilteringOption - This status can be either ENABLED or DISABLED. When this is set to DISABLED, Amazon QuickSight disables the left filter pane on the published dashboard, which can be used for ad hoc (one-time) filtering. This option is ENABLED by default. AvailabilityStatus for ExportToCSVOption - This status can be either ENABLED or DISABLED. The visual option to export data to .CSV format isn't enabled when this is set to DISABLED. This option is ENABLED by default. VisibilityState for SheetControlsOption - This visibility state can be either COLLAPSED or EXPANDED. This option is COLLAPSED by default.
|
|
5475
|
+
*/
|
|
5476
|
+
DashboardPublishOptions?: DashboardPublishOptions;
|
|
5427
5477
|
}
|
|
5428
5478
|
export interface DescribeDashboardPermissionsRequest {
|
|
5429
5479
|
/**
|
|
@@ -6289,7 +6339,7 @@ declare namespace QuickSight {
|
|
|
6289
6339
|
export type ExplicitHierarchyColumnList = ColumnIdentifier[];
|
|
6290
6340
|
export interface ExportHiddenFieldsOption {
|
|
6291
6341
|
/**
|
|
6292
|
-
*
|
|
6342
|
+
* The status of the export hidden fields options of a dashbaord.
|
|
6293
6343
|
*/
|
|
6294
6344
|
AvailabilityStatus?: DashboardBehavior;
|
|
6295
6345
|
}
|
|
@@ -6299,6 +6349,12 @@ declare namespace QuickSight {
|
|
|
6299
6349
|
*/
|
|
6300
6350
|
AvailabilityStatus?: DashboardBehavior;
|
|
6301
6351
|
}
|
|
6352
|
+
export interface ExportWithHiddenFieldsOption {
|
|
6353
|
+
/**
|
|
6354
|
+
* The status of the export with hidden fields options.
|
|
6355
|
+
*/
|
|
6356
|
+
AvailabilityStatus?: DashboardBehavior;
|
|
6357
|
+
}
|
|
6302
6358
|
export type Expression = string;
|
|
6303
6359
|
export interface FieldBasedTooltip {
|
|
6304
6360
|
/**
|
|
@@ -10828,6 +10884,145 @@ declare namespace QuickSight {
|
|
|
10828
10884
|
*/
|
|
10829
10885
|
QueuedIngestion: String;
|
|
10830
10886
|
}
|
|
10887
|
+
export interface RadarChartAggregatedFieldWells {
|
|
10888
|
+
/**
|
|
10889
|
+
* The aggregated field well categories of a radar chart.
|
|
10890
|
+
*/
|
|
10891
|
+
Category?: RadarChartCategoryFieldList;
|
|
10892
|
+
/**
|
|
10893
|
+
* The color that are assigned to the aggregated field wells of a radar chart.
|
|
10894
|
+
*/
|
|
10895
|
+
Color?: RadarChartColorFieldList;
|
|
10896
|
+
/**
|
|
10897
|
+
* The values that are assigned to the aggregated field wells of a radar chart.
|
|
10898
|
+
*/
|
|
10899
|
+
Values?: RadarChartValuesFieldList;
|
|
10900
|
+
}
|
|
10901
|
+
export interface RadarChartAreaStyleSettings {
|
|
10902
|
+
/**
|
|
10903
|
+
* The visibility settings of a radar chart.
|
|
10904
|
+
*/
|
|
10905
|
+
Visibility?: Visibility;
|
|
10906
|
+
}
|
|
10907
|
+
export type RadarChartCategoryFieldList = DimensionField[];
|
|
10908
|
+
export type RadarChartColorFieldList = DimensionField[];
|
|
10909
|
+
export interface RadarChartConfiguration {
|
|
10910
|
+
/**
|
|
10911
|
+
* The field well configuration of a RadarChartVisual.
|
|
10912
|
+
*/
|
|
10913
|
+
FieldWells?: RadarChartFieldWells;
|
|
10914
|
+
/**
|
|
10915
|
+
* The sort configuration of a RadarChartVisual.
|
|
10916
|
+
*/
|
|
10917
|
+
SortConfiguration?: RadarChartSortConfiguration;
|
|
10918
|
+
/**
|
|
10919
|
+
* The shape of the radar chart.
|
|
10920
|
+
*/
|
|
10921
|
+
Shape?: RadarChartShape;
|
|
10922
|
+
/**
|
|
10923
|
+
* The base sreies settings of a radar chart.
|
|
10924
|
+
*/
|
|
10925
|
+
BaseSeriesSettings?: RadarChartSeriesSettings;
|
|
10926
|
+
/**
|
|
10927
|
+
* The start angle of a radar chart's axis.
|
|
10928
|
+
*/
|
|
10929
|
+
StartAngle?: RadarChartStartAngle;
|
|
10930
|
+
/**
|
|
10931
|
+
* The palette (chart color) display setup of the visual.
|
|
10932
|
+
*/
|
|
10933
|
+
VisualPalette?: VisualPalette;
|
|
10934
|
+
/**
|
|
10935
|
+
* Determines the visibility of the colors of alternatign bands in a radar chart.
|
|
10936
|
+
*/
|
|
10937
|
+
AlternateBandColorsVisibility?: Visibility;
|
|
10938
|
+
/**
|
|
10939
|
+
* The color of the even-numbered alternate bands of a radar chart.
|
|
10940
|
+
*/
|
|
10941
|
+
AlternateBandEvenColor?: HexColor;
|
|
10942
|
+
/**
|
|
10943
|
+
* The color of the odd-numbered alternate bands of a radar chart.
|
|
10944
|
+
*/
|
|
10945
|
+
AlternateBandOddColor?: HexColor;
|
|
10946
|
+
/**
|
|
10947
|
+
* The category axis of a radar chart.
|
|
10948
|
+
*/
|
|
10949
|
+
CategoryAxis?: AxisDisplayOptions;
|
|
10950
|
+
/**
|
|
10951
|
+
* The category label options of a radar chart.
|
|
10952
|
+
*/
|
|
10953
|
+
CategoryLabelOptions?: ChartAxisLabelOptions;
|
|
10954
|
+
/**
|
|
10955
|
+
* The color axis of a radar chart.
|
|
10956
|
+
*/
|
|
10957
|
+
ColorAxis?: AxisDisplayOptions;
|
|
10958
|
+
/**
|
|
10959
|
+
* The color label options of a radar chart.
|
|
10960
|
+
*/
|
|
10961
|
+
ColorLabelOptions?: ChartAxisLabelOptions;
|
|
10962
|
+
/**
|
|
10963
|
+
* The legend display setup of the visual.
|
|
10964
|
+
*/
|
|
10965
|
+
Legend?: LegendOptions;
|
|
10966
|
+
}
|
|
10967
|
+
export interface RadarChartFieldWells {
|
|
10968
|
+
/**
|
|
10969
|
+
* The aggregated field wells of a radar chart visual.
|
|
10970
|
+
*/
|
|
10971
|
+
RadarChartAggregatedFieldWells?: RadarChartAggregatedFieldWells;
|
|
10972
|
+
}
|
|
10973
|
+
export interface RadarChartSeriesSettings {
|
|
10974
|
+
/**
|
|
10975
|
+
* The area style settings of a radar chart.
|
|
10976
|
+
*/
|
|
10977
|
+
AreaStyleSettings?: RadarChartAreaStyleSettings;
|
|
10978
|
+
}
|
|
10979
|
+
export type RadarChartShape = "CIRCLE"|"POLYGON"|string;
|
|
10980
|
+
export interface RadarChartSortConfiguration {
|
|
10981
|
+
/**
|
|
10982
|
+
* The category sort options of a radar chart.
|
|
10983
|
+
*/
|
|
10984
|
+
CategorySort?: FieldSortOptionsList;
|
|
10985
|
+
/**
|
|
10986
|
+
* The category items limit for a radar chart.
|
|
10987
|
+
*/
|
|
10988
|
+
CategoryItemsLimit?: ItemsLimitConfiguration;
|
|
10989
|
+
/**
|
|
10990
|
+
* The color sort configuration of a radar chart.
|
|
10991
|
+
*/
|
|
10992
|
+
ColorSort?: FieldSortOptionsList;
|
|
10993
|
+
/**
|
|
10994
|
+
* The color items limit of a radar chart.
|
|
10995
|
+
*/
|
|
10996
|
+
ColorItemsLimit?: ItemsLimitConfiguration;
|
|
10997
|
+
}
|
|
10998
|
+
export type RadarChartStartAngle = number;
|
|
10999
|
+
export type RadarChartValuesFieldList = MeasureField[];
|
|
11000
|
+
export interface RadarChartVisual {
|
|
11001
|
+
/**
|
|
11002
|
+
* The unique identifier of a visual. This identifier must be unique within the context of a dashboard, template, or analysis. Two dashboards, analyses, or templates can have visuals with the same identifiers.
|
|
11003
|
+
*/
|
|
11004
|
+
VisualId: ShortRestrictiveResourceId;
|
|
11005
|
+
/**
|
|
11006
|
+
* The title that is displayed on the visual.
|
|
11007
|
+
*/
|
|
11008
|
+
Title?: VisualTitleLabelOptions;
|
|
11009
|
+
/**
|
|
11010
|
+
* The subtitle that is displayed on the visual.
|
|
11011
|
+
*/
|
|
11012
|
+
Subtitle?: VisualSubtitleLabelOptions;
|
|
11013
|
+
/**
|
|
11014
|
+
* The configuration settings of the visual.
|
|
11015
|
+
*/
|
|
11016
|
+
ChartConfiguration?: RadarChartConfiguration;
|
|
11017
|
+
/**
|
|
11018
|
+
* The list of custom actions that are configured for a visual.
|
|
11019
|
+
*/
|
|
11020
|
+
Actions?: VisualCustomActionList;
|
|
11021
|
+
/**
|
|
11022
|
+
* The column hierarchy that is used during drill-downs and drill-ups.
|
|
11023
|
+
*/
|
|
11024
|
+
ColumnHierarchies?: ColumnHierarchyList;
|
|
11025
|
+
}
|
|
10831
11026
|
export interface RangeEndsLabelType {
|
|
10832
11027
|
/**
|
|
10833
11028
|
* The visibility of the range ends label.
|
|
@@ -11986,6 +12181,12 @@ declare namespace QuickSight {
|
|
|
11986
12181
|
ConfigurationOverrides: SheetElementConfigurationOverrides;
|
|
11987
12182
|
}
|
|
11988
12183
|
export type SheetElementRenderingRuleList = SheetElementRenderingRule[];
|
|
12184
|
+
export interface SheetLayoutElementMaximizationOption {
|
|
12185
|
+
/**
|
|
12186
|
+
* The status of the sheet layout maximization options of a dashbaord.
|
|
12187
|
+
*/
|
|
12188
|
+
AvailabilityStatus?: DashboardBehavior;
|
|
12189
|
+
}
|
|
11989
12190
|
export type SheetList = Sheet[];
|
|
11990
12191
|
export type SheetName = string;
|
|
11991
12192
|
export interface SheetStyle {
|
|
@@ -14807,6 +15008,16 @@ declare namespace QuickSight {
|
|
|
14807
15008
|
* An empty visual.
|
|
14808
15009
|
*/
|
|
14809
15010
|
EmptyVisual?: EmptyVisual;
|
|
15011
|
+
/**
|
|
15012
|
+
* A radar chart visual. For more information, see Using radar charts in the Amazon QuickSight User Guide.
|
|
15013
|
+
*/
|
|
15014
|
+
RadarChartVisual?: RadarChartVisual;
|
|
15015
|
+
}
|
|
15016
|
+
export interface VisualAxisSortOption {
|
|
15017
|
+
/**
|
|
15018
|
+
* The availaiblity status of a visual's axis sort options.
|
|
15019
|
+
*/
|
|
15020
|
+
AvailabilityStatus?: DashboardBehavior;
|
|
14810
15021
|
}
|
|
14811
15022
|
export interface VisualCustomAction {
|
|
14812
15023
|
/**
|
|
@@ -14853,6 +15064,12 @@ declare namespace QuickSight {
|
|
|
14853
15064
|
export type VisualCustomActionOperationList = VisualCustomActionOperation[];
|
|
14854
15065
|
export type VisualCustomActionTrigger = "DATA_POINT_CLICK"|"DATA_POINT_MENU"|string;
|
|
14855
15066
|
export type VisualList = Visual[];
|
|
15067
|
+
export interface VisualMenuOption {
|
|
15068
|
+
/**
|
|
15069
|
+
* The availaiblity status of a visual's menu options.
|
|
15070
|
+
*/
|
|
15071
|
+
AvailabilityStatus?: DashboardBehavior;
|
|
15072
|
+
}
|
|
14856
15073
|
export interface VisualPalette {
|
|
14857
15074
|
/**
|
|
14858
15075
|
* The chart color options for the visual palette.
|