Show / Hide Table of Contents

Class CfnSourceApiAssociationProps

Properties for defining a CfnSourceApiAssociation.

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

Constructors

CfnSourceApiAssociationProps()

Properties for defining a CfnSourceApiAssociation.

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.

Constructors

CfnSourceApiAssociationProps()

Properties for defining a CfnSourceApiAssociation.

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

Properties

Description

The description field of the association configuration.

public string? Description { get; set; }
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.

public string? MergedApiIdentifier { get; set; }
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.

public object? SourceApiAssociationConfig { get; set; }
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.

public string? SourceApiIdentifier { get; set; }
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

Implements

ICfnSourceApiAssociationProps
Back to top Generated by DocFX