Interface IAppSyncOpenSearchDataSourceProps
Properties for the OpenSearch Data Source.
Inherited Members
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
Remarks
ExampleMetadata: fixture=_generated