Interface CfnFlowProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnFlowProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.138.0 (build 0ca7ee8)",
date="2026-07-22T17:37:32.280Z")
@Stability(Stable)
public interface CfnFlowProps
extends software.amazon.jsii.JsiiSerializable
Properties for defining a
CfnFlow.
Example:
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import software.amazon.awscdk.services.quicksight.*;
Object flowDefinition;
CfnFlowProps cfnFlowProps = CfnFlowProps.builder()
.awsAccountId("awsAccountId")
.flowDefinition(flowDefinition)
.name("name")
// the properties below are optional
.description("description")
.permissions(List.of(PermissionProperty.builder()
.actions(List.of("actions"))
.principal("principal")
.build()))
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnFlowPropsstatic final classAn implementation forCfnFlowProps -
Method Summary
Modifier and TypeMethodDescriptionstatic CfnFlowProps.Builderbuilder()default StringgetName()default ObjectReturns union: eitherIResolvableor Listinvalid input: '<'eitherIResolvableorCfnFlow.PermissionProperty>Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getAwsAccountId
- See Also:
-
getFlowDefinition
- See Also:
-
getName
- See Also:
-
getDescription
- See Also:
-
getPermissions
Returns union: eitherIResolvableor Listinvalid input: '<'eitherIResolvableorCfnFlow.PermissionProperty>- See Also:
-
builder
- Returns:
- a
CfnFlowProps.BuilderofCfnFlowProps
-