Interface CfnDataSetPropsMixin.ParentDataSetProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnDataSetPropsMixin.ParentDataSetProperty.Jsii$Proxy
- Enclosing class:
CfnDataSetPropsMixin
@Stability(Stable)
public static interface CfnDataSetPropsMixin.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.cfnpropertymixins.services.quicksight.*;
ParentDataSetProperty parentDataSetProperty = ParentDataSetProperty.builder()
.dataSetArn("dataSetArn")
.inputColumns(List.of(InputColumnProperty.builder()
.id("id")
.name("name")
.subType("subType")
.type("type")
.build()))
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnDataSetPropsMixin.ParentDataSetPropertystatic final classAn implementation forCfnDataSetPropsMixin.ParentDataSetProperty -
Method Summary
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: '<'eitherIResolvableorCfnDataSetPropsMixin.InputColumnProperty>- See Also:
-
builder
-