Interface CfnTemplatePropsMixin.ImageCustomActionOperationProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnTemplatePropsMixin.ImageCustomActionOperationProperty.Jsii$Proxy
- Enclosing class:
CfnTemplatePropsMixin
@Stability(Stable)
public static interface CfnTemplatePropsMixin.ImageCustomActionOperationProperty
extends software.amazon.jsii.JsiiSerializable
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 software.amazon.awscdk.cfnpropertymixins.services.quicksight.*;
ImageCustomActionOperationProperty imageCustomActionOperationProperty = ImageCustomActionOperationProperty.builder()
.navigationOperation(CustomActionNavigationOperationProperty.builder()
.localNavigationConfiguration(LocalNavigationConfigurationProperty.builder()
.targetSheetId("targetSheetId")
.build())
.build())
.setParametersOperation(CustomActionSetParametersOperationProperty.builder()
.parameterValueConfigurations(List.of(SetParameterValueConfigurationProperty.builder()
.destinationParameterName("destinationParameterName")
.value(DestinationParameterValueConfigurationProperty.builder()
.customValuesConfiguration(CustomValuesConfigurationProperty.builder()
.customValues(CustomParameterValuesProperty.builder()
.dateTimeValues(List.of("dateTimeValues"))
.decimalValues(List.of(123))
.integerValues(List.of(123))
.stringValues(List.of("stringValues"))
.build())
.includeNullValue(false)
.build())
.selectAllValueOptions("selectAllValueOptions")
.sourceColumn(ColumnIdentifierProperty.builder()
.columnName("columnName")
.dataSetIdentifier("dataSetIdentifier")
.build())
.sourceField("sourceField")
.sourceParameterName("sourceParameterName")
.build())
.build()))
.build())
.urlOperation(CustomActionURLOperationProperty.builder()
.urlTarget("urlTarget")
.urlTemplate("urlTemplate")
.build())
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnTemplatePropsMixin.ImageCustomActionOperationPropertystatic final classAn implementation forCfnTemplatePropsMixin.ImageCustomActionOperationProperty -
Method Summary
Modifier and TypeMethodDescriptionbuilder()default ObjectReturns union: eitherIResolvableorCfnTemplatePropsMixin.CustomActionNavigationOperationPropertydefault ObjectReturns union: eitherIResolvableorCfnTemplatePropsMixin.CustomActionSetParametersOperationPropertydefault ObjectReturns union: eitherIResolvableorCfnTemplatePropsMixin.CustomActionURLOperationPropertyMethods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getSetParametersOperation
Returns union: eitherIResolvableorCfnTemplatePropsMixin.CustomActionSetParametersOperationProperty- See Also:
-
getUrlOperation
Returns union: eitherIResolvableorCfnTemplatePropsMixin.CustomActionURLOperationProperty- See Also:
-
builder
@Stability(Stable) static CfnTemplatePropsMixin.ImageCustomActionOperationProperty.Builder builder()