Interface CfnPlugin.CustomPluginConfigurationProperty

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

@Stability(Stable) public static interface CfnPlugin.CustomPluginConfigurationProperty extends software.amazon.jsii.JsiiSerializable
Configuration information required to create a custom plugin.

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.qbusiness.*;
 CustomPluginConfigurationProperty customPluginConfigurationProperty = CustomPluginConfigurationProperty.builder()
         .apiSchema(APISchemaProperty.builder()
                 .payload("payload")
                 .s3(S3Property.builder()
                         .bucket("bucket")
                         .key("key")
                         .build())
                 .build())
         .apiSchemaType("apiSchemaType")
         .description("description")
         .build();
 

See Also: