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:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnPlugin.CustomPluginConfigurationPropertystatic final classAn implementation forCfnPlugin.CustomPluginConfigurationProperty -
Method Summary
Modifier and TypeMethodDescriptionbuilder()Contains either details about the S3 object containing the OpenAPI schema for the action group or the JSON or YAML-formatted payload defining the schema.The type of OpenAPI schema to use.A description for your custom plugin configuration.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getApiSchema
Contains either details about the S3 object containing the OpenAPI schema for the action group or the JSON or YAML-formatted payload defining the schema.Returns union: either
IResolvableorCfnPlugin.APISchemaProperty- See Also:
-
getApiSchemaType
The type of OpenAPI schema to use.- See Also:
-
getDescription
A description for your custom plugin configuration.- See Also:
-
builder
-