Class CfnSourceApiAssociationProps
Properties for defining a CfnSourceApiAssociation
.
Implements
Inherited Members
Namespace: Amazon.CDK.AWS.AppSync
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class CfnSourceApiAssociationProps : ICfnSourceApiAssociationProps
Syntax (vb)
Public Class CfnSourceApiAssociationProps Implements ICfnSourceApiAssociationProps
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;
var cfnSourceApiAssociationProps = new CfnSourceApiAssociationProps {
Description = "description",
MergedApiIdentifier = "mergedApiIdentifier",
SourceApiAssociationConfig = new SourceApiAssociationConfigProperty {
MergeType = "mergeType"
},
SourceApiIdentifier = "sourceApiIdentifier"
};
Synopsis
Constructors
CfnSourceApiAssociationProps() | Properties for defining a |
Properties
Description | The description field of the association configuration. |
MergedApiIdentifier | The identifier of the AppSync Merged API. |
SourceApiAssociationConfig | The |
SourceApiIdentifier | The identifier of the AppSync Source API. |
Constructors
CfnSourceApiAssociationProps()
Properties for defining a CfnSourceApiAssociation
.
public CfnSourceApiAssociationProps()
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;
var cfnSourceApiAssociationProps = new CfnSourceApiAssociationProps {
Description = "description",
MergedApiIdentifier = "mergedApiIdentifier",
SourceApiAssociationConfig = new SourceApiAssociationConfigProperty {
MergeType = "mergeType"
},
SourceApiIdentifier = "sourceApiIdentifier"
};
Properties
Description
The description field of the association configuration.
public string? Description { get; set; }
Property Value
Remarks
MergedApiIdentifier
The identifier of the AppSync Merged API.
public string? MergedApiIdentifier { get; set; }
Property Value
Remarks
This is generated by the AppSync service. In most cases, Merged APIs (especially in your account) only require the API ID value or ARN of the merged API. However, Merged APIs from other accounts (cross-account use cases) strictly require the full resource ARN of the merged API.
SourceApiAssociationConfig
The SourceApiAssociationConfig
object data.
public object? SourceApiAssociationConfig { get; set; }
Property Value
Remarks
SourceApiIdentifier
The identifier of the AppSync Source API.
public string? SourceApiIdentifier { get; set; }
Property Value
Remarks
This is generated by the AppSync service. In most cases, source APIs (especially in your account) only require the API ID value or ARN of the source API. However, source APIs from other accounts (cross-account use cases) strictly require the full resource ARN of the source API.