CfnFlowPropsMixin

class aws_cdk.cfn_property_mixins.aws_quicksight.CfnFlowPropsMixin(props, *, strategy=None)

Bases: Mixin

Definition of AWS::QuickSight::Flow Resource Type.

See:

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

CloudformationResource:

AWS::QuickSight::Flow

Mixin:

true

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.cfn_property_mixins import aws_quicksight as quicksight
import aws_cdk as cdk

# flow_definition: Any
# merge_strategy: cdk.IMergeStrategy

cfn_flow_props_mixin = quicksight.CfnFlowPropsMixin(quicksight.CfnFlowMixinProps(
    aws_account_id="awsAccountId",
    description="description",
    flow_definition=flow_definition,
    name="name",
    permissions=[quicksight.CfnFlowPropsMixin.PermissionProperty(
        actions=["actions"],
        principal="principal"
    )]
),
    strategy=merge_strategy
)

Create a mixin to apply properties to AWS::QuickSight::Flow.

Parameters:
  • props (Union[CfnFlowMixinProps, Dict[str, Any]]) – L1 properties to apply.

  • strategy (Optional[IMergeStrategy]) – Strategy for merging nested properties. Default: - PropertyMergeStrategy.combine()

Methods

apply_to(construct)

Apply the mixin properties to the construct.

Parameters:

construct (IConstruct)

Return type:

None

supports(construct)

Check if this mixin supports the given construct.

Parameters:

construct (IConstruct)

Return type:

bool

Attributes

CFN_PROPERTY_KEYS = ['awsAccountId', 'description', 'flowDefinition', 'name', 'permissions']

Static Methods

classmethod is_mixin(x)

Checks if x is a Mixin.

Parameters:

x (Any) – Any object.

Return type:

bool

Returns:

true if x is an object created from a class which extends Mixin.

PermissionProperty

class CfnFlowPropsMixin.PermissionProperty(*, actions=None, principal=None)

Bases: object

Parameters:
  • actions (Optional[Sequence[str]])

  • principal (Optional[str])

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-flow-permission.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.cfn_property_mixins import aws_quicksight as quicksight

permission_property = quicksight.CfnFlowPropsMixin.PermissionProperty(
    actions=["actions"],
    principal="principal"
)

Attributes

actions

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-flow-permission.html#cfn-quicksight-flow-permission-actions

Type:

see

principal

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-flow-permission.html#cfn-quicksight-flow-permission-principal

Type:

see

StepAliasMappingProperty

class CfnFlowPropsMixin.StepAliasMappingProperty(*, step_alias=None, step_id=None)

Bases: object

Parameters:
  • step_alias (Optional[str])

  • step_id (Optional[str])

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-flow-stepaliasmapping.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.cfn_property_mixins import aws_quicksight as quicksight

step_alias_mapping_property = quicksight.CfnFlowPropsMixin.StepAliasMappingProperty(
    step_alias="stepAlias",
    step_id="stepId"
)

Attributes

step_alias

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-flow-stepaliasmapping.html#cfn-quicksight-flow-stepaliasmapping-stepalias

Type:

see

step_id

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-flow-stepaliasmapping.html#cfn-quicksight-flow-stepaliasmapping-stepid

Type:

see