Interface CfnDataSet.CustomInstructionProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnDataSet.CustomInstructionProperty.Jsii$Proxy
Enclosing class:
CfnDataSet

@Stability(Stable) public static interface CfnDataSet.CustomInstructionProperty 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.*;
 CustomInstructionProperty customInstructionProperty = CustomInstructionProperty.builder()
         .inlineCustomInstruction(InlineCustomInstructionProperty.builder()
                 .instructionText("instructionText")
                 // the properties below are optional
                 .uploadedDocumentMetadata(UploadedDocumentMetadataProperty.builder()
                         .name("name")
                         .build())
                 .build())
         .build();
 

See Also: