Interface CfnDataSet.DataSetSemanticMetadataProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnDataSet.DataSetSemanticMetadataProperty.Jsii$Proxy
- Enclosing class:
CfnDataSet
@Stability(Stable)
public static interface CfnDataSet.DataSetSemanticMetadataProperty
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.services.quicksight.*;
DataSetSemanticMetadataProperty dataSetSemanticMetadataProperty = DataSetSemanticMetadataProperty.builder()
.customInstructions(List.of(CustomInstructionProperty.builder()
.inlineCustomInstruction(InlineCustomInstructionProperty.builder()
.instructionText("instructionText")
// the properties below are optional
.uploadedDocumentMetadata(UploadedDocumentMetadataProperty.builder()
.name("name")
.build())
.build())
.build()))
.description(DataSetSemanticDescriptionProperty.builder()
.text("text")
.build())
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnDataSet.DataSetSemanticMetadataPropertystatic final classAn implementation forCfnDataSet.DataSetSemanticMetadataProperty -
Method Summary
Modifier and TypeMethodDescriptionbuilder()default ObjectReturns union: eitherIResolvableor Listinvalid input: '<'eitherIResolvableorCfnDataSet.CustomInstructionProperty>default ObjectReturns union: eitherIResolvableorCfnDataSet.DataSetSemanticDescriptionPropertyMethods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getCustomInstructions
Returns union: eitherIResolvableor Listinvalid input: '<'eitherIResolvableorCfnDataSet.CustomInstructionProperty>- See Also:
-
getDescription
Returns union: eitherIResolvableorCfnDataSet.DataSetSemanticDescriptionProperty- See Also:
-
builder
-