Show / Hide Table of Contents

Interface IAppSyncOpenSearchDataSourceProps

Properties for the OpenSearch Data Source.

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

            IApiRef apiRef;
            Domain domain;
            Role role;

            var appSyncOpenSearchDataSourceProps = new AppSyncOpenSearchDataSourceProps {
                Api = apiRef,
                Domain = domain,

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

Synopsis

Properties

Domain

The OpenSearch domain containing the endpoint for the data source.

Properties

Domain

The OpenSearch domain containing the endpoint for the data source.

IDomain Domain { get; }
Property Value

IDomain

Remarks

ExampleMetadata: fixture=_generated

Back to top Generated by DocFX