interface VisualCustomActionOperationProperty
Language | Type name |
---|---|
.NET | Amazon.CDK.AWS.QuickSight.CfnAnalysis.VisualCustomActionOperationProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsquicksight#CfnAnalysis_VisualCustomActionOperationProperty |
Java | software.amazon.awscdk.services.quicksight.CfnAnalysis.VisualCustomActionOperationProperty |
Python | aws_cdk.aws_quicksight.CfnAnalysis.VisualCustomActionOperationProperty |
TypeScript | aws-cdk-lib » aws_quicksight » CfnAnalysis » VisualCustomActionOperationProperty |
The operation that is defined by the custom action.
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 { aws_quicksight as quicksight } from 'aws-cdk-lib';
const visualCustomActionOperationProperty: quicksight.CfnAnalysis.VisualCustomActionOperationProperty = {
filterOperation: {
selectedFieldsConfiguration: {
selectedColumns: [{
columnName: 'columnName',
dataSetIdentifier: 'dataSetIdentifier',
}],
selectedFieldOptions: 'selectedFieldOptions',
selectedFields: ['selectedFields'],
},
targetVisualsConfiguration: {
sameSheetTargetVisualConfiguration: {
targetVisualOptions: 'targetVisualOptions',
targetVisuals: ['targetVisuals'],
},
},
},
navigationOperation: {
localNavigationConfiguration: {
targetSheetId: 'targetSheetId',
},
},
setParametersOperation: {
parameterValueConfigurations: [{
destinationParameterName: 'destinationParameterName',
value: {
customValuesConfiguration: {
customValues: {
dateTimeValues: ['dateTimeValues'],
decimalValues: [123],
integerValues: [123],
stringValues: ['stringValues'],
},
// the properties below are optional
includeNullValue: false,
},
selectAllValueOptions: 'selectAllValueOptions',
sourceColumn: {
columnName: 'columnName',
dataSetIdentifier: 'dataSetIdentifier',
},
sourceField: 'sourceField',
sourceParameterName: 'sourceParameterName',
},
}],
},
urlOperation: {
urlTarget: 'urlTarget',
urlTemplate: 'urlTemplate',
},
};
Properties
Name | Type | Description |
---|---|---|
filter | IResolvable | Custom | The filter operation that filters data included in a visual or in an entire sheet. |
navigation | IResolvable | Custom | The navigation operation that navigates between different sheets in the same analysis. |
set | IResolvable | Custom | The set parameter operation that sets parameters in custom action. |
url | IResolvable | Custom | The URL operation that opens a link to another webpage. |
filterOperation?
Type:
IResolvable
|
Custom
(optional)
The filter operation that filters data included in a visual or in an entire sheet.
navigationOperation?
Type:
IResolvable
|
Custom
(optional)
The navigation operation that navigates between different sheets in the same analysis.
setParametersOperation?
Type:
IResolvable
|
Custom
(optional)
The set parameter operation that sets parameters in custom action.
urlOperation?
Type:
IResolvable
|
Custom
(optional)
The URL operation that opens a link to another webpage.