Interface CfnAnalysis.MappedDataSetParameterProperty
- All Superinterfaces:
 software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
 CfnAnalysis.MappedDataSetParameterProperty.Jsii$Proxy
- Enclosing class:
 - CfnAnalysis
 
@Stability(Stable)
public static interface CfnAnalysis.MappedDataSetParameterProperty
extends software.amazon.jsii.JsiiSerializable
A dataset parameter that is mapped to an analysis parameter.
 
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.*;
 MappedDataSetParameterProperty mappedDataSetParameterProperty = MappedDataSetParameterProperty.builder()
         .dataSetIdentifier("dataSetIdentifier")
         .dataSetParameterName("dataSetParameterName")
         .build();
 - 
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnAnalysis.MappedDataSetParameterPropertystatic final classAn implementation forCfnAnalysis.MappedDataSetParameterProperty - 
Method Summary
Modifier and TypeMethodDescriptionbuilder()A unique name that identifies a dataset within the analysis or dashboard.The name of the dataset parameter.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson 
- 
Method Details
- 
getDataSetIdentifier
A unique name that identifies a dataset within the analysis or dashboard. - 
getDataSetParameterName
The name of the dataset parameter. - 
builder
 
 -