@Generated(value="jsii-pacmak/1.67.0 (build 2c027f5)", date="2022-09-07T23:47:00.946Z") @Stability(value=Experimental) public interface BaseDataSourceProps extends software.amazon.jsii.JsiiSerializable
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.*;
GraphqlApi graphqlApi;
BaseDataSourceProps baseDataSourceProps = BaseDataSourceProps.builder()
.api(graphqlApi)
// the properties below are optional
.description("description")
.name("name")
.build();
| Modifier and Type | Interface and Description |
|---|---|
static class |
BaseDataSourceProps.Builder
A builder for
BaseDataSourceProps |
static class |
BaseDataSourceProps.Jsii$Proxy
An implementation for
BaseDataSourceProps |
| Modifier and Type | Method and Description |
|---|---|
static BaseDataSourceProps.Builder |
builder() |
IGraphqlApi |
getApi()
(experimental) The API to attach this data source to.
|
default String |
getDescription()
(experimental) the description of the data source.
|
default String |
getName()
(experimental) The name of the data source.
|
@Stability(value=Experimental) @NotNull IGraphqlApi getApi()
@Stability(value=Experimental) @Nullable default String getDescription()
Default: - None
@Stability(value=Experimental) @Nullable default String getName()
Default: - id of data source
@Stability(value=Experimental) static BaseDataSourceProps.Builder builder()
BaseDataSourceProps.Builder of BaseDataSourcePropsCopyright © 2022. All rights reserved.