interface SourceApiAssociationAttributes
Language | Type name |
---|---|
![]() | Amazon.CDK.AWS.AppSync.SourceApiAssociationAttributes |
![]() | github.com/aws/aws-cdk-go/awscdk/v2/awsappsync#SourceApiAssociationAttributes |
![]() | software.amazon.awscdk.services.appsync.SourceApiAssociationAttributes |
![]() | aws_cdk.aws_appsync.SourceApiAssociationAttributes |
![]() | 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.