interface PluginReference
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Interfaces.QBusiness.PluginReference |
Go | github.com/aws/aws-cdk-go/awscdk/v2/interfaces/awsqbusiness#PluginReference |
Java | software.amazon.awscdk.interfaces.qbusiness.PluginReference |
Python | aws_cdk.interfaces.aws_qbusiness.PluginReference |
TypeScript | aws-cdk-lib » interfaces » aws_qbusiness » PluginReference |
A reference to a Plugin resource.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_qbusiness as interfaces_qbusiness } from 'aws-cdk-lib/interfaces';
const pluginReference: interfaces_qbusiness.PluginReference = {
applicationId: 'applicationId',
pluginArn: 'pluginArn',
pluginId: 'pluginId',
};
Properties
| Name | Type | Description |
|---|---|---|
| application | string | The ApplicationId of the Plugin resource. |
| plugin | string | The ARN of the Plugin resource. |
| plugin | string | The PluginId of the Plugin resource. |
applicationId
Type:
string
The ApplicationId of the Plugin resource.
pluginArn
Type:
string
The ARN of the Plugin resource.
pluginId
Type:
string
The PluginId of the Plugin resource.

.NET
Go
Java
Python
TypeScript