Interface CfnTemplate.CustomActionNavigationOperationProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnTemplate.CustomActionNavigationOperationProperty.Jsii$Proxy
Enclosing class:
CfnTemplate

@Stability(Stable) public static interface CfnTemplate.CustomActionNavigationOperationProperty extends software.amazon.jsii.JsiiSerializable
The navigation operation that navigates between different sheets in the same analysis.

This is a union type structure. For this structure to be valid, only one of the attributes can be defined.

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.*;
 CustomActionNavigationOperationProperty customActionNavigationOperationProperty = CustomActionNavigationOperationProperty.builder()
         .localNavigationConfiguration(LocalNavigationConfigurationProperty.builder()
                 .targetSheetId("targetSheetId")
                 .build())
         .build();