interface SourceApiAssociationAttributes
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.AppSync.SourceApiAssociationAttributes |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsappsync#SourceApiAssociationAttributes |
Java | software.amazon.awscdk.services.appsync.SourceApiAssociationAttributes |
Python | aws_cdk.aws_appsync.SourceApiAssociationAttributes |
TypeScript (source) | aws-cdk-lib » aws_appsync » SourceApiAssociationAttributes |
The attributes for imported AppSync Source Api Association.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_appsync as appsync } from 'aws-cdk-lib';
declare const graphqlApi: appsync.GraphqlApi;
const sourceApiAssociationAttributes: appsync.SourceApiAssociationAttributes = {
associationArn: 'associationArn',
mergedApi: graphqlApi,
sourceApi: graphqlApi,
};
Properties
| Name | Type | Description |
|---|---|---|
| association | string | The association arn. |
| merged | IGraphql | The merged api in the association. |
| source | IGraphql | The source api in the association. |
associationArn
Type:
string
The association arn.
mergedApi
Type:
IGraphql
The merged api in the association.
sourceApi
Type:
IGraphql
The source api in the association.

.NET
Go
Java
Python
TypeScript (