Show / Hide Table of Contents

Interface ICfnSourceApiAssociationProps

Properties for defining a CfnSourceApiAssociation.

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

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-sourceapiassociation.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 cfnSourceApiAssociationProps = new CfnSourceApiAssociationProps {
                 Description = "description",
                 MergedApiIdentifier = "mergedApiIdentifier",
                 SourceApiAssociationConfig = new SourceApiAssociationConfigProperty {
                     MergeType = "mergeType"
                 },
                 SourceApiIdentifier = "sourceApiIdentifier"
             };

Synopsis

Properties

Description

The description field of the association configuration.

MergedApiIdentifier

The identifier of the AppSync Merged API.

SourceApiAssociationConfig

The SourceApiAssociationConfig object data.

SourceApiIdentifier

The identifier of the AppSync Source API.

Properties

Description

The description field of the association configuration.

string? Description { get; }
Property Value

string

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-sourceapiassociation.html#cfn-appsync-sourceapiassociation-description

MergedApiIdentifier

The identifier of the AppSync Merged API.

string? MergedApiIdentifier { get; }
Property Value

string

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.

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-sourceapiassociation.html#cfn-appsync-sourceapiassociation-mergedapiidentifier

SourceApiAssociationConfig

The SourceApiAssociationConfig object data.

object? SourceApiAssociationConfig { get; }
Property Value

object

Remarks

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

SourceApiIdentifier

The identifier of the AppSync Source API.

string? SourceApiIdentifier { get; }
Property Value

string

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.

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-sourceapiassociation.html#cfn-appsync-sourceapiassociation-sourceapiidentifier

Back to top Generated by DocFX