aws-cdk-lib 2.195.0__py3-none-any.whl → 2.196.1__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 +433 -20
- aws_cdk/_jsii/__init__.py +1 -1
- aws_cdk/_jsii/{aws-cdk-lib@2.195.0.jsii.tgz → aws-cdk-lib@2.196.1.jsii.tgz} +0 -0
- aws_cdk/aws_acmpca/__init__.py +1 -1
- aws_cdk/aws_amazonmq/__init__.py +2 -2
- aws_cdk/aws_apigateway/__init__.py +148 -69
- aws_cdk/aws_apigatewayv2/__init__.py +155 -24
- aws_cdk/aws_appconfig/__init__.py +24 -0
- aws_cdk/aws_applicationautoscaling/__init__.py +6 -0
- aws_cdk/aws_appmesh/__init__.py +42 -0
- aws_cdk/aws_appsync/__init__.py +92 -20
- aws_cdk/aws_autoscaling/__init__.py +24 -0
- aws_cdk/aws_backup/__init__.py +53 -14
- aws_cdk/aws_batch/__init__.py +72 -0
- aws_cdk/aws_bedrock/__init__.py +620 -14
- aws_cdk/aws_budgets/__init__.py +569 -0
- aws_cdk/aws_certificatemanager/__init__.py +21 -0
- aws_cdk/aws_chatbot/__init__.py +6 -0
- aws_cdk/aws_cloudfront/__init__.py +87 -0
- aws_cdk/aws_cloudfront/experimental/__init__.py +6 -0
- aws_cdk/aws_cloudtrail/__init__.py +6 -0
- aws_cdk/aws_cloudwatch/__init__.py +18 -0
- aws_cdk/aws_cloudwatch_actions/__init__.py +75 -1
- aws_cdk/aws_codebuild/__init__.py +48 -0
- aws_cdk/aws_codecommit/__init__.py +6 -0
- aws_cdk/aws_codedeploy/__init__.py +63 -0
- aws_cdk/aws_codeguruprofiler/__init__.py +6 -0
- aws_cdk/aws_codepipeline/__init__.py +6 -0
- aws_cdk/aws_codepipeline_actions/__init__.py +4 -4
- aws_cdk/aws_codestarnotifications/__init__.py +6 -0
- aws_cdk/aws_cognito/__init__.py +91 -12
- aws_cdk/aws_cognito_identitypool/__init__.py +6 -0
- aws_cdk/aws_config/__init__.py +36 -0
- aws_cdk/aws_datazone/__init__.py +557 -14
- aws_cdk/aws_docdb/__init__.py +27 -3
- aws_cdk/aws_dsql/__init__.py +21 -13
- aws_cdk/aws_dynamodb/__init__.py +20 -8
- aws_cdk/aws_ec2/__init__.py +282 -21
- aws_cdk/aws_ecr/__init__.py +6 -0
- aws_cdk/aws_ecr_assets/__init__.py +6 -0
- aws_cdk/aws_ecs/__init__.py +112 -19
- aws_cdk/aws_ecs_patterns/__init__.py +58 -0
- aws_cdk/aws_efs/__init__.py +12 -0
- aws_cdk/aws_eks/__init__.py +42 -0
- aws_cdk/aws_elasticloadbalancing/__init__.py +6 -0
- aws_cdk/aws_elasticloadbalancingv2/__init__.py +112 -9
- aws_cdk/aws_elasticsearch/__init__.py +9 -0
- aws_cdk/aws_events/__init__.py +36 -0
- aws_cdk/aws_events_targets/__init__.py +10 -10
- aws_cdk/aws_fsx/__init__.py +6 -0
- aws_cdk/aws_globalaccelerator/__init__.py +18 -0
- aws_cdk/aws_iam/__init__.py +66 -0
- aws_cdk/aws_imagebuilder/__init__.py +21 -16
- aws_cdk/aws_inspector/__init__.py +6 -0
- aws_cdk/aws_kinesis/__init__.py +19 -1
- aws_cdk/aws_kinesisanalytics/__init__.py +9 -11
- aws_cdk/aws_kinesisanalyticsv2/__init__.py +9 -11
- aws_cdk/aws_kinesisfirehose/__init__.py +6 -0
- aws_cdk/aws_kms/__init__.py +16 -4
- aws_cdk/aws_lambda/__init__.py +76 -6
- aws_cdk/aws_logs/__init__.py +155 -12
- aws_cdk/aws_opensearchservice/__init__.py +6 -0
- aws_cdk/aws_quicksight/__init__.py +22 -22
- aws_cdk/aws_rds/__init__.py +306 -30
- aws_cdk/aws_redshiftserverless/__init__.py +7 -7
- aws_cdk/aws_route53/__init__.py +723 -25
- aws_cdk/aws_s3/__init__.py +37 -10
- aws_cdk/aws_s3_deployment/__init__.py +6 -0
- aws_cdk/aws_sagemaker/__init__.py +199 -4
- aws_cdk/aws_scheduler/__init__.py +12 -0
- aws_cdk/aws_secretsmanager/__init__.py +24 -0
- aws_cdk/aws_servicecatalog/__init__.py +24 -0
- aws_cdk/aws_servicediscovery/__init__.py +48 -0
- aws_cdk/aws_ses/__init__.py +133 -33
- aws_cdk/aws_signer/__init__.py +6 -0
- aws_cdk/aws_sns/__init__.py +18 -0
- aws_cdk/aws_sns_subscriptions/__init__.py +6 -0
- aws_cdk/aws_sqs/__init__.py +12 -0
- aws_cdk/aws_ssm/__init__.py +12 -0
- aws_cdk/aws_ssmcontacts/__init__.py +53 -2
- aws_cdk/aws_ssmguiconnect/__init__.py +7 -7
- aws_cdk/aws_stepfunctions/__init__.py +153 -7
- aws_cdk/aws_stepfunctions_tasks/__init__.py +46 -10
- aws_cdk/aws_synthetics/__init__.py +32 -0
- aws_cdk/aws_verifiedpermissions/__init__.py +168 -3
- aws_cdk/aws_vpclattice/__init__.py +3 -1
- aws_cdk/aws_wisdom/__init__.py +6 -4
- aws_cdk/custom_resources/__init__.py +18 -0
- aws_cdk/cx_api/__init__.py +33 -0
- aws_cdk/lambda_layer_awscli/__init__.py +6 -0
- aws_cdk/lambda_layer_node_proxy_agent/__init__.py +6 -0
- aws_cdk/pipelines/__init__.py +10 -10
- aws_cdk/triggers/__init__.py +6 -0
- {aws_cdk_lib-2.195.0.dist-info → aws_cdk_lib-2.196.1.dist-info}/METADATA +83 -5
- {aws_cdk_lib-2.195.0.dist-info → aws_cdk_lib-2.196.1.dist-info}/RECORD +99 -99
- {aws_cdk_lib-2.195.0.dist-info → aws_cdk_lib-2.196.1.dist-info}/LICENSE +0 -0
- {aws_cdk_lib-2.195.0.dist-info → aws_cdk_lib-2.196.1.dist-info}/NOTICE +0 -0
- {aws_cdk_lib-2.195.0.dist-info → aws_cdk_lib-2.196.1.dist-info}/WHEEL +0 -0
- {aws_cdk_lib-2.195.0.dist-info → aws_cdk_lib-2.196.1.dist-info}/top_level.txt +0 -0
|
@@ -52484,7 +52484,7 @@ class CfnAnalysis(
|
|
|
52484
52484
|
'''Permission for the resource.
|
|
52485
52485
|
|
|
52486
52486
|
:param actions: The IAM action to grant or revoke permissions on.
|
|
52487
|
-
:param principal: The Amazon Resource Name (ARN) of the principal. This can be one of the following:. - The ARN of an Amazon QuickSight user or group associated with a data source or dataset. (This is common.) - The ARN of an Amazon QuickSight user, group, or namespace associated with an analysis, dashboard, template, or theme. (This is common.) - The ARN of an AWS account root: This is an IAM ARN rather than a
|
|
52487
|
+
:param principal: The Amazon Resource Name (ARN) of the principal. This can be one of the following:. - The ARN of an Amazon QuickSight user or group associated with a data source or dataset. (This is common.) - The ARN of an Amazon QuickSight user, group, or namespace associated with an analysis, dashboard, template, or theme. (This is common.) - The ARN of an AWS account root: This is an IAM ARN rather than a QuickSight ARN. Use this option only to share resources (templates) across AWS accounts . (This is less common.)
|
|
52488
52488
|
:param resource:
|
|
52489
52489
|
|
|
52490
52490
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-analysis-resourcepermission.html
|
|
@@ -52532,7 +52532,7 @@ class CfnAnalysis(
|
|
|
52532
52532
|
|
|
52533
52533
|
- The ARN of an Amazon QuickSight user or group associated with a data source or dataset. (This is common.)
|
|
52534
52534
|
- The ARN of an Amazon QuickSight user, group, or namespace associated with an analysis, dashboard, template, or theme. (This is common.)
|
|
52535
|
-
- The ARN of an AWS account root: This is an IAM ARN rather than a
|
|
52535
|
+
- The ARN of an AWS account root: This is an IAM ARN rather than a QuickSight ARN. Use this option only to share resources (templates) across AWS accounts . (This is less common.)
|
|
52536
52536
|
|
|
52537
52537
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-analysis-resourcepermission.html#cfn-quicksight-analysis-resourcepermission-principal
|
|
52538
52538
|
'''
|
|
@@ -70748,7 +70748,7 @@ class CfnDashboard(
|
|
|
70748
70748
|
):
|
|
70749
70749
|
'''Creates a dashboard from a template. To first create a template, see the ``CreateTemplate`` API operation.
|
|
70750
70750
|
|
|
70751
|
-
A dashboard is an entity in
|
|
70751
|
+
A dashboard is an entity in QuickSight that identifies QuickSight reports, created from analyses. You can share 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 AWS account .
|
|
70752
70752
|
|
|
70753
70753
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-quicksight-dashboard.html
|
|
70754
70754
|
:cloudformationResource: AWS::QuickSight::Dashboard
|
|
@@ -124155,7 +124155,7 @@ class CfnDashboard(
|
|
|
124155
124155
|
'''Permission for the resource.
|
|
124156
124156
|
|
|
124157
124157
|
:param actions: The IAM action to grant or revoke permissions on.
|
|
124158
|
-
:param principal: The Amazon Resource Name (ARN) of the principal. This can be one of the following:. - The ARN of an Amazon QuickSight user or group associated with a data source or dataset. (This is common.) - The ARN of an Amazon QuickSight user, group, or namespace associated with an analysis, dashboard, template, or theme. (This is common.) - The ARN of an AWS account root: This is an IAM ARN rather than a
|
|
124158
|
+
:param principal: The Amazon Resource Name (ARN) of the principal. This can be one of the following:. - The ARN of an Amazon QuickSight user or group associated with a data source or dataset. (This is common.) - The ARN of an Amazon QuickSight user, group, or namespace associated with an analysis, dashboard, template, or theme. (This is common.) - The ARN of an AWS account root: This is an IAM ARN rather than a QuickSight ARN. Use this option only to share resources (templates) across AWS accounts . (This is less common.)
|
|
124159
124159
|
:param resource:
|
|
124160
124160
|
|
|
124161
124161
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dashboard-resourcepermission.html
|
|
@@ -124203,7 +124203,7 @@ class CfnDashboard(
|
|
|
124203
124203
|
|
|
124204
124204
|
- The ARN of an Amazon QuickSight user or group associated with a data source or dataset. (This is common.)
|
|
124205
124205
|
- The ARN of an Amazon QuickSight user, group, or namespace associated with an analysis, dashboard, template, or theme. (This is common.)
|
|
124206
|
-
- The ARN of an AWS account root: This is an IAM ARN rather than a
|
|
124206
|
+
- The ARN of an AWS account root: This is an IAM ARN rather than a QuickSight ARN. Use this option only to share resources (templates) across AWS accounts . (This is less common.)
|
|
124207
124207
|
|
|
124208
124208
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dashboard-resourcepermission.html#cfn-quicksight-dashboard-resourcepermission-principal
|
|
124209
124209
|
'''
|
|
@@ -143067,7 +143067,7 @@ class CfnDataSet(
|
|
|
143067
143067
|
Each dataset can have multiple rules. To create a restricted column, you add it to one or more rules. Each rule must contain at least one column and at least one user or group. To be able to see a restricted column, a user or group needs to be added to a rule for that column.
|
|
143068
143068
|
|
|
143069
143069
|
:param column_names: An array of column names.
|
|
143070
|
-
:param principals: An array of Amazon Resource Names (ARNs) for
|
|
143070
|
+
:param principals: An array of Amazon Resource Names (ARNs) for QuickSight users or groups.
|
|
143071
143071
|
|
|
143072
143072
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dataset-columnlevelpermissionrule.html
|
|
143073
143073
|
:exampleMetadata: fixture=_generated
|
|
@@ -143104,7 +143104,7 @@ class CfnDataSet(
|
|
|
143104
143104
|
|
|
143105
143105
|
@builtins.property
|
|
143106
143106
|
def principals(self) -> typing.Optional[typing.List[builtins.str]]:
|
|
143107
|
-
'''An array of Amazon Resource Names (ARNs) for
|
|
143107
|
+
'''An array of Amazon Resource Names (ARNs) for QuickSight users or groups.
|
|
143108
143108
|
|
|
143109
143109
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dataset-columnlevelpermissionrule.html#cfn-quicksight-dataset-columnlevelpermissionrule-principals
|
|
143110
143110
|
'''
|
|
@@ -144852,7 +144852,7 @@ class CfnDataSet(
|
|
|
144852
144852
|
) -> None:
|
|
144853
144853
|
'''Properties associated with the columns participating in a join.
|
|
144854
144854
|
|
|
144855
|
-
:param unique_key: A value that indicates that a row in a table is uniquely identified by the columns in a join key. This is used by
|
|
144855
|
+
:param unique_key: A value that indicates that a row in a table is uniquely identified by the columns in a join key. This is used by QuickSight to optimize query performance.
|
|
144856
144856
|
|
|
144857
144857
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dataset-joinkeyproperties.html
|
|
144858
144858
|
:exampleMetadata: fixture=_generated
|
|
@@ -144880,7 +144880,7 @@ class CfnDataSet(
|
|
|
144880
144880
|
) -> typing.Optional[typing.Union[builtins.bool, _IResolvable_da3f097b]]:
|
|
144881
144881
|
'''A value that indicates that a row in a table is uniquely identified by the columns in a join key.
|
|
144882
144882
|
|
|
144883
|
-
This is used by
|
|
144883
|
+
This is used by QuickSight to optimize query performance.
|
|
144884
144884
|
|
|
144885
144885
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dataset-joinkeyproperties.html#cfn-quicksight-dataset-joinkeyproperties-uniquekey
|
|
144886
144886
|
'''
|
|
@@ -146236,7 +146236,7 @@ class CfnDataSet(
|
|
|
146236
146236
|
'''Permission for the resource.
|
|
146237
146237
|
|
|
146238
146238
|
:param actions: The IAM action to grant or revoke permisions on.
|
|
146239
|
-
:param principal: The Amazon Resource Name (ARN) of the principal. This can be one of the following:. - The ARN of an Amazon QuickSight user or group associated with a data source or dataset. (This is common.) - The ARN of an Amazon QuickSight user, group, or namespace associated with an analysis, dashboard, template, or theme. (This is common.) - The ARN of an AWS account root: This is an IAM ARN rather than a
|
|
146239
|
+
:param principal: The Amazon Resource Name (ARN) of the principal. This can be one of the following:. - The ARN of an Amazon QuickSight user or group associated with a data source or dataset. (This is common.) - The ARN of an Amazon QuickSight user, group, or namespace associated with an analysis, dashboard, template, or theme. (This is common.) - The ARN of an AWS account root: This is an IAM ARN rather than a QuickSight ARN. Use this option only to share resources (templates) across AWS accounts . (This is less common.)
|
|
146240
146240
|
|
|
146241
146241
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dataset-resourcepermission.html
|
|
146242
146242
|
:exampleMetadata: fixture=_generated
|
|
@@ -146277,7 +146277,7 @@ class CfnDataSet(
|
|
|
146277
146277
|
|
|
146278
146278
|
- The ARN of an Amazon QuickSight user or group associated with a data source or dataset. (This is common.)
|
|
146279
146279
|
- The ARN of an Amazon QuickSight user, group, or namespace associated with an analysis, dashboard, template, or theme. (This is common.)
|
|
146280
|
-
- The ARN of an AWS account root: This is an IAM ARN rather than a
|
|
146280
|
+
- The ARN of an AWS account root: This is an IAM ARN rather than a QuickSight ARN. Use this option only to share resources (templates) across AWS accounts . (This is less common.)
|
|
146281
146281
|
|
|
146282
146282
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dataset-resourcepermission.html#cfn-quicksight-dataset-resourcepermission-principal
|
|
146283
146283
|
'''
|
|
@@ -151526,7 +151526,7 @@ class CfnDataSource(
|
|
|
151526
151526
|
'''Permission for the resource.
|
|
151527
151527
|
|
|
151528
151528
|
:param actions: The IAM action to grant or revoke permissions on.
|
|
151529
|
-
:param principal: The Amazon Resource Name (ARN) of the principal. This can be one of the following:. - The ARN of an Amazon QuickSight user or group associated with a data source or dataset. (This is common.) - The ARN of an Amazon QuickSight user, group, or namespace associated with an analysis, dashboard, template, or theme. (This is common.) - The ARN of an AWS account root: This is an IAM ARN rather than a
|
|
151529
|
+
:param principal: The Amazon Resource Name (ARN) of the principal. This can be one of the following:. - The ARN of an Amazon QuickSight user or group associated with a data source or dataset. (This is common.) - The ARN of an Amazon QuickSight user, group, or namespace associated with an analysis, dashboard, template, or theme. (This is common.) - The ARN of an AWS account root: This is an IAM ARN rather than a QuickSight ARN. Use this option only to share resources (templates) across AWS accounts . (This is less common.)
|
|
151530
151530
|
:param resource:
|
|
151531
151531
|
|
|
151532
151532
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-datasource-resourcepermission.html
|
|
@@ -151574,7 +151574,7 @@ class CfnDataSource(
|
|
|
151574
151574
|
|
|
151575
151575
|
- The ARN of an Amazon QuickSight user or group associated with a data source or dataset. (This is common.)
|
|
151576
151576
|
- The ARN of an Amazon QuickSight user, group, or namespace associated with an analysis, dashboard, template, or theme. (This is common.)
|
|
151577
|
-
- The ARN of an AWS account root: This is an IAM ARN rather than a
|
|
151577
|
+
- The ARN of an AWS account root: This is an IAM ARN rather than a QuickSight ARN. Use this option only to share resources (templates) across AWS accounts . (This is less common.)
|
|
151578
151578
|
|
|
151579
151579
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-datasource-resourcepermission.html#cfn-quicksight-datasource-resourcepermission-principal
|
|
151580
151580
|
'''
|
|
@@ -153691,7 +153691,7 @@ class CfnRefreshSchedule(
|
|
|
153691
153691
|
metaclass=jsii.JSIIMeta,
|
|
153692
153692
|
jsii_type="aws-cdk-lib.aws_quicksight.CfnRefreshSchedule",
|
|
153693
153693
|
):
|
|
153694
|
-
'''Creates a refresh schedule for a dataset in
|
|
153694
|
+
'''Creates a refresh schedule for a dataset in QuickSight .
|
|
153695
153695
|
|
|
153696
153696
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-quicksight-refreshschedule.html
|
|
153697
153697
|
:cloudformationResource: AWS::QuickSight::RefreshSchedule
|
|
@@ -153932,7 +153932,7 @@ class CfnRefreshSchedule(
|
|
|
153932
153932
|
) -> None:
|
|
153933
153933
|
'''A summary of a configured refresh schedule for a dataset.
|
|
153934
153934
|
|
|
153935
|
-
:param refresh_type: The type of refresh that a dataset undergoes. Valid values are as follows:. - ``FULL_REFRESH`` : A complete refresh of a dataset. - ``INCREMENTAL_REFRESH`` : A partial refresh of some rows of a dataset, based on the time window specified. For more information on full and incremental refreshes, see `Refreshing SPICE data <https://docs.aws.amazon.com/quicksight/latest/user/refreshing-imported-data.html>`_ in the *
|
|
153935
|
+
:param refresh_type: The type of refresh that a dataset undergoes. Valid values are as follows:. - ``FULL_REFRESH`` : A complete refresh of a dataset. - ``INCREMENTAL_REFRESH`` : A partial refresh of some rows of a dataset, based on the time window specified. For more information on full and incremental refreshes, see `Refreshing SPICE data <https://docs.aws.amazon.com/quicksight/latest/user/refreshing-imported-data.html>`_ in the *QuickSight User Guide* .
|
|
153936
153936
|
:param schedule_frequency: The frequency for the refresh schedule.
|
|
153937
153937
|
:param schedule_id: An identifier for the refresh schedule.
|
|
153938
153938
|
:param start_after_date_time: Time after which the refresh schedule can be started, expressed in ``YYYY-MM-DDTHH:MM:SS`` format.
|
|
@@ -153984,7 +153984,7 @@ class CfnRefreshSchedule(
|
|
|
153984
153984
|
- ``FULL_REFRESH`` : A complete refresh of a dataset.
|
|
153985
153985
|
- ``INCREMENTAL_REFRESH`` : A partial refresh of some rows of a dataset, based on the time window specified.
|
|
153986
153986
|
|
|
153987
|
-
For more information on full and incremental refreshes, see `Refreshing SPICE data <https://docs.aws.amazon.com/quicksight/latest/user/refreshing-imported-data.html>`_ in the *
|
|
153987
|
+
For more information on full and incremental refreshes, see `Refreshing SPICE data <https://docs.aws.amazon.com/quicksight/latest/user/refreshing-imported-data.html>`_ in the *QuickSight User Guide* .
|
|
153988
153988
|
|
|
153989
153989
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-refreshschedule-refreshschedulemap.html#cfn-quicksight-refreshschedule-refreshschedulemap-refreshtype
|
|
153990
153990
|
'''
|
|
@@ -154266,11 +154266,11 @@ class CfnTemplate(
|
|
|
154266
154266
|
metaclass=jsii.JSIIMeta,
|
|
154267
154267
|
jsii_type="aws-cdk-lib.aws_quicksight.CfnTemplate",
|
|
154268
154268
|
):
|
|
154269
|
-
'''Creates a template from an existing
|
|
154269
|
+
'''Creates a template from an existing QuickSight analysis or template.
|
|
154270
154270
|
|
|
154271
154271
|
You can use the resulting template to create a dashboard.
|
|
154272
154272
|
|
|
154273
|
-
A *template* is an entity in
|
|
154273
|
+
A *template* is an entity in 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.
|
|
154274
154274
|
|
|
154275
154275
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-quicksight-template.html
|
|
154276
154276
|
:cloudformationResource: AWS::QuickSight::Template
|
|
@@ -202437,7 +202437,7 @@ class CfnTemplate(
|
|
|
202437
202437
|
'''Permission for the resource.
|
|
202438
202438
|
|
|
202439
202439
|
:param actions: The IAM action to grant or revoke permissions on.
|
|
202440
|
-
:param principal: The Amazon Resource Name (ARN) of the principal. This can be one of the following:. - The ARN of an Amazon QuickSight user or group associated with a data source or dataset. (This is common.) - The ARN of an Amazon QuickSight user, group, or namespace associated with an analysis, dashboard, template, or theme. (This is common.) - The ARN of an AWS account root: This is an IAM ARN rather than a
|
|
202440
|
+
:param principal: The Amazon Resource Name (ARN) of the principal. This can be one of the following:. - The ARN of an Amazon QuickSight user or group associated with a data source or dataset. (This is common.) - The ARN of an Amazon QuickSight user, group, or namespace associated with an analysis, dashboard, template, or theme. (This is common.) - The ARN of an AWS account root: This is an IAM ARN rather than a QuickSight ARN. Use this option only to share resources (templates) across AWS accounts . (This is less common.)
|
|
202441
202441
|
:param resource:
|
|
202442
202442
|
|
|
202443
202443
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-template-resourcepermission.html
|
|
@@ -202485,7 +202485,7 @@ class CfnTemplate(
|
|
|
202485
202485
|
|
|
202486
202486
|
- The ARN of an Amazon QuickSight user or group associated with a data source or dataset. (This is common.)
|
|
202487
202487
|
- The ARN of an Amazon QuickSight user, group, or namespace associated with an analysis, dashboard, template, or theme. (This is common.)
|
|
202488
|
-
- The ARN of an AWS account root: This is an IAM ARN rather than a
|
|
202488
|
+
- The ARN of an AWS account root: This is an IAM ARN rather than a QuickSight ARN. Use this option only to share resources (templates) across AWS accounts . (This is less common.)
|
|
202489
202489
|
|
|
202490
202490
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-template-resourcepermission.html#cfn-quicksight-template-resourcepermission-principal
|
|
202491
202491
|
'''
|
|
@@ -220977,7 +220977,7 @@ class CfnTheme(
|
|
|
220977
220977
|
'''Permission for the resource.
|
|
220978
220978
|
|
|
220979
220979
|
:param actions: The IAM action to grant or revoke permissions on.
|
|
220980
|
-
:param principal: The Amazon Resource Name (ARN) of the principal. This can be one of the following:. - The ARN of an Amazon QuickSight user or group associated with a data source or dataset. (This is common.) - The ARN of an Amazon QuickSight user, group, or namespace associated with an analysis, dashboard, template, or theme. (This is common.) - The ARN of an AWS account root: This is an IAM ARN rather than a
|
|
220980
|
+
:param principal: The Amazon Resource Name (ARN) of the principal. This can be one of the following:. - The ARN of an Amazon QuickSight user or group associated with a data source or dataset. (This is common.) - The ARN of an Amazon QuickSight user, group, or namespace associated with an analysis, dashboard, template, or theme. (This is common.) - The ARN of an AWS account root: This is an IAM ARN rather than a QuickSight ARN. Use this option only to share resources (templates) across AWS accounts . (This is less common.)
|
|
220981
220981
|
:param resource:
|
|
220982
220982
|
|
|
220983
220983
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-theme-resourcepermission.html
|
|
@@ -221025,7 +221025,7 @@ class CfnTheme(
|
|
|
221025
221025
|
|
|
221026
221026
|
- The ARN of an Amazon QuickSight user or group associated with a data source or dataset. (This is common.)
|
|
221027
221027
|
- The ARN of an Amazon QuickSight user, group, or namespace associated with an analysis, dashboard, template, or theme. (This is common.)
|
|
221028
|
-
- The ARN of an AWS account root: This is an IAM ARN rather than a
|
|
221028
|
+
- The ARN of an AWS account root: This is an IAM ARN rather than a QuickSight ARN. Use this option only to share resources (templates) across AWS accounts . (This is less common.)
|
|
221029
221029
|
|
|
221030
221030
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-theme-resourcepermission.html#cfn-quicksight-theme-resourcepermission-principal
|
|
221031
221031
|
'''
|