Interface CfnDashboardPropsMixin.IntegerParameterDeclarationProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnDashboardPropsMixin.IntegerParameterDeclarationProperty.Jsii$Proxy
- Enclosing class:
CfnDashboardPropsMixin
@Stability(Stable)
public static interface CfnDashboardPropsMixin.IntegerParameterDeclarationProperty
extends software.amazon.jsii.JsiiSerializable
A parameter declaration for the
Integer data type.
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.*;
IntegerParameterDeclarationProperty integerParameterDeclarationProperty = IntegerParameterDeclarationProperty.builder()
.defaultValues(IntegerDefaultValuesProperty.builder()
.dynamicValue(DynamicDefaultValueProperty.builder()
.defaultValueColumn(ColumnIdentifierProperty.builder()
.columnName("columnName")
.dataSetIdentifier("dataSetIdentifier")
.build())
.groupNameColumn(ColumnIdentifierProperty.builder()
.columnName("columnName")
.dataSetIdentifier("dataSetIdentifier")
.build())
.userNameColumn(ColumnIdentifierProperty.builder()
.columnName("columnName")
.dataSetIdentifier("dataSetIdentifier")
.build())
.build())
.staticValues(List.of(123))
.build())
.mappedDataSetParameters(List.of(MappedDataSetParameterProperty.builder()
.dataSetIdentifier("dataSetIdentifier")
.dataSetParameterName("dataSetParameterName")
.build()))
.name("name")
.parameterValueType("parameterValueType")
.valueWhenUnset(IntegerValueWhenUnsetConfigurationProperty.builder()
.customValue(123)
.valueWhenUnsetOption("valueWhenUnsetOption")
.build())
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classstatic final classAn implementation forCfnDashboardPropsMixin.IntegerParameterDeclarationProperty -
Method Summary
Modifier and TypeMethodDescriptionbuilder()default ObjectThe default values of a parameter.default ObjectReturns union: eitherIResolvableor Listinvalid input: '<'eitherIResolvableorCfnDashboardPropsMixin.MappedDataSetParameterProperty>default StringgetName()The name of the parameter that is being declared.default StringThe value type determines whether the parameter is a single-value or multi-value parameter.default ObjectA parameter declaration for theIntegerdata type.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getDefaultValues
The default values of a parameter.If the parameter is a single-value parameter, a maximum of one default value can be provided.
Returns union: either
IResolvableorCfnDashboardPropsMixin.IntegerDefaultValuesProperty- See Also:
-
getMappedDataSetParameters
Returns union: eitherIResolvableor Listinvalid input: '<'eitherIResolvableorCfnDashboardPropsMixin.MappedDataSetParameterProperty>- See Also:
-
getName
The name of the parameter that is being declared.- See Also:
-
getParameterValueType
The value type determines whether the parameter is a single-value or multi-value parameter.- See Also:
-
getValueWhenUnset
A parameter declaration for theIntegerdata type.Returns union: either
IResolvableorCfnDashboardPropsMixin.IntegerValueWhenUnsetConfigurationProperty- See Also:
-
builder
@Stability(Stable) static CfnDashboardPropsMixin.IntegerParameterDeclarationProperty.Builder builder()
-