Interface BaseAppsyncFunctionProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Subinterfaces:
AppsyncFunctionProps
- All Known Implementing Classes:
AppsyncFunctionProps.Jsii$Proxy
,BaseAppsyncFunctionProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.84.0 (build 5404dcf)",
date="2023-06-19T16:30:49.367Z")
@Stability(Experimental)
public interface BaseAppsyncFunctionProps
extends software.amazon.jsii.JsiiSerializable
(experimental) the base properties for AppSync Functions.
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();
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic final class
A builder forBaseAppsyncFunctionProps
static final class
An implementation forBaseAppsyncFunctionProps
-
Method Summary
Modifier and TypeMethodDescriptionbuilder()
default String
(experimental) the description for this AppSync Function.getName()
(experimental) the name of the AppSync Function.default MappingTemplate
(experimental) the request mapping template for the AppSync Function.default MappingTemplate
(experimental) the response mapping template for the AppSync Function.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getName
(experimental) the name of the AppSync Function. -
getDescription
(experimental) the description for this AppSync Function.Default: - no description
-
getRequestMappingTemplate
(experimental) the request mapping template for the AppSync Function.Default: - no request mapping template
-
getResponseMappingTemplate
(experimental) the response mapping template for the AppSync Function.Default: - no response mapping template
-
builder
- Returns:
- a
BaseAppsyncFunctionProps.Builder
ofBaseAppsyncFunctionProps
-