Class ElasticsearchDataSource
java.lang.Object
software.amazon.jsii.JsiiObject
software.constructs.Construct
software.amazon.awscdk.services.appsync.BaseDataSource
software.amazon.awscdk.services.appsync.BackedDataSource
software.amazon.awscdk.services.appsync.ElasticsearchDataSource
- All Implemented Interfaces:
- IGrantable,- software.amazon.jsii.JsiiSerializable,- software.constructs.IConstruct,- software.constructs.IDependable
@Generated(value="jsii-pacmak/1.116.0 (build 0eddcff)",
           date="2025-10-29T11:15:32.663Z")
@Stability(Deprecated)
@Deprecated
public class ElasticsearchDataSource
extends BackedDataSource
Deprecated.
(deprecated) An Appsync datasource backed by Elasticsearch.
 
Example:
 // The code below shows an example of how to instantiate this type.
 // The values are placeholders you should change.
 import software.amazon.awscdk.services.appsync.*;
 import software.amazon.awscdk.services.elasticsearch.*;
 import software.amazon.awscdk.services.iam.*;
 Domain domain;
 GraphqlApi graphqlApi;
 Role role;
 ElasticsearchDataSource elasticsearchDataSource = ElasticsearchDataSource.Builder.create(this, "MyElasticsearchDataSource")
         .api(graphqlApi)
         .domain(domain)
         // the properties below are optional
         .description("description")
         .name("name")
         .serviceRole(role)
         .build();
 - 
Nested Class SummaryNested ClassesNested classes/interfaces inherited from class software.amazon.jsii.JsiiObjectsoftware.amazon.jsii.JsiiObject.InitializationModeNested classes/interfaces inherited from interface software.constructs.IConstructsoftware.constructs.IConstruct.Jsii$DefaultNested classes/interfaces inherited from interface software.amazon.awscdk.services.iam.IGrantableIGrantable.Jsii$Default
- 
Constructor SummaryConstructorsModifierConstructorDescriptionprotectedElasticsearchDataSource(software.amazon.jsii.JsiiObject.InitializationMode initializationMode) Deprecated.protectedElasticsearchDataSource(software.amazon.jsii.JsiiObjectRef objRef) Deprecated.ElasticsearchDataSource(software.constructs.Construct scope, String id, ElasticsearchDataSourceProps props) Deprecated.
- 
Method SummaryMethods inherited from class software.amazon.awscdk.services.appsync.BackedDataSourcegetGrantPrincipalMethods inherited from class software.amazon.awscdk.services.appsync.BaseDataSourcecreateFunction, createResolver, getApi, getDs, getName, getServiceRole, setApi, setServiceRoleMethods inherited from class software.constructs.ConstructgetNode, isConstruct, toStringMethods inherited from class software.amazon.jsii.JsiiObjectjsiiAsyncCall, jsiiAsyncCall, jsiiCall, jsiiCall, jsiiGet, jsiiGet, jsiiSet, jsiiStaticCall, jsiiStaticCall, jsiiStaticGet, jsiiStaticGet, jsiiStaticSet, jsiiStaticSetMethods inherited from class java.lang.Objectclone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, waitMethods inherited from interface software.amazon.jsii.JsiiSerializable$jsii$toJson
- 
Constructor Details- 
ElasticsearchDataSourceprotected ElasticsearchDataSource(software.amazon.jsii.JsiiObjectRef objRef) Deprecated.
- 
ElasticsearchDataSourceprotected ElasticsearchDataSource(software.amazon.jsii.JsiiObject.InitializationMode initializationMode) Deprecated.
- 
ElasticsearchDataSource@Stability(Deprecated) @Deprecated public ElasticsearchDataSource(@NotNull software.constructs.Construct scope, @NotNull String id, @NotNull ElasticsearchDataSourceProps props) Deprecated.- Parameters:
- scope- This parameter is required.
- id- This parameter is required.
- props- This parameter is required.
 
 
- 
OpenSearchDataSource