Interface CfnDataSet.ParentDataSetProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnDataSet.ParentDataSetProperty.Jsii$Proxy
- Enclosing class:
CfnDataSet
@Stability(Stable)
public static interface CfnDataSet.ParentDataSetProperty
extends software.amazon.jsii.JsiiSerializable
References a parent dataset that serves as a data source, including its columns and metadata.
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.*;
ParentDataSetProperty parentDataSetProperty = ParentDataSetProperty.builder()
.dataSetArn("dataSetArn")
.inputColumns(List.of(InputColumnProperty.builder()
.name("name")
.type("type")
// the properties below are optional
.id("id")
.subType("subType")
.build()))
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnDataSet.ParentDataSetPropertystatic final classAn implementation forCfnDataSet.ParentDataSetProperty -
Method Summary
Modifier and TypeMethodDescriptionbuilder()The Amazon Resource Name (ARN) of the parent dataset.The list of input columns available from the parent dataset.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getDataSetArn
The Amazon Resource Name (ARN) of the parent dataset.- See Also:
-
getInputColumns
The list of input columns available from the parent dataset.Returns union: either
IResolvableor Listinvalid input: '<'eitherIResolvableorCfnDataSet.InputColumnProperty>- See Also:
-
builder
-