Interface CfnAnalysis.CustomActionNavigationOperationProperty

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

@Stability(Stable) public static interface CfnAnalysis.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();
 

See Also: