Show / Hide Table of Contents

Interface ISourceApiAssociationAttributes

The attributes for imported AppSync Source Api Association.

Namespace: Amazon.CDK.AWS.AppSync
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public interface ISourceApiAssociationAttributes
Syntax (vb)
Public Interface ISourceApiAssociationAttributes
Remarks

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;

            GraphqlApi graphqlApi;

            var sourceApiAssociationAttributes = new SourceApiAssociationAttributes {
                AssociationArn = "associationArn",
                MergedApi = graphqlApi,
                SourceApi = graphqlApi
            };

Synopsis

Properties

AssociationArn

The association arn.

MergedApi

The merged api in the association.

SourceApi

The source api in the association.

Properties

AssociationArn

The association arn.

string AssociationArn { get; }
Property Value

string

Remarks

ExampleMetadata: fixture=_generated

MergedApi

The merged api in the association.

IGraphqlApi MergedApi { get; }
Property Value

IGraphqlApi

Remarks

ExampleMetadata: fixture=_generated

SourceApi

The source api in the association.

IGraphqlApi SourceApi { get; }
Property Value

IGraphqlApi

Remarks

ExampleMetadata: fixture=_generated

Back to top Generated by DocFX