interface CustomActionURLOperationProperty
| Language | Type name | 
|---|---|
|  .NET | Amazon.CDK.AWS.QuickSight.CfnDashboard.CustomActionURLOperationProperty | 
|  Java | software.amazon.awscdk.services.quicksight.CfnDashboard.CustomActionURLOperationProperty | 
|  Python | aws_cdk.aws_quicksight.CfnDashboard.CustomActionURLOperationProperty | 
|  TypeScript | @aws-cdk/aws-quicksight»CfnDashboard»CustomActionURLOperationProperty | 
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 * as quicksight from '@aws-cdk/aws-quicksight';
const customActionURLOperationProperty: quicksight.CfnDashboard.CustomActionURLOperationProperty = {
  urlTarget: 'urlTarget',
  urlTemplate: 'urlTemplate',
};
Properties
| Name | Type | Description | 
|---|---|---|
| url | string | The target of the CustomActionURLOperation. | 
| url | string | THe URL link of the CustomActionURLOperation. | 
urlTarget
Type:
string
The target of the CustomActionURLOperation .
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.
urlTemplate
Type:
string
THe URL link of the CustomActionURLOperation .
