Show / Hide Table of Contents

Class CfnSourceApiAssociation.SourceApiAssociationConfigProperty

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

Inheritance
object
CfnSourceApiAssociation.SourceApiAssociationConfigProperty
Implements
CfnSourceApiAssociation.ISourceApiAssociationConfigProperty
Inherited Members
object.GetType()
object.MemberwiseClone()
object.ToString()
object.Equals(object)
object.Equals(object, object)
object.ReferenceEquals(object, object)
object.GetHashCode()
Namespace: Amazon.CDK.AWS.AppSync
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class CfnSourceApiAssociation.SourceApiAssociationConfigProperty : CfnSourceApiAssociation.ISourceApiAssociationConfigProperty
Syntax (vb)
Public Class CfnSourceApiAssociation.SourceApiAssociationConfigProperty Implements CfnSourceApiAssociation.ISourceApiAssociationConfigProperty
Remarks

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

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appsync-sourceapiassociation-sourceapiassociationconfig.html

ExampleMetadata: fixture=_generated

Examples
// The code below shows an example of how to instantiate this type.
             // The values are placeholders you should change.
             using Amazon.CDK.AWS.AppSync;

             var sourceApiAssociationConfigProperty = new SourceApiAssociationConfigProperty {
                 MergeType = "mergeType"
             };

Synopsis

Constructors

SourceApiAssociationConfigProperty()

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

Properties

MergeType

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

Constructors

SourceApiAssociationConfigProperty()

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

public SourceApiAssociationConfigProperty()
Remarks

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

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appsync-sourceapiassociation-sourceapiassociationconfig.html

ExampleMetadata: fixture=_generated

Examples
// The code below shows an example of how to instantiate this type.
             // The values are placeholders you should change.
             using Amazon.CDK.AWS.AppSync;

             var sourceApiAssociationConfigProperty = new SourceApiAssociationConfigProperty {
                 MergeType = "mergeType"
             };

Properties

MergeType

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

public string? MergeType { get; set; }
Property Value

string

Remarks

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

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appsync-sourceapiassociation-sourceapiassociationconfig.html#cfn-appsync-sourceapiassociation-sourceapiassociationconfig-mergetype

Implements

CfnSourceApiAssociation.ISourceApiAssociationConfigProperty
Back to top Generated by DocFX