Interface CfnAnalysis.IntegerParameterDeclarationProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnAnalysis.IntegerParameterDeclarationProperty.Jsii$Proxy
- Enclosing class:
CfnAnalysis
@Stability(Stable)
public static interface CfnAnalysis.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.services.quicksight.*; IntegerParameterDeclarationProperty integerParameterDeclarationProperty = IntegerParameterDeclarationProperty.builder() .name("name") .parameterValueType("parameterValueType") // the properties below are optional .defaultValues(IntegerDefaultValuesProperty.builder() .dynamicValue(DynamicDefaultValueProperty.builder() .defaultValueColumn(ColumnIdentifierProperty.builder() .columnName("columnName") .dataSetIdentifier("dataSetIdentifier") .build()) // the properties below are optional .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())) .valueWhenUnset(IntegerValueWhenUnsetConfigurationProperty.builder() .customValue(123) .valueWhenUnsetOption("valueWhenUnsetOption") .build()) .build();
- See Also:
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic final class
A builder forCfnAnalysis.IntegerParameterDeclarationProperty
static final class
An implementation forCfnAnalysis.IntegerParameterDeclarationProperty
-
Method Summary
Modifier and TypeMethodDescriptionbuilder()
default Object
The default values of a parameter.default Object
getName()
The name of the parameter that is being declared.The value type determines whether the parameter is a single-value or multi-value parameter.default Object
A parameter declaration for theInteger
data type.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
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:
-
getDefaultValues
The default values of a parameter.If the parameter is a single-value parameter, a maximum of one default value can be provided.
- See Also:
-
getMappedDataSetParameters
- See Also:
-
getValueWhenUnset
A parameter declaration for theInteger
data type.- See Also:
-
builder
-