Interface DataSourceOptions
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Subinterfaces:
HttpDataSourceOptions
- All Known Implementing Classes:
DataSourceOptions.Jsii$Proxy,HttpDataSourceOptions.Jsii$Proxy
@Generated(value="jsii-pacmak/1.84.0 (build 5404dcf)",
date="2023-06-19T16:30:49.484Z")
@Stability(Experimental)
public interface DataSourceOptions
extends software.amazon.jsii.JsiiSerializable
(experimental) Optional configuration for data sources.
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.*;
DataSourceOptions dataSourceOptions = DataSourceOptions.builder()
.description("description")
.name("name")
.build();
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forDataSourceOptionsstatic final classAn implementation forDataSourceOptions -
Method Summary
Modifier and TypeMethodDescriptionstatic DataSourceOptions.Builderbuilder()default String(experimental) The description of the data source.default StringgetName()(experimental) The name of the data source, overrides the id given by cdk.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getDescription
(experimental) The description of the data source.Default: - No description
-
getName
(experimental) The name of the data source, overrides the id given by cdk.Default: - generated by cdk given the id
-
builder
- Returns:
- a
DataSourceOptions.BuilderofDataSourceOptions
-