interface ImageCustomActionProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.QuickSight.Mixins.CfnDashboardPropsMixin.ImageCustomActionProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsquicksight/mixins#CfnDashboardPropsMixin_ImageCustomActionProperty |
Java | software.amazon.awscdk.mixins.preview.services.quicksight.mixins.CfnDashboardPropsMixin.ImageCustomActionProperty |
Python | aws_cdk.mixins_preview.aws_quicksight.mixins.CfnDashboardPropsMixin.ImageCustomActionProperty |
TypeScript | @aws-cdk/mixins-preview » aws_quicksight » mixins » CfnDashboardPropsMixin » ImageCustomActionProperty |
A custom action defined on an image.
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 imageCustomActionProperty: quicksight_mixins.CfnDashboardPropsMixin.ImageCustomActionProperty = {
actionOperations: [{
navigationOperation: {
localNavigationConfiguration: {
targetSheetId: 'targetSheetId',
},
},
setParametersOperation: {
parameterValueConfigurations: [{
destinationParameterName: 'destinationParameterName',
value: {
customValuesConfiguration: {
customValues: {
dateTimeValues: ['dateTimeValues'],
decimalValues: [123],
integerValues: [123],
stringValues: ['stringValues'],
},
includeNullValue: false,
},
selectAllValueOptions: 'selectAllValueOptions',
sourceColumn: {
columnName: 'columnName',
dataSetIdentifier: 'dataSetIdentifier',
},
sourceField: 'sourceField',
sourceParameterName: 'sourceParameterName',
},
}],
},
urlOperation: {
urlTarget: 'urlTarget',
urlTemplate: 'urlTemplate',
},
}],
customActionId: 'customActionId',
name: 'name',
status: 'status',
trigger: 'trigger',
};
Properties
| Name | Type | Description |
|---|---|---|
| action | IResolvable | (IResolvable | Image)[] | A list of ImageCustomActionOperations . |
| custom | string | The ID of the custom action. |
| name? | string | The name of the custom action. |
| status? | string | The status of the custom action. |
| trigger? | string | The trigger of the VisualCustomAction . |
actionOperations?
Type:
IResolvable | (IResolvable | Image)[]
(optional)
A list of ImageCustomActionOperations .
This is a union type structure. For this structure to be valid, only one of the attributes can be defined.
customActionId?
Type:
string
(optional)
The ID of the custom action.
name?
Type:
string
(optional)
The name of the custom action.
status?
Type:
string
(optional)
The status of the custom action.
trigger?
Type:
string
(optional)
The trigger of the VisualCustomAction .
Valid values are defined as follows:
CLICK: Initiates a custom action by a left pointer click on a data point.MENU: Initiates a custom action by right pointer click from the menu.

.NET
Go
Java
Python
TypeScript