CfnFlowPropsMixin
- class aws_cdk.cfn_property_mixins.aws_quicksight.CfnFlowPropsMixin(props, *, strategy=None)
Bases:
MixinDefinition 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
xis a Mixin.- Parameters:
x (
Any) – Any object.- Return type:
bool- Returns:
true if
xis an object created from a class which extendsMixin.
PermissionProperty
- class CfnFlowPropsMixin.PermissionProperty(*, actions=None, principal=None)
Bases:
object- Parameters:
actions (
Optional[Sequence[str]])principal (
Optional[str])
- See:
- 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
-
- Type:
see
StepAliasMappingProperty
- class CfnFlowPropsMixin.StepAliasMappingProperty(*, step_alias=None, step_id=None)
Bases:
object- Parameters:
step_alias (
Optional[str])step_id (
Optional[str])
- See:
- 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
-
- Type:
see