interface CustomPluginConfigurationProperty
Language | Type name |
---|---|
![]() | Amazon.CDK.aws_qbusiness.CfnPlugin.CustomPluginConfigurationProperty |
![]() | github.com/aws/aws-cdk-go/awscdk/v2/awsqbusiness#CfnPlugin_CustomPluginConfigurationProperty |
![]() | software.amazon.awscdk.services.qbusiness.CfnPlugin.CustomPluginConfigurationProperty |
![]() | aws_cdk.aws_qbusiness.CfnPlugin.CustomPluginConfigurationProperty |
![]() | aws-cdk-lib » aws_qbusiness » CfnPlugin » CustomPluginConfigurationProperty |
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 { aws_qbusiness as qbusiness } from 'aws-cdk-lib';
const customPluginConfigurationProperty: qbusiness.CfnPlugin.CustomPluginConfigurationProperty = {
apiSchema: {
payload: 'payload',
s3: {
bucket: 'bucket',
key: 'key',
},
},
apiSchemaType: 'apiSchemaType',
description: 'description',
};
Properties
Name | Type | Description |
---|---|---|
api | IResolvable | APISchema | 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. |
api | string | The type of OpenAPI schema to use. |
description | string | A description for your custom plugin configuration. |
apiSchema
Type:
IResolvable
|
APISchema
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.
apiSchemaType
Type:
string
The type of OpenAPI schema to use.
description
Type:
string
A description for your custom plugin configuration.