Interface CfnAnalysis.CustomActionURLOperationProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnAnalysis.CustomActionURLOperationProperty.Jsii$Proxy
- Enclosing class:
CfnAnalysis
@Stability(Stable)
public static interface CfnAnalysis.CustomActionURLOperationProperty
extends software.amazon.jsii.JsiiSerializable
The URL operation that opens a link to another webpage.
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.*; CustomActionURLOperationProperty customActionURLOperationProperty = CustomActionURLOperationProperty.builder() .urlTarget("urlTarget") .urlTemplate("urlTemplate") .build();
- See Also:
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic final class
A builder forCfnAnalysis.CustomActionURLOperationProperty
static final class
An implementation forCfnAnalysis.CustomActionURLOperationProperty
-
Method Summary
Modifier and TypeMethodDescriptionbuilder()
The target of theCustomActionURLOperation
.THe URL link of theCustomActionURLOperation
.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getUrlTarget
The target of theCustomActionURLOperation
.Valid values are defined as follows:
NEW_TAB
: Opens the target URL in a new browser tab.NEW_WINDOW
: Opens the target URL in a new browser window.SAME_TAB
: Opens the target URL in the same browser tab.
- See Also:
-
getUrlTemplate
THe URL link of theCustomActionURLOperation
.- See Also:
-
builder
-