DataAccessorReference

class aws_cdk.aws_qbusiness.DataAccessorReference(*, application_id, data_accessor_arn, data_accessor_id)

Bases: object

A reference to a DataAccessor resource.

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

  • data_accessor_arn (str) – The ARN of the DataAccessor resource.

  • data_accessor_id (str) – The DataAccessorId of the DataAccessor 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

data_accessor_reference = qbusiness.DataAccessorReference(
    application_id="applicationId",
    data_accessor_arn="dataAccessorArn",
    data_accessor_id="dataAccessorId"
)

Attributes

application_id

The ApplicationId of the DataAccessor resource.

data_accessor_arn

The ARN of the DataAccessor resource.

data_accessor_id

The DataAccessorId of the DataAccessor resource.