Interface CfnTemplatePropsMixin.DataSetConfigurationProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnTemplatePropsMixin.DataSetConfigurationProperty.Jsii$Proxy
- Enclosing class:
CfnTemplatePropsMixin
@Stability(Stable)
public static interface CfnTemplatePropsMixin.DataSetConfigurationProperty
extends software.amazon.jsii.JsiiSerializable
Dataset configuration.
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.*;
DataSetConfigurationProperty dataSetConfigurationProperty = DataSetConfigurationProperty.builder()
.columnGroupSchemaList(List.of(ColumnGroupSchemaProperty.builder()
.columnGroupColumnSchemaList(List.of(ColumnGroupColumnSchemaProperty.builder()
.name("name")
.build()))
.name("name")
.build()))
.dataSetSchema(DataSetSchemaProperty.builder()
.columnSchemaList(List.of(ColumnSchemaProperty.builder()
.dataType("dataType")
.geographicRole("geographicRole")
.name("name")
.build()))
.build())
.placeholder("placeholder")
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnTemplatePropsMixin.DataSetConfigurationPropertystatic final classAn implementation forCfnTemplatePropsMixin.DataSetConfigurationProperty -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getColumnGroupSchemaList
A structure containing the list of column group schemas.Returns union: either
IResolvableor Listinvalid input: '<'eitherIResolvableorCfnTemplatePropsMixin.ColumnGroupSchemaProperty>- See Also:
-
getDataSetSchema
Dataset schema.Returns union: either
IResolvableorCfnTemplatePropsMixin.DataSetSchemaProperty- See Also:
-
getPlaceholder
Placeholder.- See Also:
-
builder
-