Show / Hide Table of Contents

Class DataSourceOptions

Optional configuration for data sources.

Inheritance
object
DataSourceOptions
Implements
IDataSourceOptions
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 DataSourceOptions : IDataSourceOptions
Syntax (vb)
Public Class DataSourceOptions Implements IDataSourceOptions
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;

            var dataSourceOptions = new DataSourceOptions {
                Description = "description",
                Name = "name"
            };

Synopsis

Constructors

DataSourceOptions()

Optional configuration for data sources.

Properties

Description

The description of the data source.

Name

The name of the data source, overrides the id given by cdk.

Constructors

DataSourceOptions()

Optional configuration for data sources.

public DataSourceOptions()
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;

            var dataSourceOptions = new DataSourceOptions {
                Description = "description",
                Name = "name"
            };

Properties

Description

The description of the data source.

public string? Description { get; set; }
Property Value

string

Remarks

Default: - No description

Name

The name of the data source, overrides the id given by cdk.

public string? Name { get; set; }
Property Value

string

Remarks

Default: - generated by cdk given the id

Implements

IDataSourceOptions
Back to top Generated by DocFX