aws-cdk-lib.aws_appsync.CfnSourceApiAssociationProps

interface CfnSourceApiAssociationProps

LanguageType name
.NETAmazon.CDK.AWS.AppSync.CfnSourceApiAssociationProps
Gogithub.com/aws/aws-cdk-go/awscdk/v2/awsappsync#CfnSourceApiAssociationProps
Javasoftware.amazon.awscdk.services.appsync.CfnSourceApiAssociationProps
Pythonaws_cdk.aws_appsync.CfnSourceApiAssociationProps
TypeScript aws-cdk-lib » aws_appsync » CfnSourceApiAssociationProps

Properties for defining a CfnSourceApiAssociation.

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';
const cfnSourceApiAssociationProps: appsync.CfnSourceApiAssociationProps = {
  description: 'description',
  mergedApiIdentifier: 'mergedApiIdentifier',
  sourceApiAssociationConfig: {
    mergeType: 'mergeType',
  },
  sourceApiIdentifier: 'sourceApiIdentifier',
};

Properties

NameTypeDescription
description?stringThe description field of the association configuration.
mergedApiIdentifier?stringThe identifier of the AppSync Merged API.
sourceApiAssociationConfig?IResolvable | SourceApiAssociationConfigPropertyThe SourceApiAssociationConfig object data.
sourceApiIdentifier?stringThe identifier of the AppSync Source API.

description?

Type: string (optional)

The description field of the association configuration.


mergedApiIdentifier?

Type: string (optional)

The identifier of the AppSync Merged API.

This is generated by the AppSync service. In most cases, Merged APIs (especially in your account) only require the API ID value or ARN of the merged API. However, Merged APIs from other accounts (cross-account use cases) strictly require the full resource ARN of the merged API.


sourceApiAssociationConfig?

Type: IResolvable | SourceApiAssociationConfigProperty (optional)

The SourceApiAssociationConfig object data.


sourceApiIdentifier?

Type: string (optional)

The identifier of the AppSync Source API.

This is generated by the AppSync service. In most cases, source APIs (especially in your account) only require the API ID value or ARN of the source API. However, source APIs from other accounts (cross-account use cases) strictly require the full resource ARN of the source API.