Interface CfnTemplate.CustomActionSetParametersOperationProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnTemplate.CustomActionSetParametersOperationProperty.Jsii$Proxy
- Enclosing class:
- CfnTemplate
@Stability(Stable)
public static interface CfnTemplate.CustomActionSetParametersOperationProperty
extends software.amazon.jsii.JsiiSerializable
The set parameter operation that sets parameters in custom action.
Example:
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import software.amazon.awscdk.services.quicksight.*;
CustomActionSetParametersOperationProperty customActionSetParametersOperationProperty = 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())
// the properties below are optional
.includeNullValue(false)
.build())
.selectAllValueOptions("selectAllValueOptions")
.sourceField("sourceField")
.sourceParameterName("sourceParameterName")
.build())
.build()))
.build();
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnTemplate.CustomActionSetParametersOperationPropertystatic final classAn implementation forCfnTemplate.CustomActionSetParametersOperationProperty -
Method Summary
Modifier and TypeMethodDescriptionbuilder()The parameter that determines the value configuration.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getParameterValueConfigurations
The parameter that determines the value configuration. -
builder
-