Interface CfnDataSet.OutputColumnProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnDataSet.OutputColumnProperty.Jsii$Proxy
- Enclosing class:
CfnDataSet
@Stability(Stable)
public static interface CfnDataSet.OutputColumnProperty
extends software.amazon.jsii.JsiiSerializable
Output column.
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.*;
OutputColumnProperty outputColumnProperty = OutputColumnProperty.builder()
.description("description")
.id("id")
.name("name")
.subType("subType")
.type("type")
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnDataSet.OutputColumnPropertystatic final classAn implementation forCfnDataSet.OutputColumnProperty -
Method Summary
Modifier and TypeMethodDescriptionbuilder()default StringA description for a column.default StringgetId()A unique identifier for the output column.default StringgetName()The display name of the column..default StringThe sub data type of the column.default StringgetType()The data type of the column.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getDescription
A description for a column.- See Also:
-
getId
A unique identifier for the output column.- See Also:
-
getName
The display name of the column..- See Also:
-
getSubType
The sub data type of the column.- See Also:
-
getType
The data type of the column.- See Also:
-
builder
-