aws-cdk-lib.aws_appsync.CfnSourceApiAssociation.SourceApiAssociationConfigProperty

interface SourceApiAssociationConfigProperty

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

Describes properties used to specify configurations related to a source API.

This is a property of the AWS:AppSync:SourceApiAssociation type.

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 sourceApiAssociationConfigProperty: appsync.CfnSourceApiAssociation.SourceApiAssociationConfigProperty = {
  mergeType: 'mergeType',
};

Properties

NameTypeDescription
mergeType?stringThe property that indicates which merging option is enabled in the source API association.

mergeType?

Type: string (optional)

The property that indicates which merging option is enabled in the source API association.

Valid merge types are MANUAL_MERGE (default) and AUTO_MERGE . Manual merges are the default behavior and require the user to trigger any changes from the source APIs to the merged API manually. Auto merges subscribe the merged API to the changes performed on the source APIs so that any change in the source APIs are also made to the merged API. Auto merges use MergedApiExecutionRoleArn to perform merge operations.

The following values are valid:

MANUAL_MERGE | AUTO_MERGE