interface CfnFlowProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.QuickSight.CfnFlowProps |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsquicksight#CfnFlowProps |
Java | software.amazon.awscdk.services.quicksight.CfnFlowProps |
Python | aws_cdk.aws_quicksight.CfnFlowProps |
TypeScript | aws-cdk-lib » aws_quicksight » CfnFlowProps |
Properties for defining a CfnFlow.
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-lib';
declare const flowDefinition: any;
const cfnFlowProps: quicksight.CfnFlowProps = {
awsAccountId: 'awsAccountId',
flowDefinition: flowDefinition,
name: 'name',
// the properties below are optional
description: 'description',
permissions: [{
actions: ['actions'],
principal: 'principal',
}],
};
Properties
| Name | Type | Description |
|---|---|---|
| aws | string | |
| flow | any | |
| name | string | |
| description? | string | |
| permissions? | IResolvable | (IResolvable | Permission)[] |
awsAccountId
Type:
string
flowDefinition
Type:
any
name
Type:
string
description?
Type:
string
(optional)
permissions?
Type:
IResolvable | (IResolvable | Permission)[]
(optional)

.NET
Go
Java
Python
TypeScript