CfnFlowProps

class aws_cdk.aws_quicksight.CfnFlowProps(*, aws_account_id, flow_definition, name, description=None, permissions=None)

Bases: object

Properties for defining a CfnFlow.

Parameters:
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

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-quicksight-flow.html#cfn-quicksight-flow-awsaccountid

Type:

see

description

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-quicksight-flow.html#cfn-quicksight-flow-description

Type:

see

flow_definition

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-quicksight-flow.html#cfn-quicksight-flow-flowdefinition

Type:

see

name

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-quicksight-flow.html#cfn-quicksight-flow-name

Type:

see

permissions

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-quicksight-flow.html#cfn-quicksight-flow-permissions

Type:

see