interface CustomActionURLOperationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.QuickSight.Mixins.CfnAnalysisPropsMixin.CustomActionURLOperationProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsquicksight/mixins#CfnAnalysisPropsMixin_CustomActionURLOperationProperty |
Java | software.amazon.awscdk.mixins.preview.services.quicksight.mixins.CfnAnalysisPropsMixin.CustomActionURLOperationProperty |
Python | aws_cdk.mixins_preview.aws_quicksight.mixins.CfnAnalysisPropsMixin.CustomActionURLOperationProperty |
TypeScript | @aws-cdk/mixins-preview » aws_quicksight » mixins » CfnAnalysisPropsMixin » 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 { mixins as quicksight_mixins } from '@aws-cdk/mixins-preview/aws-quicksight';
const customActionURLOperationProperty: quicksight_mixins.CfnAnalysisPropsMixin.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
(optional)
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
(optional)
THe URL link of the CustomActionURLOperation .

.NET
Go
Java
Python
TypeScript