Show / Hide Table of Contents

Interface IAppSyncDataSourceOptions

Optional configuration for data sources.

Namespace: Amazon.CDK.AWS.AppSync
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public interface IAppSyncDataSourceOptions
Syntax (vb)
Public Interface IAppSyncDataSourceOptions
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 appSyncDataSourceOptions = new AppSyncDataSourceOptions {
                Description = "description",
                Name = "name"
            };

Synopsis

Properties

Description

The description of the data source.

Name

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

Properties

Description

The description of the data source.

string? Description { get; }
Property Value

string

Remarks

Default: - No description

Name

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

string? Name { get; }
Property Value

string

Remarks

Default: - generated by CDK given the id

Back to top Generated by DocFX