@Generated(value="jsii-pacmak/1.50.0 (build d1830a4)", date="2022-01-04T15:39:03.000Z") @Stability(value=Experimental) public interface BaseAppsyncFunctionProps 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.*;
MappingTemplate mappingTemplate;
BaseAppsyncFunctionProps baseAppsyncFunctionProps = BaseAppsyncFunctionProps.builder()
.name("name")
// the properties below are optional
.description("description")
.requestMappingTemplate(mappingTemplate)
.responseMappingTemplate(mappingTemplate)
.build();
| Modifier and Type | Interface and Description |
|---|---|
static class |
BaseAppsyncFunctionProps.Builder
A builder for
BaseAppsyncFunctionProps |
static class |
BaseAppsyncFunctionProps.Jsii$Proxy
An implementation for
BaseAppsyncFunctionProps |
| Modifier and Type | Method and Description |
|---|---|
static BaseAppsyncFunctionProps.Builder |
builder() |
default String |
getDescription()
(experimental) the description for this AppSync Function.
|
String |
getName()
(experimental) the name of the AppSync Function.
|
default MappingTemplate |
getRequestMappingTemplate()
(experimental) the request mapping template for the AppSync Function.
|
default MappingTemplate |
getResponseMappingTemplate()
(experimental) the response mapping template for the AppSync Function.
|
@Stability(value=Experimental) @NotNull String getName()
@Stability(value=Experimental) @Nullable default String getDescription()
Default: - no description
@Stability(value=Experimental) @Nullable default MappingTemplate getRequestMappingTemplate()
Default: - no request mapping template
@Stability(value=Experimental) @Nullable default MappingTemplate getResponseMappingTemplate()
Default: - no response mapping template
@Stability(value=Experimental) static BaseAppsyncFunctionProps.Builder builder()
BaseAppsyncFunctionProps.Builder of BaseAppsyncFunctionPropsCopyright © 2022. All rights reserved.