Show / Hide Table of Contents

Class SourceApiAssociationAttributes

The attributes for imported AppSync Source Api Association.

Inheritance
object
SourceApiAssociationAttributes
Implements
ISourceApiAssociationAttributes
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 SourceApiAssociationAttributes : ISourceApiAssociationAttributes
Syntax (vb)
Public Class SourceApiAssociationAttributes Implements 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

Constructors

SourceApiAssociationAttributes()

The attributes for imported AppSync Source Api Association.

Properties

AssociationArn

The association arn.

MergedApi

The merged api in the association.

SourceApi

The source api in the association.

Constructors

SourceApiAssociationAttributes()

The attributes for imported AppSync Source Api Association.

public SourceApiAssociationAttributes()
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
            };

Properties

AssociationArn

The association arn.

public string AssociationArn { get; set; }
Property Value

string

Remarks

ExampleMetadata: fixture=_generated

MergedApi

The merged api in the association.

public IGraphqlApi MergedApi { get; set; }
Property Value

IGraphqlApi

Remarks

ExampleMetadata: fixture=_generated

SourceApi

The source api in the association.

public IGraphqlApi SourceApi { get; set; }
Property Value

IGraphqlApi

Remarks

ExampleMetadata: fixture=_generated

Implements

ISourceApiAssociationAttributes
Back to top Generated by DocFX