Class NoneDataSource
An AppSync dummy datasource.
Inherited Members
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"
});