Interface CfnDataSetPropsMixin.SharedColumnSemanticMetadataProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnDataSetPropsMixin.SharedColumnSemanticMetadataProperty.Jsii$Proxy
- Enclosing class:
CfnDataSetPropsMixin
@Stability(Stable)
public static interface CfnDataSetPropsMixin.SharedColumnSemanticMetadataProperty
extends software.amazon.jsii.JsiiSerializable
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.*;
SharedColumnSemanticMetadataProperty sharedColumnSemanticMetadataProperty = SharedColumnSemanticMetadataProperty.builder()
.columnNames(List.of("columnNames"))
.columnProperties(List.of(ColumnSemanticPropertyProperty.builder()
.additionalNotes(AdditionalNotesProperty.builder()
.text("text")
.build())
.description(ColumnDescriptionProperty.builder()
.text("text")
.build())
.semanticType(ColumnSemanticTypeProperty.builder()
.geographicalRole("geographicalRole")
.build())
.build()))
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classstatic final classAn implementation forCfnDataSetPropsMixin.SharedColumnSemanticMetadataProperty -
Method Summary
Modifier and TypeMethodDescriptionbuilder()default ObjectReturns union: eitherIResolvableor Listinvalid input: '<'eitherIResolvableorCfnDataSetPropsMixin.ColumnSemanticPropertyProperty>Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getColumnNames
- See Also:
-
getColumnProperties
Returns union: eitherIResolvableor Listinvalid input: '<'eitherIResolvableorCfnDataSetPropsMixin.ColumnSemanticPropertyProperty>- See Also:
-
builder
@Stability(Stable) static CfnDataSetPropsMixin.SharedColumnSemanticMetadataProperty.Builder builder()
-