Show / Hide Table of Contents

Class GraphQLSchemaReference

A reference to a GraphQLSchema resource.

Inheritance
object
GraphQLSchemaReference
Implements
IGraphQLSchemaReference
Inherited Members
object.GetType()
object.MemberwiseClone()
object.ToString()
object.Equals(object)
object.Equals(object, object)
object.ReferenceEquals(object, object)
object.GetHashCode()
Namespace: Amazon.CDK.Interfaces.AppSync
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class GraphQLSchemaReference : IGraphQLSchemaReference
Syntax (vb)
Public Class GraphQLSchemaReference Implements IGraphQLSchemaReference
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.Interfaces.AppSync;

            var graphQLSchemaReference = new GraphQLSchemaReference {
                GraphQlSchemaId = "graphQlSchemaId"
            };

Synopsis

Constructors

GraphQLSchemaReference()

A reference to a GraphQLSchema resource.

Properties

GraphQlSchemaId

The Id of the GraphQLSchema resource.

Constructors

GraphQLSchemaReference()

A reference to a GraphQLSchema resource.

public GraphQLSchemaReference()
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.Interfaces.AppSync;

            var graphQLSchemaReference = new GraphQLSchemaReference {
                GraphQlSchemaId = "graphQlSchemaId"
            };

Properties

GraphQlSchemaId

The Id of the GraphQLSchema resource.

public string GraphQlSchemaId { get; set; }
Property Value

string

Remarks

ExampleMetadata: fixture=_generated

Implements

IGraphQLSchemaReference
Back to top Generated by DocFX