Interface CfnDashboard.StringParameterDeclarationProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnDashboard.StringParameterDeclarationProperty.Jsii$Proxy
- Enclosing class:
CfnDashboard
@Stability(Stable)
public static interface CfnDashboard.StringParameterDeclarationProperty
extends software.amazon.jsii.JsiiSerializable
A parameter declaration for the
String 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.*;
StringParameterDeclarationProperty stringParameterDeclarationProperty = StringParameterDeclarationProperty.builder()
.name("name")
.parameterValueType("parameterValueType")
// the properties below are optional
.defaultValues(StringDefaultValuesProperty.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("staticValues"))
.build())
.mappedDataSetParameters(List.of(MappedDataSetParameterProperty.builder()
.dataSetIdentifier("dataSetIdentifier")
.dataSetParameterName("dataSetParameterName")
.build()))
.valueWhenUnset(StringValueWhenUnsetConfigurationProperty.builder()
.customValue("customValue")
.valueWhenUnsetOption("valueWhenUnsetOption")
.build())
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnDashboard.StringParameterDeclarationPropertystatic final classAn implementation forCfnDashboard.StringParameterDeclarationProperty -
Method Summary
Modifier and TypeMethodDescriptionbuilder()default ObjectThe default values of a parameter.default ObjectReturns union: eitherIResolvableor Listinvalid input: '<'eitherIResolvableorCfnDashboard.MappedDataSetParameterProperty>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 ObjectThe configuration that defines the default value of aStringparameter when a value has not been set.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.
Returns union: either
IResolvableorCfnDashboard.StringDefaultValuesProperty- See Also:
-
getMappedDataSetParameters
Returns union: eitherIResolvableor Listinvalid input: '<'eitherIResolvableorCfnDashboard.MappedDataSetParameterProperty>- See Also:
-
getValueWhenUnset
The configuration that defines the default value of aStringparameter when a value has not been set.Returns union: either
IResolvableorCfnDashboard.StringValueWhenUnsetConfigurationProperty- See Also:
-
builder
-