Show / Hide Table of Contents

Class NoneDataSource

An AppSync dummy datasource.

Inheritance
object
BaseDataSource
NoneDataSource
Inherited Members
BaseDataSource.CreateFunction(string, IBaseAppsyncFunctionProps)
BaseDataSource.CreateResolver(string, IBaseResolverProps)
BaseDataSource.Ds
BaseDataSource.Name
BaseDataSource.Api
BaseDataSource.ServiceRole
Namespace: Amazon.CDK.AWS.AppSync
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class NoneDataSource : BaseDataSource
Syntax (vb)
Public Class NoneDataSource Inherits BaseDataSource
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 noneDataSource = new NoneDataSource(this, "MyNoneDataSource", new NoneDataSourceProps {
                Api = graphQLApiRef,

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

Synopsis

Constructors

NoneDataSource(Construct, string, INoneDataSourceProps)

An AppSync dummy datasource.

Constructors

NoneDataSource(Construct, string, INoneDataSourceProps)

An AppSync dummy datasource.

public NoneDataSource(Construct scope, string id, INoneDataSourceProps props)
Parameters
scope Construct
id string
props INoneDataSourceProps
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 noneDataSource = new NoneDataSource(this, "MyNoneDataSource", new NoneDataSourceProps {
                Api = graphQLApiRef,

                // the properties below are optional
                Description = "description",
                Name = "name"
            });
Back to top Generated by DocFX