interface DataIntegrationReference
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Interfaces.AppIntegrations.DataIntegrationReference |
Go | github.com/aws/aws-cdk-go/awscdk/v2/interfaces/awsappintegrations#DataIntegrationReference |
Java | software.amazon.awscdk.interfaces.appintegrations.DataIntegrationReference |
Python | aws_cdk.interfaces.aws_appintegrations.DataIntegrationReference |
TypeScript | aws-cdk-lib » interfaces » aws_appintegrations » DataIntegrationReference |
A reference to a DataIntegration resource.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_appintegrations as interfaces_appintegrations } from 'aws-cdk-lib/interfaces';
const dataIntegrationReference: interfaces_appintegrations.DataIntegrationReference = {
dataIntegrationArn: 'dataIntegrationArn',
dataIntegrationId: 'dataIntegrationId',
};
Properties
| Name | Type | Description |
|---|---|---|
| data | string | The ARN of the DataIntegration resource. |
| data | string | The Id of the DataIntegration resource. |
dataIntegrationArn
Type:
string
The ARN of the DataIntegration resource.
dataIntegrationId
Type:
string
The Id of the DataIntegration resource.

.NET
Go
Java
Python
TypeScript