Class SourceApiAssociationAttributes
The attributes for imported AppSync Source Api Association.
Implements
Inherited Members
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
Remarks
ExampleMetadata: fixture=_generated
MergedApi
The merged api in the association.
public IGraphqlApi MergedApi { get; set; }
Property Value
Remarks
ExampleMetadata: fixture=_generated
SourceApi
The source api in the association.
public IGraphqlApi SourceApi { get; set; }
Property Value
Remarks
ExampleMetadata: fixture=_generated