Show / Hide Table of Contents

Interface INoneDataSourceProps

Properties for an AppSync dummy datasource.

Inherited Members
IBaseDataSourceProps.Api
IBaseDataSourceProps.Description
IBaseDataSourceProps.Name
Namespace: Amazon.CDK.AWS.AppSync
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public interface INoneDataSourceProps : IBaseDataSourceProps
Syntax (vb)
Public Interface INoneDataSourceProps Inherits IBaseDataSourceProps
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;
            using Amazon.CDK.Interfaces.AppSync;

            IGraphQLApiRef graphQLApiRef;

            var noneDataSourceProps = new NoneDataSourceProps {
                Api = graphQLApiRef,

                // the properties below are optional
                Description = "description",
                Name = "name"
            };

Synopsis

Back to top Generated by DocFX