interface DataAccessorReference
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Interfaces.QBusiness.DataAccessorReference |
Go | github.com/aws/aws-cdk-go/awscdk/v2/interfaces/awsqbusiness#DataAccessorReference |
Java | software.amazon.awscdk.interfaces.qbusiness.DataAccessorReference |
Python | aws_cdk.interfaces.aws_qbusiness.DataAccessorReference |
TypeScript | aws-cdk-lib » interfaces » aws_qbusiness » DataAccessorReference |
A reference to a DataAccessor 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 dataAccessorReference: interfaces_qbusiness.DataAccessorReference = {
applicationId: 'applicationId',
dataAccessorArn: 'dataAccessorArn',
dataAccessorId: 'dataAccessorId',
};
Properties
| Name | Type | Description |
|---|---|---|
| application | string | The ApplicationId of the DataAccessor resource. |
| data | string | The ARN of the DataAccessor resource. |
| data | string | The DataAccessorId of the DataAccessor resource. |
applicationId
Type:
string
The ApplicationId of the DataAccessor resource.
dataAccessorArn
Type:
string
The ARN of the DataAccessor resource.
dataAccessorId
Type:
string
The DataAccessorId of the DataAccessor resource.

.NET
Go
Java
Python
TypeScript