CfnFlowProps
- class aws_cdk.aws_quicksight.CfnFlowProps(*, aws_account_id, flow_definition, name, description=None, permissions=None)
Bases:
objectProperties for defining a
CfnFlow.- Parameters:
aws_account_id (
str)flow_definition (
Any)name (
str)description (
Optional[str])permissions (
Union[IResolvable,Sequence[Union[IResolvable,PermissionProperty,Dict[str,Any]]],None])
- See:
http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-quicksight-flow.html
- ExampleMetadata:
fixture=_generated
Example:
# The code below shows an example of how to instantiate this type. # The values are placeholders you should change. from aws_cdk import aws_quicksight as quicksight # flow_definition: Any cfn_flow_props = quicksight.CfnFlowProps( aws_account_id="awsAccountId", flow_definition=flow_definition, name="name", # the properties below are optional description="description", permissions=[quicksight.CfnFlow.PermissionProperty( actions=["actions"], principal="principal" )] )
Attributes
- aws_account_id
-
- Type:
see
- description
-
- Type:
see
- flow_definition
-
- Type:
see
- name
-
- Type:
see