PluginReference

class aws_cdk.aws_qbusiness.PluginReference(*, application_id, plugin_arn, plugin_id)

Bases: object

A reference to a Plugin resource.

Parameters:
  • application_id (str) – The ApplicationId of the Plugin resource.

  • plugin_arn (str) – The ARN of the Plugin resource.

  • plugin_id (str) – The PluginId of the Plugin resource.

ExampleMetadata:

fixture=_generated

Example:

# The code below shows an example of how to instantiate this type.
# The values are placeholders you should change.
from aws_cdk import aws_qbusiness as qbusiness

plugin_reference = qbusiness.PluginReference(
    application_id="applicationId",
    plugin_arn="pluginArn",
    plugin_id="pluginId"
)

Attributes

application_id

The ApplicationId of the Plugin resource.

plugin_arn

The ARN of the Plugin resource.

plugin_id

The PluginId of the Plugin resource.