Interface IElasticsearchDataSourceProps
(deprecated) Properties for the Elasticsearch Data Source.
Inherited Members
Namespace: Amazon.CDK.AWS.AppSync
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
[Obsolete("- use `OpenSearchDataSourceProps` with `OpenSearchDataSource`")]
public interface IElasticsearchDataSourceProps : IBackedDataSourceProps, IBaseDataSourceProps
Syntax (vb)
<Obsolete("- use `OpenSearchDataSourceProps` with `OpenSearchDataSource`")>
Public Interface IElasticsearchDataSourceProps Inherits IBackedDataSourceProps, IBaseDataSourceProps
Remarks
Stability: Deprecated
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.Elasticsearch;
using Amazon.CDK.AWS.IAM;
using Amazon.CDK.Interfaces.AppSync;
Domain domain;
IGraphQLApiRef graphQLApiRef;
Role role;
var elasticsearchDataSourceProps = new ElasticsearchDataSourceProps {
Api = graphQLApiRef,
Domain = domain,
// the properties below are optional
Description = "description",
Name = "name",
ServiceRole = role
};
Synopsis
Properties
| Domain | (deprecated) The elasticsearch domain containing the endpoint for the data source. |
Properties
Domain
(deprecated) The elasticsearch domain containing the endpoint for the data source.
[Obsolete]
IDomain Domain { get; }
Property Value
Remarks
Stability: Deprecated