aws-cdk-lib 2.181.0__py3-none-any.whl → 2.182.0__py3-none-any.whl
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.
Potentially problematic release.
This version of aws-cdk-lib might be problematic. Click here for more details.
- aws_cdk/__init__.py +292 -8
- aws_cdk/_jsii/__init__.py +1 -1
- aws_cdk/_jsii/{aws-cdk-lib@2.181.0.jsii.tgz → aws-cdk-lib@2.182.0.jsii.tgz} +0 -0
- aws_cdk/assertions/__init__.py +59 -0
- aws_cdk/aws_apigateway/__init__.py +122 -66
- aws_cdk/aws_applicationautoscaling/__init__.py +4 -0
- aws_cdk/aws_appsync/__init__.py +30 -4
- aws_cdk/aws_autoscaling/__init__.py +409 -36
- aws_cdk/aws_batch/__init__.py +629 -11
- aws_cdk/aws_bedrock/__init__.py +204 -0
- aws_cdk/aws_certificatemanager/__init__.py +24 -0
- aws_cdk/aws_cloudformation/__init__.py +284 -2
- aws_cdk/aws_cloudfront/__init__.py +1 -0
- aws_cdk/aws_cloudtrail/__init__.py +4 -4
- aws_cdk/aws_datazone/__init__.py +82 -0
- aws_cdk/aws_ec2/__init__.py +32 -12
- aws_cdk/aws_ecr/__init__.py +10 -4
- aws_cdk/aws_ecs/__init__.py +58 -9
- aws_cdk/aws_eks/__init__.py +32 -3
- aws_cdk/aws_fsx/__init__.py +2 -0
- aws_cdk/aws_guardduty/__init__.py +38 -26
- aws_cdk/aws_iam/__init__.py +5 -2
- aws_cdk/aws_inspector/__init__.py +176 -0
- aws_cdk/aws_iotsitewise/__init__.py +2 -3
- aws_cdk/aws_kinesisfirehose/__init__.py +6 -0
- aws_cdk/aws_lambda/__init__.py +8 -0
- aws_cdk/aws_logs/__init__.py +2 -0
- aws_cdk/aws_mediapackagev2/__init__.py +22 -14
- aws_cdk/aws_opensearchservice/__init__.py +261 -1
- aws_cdk/aws_pcaconnectorad/__init__.py +30 -4
- aws_cdk/aws_pipes/__init__.py +6 -2
- aws_cdk/aws_quicksight/__init__.py +225 -451
- aws_cdk/aws_rds/__init__.py +50 -13
- aws_cdk/aws_s3/__init__.py +8 -0
- aws_cdk/aws_sagemaker/__init__.py +68 -13
- aws_cdk/aws_sns/__init__.py +76 -1
- aws_cdk/aws_vpclattice/__init__.py +144 -9
- aws_cdk/aws_wafv2/__init__.py +702 -0
- aws_cdk/aws_wisdom/__init__.py +3 -110
- aws_cdk/aws_workspacesthinclient/__init__.py +4 -4
- aws_cdk/aws_workspacesweb/__init__.py +179 -2
- aws_cdk/cloud_assembly_schema/__init__.py +224 -4
- aws_cdk/cx_api/__init__.py +2 -1
- {aws_cdk_lib-2.181.0.dist-info → aws_cdk_lib-2.182.0.dist-info}/METADATA +2 -2
- {aws_cdk_lib-2.181.0.dist-info → aws_cdk_lib-2.182.0.dist-info}/RECORD +49 -49
- {aws_cdk_lib-2.181.0.dist-info → aws_cdk_lib-2.182.0.dist-info}/LICENSE +0 -0
- {aws_cdk_lib-2.181.0.dist-info → aws_cdk_lib-2.182.0.dist-info}/NOTICE +0 -0
- {aws_cdk_lib-2.181.0.dist-info → aws_cdk_lib-2.182.0.dist-info}/WHEEL +0 -0
- {aws_cdk_lib-2.181.0.dist-info → aws_cdk_lib-2.182.0.dist-info}/top_level.txt +0 -0
|
@@ -29644,7 +29644,7 @@ class CfnAnalysis(
|
|
|
29644
29644
|
def __init__(
|
|
29645
29645
|
self,
|
|
29646
29646
|
*,
|
|
29647
|
-
interactions: typing.Any = None,
|
|
29647
|
+
interactions: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union["CfnAnalysis.VisualInteractionOptionsProperty", typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
29648
29648
|
legend: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union["CfnAnalysis.LegendOptionsProperty", typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
29649
29649
|
map_layers: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Sequence[typing.Union[_IResolvable_da3f097b, typing.Union["CfnAnalysis.GeospatialLayerItemProperty", typing.Dict[builtins.str, typing.Any]]]]]] = None,
|
|
29650
29650
|
map_state: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union["CfnAnalysis.GeospatialMapStateProperty", typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
@@ -29685,12 +29685,14 @@ class CfnAnalysis(
|
|
|
29685
29685
|
self._values["map_style"] = map_style
|
|
29686
29686
|
|
|
29687
29687
|
@builtins.property
|
|
29688
|
-
def interactions(
|
|
29688
|
+
def interactions(
|
|
29689
|
+
self,
|
|
29690
|
+
) -> typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnAnalysis.VisualInteractionOptionsProperty"]]:
|
|
29689
29691
|
'''
|
|
29690
29692
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-analysis-geospatiallayermapconfiguration.html#cfn-quicksight-analysis-geospatiallayermapconfiguration-interactions
|
|
29691
29693
|
'''
|
|
29692
29694
|
result = self._values.get("interactions")
|
|
29693
|
-
return typing.cast(typing.
|
|
29695
|
+
return typing.cast(typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnAnalysis.VisualInteractionOptionsProperty"]], result)
|
|
29694
29696
|
|
|
29695
29697
|
@builtins.property
|
|
29696
29698
|
def legend(
|
|
@@ -30233,7 +30235,7 @@ class CfnAnalysis(
|
|
|
30233
30235
|
self,
|
|
30234
30236
|
*,
|
|
30235
30237
|
field_wells: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union["CfnAnalysis.GeospatialMapFieldWellsProperty", typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
30236
|
-
interactions: typing.Any = None,
|
|
30238
|
+
interactions: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union["CfnAnalysis.VisualInteractionOptionsProperty", typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
30237
30239
|
legend: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union["CfnAnalysis.LegendOptionsProperty", typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
30238
30240
|
map_style_options: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union["CfnAnalysis.GeospatialMapStyleOptionsProperty", typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
30239
30241
|
point_style_options: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union["CfnAnalysis.GeospatialPointStyleOptionsProperty", typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
@@ -30299,13 +30301,15 @@ class CfnAnalysis(
|
|
|
30299
30301
|
return typing.cast(typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnAnalysis.GeospatialMapFieldWellsProperty"]], result)
|
|
30300
30302
|
|
|
30301
30303
|
@builtins.property
|
|
30302
|
-
def interactions(
|
|
30304
|
+
def interactions(
|
|
30305
|
+
self,
|
|
30306
|
+
) -> typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnAnalysis.VisualInteractionOptionsProperty"]]:
|
|
30303
30307
|
'''The general visual interactions setup for a visual.
|
|
30304
30308
|
|
|
30305
30309
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-analysis-geospatialmapconfiguration.html#cfn-quicksight-analysis-geospatialmapconfiguration-interactions
|
|
30306
30310
|
'''
|
|
30307
30311
|
result = self._values.get("interactions")
|
|
30308
|
-
return typing.cast(typing.
|
|
30312
|
+
return typing.cast(typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnAnalysis.VisualInteractionOptionsProperty"]], result)
|
|
30309
30313
|
|
|
30310
30314
|
@builtins.property
|
|
30311
30315
|
def legend(
|
|
@@ -35442,11 +35446,9 @@ class CfnAnalysis(
|
|
|
35442
35446
|
# The values are placeholders you should change.
|
|
35443
35447
|
from aws_cdk import aws_quicksight as quicksight
|
|
35444
35448
|
|
|
35445
|
-
# availability_status: Any
|
|
35446
|
-
|
|
35447
35449
|
image_interaction_options_property = quicksight.CfnAnalysis.ImageInteractionOptionsProperty(
|
|
35448
35450
|
image_menu_option=quicksight.CfnAnalysis.ImageMenuOptionProperty(
|
|
35449
|
-
availability_status=
|
|
35451
|
+
availability_status="availabilityStatus"
|
|
35450
35452
|
)
|
|
35451
35453
|
)
|
|
35452
35454
|
'''
|
|
@@ -35485,7 +35487,11 @@ class CfnAnalysis(
|
|
|
35485
35487
|
name_mapping={"availability_status": "availabilityStatus"},
|
|
35486
35488
|
)
|
|
35487
35489
|
class ImageMenuOptionProperty:
|
|
35488
|
-
def __init__(
|
|
35490
|
+
def __init__(
|
|
35491
|
+
self,
|
|
35492
|
+
*,
|
|
35493
|
+
availability_status: typing.Optional[builtins.str] = None,
|
|
35494
|
+
) -> None:
|
|
35489
35495
|
'''The menu options for the interactions of an image.
|
|
35490
35496
|
|
|
35491
35497
|
:param availability_status: The availability status of the image menu. If the value of this property is set to ``ENABLED`` , dashboard readers can interact with the image menu.
|
|
@@ -35499,10 +35505,8 @@ class CfnAnalysis(
|
|
|
35499
35505
|
# The values are placeholders you should change.
|
|
35500
35506
|
from aws_cdk import aws_quicksight as quicksight
|
|
35501
35507
|
|
|
35502
|
-
# availability_status: Any
|
|
35503
|
-
|
|
35504
35508
|
image_menu_option_property = quicksight.CfnAnalysis.ImageMenuOptionProperty(
|
|
35505
|
-
availability_status=
|
|
35509
|
+
availability_status="availabilityStatus"
|
|
35506
35510
|
)
|
|
35507
35511
|
'''
|
|
35508
35512
|
if __debug__:
|
|
@@ -35513,7 +35517,7 @@ class CfnAnalysis(
|
|
|
35513
35517
|
self._values["availability_status"] = availability_status
|
|
35514
35518
|
|
|
35515
35519
|
@builtins.property
|
|
35516
|
-
def availability_status(self) -> typing.
|
|
35520
|
+
def availability_status(self) -> typing.Optional[builtins.str]:
|
|
35517
35521
|
'''The availability status of the image menu.
|
|
35518
35522
|
|
|
35519
35523
|
If the value of this property is set to ``ENABLED`` , dashboard readers can interact with the image menu.
|
|
@@ -35521,7 +35525,7 @@ class CfnAnalysis(
|
|
|
35521
35525
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-analysis-imagemenuoption.html#cfn-quicksight-analysis-imagemenuoption-availabilitystatus
|
|
35522
35526
|
'''
|
|
35523
35527
|
result = self._values.get("availability_status")
|
|
35524
|
-
return typing.cast(typing.
|
|
35528
|
+
return typing.cast(typing.Optional[builtins.str], result)
|
|
35525
35529
|
|
|
35526
35530
|
def __eq__(self, rhs: typing.Any) -> builtins.bool:
|
|
35527
35531
|
return isinstance(rhs, self.__class__) and rhs._values == self._values
|
|
@@ -59736,8 +59740,6 @@ class CfnAnalysis(
|
|
|
59736
59740
|
# The values are placeholders you should change.
|
|
59737
59741
|
from aws_cdk import aws_quicksight as quicksight
|
|
59738
59742
|
|
|
59739
|
-
# availability_status: Any
|
|
59740
|
-
|
|
59741
59743
|
sheet_image_property = quicksight.CfnAnalysis.SheetImageProperty(
|
|
59742
59744
|
sheet_image_id="sheetImageId",
|
|
59743
59745
|
source=quicksight.CfnAnalysis.SheetImageSourceProperty(
|
|
@@ -59794,7 +59796,7 @@ class CfnAnalysis(
|
|
|
59794
59796
|
image_content_alt_text="imageContentAltText",
|
|
59795
59797
|
interactions=quicksight.CfnAnalysis.ImageInteractionOptionsProperty(
|
|
59796
59798
|
image_menu_option=quicksight.CfnAnalysis.ImageMenuOptionProperty(
|
|
59797
|
-
availability_status=
|
|
59799
|
+
availability_status="availabilityStatus"
|
|
59798
59800
|
)
|
|
59799
59801
|
),
|
|
59800
59802
|
scaling=quicksight.CfnAnalysis.SheetImageScalingConfigurationProperty(
|
|
@@ -60219,13 +60221,12 @@ class CfnAnalysis(
|
|
|
60219
60221
|
@jsii.data_type(
|
|
60220
60222
|
jsii_type="aws-cdk-lib.aws_quicksight.CfnAnalysis.SheetProperty",
|
|
60221
60223
|
jsii_struct_bases=[],
|
|
60222
|
-
name_mapping={"
|
|
60224
|
+
name_mapping={"name": "name", "sheet_id": "sheetId"},
|
|
60223
60225
|
)
|
|
60224
60226
|
class SheetProperty:
|
|
60225
60227
|
def __init__(
|
|
60226
60228
|
self,
|
|
60227
60229
|
*,
|
|
60228
|
-
images: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Sequence[typing.Union[_IResolvable_da3f097b, typing.Union["CfnAnalysis.SheetImageProperty", typing.Dict[builtins.str, typing.Any]]]]]] = None,
|
|
60229
60230
|
name: typing.Optional[builtins.str] = None,
|
|
60230
60231
|
sheet_id: typing.Optional[builtins.str] = None,
|
|
60231
60232
|
) -> None:
|
|
@@ -60233,7 +60234,6 @@ class CfnAnalysis(
|
|
|
60233
60234
|
|
|
60234
60235
|
Every analysis and dashboard contains at least one sheet. Each sheet contains at least one visualization widget, for example a chart, pivot table, or narrative insight. Sheets can be associated with other components, such as controls, filters, and so on.
|
|
60235
60236
|
|
|
60236
|
-
:param images: A list of images on a sheet.
|
|
60237
60237
|
:param name: The name of a sheet. This name is displayed on the sheet's tab in the Amazon QuickSight console.
|
|
60238
60238
|
:param sheet_id: The unique identifier associated with a sheet.
|
|
60239
60239
|
|
|
@@ -60246,106 +60246,21 @@ class CfnAnalysis(
|
|
|
60246
60246
|
# The values are placeholders you should change.
|
|
60247
60247
|
from aws_cdk import aws_quicksight as quicksight
|
|
60248
60248
|
|
|
60249
|
-
# availability_status: Any
|
|
60250
|
-
|
|
60251
60249
|
sheet_property = quicksight.CfnAnalysis.SheetProperty(
|
|
60252
|
-
images=[quicksight.CfnAnalysis.SheetImageProperty(
|
|
60253
|
-
sheet_image_id="sheetImageId",
|
|
60254
|
-
source=quicksight.CfnAnalysis.SheetImageSourceProperty(
|
|
60255
|
-
sheet_image_static_file_source=quicksight.CfnAnalysis.SheetImageStaticFileSourceProperty(
|
|
60256
|
-
static_file_id="staticFileId"
|
|
60257
|
-
)
|
|
60258
|
-
),
|
|
60259
|
-
|
|
60260
|
-
# the properties below are optional
|
|
60261
|
-
actions=[quicksight.CfnAnalysis.ImageCustomActionProperty(
|
|
60262
|
-
action_operations=[quicksight.CfnAnalysis.ImageCustomActionOperationProperty(
|
|
60263
|
-
navigation_operation=quicksight.CfnAnalysis.CustomActionNavigationOperationProperty(
|
|
60264
|
-
local_navigation_configuration=quicksight.CfnAnalysis.LocalNavigationConfigurationProperty(
|
|
60265
|
-
target_sheet_id="targetSheetId"
|
|
60266
|
-
)
|
|
60267
|
-
),
|
|
60268
|
-
set_parameters_operation=quicksight.CfnAnalysis.CustomActionSetParametersOperationProperty(
|
|
60269
|
-
parameter_value_configurations=[quicksight.CfnAnalysis.SetParameterValueConfigurationProperty(
|
|
60270
|
-
destination_parameter_name="destinationParameterName",
|
|
60271
|
-
value=quicksight.CfnAnalysis.DestinationParameterValueConfigurationProperty(
|
|
60272
|
-
custom_values_configuration=quicksight.CfnAnalysis.CustomValuesConfigurationProperty(
|
|
60273
|
-
custom_values=quicksight.CfnAnalysis.CustomParameterValuesProperty(
|
|
60274
|
-
date_time_values=["dateTimeValues"],
|
|
60275
|
-
decimal_values=[123],
|
|
60276
|
-
integer_values=[123],
|
|
60277
|
-
string_values=["stringValues"]
|
|
60278
|
-
),
|
|
60279
|
-
|
|
60280
|
-
# the properties below are optional
|
|
60281
|
-
include_null_value=False
|
|
60282
|
-
),
|
|
60283
|
-
select_all_value_options="selectAllValueOptions",
|
|
60284
|
-
source_column=quicksight.CfnAnalysis.ColumnIdentifierProperty(
|
|
60285
|
-
column_name="columnName",
|
|
60286
|
-
data_set_identifier="dataSetIdentifier"
|
|
60287
|
-
),
|
|
60288
|
-
source_field="sourceField",
|
|
60289
|
-
source_parameter_name="sourceParameterName"
|
|
60290
|
-
)
|
|
60291
|
-
)]
|
|
60292
|
-
),
|
|
60293
|
-
url_operation=quicksight.CfnAnalysis.CustomActionURLOperationProperty(
|
|
60294
|
-
url_target="urlTarget",
|
|
60295
|
-
url_template="urlTemplate"
|
|
60296
|
-
)
|
|
60297
|
-
)],
|
|
60298
|
-
custom_action_id="customActionId",
|
|
60299
|
-
name="name",
|
|
60300
|
-
trigger="trigger",
|
|
60301
|
-
|
|
60302
|
-
# the properties below are optional
|
|
60303
|
-
status="status"
|
|
60304
|
-
)],
|
|
60305
|
-
image_content_alt_text="imageContentAltText",
|
|
60306
|
-
interactions=quicksight.CfnAnalysis.ImageInteractionOptionsProperty(
|
|
60307
|
-
image_menu_option=quicksight.CfnAnalysis.ImageMenuOptionProperty(
|
|
60308
|
-
availability_status=availability_status
|
|
60309
|
-
)
|
|
60310
|
-
),
|
|
60311
|
-
scaling=quicksight.CfnAnalysis.SheetImageScalingConfigurationProperty(
|
|
60312
|
-
scaling_type="scalingType"
|
|
60313
|
-
),
|
|
60314
|
-
tooltip=quicksight.CfnAnalysis.SheetImageTooltipConfigurationProperty(
|
|
60315
|
-
tooltip_text=quicksight.CfnAnalysis.SheetImageTooltipTextProperty(
|
|
60316
|
-
plain_text="plainText"
|
|
60317
|
-
),
|
|
60318
|
-
visibility="visibility"
|
|
60319
|
-
)
|
|
60320
|
-
)],
|
|
60321
60250
|
name="name",
|
|
60322
60251
|
sheet_id="sheetId"
|
|
60323
60252
|
)
|
|
60324
60253
|
'''
|
|
60325
60254
|
if __debug__:
|
|
60326
60255
|
type_hints = typing.get_type_hints(_typecheckingstub__fc7433bf24865199eabab7626a356c448f05a915887952c4a2780712050f4f7b)
|
|
60327
|
-
check_type(argname="argument images", value=images, expected_type=type_hints["images"])
|
|
60328
60256
|
check_type(argname="argument name", value=name, expected_type=type_hints["name"])
|
|
60329
60257
|
check_type(argname="argument sheet_id", value=sheet_id, expected_type=type_hints["sheet_id"])
|
|
60330
60258
|
self._values: typing.Dict[builtins.str, typing.Any] = {}
|
|
60331
|
-
if images is not None:
|
|
60332
|
-
self._values["images"] = images
|
|
60333
60259
|
if name is not None:
|
|
60334
60260
|
self._values["name"] = name
|
|
60335
60261
|
if sheet_id is not None:
|
|
60336
60262
|
self._values["sheet_id"] = sheet_id
|
|
60337
60263
|
|
|
60338
|
-
@builtins.property
|
|
60339
|
-
def images(
|
|
60340
|
-
self,
|
|
60341
|
-
) -> typing.Optional[typing.Union[_IResolvable_da3f097b, typing.List[typing.Union[_IResolvable_da3f097b, "CfnAnalysis.SheetImageProperty"]]]]:
|
|
60342
|
-
'''A list of images on a sheet.
|
|
60343
|
-
|
|
60344
|
-
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-analysis-sheet.html#cfn-quicksight-analysis-sheet-images
|
|
60345
|
-
'''
|
|
60346
|
-
result = self._values.get("images")
|
|
60347
|
-
return typing.cast(typing.Optional[typing.Union[_IResolvable_da3f097b, typing.List[typing.Union[_IResolvable_da3f097b, "CfnAnalysis.SheetImageProperty"]]]], result)
|
|
60348
|
-
|
|
60349
60264
|
@builtins.property
|
|
60350
60265
|
def name(self) -> typing.Optional[builtins.str]:
|
|
60351
60266
|
'''The name of a sheet.
|
|
@@ -71279,6 +71194,82 @@ class CfnAnalysis(
|
|
|
71279
71194
|
k + "=" + repr(v) for k, v in self._values.items()
|
|
71280
71195
|
)
|
|
71281
71196
|
|
|
71197
|
+
@jsii.data_type(
|
|
71198
|
+
jsii_type="aws-cdk-lib.aws_quicksight.CfnAnalysis.VisualInteractionOptionsProperty",
|
|
71199
|
+
jsii_struct_bases=[],
|
|
71200
|
+
name_mapping={
|
|
71201
|
+
"context_menu_option": "contextMenuOption",
|
|
71202
|
+
"visual_menu_option": "visualMenuOption",
|
|
71203
|
+
},
|
|
71204
|
+
)
|
|
71205
|
+
class VisualInteractionOptionsProperty:
|
|
71206
|
+
def __init__(
|
|
71207
|
+
self,
|
|
71208
|
+
*,
|
|
71209
|
+
context_menu_option: typing.Any = None,
|
|
71210
|
+
visual_menu_option: typing.Any = None,
|
|
71211
|
+
) -> None:
|
|
71212
|
+
'''The general visual interactions setup for visual publish options.
|
|
71213
|
+
|
|
71214
|
+
:param context_menu_option: The context menu options for a visual.
|
|
71215
|
+
:param visual_menu_option: The on-visual menu options for a visual.
|
|
71216
|
+
|
|
71217
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-analysis-visualinteractionoptions.html
|
|
71218
|
+
:exampleMetadata: fixture=_generated
|
|
71219
|
+
|
|
71220
|
+
Example::
|
|
71221
|
+
|
|
71222
|
+
# The code below shows an example of how to instantiate this type.
|
|
71223
|
+
# The values are placeholders you should change.
|
|
71224
|
+
from aws_cdk import aws_quicksight as quicksight
|
|
71225
|
+
|
|
71226
|
+
# context_menu_option: Any
|
|
71227
|
+
# visual_menu_option: Any
|
|
71228
|
+
|
|
71229
|
+
visual_interaction_options_property = quicksight.CfnAnalysis.VisualInteractionOptionsProperty(
|
|
71230
|
+
context_menu_option=context_menu_option,
|
|
71231
|
+
visual_menu_option=visual_menu_option
|
|
71232
|
+
)
|
|
71233
|
+
'''
|
|
71234
|
+
if __debug__:
|
|
71235
|
+
type_hints = typing.get_type_hints(_typecheckingstub__003c765e907a8f1dbbc5734182ac026883523b940f241c8344fe1fee7587e1db)
|
|
71236
|
+
check_type(argname="argument context_menu_option", value=context_menu_option, expected_type=type_hints["context_menu_option"])
|
|
71237
|
+
check_type(argname="argument visual_menu_option", value=visual_menu_option, expected_type=type_hints["visual_menu_option"])
|
|
71238
|
+
self._values: typing.Dict[builtins.str, typing.Any] = {}
|
|
71239
|
+
if context_menu_option is not None:
|
|
71240
|
+
self._values["context_menu_option"] = context_menu_option
|
|
71241
|
+
if visual_menu_option is not None:
|
|
71242
|
+
self._values["visual_menu_option"] = visual_menu_option
|
|
71243
|
+
|
|
71244
|
+
@builtins.property
|
|
71245
|
+
def context_menu_option(self) -> typing.Any:
|
|
71246
|
+
'''The context menu options for a visual.
|
|
71247
|
+
|
|
71248
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-analysis-visualinteractionoptions.html#cfn-quicksight-analysis-visualinteractionoptions-contextmenuoption
|
|
71249
|
+
'''
|
|
71250
|
+
result = self._values.get("context_menu_option")
|
|
71251
|
+
return typing.cast(typing.Any, result)
|
|
71252
|
+
|
|
71253
|
+
@builtins.property
|
|
71254
|
+
def visual_menu_option(self) -> typing.Any:
|
|
71255
|
+
'''The on-visual menu options for a visual.
|
|
71256
|
+
|
|
71257
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-analysis-visualinteractionoptions.html#cfn-quicksight-analysis-visualinteractionoptions-visualmenuoption
|
|
71258
|
+
'''
|
|
71259
|
+
result = self._values.get("visual_menu_option")
|
|
71260
|
+
return typing.cast(typing.Any, result)
|
|
71261
|
+
|
|
71262
|
+
def __eq__(self, rhs: typing.Any) -> builtins.bool:
|
|
71263
|
+
return isinstance(rhs, self.__class__) and rhs._values == self._values
|
|
71264
|
+
|
|
71265
|
+
def __ne__(self, rhs: typing.Any) -> builtins.bool:
|
|
71266
|
+
return not (rhs == self)
|
|
71267
|
+
|
|
71268
|
+
def __repr__(self) -> str:
|
|
71269
|
+
return "VisualInteractionOptionsProperty(%s)" % ", ".join(
|
|
71270
|
+
k + "=" + repr(v) for k, v in self._values.items()
|
|
71271
|
+
)
|
|
71272
|
+
|
|
71282
71273
|
@jsii.data_type(
|
|
71283
71274
|
jsii_type="aws-cdk-lib.aws_quicksight.CfnAnalysis.VisualPaletteProperty",
|
|
71284
71275
|
jsii_struct_bases=[],
|
|
@@ -87892,75 +87883,6 @@ class CfnDashboard(
|
|
|
87892
87883
|
)]
|
|
87893
87884
|
)],
|
|
87894
87885
|
sheets=[quicksight.CfnDashboard.SheetProperty(
|
|
87895
|
-
images=[quicksight.CfnDashboard.SheetImageProperty(
|
|
87896
|
-
sheet_image_id="sheetImageId",
|
|
87897
|
-
source=quicksight.CfnDashboard.SheetImageSourceProperty(
|
|
87898
|
-
sheet_image_static_file_source=quicksight.CfnDashboard.SheetImageStaticFileSourceProperty(
|
|
87899
|
-
static_file_id="staticFileId"
|
|
87900
|
-
)
|
|
87901
|
-
),
|
|
87902
|
-
|
|
87903
|
-
# the properties below are optional
|
|
87904
|
-
actions=[quicksight.CfnDashboard.ImageCustomActionProperty(
|
|
87905
|
-
action_operations=[quicksight.CfnDashboard.ImageCustomActionOperationProperty(
|
|
87906
|
-
navigation_operation=quicksight.CfnDashboard.CustomActionNavigationOperationProperty(
|
|
87907
|
-
local_navigation_configuration=quicksight.CfnDashboard.LocalNavigationConfigurationProperty(
|
|
87908
|
-
target_sheet_id="targetSheetId"
|
|
87909
|
-
)
|
|
87910
|
-
),
|
|
87911
|
-
set_parameters_operation=quicksight.CfnDashboard.CustomActionSetParametersOperationProperty(
|
|
87912
|
-
parameter_value_configurations=[quicksight.CfnDashboard.SetParameterValueConfigurationProperty(
|
|
87913
|
-
destination_parameter_name="destinationParameterName",
|
|
87914
|
-
value=quicksight.CfnDashboard.DestinationParameterValueConfigurationProperty(
|
|
87915
|
-
custom_values_configuration=quicksight.CfnDashboard.CustomValuesConfigurationProperty(
|
|
87916
|
-
custom_values=quicksight.CfnDashboard.CustomParameterValuesProperty(
|
|
87917
|
-
date_time_values=["dateTimeValues"],
|
|
87918
|
-
decimal_values=[123],
|
|
87919
|
-
integer_values=[123],
|
|
87920
|
-
string_values=["stringValues"]
|
|
87921
|
-
),
|
|
87922
|
-
|
|
87923
|
-
# the properties below are optional
|
|
87924
|
-
include_null_value=False
|
|
87925
|
-
),
|
|
87926
|
-
select_all_value_options="selectAllValueOptions",
|
|
87927
|
-
source_column=quicksight.CfnDashboard.ColumnIdentifierProperty(
|
|
87928
|
-
column_name="columnName",
|
|
87929
|
-
data_set_identifier="dataSetIdentifier"
|
|
87930
|
-
),
|
|
87931
|
-
source_field="sourceField",
|
|
87932
|
-
source_parameter_name="sourceParameterName"
|
|
87933
|
-
)
|
|
87934
|
-
)]
|
|
87935
|
-
),
|
|
87936
|
-
url_operation=quicksight.CfnDashboard.CustomActionURLOperationProperty(
|
|
87937
|
-
url_target="urlTarget",
|
|
87938
|
-
url_template="urlTemplate"
|
|
87939
|
-
)
|
|
87940
|
-
)],
|
|
87941
|
-
custom_action_id="customActionId",
|
|
87942
|
-
name="name",
|
|
87943
|
-
trigger="trigger",
|
|
87944
|
-
|
|
87945
|
-
# the properties below are optional
|
|
87946
|
-
status="status"
|
|
87947
|
-
)],
|
|
87948
|
-
image_content_alt_text="imageContentAltText",
|
|
87949
|
-
interactions=quicksight.CfnDashboard.ImageInteractionOptionsProperty(
|
|
87950
|
-
image_menu_option=quicksight.CfnDashboard.ImageMenuOptionProperty(
|
|
87951
|
-
availability_status="availabilityStatus"
|
|
87952
|
-
)
|
|
87953
|
-
),
|
|
87954
|
-
scaling=quicksight.CfnDashboard.SheetImageScalingConfigurationProperty(
|
|
87955
|
-
scaling_type="scalingType"
|
|
87956
|
-
),
|
|
87957
|
-
tooltip=quicksight.CfnDashboard.SheetImageTooltipConfigurationProperty(
|
|
87958
|
-
tooltip_text=quicksight.CfnDashboard.SheetImageTooltipTextProperty(
|
|
87959
|
-
plain_text="plainText"
|
|
87960
|
-
),
|
|
87961
|
-
visibility="visibility"
|
|
87962
|
-
)
|
|
87963
|
-
)],
|
|
87964
87886
|
name="name",
|
|
87965
87887
|
sheet_id="sheetId"
|
|
87966
87888
|
)],
|
|
@@ -106241,7 +106163,7 @@ class CfnDashboard(
|
|
|
106241
106163
|
def __init__(
|
|
106242
106164
|
self,
|
|
106243
106165
|
*,
|
|
106244
|
-
interactions: typing.Any = None,
|
|
106166
|
+
interactions: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union["CfnDashboard.VisualInteractionOptionsProperty", typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
106245
106167
|
legend: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union["CfnDashboard.LegendOptionsProperty", typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
106246
106168
|
map_layers: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Sequence[typing.Union[_IResolvable_da3f097b, typing.Union["CfnDashboard.GeospatialLayerItemProperty", typing.Dict[builtins.str, typing.Any]]]]]] = None,
|
|
106247
106169
|
map_state: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union["CfnDashboard.GeospatialMapStateProperty", typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
@@ -106282,12 +106204,14 @@ class CfnDashboard(
|
|
|
106282
106204
|
self._values["map_style"] = map_style
|
|
106283
106205
|
|
|
106284
106206
|
@builtins.property
|
|
106285
|
-
def interactions(
|
|
106207
|
+
def interactions(
|
|
106208
|
+
self,
|
|
106209
|
+
) -> typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnDashboard.VisualInteractionOptionsProperty"]]:
|
|
106286
106210
|
'''
|
|
106287
106211
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dashboard-geospatiallayermapconfiguration.html#cfn-quicksight-dashboard-geospatiallayermapconfiguration-interactions
|
|
106288
106212
|
'''
|
|
106289
106213
|
result = self._values.get("interactions")
|
|
106290
|
-
return typing.cast(typing.
|
|
106214
|
+
return typing.cast(typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnDashboard.VisualInteractionOptionsProperty"]], result)
|
|
106291
106215
|
|
|
106292
106216
|
@builtins.property
|
|
106293
106217
|
def legend(
|
|
@@ -106830,7 +106754,7 @@ class CfnDashboard(
|
|
|
106830
106754
|
self,
|
|
106831
106755
|
*,
|
|
106832
106756
|
field_wells: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union["CfnDashboard.GeospatialMapFieldWellsProperty", typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
106833
|
-
interactions: typing.Any = None,
|
|
106757
|
+
interactions: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union["CfnDashboard.VisualInteractionOptionsProperty", typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
106834
106758
|
legend: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union["CfnDashboard.LegendOptionsProperty", typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
106835
106759
|
map_style_options: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union["CfnDashboard.GeospatialMapStyleOptionsProperty", typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
106836
106760
|
point_style_options: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union["CfnDashboard.GeospatialPointStyleOptionsProperty", typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
@@ -106896,13 +106820,15 @@ class CfnDashboard(
|
|
|
106896
106820
|
return typing.cast(typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnDashboard.GeospatialMapFieldWellsProperty"]], result)
|
|
106897
106821
|
|
|
106898
106822
|
@builtins.property
|
|
106899
|
-
def interactions(
|
|
106823
|
+
def interactions(
|
|
106824
|
+
self,
|
|
106825
|
+
) -> typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnDashboard.VisualInteractionOptionsProperty"]]:
|
|
106900
106826
|
'''The general visual interactions setup for a visual.
|
|
106901
106827
|
|
|
106902
106828
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dashboard-geospatialmapconfiguration.html#cfn-quicksight-dashboard-geospatialmapconfiguration-interactions
|
|
106903
106829
|
'''
|
|
106904
106830
|
result = self._values.get("interactions")
|
|
106905
|
-
return typing.cast(typing.
|
|
106831
|
+
return typing.cast(typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnDashboard.VisualInteractionOptionsProperty"]], result)
|
|
106906
106832
|
|
|
106907
106833
|
@builtins.property
|
|
106908
106834
|
def legend(
|
|
@@ -136932,13 +136858,12 @@ class CfnDashboard(
|
|
|
136932
136858
|
@jsii.data_type(
|
|
136933
136859
|
jsii_type="aws-cdk-lib.aws_quicksight.CfnDashboard.SheetProperty",
|
|
136934
136860
|
jsii_struct_bases=[],
|
|
136935
|
-
name_mapping={"
|
|
136861
|
+
name_mapping={"name": "name", "sheet_id": "sheetId"},
|
|
136936
136862
|
)
|
|
136937
136863
|
class SheetProperty:
|
|
136938
136864
|
def __init__(
|
|
136939
136865
|
self,
|
|
136940
136866
|
*,
|
|
136941
|
-
images: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Sequence[typing.Union[_IResolvable_da3f097b, typing.Union["CfnDashboard.SheetImageProperty", typing.Dict[builtins.str, typing.Any]]]]]] = None,
|
|
136942
136867
|
name: typing.Optional[builtins.str] = None,
|
|
136943
136868
|
sheet_id: typing.Optional[builtins.str] = None,
|
|
136944
136869
|
) -> None:
|
|
@@ -136946,7 +136871,6 @@ class CfnDashboard(
|
|
|
136946
136871
|
|
|
136947
136872
|
Every analysis and dashboard contains at least one sheet. Each sheet contains at least one visualization widget, for example a chart, pivot table, or narrative insight. Sheets can be associated with other components, such as controls, filters, and so on.
|
|
136948
136873
|
|
|
136949
|
-
:param images: A list of images on a sheet.
|
|
136950
136874
|
:param name: The name of a sheet. This name is displayed on the sheet's tab in the Amazon QuickSight console.
|
|
136951
136875
|
:param sheet_id: The unique identifier associated with a sheet.
|
|
136952
136876
|
|
|
@@ -136960,103 +136884,20 @@ class CfnDashboard(
|
|
|
136960
136884
|
from aws_cdk import aws_quicksight as quicksight
|
|
136961
136885
|
|
|
136962
136886
|
sheet_property = quicksight.CfnDashboard.SheetProperty(
|
|
136963
|
-
images=[quicksight.CfnDashboard.SheetImageProperty(
|
|
136964
|
-
sheet_image_id="sheetImageId",
|
|
136965
|
-
source=quicksight.CfnDashboard.SheetImageSourceProperty(
|
|
136966
|
-
sheet_image_static_file_source=quicksight.CfnDashboard.SheetImageStaticFileSourceProperty(
|
|
136967
|
-
static_file_id="staticFileId"
|
|
136968
|
-
)
|
|
136969
|
-
),
|
|
136970
|
-
|
|
136971
|
-
# the properties below are optional
|
|
136972
|
-
actions=[quicksight.CfnDashboard.ImageCustomActionProperty(
|
|
136973
|
-
action_operations=[quicksight.CfnDashboard.ImageCustomActionOperationProperty(
|
|
136974
|
-
navigation_operation=quicksight.CfnDashboard.CustomActionNavigationOperationProperty(
|
|
136975
|
-
local_navigation_configuration=quicksight.CfnDashboard.LocalNavigationConfigurationProperty(
|
|
136976
|
-
target_sheet_id="targetSheetId"
|
|
136977
|
-
)
|
|
136978
|
-
),
|
|
136979
|
-
set_parameters_operation=quicksight.CfnDashboard.CustomActionSetParametersOperationProperty(
|
|
136980
|
-
parameter_value_configurations=[quicksight.CfnDashboard.SetParameterValueConfigurationProperty(
|
|
136981
|
-
destination_parameter_name="destinationParameterName",
|
|
136982
|
-
value=quicksight.CfnDashboard.DestinationParameterValueConfigurationProperty(
|
|
136983
|
-
custom_values_configuration=quicksight.CfnDashboard.CustomValuesConfigurationProperty(
|
|
136984
|
-
custom_values=quicksight.CfnDashboard.CustomParameterValuesProperty(
|
|
136985
|
-
date_time_values=["dateTimeValues"],
|
|
136986
|
-
decimal_values=[123],
|
|
136987
|
-
integer_values=[123],
|
|
136988
|
-
string_values=["stringValues"]
|
|
136989
|
-
),
|
|
136990
|
-
|
|
136991
|
-
# the properties below are optional
|
|
136992
|
-
include_null_value=False
|
|
136993
|
-
),
|
|
136994
|
-
select_all_value_options="selectAllValueOptions",
|
|
136995
|
-
source_column=quicksight.CfnDashboard.ColumnIdentifierProperty(
|
|
136996
|
-
column_name="columnName",
|
|
136997
|
-
data_set_identifier="dataSetIdentifier"
|
|
136998
|
-
),
|
|
136999
|
-
source_field="sourceField",
|
|
137000
|
-
source_parameter_name="sourceParameterName"
|
|
137001
|
-
)
|
|
137002
|
-
)]
|
|
137003
|
-
),
|
|
137004
|
-
url_operation=quicksight.CfnDashboard.CustomActionURLOperationProperty(
|
|
137005
|
-
url_target="urlTarget",
|
|
137006
|
-
url_template="urlTemplate"
|
|
137007
|
-
)
|
|
137008
|
-
)],
|
|
137009
|
-
custom_action_id="customActionId",
|
|
137010
|
-
name="name",
|
|
137011
|
-
trigger="trigger",
|
|
137012
|
-
|
|
137013
|
-
# the properties below are optional
|
|
137014
|
-
status="status"
|
|
137015
|
-
)],
|
|
137016
|
-
image_content_alt_text="imageContentAltText",
|
|
137017
|
-
interactions=quicksight.CfnDashboard.ImageInteractionOptionsProperty(
|
|
137018
|
-
image_menu_option=quicksight.CfnDashboard.ImageMenuOptionProperty(
|
|
137019
|
-
availability_status="availabilityStatus"
|
|
137020
|
-
)
|
|
137021
|
-
),
|
|
137022
|
-
scaling=quicksight.CfnDashboard.SheetImageScalingConfigurationProperty(
|
|
137023
|
-
scaling_type="scalingType"
|
|
137024
|
-
),
|
|
137025
|
-
tooltip=quicksight.CfnDashboard.SheetImageTooltipConfigurationProperty(
|
|
137026
|
-
tooltip_text=quicksight.CfnDashboard.SheetImageTooltipTextProperty(
|
|
137027
|
-
plain_text="plainText"
|
|
137028
|
-
),
|
|
137029
|
-
visibility="visibility"
|
|
137030
|
-
)
|
|
137031
|
-
)],
|
|
137032
136887
|
name="name",
|
|
137033
136888
|
sheet_id="sheetId"
|
|
137034
136889
|
)
|
|
137035
136890
|
'''
|
|
137036
136891
|
if __debug__:
|
|
137037
136892
|
type_hints = typing.get_type_hints(_typecheckingstub__ea1cfc41e0d0c9d637e38e0e7c0c54ba218ec89243b7b2666a061612e4ba1568)
|
|
137038
|
-
check_type(argname="argument images", value=images, expected_type=type_hints["images"])
|
|
137039
136893
|
check_type(argname="argument name", value=name, expected_type=type_hints["name"])
|
|
137040
136894
|
check_type(argname="argument sheet_id", value=sheet_id, expected_type=type_hints["sheet_id"])
|
|
137041
136895
|
self._values: typing.Dict[builtins.str, typing.Any] = {}
|
|
137042
|
-
if images is not None:
|
|
137043
|
-
self._values["images"] = images
|
|
137044
136896
|
if name is not None:
|
|
137045
136897
|
self._values["name"] = name
|
|
137046
136898
|
if sheet_id is not None:
|
|
137047
136899
|
self._values["sheet_id"] = sheet_id
|
|
137048
136900
|
|
|
137049
|
-
@builtins.property
|
|
137050
|
-
def images(
|
|
137051
|
-
self,
|
|
137052
|
-
) -> typing.Optional[typing.Union[_IResolvable_da3f097b, typing.List[typing.Union[_IResolvable_da3f097b, "CfnDashboard.SheetImageProperty"]]]]:
|
|
137053
|
-
'''A list of images on a sheet.
|
|
137054
|
-
|
|
137055
|
-
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dashboard-sheet.html#cfn-quicksight-dashboard-sheet-images
|
|
137056
|
-
'''
|
|
137057
|
-
result = self._values.get("images")
|
|
137058
|
-
return typing.cast(typing.Optional[typing.Union[_IResolvable_da3f097b, typing.List[typing.Union[_IResolvable_da3f097b, "CfnDashboard.SheetImageProperty"]]]], result)
|
|
137059
|
-
|
|
137060
136901
|
@builtins.property
|
|
137061
136902
|
def name(self) -> typing.Optional[builtins.str]:
|
|
137062
136903
|
'''The name of a sheet.
|
|
@@ -148045,6 +147886,85 @@ class CfnDashboard(
|
|
|
148045
147886
|
k + "=" + repr(v) for k, v in self._values.items()
|
|
148046
147887
|
)
|
|
148047
147888
|
|
|
147889
|
+
@jsii.data_type(
|
|
147890
|
+
jsii_type="aws-cdk-lib.aws_quicksight.CfnDashboard.VisualInteractionOptionsProperty",
|
|
147891
|
+
jsii_struct_bases=[],
|
|
147892
|
+
name_mapping={
|
|
147893
|
+
"context_menu_option": "contextMenuOption",
|
|
147894
|
+
"visual_menu_option": "visualMenuOption",
|
|
147895
|
+
},
|
|
147896
|
+
)
|
|
147897
|
+
class VisualInteractionOptionsProperty:
|
|
147898
|
+
def __init__(
|
|
147899
|
+
self,
|
|
147900
|
+
*,
|
|
147901
|
+
context_menu_option: typing.Any = None,
|
|
147902
|
+
visual_menu_option: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union["CfnDashboard.VisualMenuOptionProperty", typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
147903
|
+
) -> None:
|
|
147904
|
+
'''The general visual interactions setup for visual publish options.
|
|
147905
|
+
|
|
147906
|
+
:param context_menu_option: The context menu options for a visual.
|
|
147907
|
+
:param visual_menu_option: The on-visual menu options for a visual.
|
|
147908
|
+
|
|
147909
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dashboard-visualinteractionoptions.html
|
|
147910
|
+
:exampleMetadata: fixture=_generated
|
|
147911
|
+
|
|
147912
|
+
Example::
|
|
147913
|
+
|
|
147914
|
+
# The code below shows an example of how to instantiate this type.
|
|
147915
|
+
# The values are placeholders you should change.
|
|
147916
|
+
from aws_cdk import aws_quicksight as quicksight
|
|
147917
|
+
|
|
147918
|
+
# context_menu_option: Any
|
|
147919
|
+
|
|
147920
|
+
visual_interaction_options_property = quicksight.CfnDashboard.VisualInteractionOptionsProperty(
|
|
147921
|
+
context_menu_option=context_menu_option,
|
|
147922
|
+
visual_menu_option=quicksight.CfnDashboard.VisualMenuOptionProperty(
|
|
147923
|
+
availability_status="availabilityStatus"
|
|
147924
|
+
)
|
|
147925
|
+
)
|
|
147926
|
+
'''
|
|
147927
|
+
if __debug__:
|
|
147928
|
+
type_hints = typing.get_type_hints(_typecheckingstub__22155b4d47fba4eac0076ce30ea4c201c08622143ecf79ab17fc027ea1466d1f)
|
|
147929
|
+
check_type(argname="argument context_menu_option", value=context_menu_option, expected_type=type_hints["context_menu_option"])
|
|
147930
|
+
check_type(argname="argument visual_menu_option", value=visual_menu_option, expected_type=type_hints["visual_menu_option"])
|
|
147931
|
+
self._values: typing.Dict[builtins.str, typing.Any] = {}
|
|
147932
|
+
if context_menu_option is not None:
|
|
147933
|
+
self._values["context_menu_option"] = context_menu_option
|
|
147934
|
+
if visual_menu_option is not None:
|
|
147935
|
+
self._values["visual_menu_option"] = visual_menu_option
|
|
147936
|
+
|
|
147937
|
+
@builtins.property
|
|
147938
|
+
def context_menu_option(self) -> typing.Any:
|
|
147939
|
+
'''The context menu options for a visual.
|
|
147940
|
+
|
|
147941
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dashboard-visualinteractionoptions.html#cfn-quicksight-dashboard-visualinteractionoptions-contextmenuoption
|
|
147942
|
+
'''
|
|
147943
|
+
result = self._values.get("context_menu_option")
|
|
147944
|
+
return typing.cast(typing.Any, result)
|
|
147945
|
+
|
|
147946
|
+
@builtins.property
|
|
147947
|
+
def visual_menu_option(
|
|
147948
|
+
self,
|
|
147949
|
+
) -> typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnDashboard.VisualMenuOptionProperty"]]:
|
|
147950
|
+
'''The on-visual menu options for a visual.
|
|
147951
|
+
|
|
147952
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dashboard-visualinteractionoptions.html#cfn-quicksight-dashboard-visualinteractionoptions-visualmenuoption
|
|
147953
|
+
'''
|
|
147954
|
+
result = self._values.get("visual_menu_option")
|
|
147955
|
+
return typing.cast(typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnDashboard.VisualMenuOptionProperty"]], result)
|
|
147956
|
+
|
|
147957
|
+
def __eq__(self, rhs: typing.Any) -> builtins.bool:
|
|
147958
|
+
return isinstance(rhs, self.__class__) and rhs._values == self._values
|
|
147959
|
+
|
|
147960
|
+
def __ne__(self, rhs: typing.Any) -> builtins.bool:
|
|
147961
|
+
return not (rhs == self)
|
|
147962
|
+
|
|
147963
|
+
def __repr__(self) -> str:
|
|
147964
|
+
return "VisualInteractionOptionsProperty(%s)" % ", ".join(
|
|
147965
|
+
k + "=" + repr(v) for k, v in self._values.items()
|
|
147966
|
+
)
|
|
147967
|
+
|
|
148048
147968
|
@jsii.data_type(
|
|
148049
147969
|
jsii_type="aws-cdk-lib.aws_quicksight.CfnDashboard.VisualMenuOptionProperty",
|
|
148050
147970
|
jsii_struct_bases=[],
|
|
@@ -148056,8 +147976,9 @@ class CfnDashboard(
|
|
|
148056
147976
|
*,
|
|
148057
147977
|
availability_status: typing.Optional[builtins.str] = None,
|
|
148058
147978
|
) -> None:
|
|
148059
|
-
'''
|
|
148060
|
-
|
|
147979
|
+
'''The menu options for a visual.
|
|
147980
|
+
|
|
147981
|
+
:param availability_status: The availaiblity status of a visual's menu options.
|
|
148061
147982
|
|
|
148062
147983
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dashboard-visualmenuoption.html
|
|
148063
147984
|
:exampleMetadata: fixture=_generated
|
|
@@ -148081,7 +148002,8 @@ class CfnDashboard(
|
|
|
148081
148002
|
|
|
148082
148003
|
@builtins.property
|
|
148083
148004
|
def availability_status(self) -> typing.Optional[builtins.str]:
|
|
148084
|
-
'''
|
|
148005
|
+
'''The availaiblity status of a visual's menu options.
|
|
148006
|
+
|
|
148085
148007
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dashboard-visualmenuoption.html#cfn-quicksight-dashboard-visualmenuoption-availabilitystatus
|
|
148086
148008
|
'''
|
|
148087
148009
|
result = self._values.get("availability_status")
|
|
@@ -195190,11 +195112,9 @@ class CfnTemplate(
|
|
|
195190
195112
|
# The values are placeholders you should change.
|
|
195191
195113
|
from aws_cdk import aws_quicksight as quicksight
|
|
195192
195114
|
|
|
195193
|
-
# availability_status: Any
|
|
195194
|
-
|
|
195195
195115
|
image_interaction_options_property = quicksight.CfnTemplate.ImageInteractionOptionsProperty(
|
|
195196
195116
|
image_menu_option=quicksight.CfnTemplate.ImageMenuOptionProperty(
|
|
195197
|
-
availability_status=
|
|
195117
|
+
availability_status="availabilityStatus"
|
|
195198
195118
|
)
|
|
195199
195119
|
)
|
|
195200
195120
|
'''
|
|
@@ -195233,7 +195153,11 @@ class CfnTemplate(
|
|
|
195233
195153
|
name_mapping={"availability_status": "availabilityStatus"},
|
|
195234
195154
|
)
|
|
195235
195155
|
class ImageMenuOptionProperty:
|
|
195236
|
-
def __init__(
|
|
195156
|
+
def __init__(
|
|
195157
|
+
self,
|
|
195158
|
+
*,
|
|
195159
|
+
availability_status: typing.Optional[builtins.str] = None,
|
|
195160
|
+
) -> None:
|
|
195237
195161
|
'''The menu options for the interactions of an image.
|
|
195238
195162
|
|
|
195239
195163
|
:param availability_status: The availability status of the image menu. If the value of this property is set to ``ENABLED`` , dashboard readers can interact with the image menu.
|
|
@@ -195247,10 +195171,8 @@ class CfnTemplate(
|
|
|
195247
195171
|
# The values are placeholders you should change.
|
|
195248
195172
|
from aws_cdk import aws_quicksight as quicksight
|
|
195249
195173
|
|
|
195250
|
-
# availability_status: Any
|
|
195251
|
-
|
|
195252
195174
|
image_menu_option_property = quicksight.CfnTemplate.ImageMenuOptionProperty(
|
|
195253
|
-
availability_status=
|
|
195175
|
+
availability_status="availabilityStatus"
|
|
195254
195176
|
)
|
|
195255
195177
|
'''
|
|
195256
195178
|
if __debug__:
|
|
@@ -195261,7 +195183,7 @@ class CfnTemplate(
|
|
|
195261
195183
|
self._values["availability_status"] = availability_status
|
|
195262
195184
|
|
|
195263
195185
|
@builtins.property
|
|
195264
|
-
def availability_status(self) -> typing.
|
|
195186
|
+
def availability_status(self) -> typing.Optional[builtins.str]:
|
|
195265
195187
|
'''The availability status of the image menu.
|
|
195266
195188
|
|
|
195267
195189
|
If the value of this property is set to ``ENABLED`` , dashboard readers can interact with the image menu.
|
|
@@ -195269,7 +195191,7 @@ class CfnTemplate(
|
|
|
195269
195191
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-template-imagemenuoption.html#cfn-quicksight-template-imagemenuoption-availabilitystatus
|
|
195270
195192
|
'''
|
|
195271
195193
|
result = self._values.get("availability_status")
|
|
195272
|
-
return typing.cast(typing.
|
|
195194
|
+
return typing.cast(typing.Optional[builtins.str], result)
|
|
195273
195195
|
|
|
195274
195196
|
def __eq__(self, rhs: typing.Any) -> builtins.bool:
|
|
195275
195197
|
return isinstance(rhs, self.__class__) and rhs._values == self._values
|
|
@@ -218662,7 +218584,6 @@ class CfnTemplate(
|
|
|
218662
218584
|
# The values are placeholders you should change.
|
|
218663
218585
|
from aws_cdk import aws_quicksight as quicksight
|
|
218664
218586
|
|
|
218665
|
-
# availability_status: Any
|
|
218666
218587
|
# visibility: Any
|
|
218667
218588
|
|
|
218668
218589
|
sheet_image_property = quicksight.CfnTemplate.SheetImageProperty(
|
|
@@ -218721,7 +218642,7 @@ class CfnTemplate(
|
|
|
218721
218642
|
image_content_alt_text="imageContentAltText",
|
|
218722
218643
|
interactions=quicksight.CfnTemplate.ImageInteractionOptionsProperty(
|
|
218723
218644
|
image_menu_option=quicksight.CfnTemplate.ImageMenuOptionProperty(
|
|
218724
|
-
availability_status=
|
|
218645
|
+
availability_status="availabilityStatus"
|
|
218725
218646
|
)
|
|
218726
218647
|
),
|
|
218727
218648
|
scaling=quicksight.CfnTemplate.SheetImageScalingConfigurationProperty(
|
|
@@ -219148,13 +219069,12 @@ class CfnTemplate(
|
|
|
219148
219069
|
@jsii.data_type(
|
|
219149
219070
|
jsii_type="aws-cdk-lib.aws_quicksight.CfnTemplate.SheetProperty",
|
|
219150
219071
|
jsii_struct_bases=[],
|
|
219151
|
-
name_mapping={"
|
|
219072
|
+
name_mapping={"name": "name", "sheet_id": "sheetId"},
|
|
219152
219073
|
)
|
|
219153
219074
|
class SheetProperty:
|
|
219154
219075
|
def __init__(
|
|
219155
219076
|
self,
|
|
219156
219077
|
*,
|
|
219157
|
-
images: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Sequence[typing.Union[_IResolvable_da3f097b, typing.Union["CfnTemplate.SheetImageProperty", typing.Dict[builtins.str, typing.Any]]]]]] = None,
|
|
219158
219078
|
name: typing.Optional[builtins.str] = None,
|
|
219159
219079
|
sheet_id: typing.Optional[builtins.str] = None,
|
|
219160
219080
|
) -> None:
|
|
@@ -219162,7 +219082,6 @@ class CfnTemplate(
|
|
|
219162
219082
|
|
|
219163
219083
|
Every analysis and dashboard contains at least one sheet. Each sheet contains at least one visualization widget, for example a chart, pivot table, or narrative insight. Sheets can be associated with other components, such as controls, filters, and so on.
|
|
219164
219084
|
|
|
219165
|
-
:param images: A list of images on a sheet.
|
|
219166
219085
|
:param name: The name of a sheet. This name is displayed on the sheet's tab in the Amazon QuickSight console.
|
|
219167
219086
|
:param sheet_id: The unique identifier associated with a sheet.
|
|
219168
219087
|
|
|
@@ -219175,107 +219094,21 @@ class CfnTemplate(
|
|
|
219175
219094
|
# The values are placeholders you should change.
|
|
219176
219095
|
from aws_cdk import aws_quicksight as quicksight
|
|
219177
219096
|
|
|
219178
|
-
# availability_status: Any
|
|
219179
|
-
# visibility: Any
|
|
219180
|
-
|
|
219181
219097
|
sheet_property = quicksight.CfnTemplate.SheetProperty(
|
|
219182
|
-
images=[quicksight.CfnTemplate.SheetImageProperty(
|
|
219183
|
-
sheet_image_id="sheetImageId",
|
|
219184
|
-
source=quicksight.CfnTemplate.SheetImageSourceProperty(
|
|
219185
|
-
sheet_image_static_file_source=quicksight.CfnTemplate.SheetImageStaticFileSourceProperty(
|
|
219186
|
-
static_file_id="staticFileId"
|
|
219187
|
-
)
|
|
219188
|
-
),
|
|
219189
|
-
|
|
219190
|
-
# the properties below are optional
|
|
219191
|
-
actions=[quicksight.CfnTemplate.ImageCustomActionProperty(
|
|
219192
|
-
action_operations=[quicksight.CfnTemplate.ImageCustomActionOperationProperty(
|
|
219193
|
-
navigation_operation=quicksight.CfnTemplate.CustomActionNavigationOperationProperty(
|
|
219194
|
-
local_navigation_configuration=quicksight.CfnTemplate.LocalNavigationConfigurationProperty(
|
|
219195
|
-
target_sheet_id="targetSheetId"
|
|
219196
|
-
)
|
|
219197
|
-
),
|
|
219198
|
-
set_parameters_operation=quicksight.CfnTemplate.CustomActionSetParametersOperationProperty(
|
|
219199
|
-
parameter_value_configurations=[quicksight.CfnTemplate.SetParameterValueConfigurationProperty(
|
|
219200
|
-
destination_parameter_name="destinationParameterName",
|
|
219201
|
-
value=quicksight.CfnTemplate.DestinationParameterValueConfigurationProperty(
|
|
219202
|
-
custom_values_configuration=quicksight.CfnTemplate.CustomValuesConfigurationProperty(
|
|
219203
|
-
custom_values=quicksight.CfnTemplate.CustomParameterValuesProperty(
|
|
219204
|
-
date_time_values=["dateTimeValues"],
|
|
219205
|
-
decimal_values=[123],
|
|
219206
|
-
integer_values=[123],
|
|
219207
|
-
string_values=["stringValues"]
|
|
219208
|
-
),
|
|
219209
|
-
|
|
219210
|
-
# the properties below are optional
|
|
219211
|
-
include_null_value=False
|
|
219212
|
-
),
|
|
219213
|
-
select_all_value_options="selectAllValueOptions",
|
|
219214
|
-
source_column=quicksight.CfnTemplate.ColumnIdentifierProperty(
|
|
219215
|
-
column_name="columnName",
|
|
219216
|
-
data_set_identifier="dataSetIdentifier"
|
|
219217
|
-
),
|
|
219218
|
-
source_field="sourceField",
|
|
219219
|
-
source_parameter_name="sourceParameterName"
|
|
219220
|
-
)
|
|
219221
|
-
)]
|
|
219222
|
-
),
|
|
219223
|
-
url_operation=quicksight.CfnTemplate.CustomActionURLOperationProperty(
|
|
219224
|
-
url_target="urlTarget",
|
|
219225
|
-
url_template="urlTemplate"
|
|
219226
|
-
)
|
|
219227
|
-
)],
|
|
219228
|
-
custom_action_id="customActionId",
|
|
219229
|
-
name="name",
|
|
219230
|
-
trigger="trigger",
|
|
219231
|
-
|
|
219232
|
-
# the properties below are optional
|
|
219233
|
-
status="status"
|
|
219234
|
-
)],
|
|
219235
|
-
image_content_alt_text="imageContentAltText",
|
|
219236
|
-
interactions=quicksight.CfnTemplate.ImageInteractionOptionsProperty(
|
|
219237
|
-
image_menu_option=quicksight.CfnTemplate.ImageMenuOptionProperty(
|
|
219238
|
-
availability_status=availability_status
|
|
219239
|
-
)
|
|
219240
|
-
),
|
|
219241
|
-
scaling=quicksight.CfnTemplate.SheetImageScalingConfigurationProperty(
|
|
219242
|
-
scaling_type="scalingType"
|
|
219243
|
-
),
|
|
219244
|
-
tooltip=quicksight.CfnTemplate.SheetImageTooltipConfigurationProperty(
|
|
219245
|
-
tooltip_text=quicksight.CfnTemplate.SheetImageTooltipTextProperty(
|
|
219246
|
-
plain_text="plainText"
|
|
219247
|
-
),
|
|
219248
|
-
visibility=visibility
|
|
219249
|
-
)
|
|
219250
|
-
)],
|
|
219251
219098
|
name="name",
|
|
219252
219099
|
sheet_id="sheetId"
|
|
219253
219100
|
)
|
|
219254
219101
|
'''
|
|
219255
219102
|
if __debug__:
|
|
219256
219103
|
type_hints = typing.get_type_hints(_typecheckingstub__6df9b86d781b54d6d5a62373d1345c592393c94d85fdb7b8cbfaf9bad004e072)
|
|
219257
|
-
check_type(argname="argument images", value=images, expected_type=type_hints["images"])
|
|
219258
219104
|
check_type(argname="argument name", value=name, expected_type=type_hints["name"])
|
|
219259
219105
|
check_type(argname="argument sheet_id", value=sheet_id, expected_type=type_hints["sheet_id"])
|
|
219260
219106
|
self._values: typing.Dict[builtins.str, typing.Any] = {}
|
|
219261
|
-
if images is not None:
|
|
219262
|
-
self._values["images"] = images
|
|
219263
219107
|
if name is not None:
|
|
219264
219108
|
self._values["name"] = name
|
|
219265
219109
|
if sheet_id is not None:
|
|
219266
219110
|
self._values["sheet_id"] = sheet_id
|
|
219267
219111
|
|
|
219268
|
-
@builtins.property
|
|
219269
|
-
def images(
|
|
219270
|
-
self,
|
|
219271
|
-
) -> typing.Optional[typing.Union[_IResolvable_da3f097b, typing.List[typing.Union[_IResolvable_da3f097b, "CfnTemplate.SheetImageProperty"]]]]:
|
|
219272
|
-
'''A list of images on a sheet.
|
|
219273
|
-
|
|
219274
|
-
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-template-sheet.html#cfn-quicksight-template-sheet-images
|
|
219275
|
-
'''
|
|
219276
|
-
result = self._values.get("images")
|
|
219277
|
-
return typing.cast(typing.Optional[typing.Union[_IResolvable_da3f097b, typing.List[typing.Union[_IResolvable_da3f097b, "CfnTemplate.SheetImageProperty"]]]], result)
|
|
219278
|
-
|
|
219279
219112
|
@builtins.property
|
|
219280
219113
|
def name(self) -> typing.Optional[builtins.str]:
|
|
219281
219114
|
'''The name of a sheet.
|
|
@@ -225192,9 +225025,6 @@ class CfnTemplate(
|
|
|
225192
225025
|
# The values are placeholders you should change.
|
|
225193
225026
|
from aws_cdk import aws_quicksight as quicksight
|
|
225194
225027
|
|
|
225195
|
-
# availability_status: Any
|
|
225196
|
-
# visibility: Any
|
|
225197
|
-
|
|
225198
225028
|
template_version_property = quicksight.CfnTemplate.TemplateVersionProperty(
|
|
225199
225029
|
created_time="createdTime",
|
|
225200
225030
|
data_set_configurations=[quicksight.CfnTemplate.DataSetConfigurationProperty(
|
|
@@ -225222,75 +225052,6 @@ class CfnTemplate(
|
|
|
225222
225052
|
)]
|
|
225223
225053
|
)],
|
|
225224
225054
|
sheets=[quicksight.CfnTemplate.SheetProperty(
|
|
225225
|
-
images=[quicksight.CfnTemplate.SheetImageProperty(
|
|
225226
|
-
sheet_image_id="sheetImageId",
|
|
225227
|
-
source=quicksight.CfnTemplate.SheetImageSourceProperty(
|
|
225228
|
-
sheet_image_static_file_source=quicksight.CfnTemplate.SheetImageStaticFileSourceProperty(
|
|
225229
|
-
static_file_id="staticFileId"
|
|
225230
|
-
)
|
|
225231
|
-
),
|
|
225232
|
-
|
|
225233
|
-
# the properties below are optional
|
|
225234
|
-
actions=[quicksight.CfnTemplate.ImageCustomActionProperty(
|
|
225235
|
-
action_operations=[quicksight.CfnTemplate.ImageCustomActionOperationProperty(
|
|
225236
|
-
navigation_operation=quicksight.CfnTemplate.CustomActionNavigationOperationProperty(
|
|
225237
|
-
local_navigation_configuration=quicksight.CfnTemplate.LocalNavigationConfigurationProperty(
|
|
225238
|
-
target_sheet_id="targetSheetId"
|
|
225239
|
-
)
|
|
225240
|
-
),
|
|
225241
|
-
set_parameters_operation=quicksight.CfnTemplate.CustomActionSetParametersOperationProperty(
|
|
225242
|
-
parameter_value_configurations=[quicksight.CfnTemplate.SetParameterValueConfigurationProperty(
|
|
225243
|
-
destination_parameter_name="destinationParameterName",
|
|
225244
|
-
value=quicksight.CfnTemplate.DestinationParameterValueConfigurationProperty(
|
|
225245
|
-
custom_values_configuration=quicksight.CfnTemplate.CustomValuesConfigurationProperty(
|
|
225246
|
-
custom_values=quicksight.CfnTemplate.CustomParameterValuesProperty(
|
|
225247
|
-
date_time_values=["dateTimeValues"],
|
|
225248
|
-
decimal_values=[123],
|
|
225249
|
-
integer_values=[123],
|
|
225250
|
-
string_values=["stringValues"]
|
|
225251
|
-
),
|
|
225252
|
-
|
|
225253
|
-
# the properties below are optional
|
|
225254
|
-
include_null_value=False
|
|
225255
|
-
),
|
|
225256
|
-
select_all_value_options="selectAllValueOptions",
|
|
225257
|
-
source_column=quicksight.CfnTemplate.ColumnIdentifierProperty(
|
|
225258
|
-
column_name="columnName",
|
|
225259
|
-
data_set_identifier="dataSetIdentifier"
|
|
225260
|
-
),
|
|
225261
|
-
source_field="sourceField",
|
|
225262
|
-
source_parameter_name="sourceParameterName"
|
|
225263
|
-
)
|
|
225264
|
-
)]
|
|
225265
|
-
),
|
|
225266
|
-
url_operation=quicksight.CfnTemplate.CustomActionURLOperationProperty(
|
|
225267
|
-
url_target="urlTarget",
|
|
225268
|
-
url_template="urlTemplate"
|
|
225269
|
-
)
|
|
225270
|
-
)],
|
|
225271
|
-
custom_action_id="customActionId",
|
|
225272
|
-
name="name",
|
|
225273
|
-
trigger="trigger",
|
|
225274
|
-
|
|
225275
|
-
# the properties below are optional
|
|
225276
|
-
status="status"
|
|
225277
|
-
)],
|
|
225278
|
-
image_content_alt_text="imageContentAltText",
|
|
225279
|
-
interactions=quicksight.CfnTemplate.ImageInteractionOptionsProperty(
|
|
225280
|
-
image_menu_option=quicksight.CfnTemplate.ImageMenuOptionProperty(
|
|
225281
|
-
availability_status=availability_status
|
|
225282
|
-
)
|
|
225283
|
-
),
|
|
225284
|
-
scaling=quicksight.CfnTemplate.SheetImageScalingConfigurationProperty(
|
|
225285
|
-
scaling_type="scalingType"
|
|
225286
|
-
),
|
|
225287
|
-
tooltip=quicksight.CfnTemplate.SheetImageTooltipConfigurationProperty(
|
|
225288
|
-
tooltip_text=quicksight.CfnTemplate.SheetImageTooltipTextProperty(
|
|
225289
|
-
plain_text="plainText"
|
|
225290
|
-
),
|
|
225291
|
-
visibility=visibility
|
|
225292
|
-
)
|
|
225293
|
-
)],
|
|
225294
225055
|
name="name",
|
|
225295
225056
|
sheet_id="sheetId"
|
|
225296
225057
|
)],
|
|
@@ -243367,7 +243128,7 @@ def _typecheckingstub__3eaa799b0188c41431d53d569d0448326d3114036b7b4979be58b7dfa
|
|
|
243367
243128
|
|
|
243368
243129
|
def _typecheckingstub__30ac56919f934522414daa7992e2d23d20f1b50640274343f87a3793104603ed(
|
|
243369
243130
|
*,
|
|
243370
|
-
interactions: typing.Any = None,
|
|
243131
|
+
interactions: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union[CfnAnalysis.VisualInteractionOptionsProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
243371
243132
|
legend: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union[CfnAnalysis.LegendOptionsProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
243372
243133
|
map_layers: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Sequence[typing.Union[_IResolvable_da3f097b, typing.Union[CfnAnalysis.GeospatialLayerItemProperty, typing.Dict[builtins.str, typing.Any]]]]]] = None,
|
|
243373
243134
|
map_state: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union[CfnAnalysis.GeospatialMapStateProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
@@ -243417,7 +243178,7 @@ def _typecheckingstub__39dbfd9468a705a82826afd15f6f727c87ee9cdbf2a0c017e2c18c162
|
|
|
243417
243178
|
def _typecheckingstub__60d57edb34f563d63db66a41f0e9e2f72571d6fee2bc11156b17cabc0db57153(
|
|
243418
243179
|
*,
|
|
243419
243180
|
field_wells: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union[CfnAnalysis.GeospatialMapFieldWellsProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
243420
|
-
interactions: typing.Any = None,
|
|
243181
|
+
interactions: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union[CfnAnalysis.VisualInteractionOptionsProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
243421
243182
|
legend: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union[CfnAnalysis.LegendOptionsProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
243422
243183
|
map_style_options: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union[CfnAnalysis.GeospatialMapStyleOptionsProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
243423
243184
|
point_style_options: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union[CfnAnalysis.GeospatialPointStyleOptionsProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
@@ -243768,7 +243529,7 @@ def _typecheckingstub__f8b313502479d16b89cb45297f34d1d54766fd2dfd9d889436f56d0bb
|
|
|
243768
243529
|
|
|
243769
243530
|
def _typecheckingstub__b27ced6e9266985878e529b29d45aa809ad68a362533cb9f431beae0a8c09be7(
|
|
243770
243531
|
*,
|
|
243771
|
-
availability_status: typing.
|
|
243532
|
+
availability_status: typing.Optional[builtins.str] = None,
|
|
243772
243533
|
) -> None:
|
|
243773
243534
|
"""Type checking stubs"""
|
|
243774
243535
|
pass
|
|
@@ -245475,7 +245236,6 @@ def _typecheckingstub__2a20869c7a141ea70ba3d86c742823cdec3a07da071cabd11769613f0
|
|
|
245475
245236
|
|
|
245476
245237
|
def _typecheckingstub__fc7433bf24865199eabab7626a356c448f05a915887952c4a2780712050f4f7b(
|
|
245477
245238
|
*,
|
|
245478
|
-
images: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Sequence[typing.Union[_IResolvable_da3f097b, typing.Union[CfnAnalysis.SheetImageProperty, typing.Dict[builtins.str, typing.Any]]]]]] = None,
|
|
245479
245239
|
name: typing.Optional[builtins.str] = None,
|
|
245480
245240
|
sheet_id: typing.Optional[builtins.str] = None,
|
|
245481
245241
|
) -> None:
|
|
@@ -246196,6 +245956,14 @@ def _typecheckingstub__26f7459afa8caf596af826ad5a11c161931b24cc757b9501abfe4c8f6
|
|
|
246196
245956
|
"""Type checking stubs"""
|
|
246197
245957
|
pass
|
|
246198
245958
|
|
|
245959
|
+
def _typecheckingstub__003c765e907a8f1dbbc5734182ac026883523b940f241c8344fe1fee7587e1db(
|
|
245960
|
+
*,
|
|
245961
|
+
context_menu_option: typing.Any = None,
|
|
245962
|
+
visual_menu_option: typing.Any = None,
|
|
245963
|
+
) -> None:
|
|
245964
|
+
"""Type checking stubs"""
|
|
245965
|
+
pass
|
|
245966
|
+
|
|
246199
245967
|
def _typecheckingstub__ff6c93ffc3eca56e7f0801d3fa31d4e3847be4e43ecc2931cb65086f639b9ce3(
|
|
246200
245968
|
*,
|
|
246201
245969
|
chart_color: typing.Optional[builtins.str] = None,
|
|
@@ -248730,7 +248498,7 @@ def _typecheckingstub__2584d10f68f477c0b1500a8ae3ec09e20f6cc4ef8cc8a53541366de27
|
|
|
248730
248498
|
|
|
248731
248499
|
def _typecheckingstub__88da3dad5d42d8cfdcd150d48b4e73309ad169208822f6e8c8407f0375446d6b(
|
|
248732
248500
|
*,
|
|
248733
|
-
interactions: typing.Any = None,
|
|
248501
|
+
interactions: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union[CfnDashboard.VisualInteractionOptionsProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
248734
248502
|
legend: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union[CfnDashboard.LegendOptionsProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
248735
248503
|
map_layers: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Sequence[typing.Union[_IResolvable_da3f097b, typing.Union[CfnDashboard.GeospatialLayerItemProperty, typing.Dict[builtins.str, typing.Any]]]]]] = None,
|
|
248736
248504
|
map_state: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union[CfnDashboard.GeospatialMapStateProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
@@ -248780,7 +248548,7 @@ def _typecheckingstub__0081ce6bc2bc7286f3c3dde4cef1576fa5ec0d3d81d922acd1160502c
|
|
|
248780
248548
|
def _typecheckingstub__7c94bbf4d0514fb89546f03bc3d9bba05117b5d6eb67cec997161c719fc3064c(
|
|
248781
248549
|
*,
|
|
248782
248550
|
field_wells: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union[CfnDashboard.GeospatialMapFieldWellsProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
248783
|
-
interactions: typing.Any = None,
|
|
248551
|
+
interactions: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union[CfnDashboard.VisualInteractionOptionsProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
248784
248552
|
legend: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union[CfnDashboard.LegendOptionsProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
248785
248553
|
map_style_options: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union[CfnDashboard.GeospatialMapStyleOptionsProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
248786
248554
|
point_style_options: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union[CfnDashboard.GeospatialPointStyleOptionsProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
@@ -250852,7 +250620,6 @@ def _typecheckingstub__9c21837468111244c3de56b5fe2dacbe15de4699bb18a76919a5f3901
|
|
|
250852
250620
|
|
|
250853
250621
|
def _typecheckingstub__ea1cfc41e0d0c9d637e38e0e7c0c54ba218ec89243b7b2666a061612e4ba1568(
|
|
250854
250622
|
*,
|
|
250855
|
-
images: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Sequence[typing.Union[_IResolvable_da3f097b, typing.Union[CfnDashboard.SheetImageProperty, typing.Dict[builtins.str, typing.Any]]]]]] = None,
|
|
250856
250623
|
name: typing.Optional[builtins.str] = None,
|
|
250857
250624
|
sheet_id: typing.Optional[builtins.str] = None,
|
|
250858
250625
|
) -> None:
|
|
@@ -251580,6 +251347,14 @@ def _typecheckingstub__eb0f39821608039a7811382a5857633915dcb72f45adf6050cf21c3fd
|
|
|
251580
251347
|
"""Type checking stubs"""
|
|
251581
251348
|
pass
|
|
251582
251349
|
|
|
251350
|
+
def _typecheckingstub__22155b4d47fba4eac0076ce30ea4c201c08622143ecf79ab17fc027ea1466d1f(
|
|
251351
|
+
*,
|
|
251352
|
+
context_menu_option: typing.Any = None,
|
|
251353
|
+
visual_menu_option: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union[CfnDashboard.VisualMenuOptionProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
251354
|
+
) -> None:
|
|
251355
|
+
"""Type checking stubs"""
|
|
251356
|
+
pass
|
|
251357
|
+
|
|
251583
251358
|
def _typecheckingstub__2812a2f0ead91339e0ad280e56a2126e5c88c7dd642bee0c3bbe02d4c146d875(
|
|
251584
251359
|
*,
|
|
251585
251360
|
availability_status: typing.Optional[builtins.str] = None,
|
|
@@ -255254,7 +255029,7 @@ def _typecheckingstub__fe75f38b6207229bd53f358a2e7f2c9f89d695777cdcc8345ea1d2c33
|
|
|
255254
255029
|
|
|
255255
255030
|
def _typecheckingstub__8879d20cdf900eacac9de31e06ae9c2ce0619136216c283202d287dd8f05685e(
|
|
255256
255031
|
*,
|
|
255257
|
-
availability_status: typing.
|
|
255032
|
+
availability_status: typing.Optional[builtins.str] = None,
|
|
255258
255033
|
) -> None:
|
|
255259
255034
|
"""Type checking stubs"""
|
|
255260
255035
|
pass
|
|
@@ -256902,7 +256677,6 @@ def _typecheckingstub__172f436ebfbce7874a53296fd599e082eda3a02050e639008d5360116
|
|
|
256902
256677
|
|
|
256903
256678
|
def _typecheckingstub__6df9b86d781b54d6d5a62373d1345c592393c94d85fdb7b8cbfaf9bad004e072(
|
|
256904
256679
|
*,
|
|
256905
|
-
images: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Sequence[typing.Union[_IResolvable_da3f097b, typing.Union[CfnTemplate.SheetImageProperty, typing.Dict[builtins.str, typing.Any]]]]]] = None,
|
|
256906
256680
|
name: typing.Optional[builtins.str] = None,
|
|
256907
256681
|
sheet_id: typing.Optional[builtins.str] = None,
|
|
256908
256682
|
) -> None:
|