interface CfnFlowMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.QuickSight.CfnFlowMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsquicksight#CfnFlowMixinProps |
Java | software.amazon.awscdk.cfnpropertymixins.services.quicksight.CfnFlowMixinProps |
Python | aws_cdk.cfn_property_mixins.aws_quicksight.CfnFlowMixinProps |
TypeScript | @aws-cdk/cfn-property-mixins » aws_quicksight » CfnFlowMixinProps |
Properties for CfnFlowPropsMixin.
See also: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-quicksight-flow.html
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_quicksight as quicksight } from '@aws-cdk/cfn-property-mixins';
declare const flowDefinition: any;
const cfnFlowMixinProps: quicksight.CfnFlowMixinProps = {
awsAccountId: 'awsAccountId',
description: 'description',
flowDefinition: flowDefinition,
name: 'name',
permissions: [{
actions: ['actions'],
principal: 'principal',
}],
};
Properties
| Name | Type | Description |
|---|---|---|
| aws | string | |
| description? | string | |
| flow | any | |
| name? | string | |
| permissions? | IResolvable | (IResolvable | Permission)[] |
awsAccountId?
Type:
string
(optional)
description?
Type:
string
(optional)
flowDefinition?
Type:
any
(optional)
name?
Type:
string
(optional)
permissions?
Type:
IResolvable | (IResolvable | Permission)[]
(optional)

.NET
Go
Java
Python
TypeScript