Class CfnFunctionConfigurationProps
Properties for defining a CfnFunctionConfiguration
.
Inheritance
Implements
Namespace: Amazon.CDK.AWS.AppSync
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class CfnFunctionConfigurationProps : Object, ICfnFunctionConfigurationProps
Syntax (vb)
Public Class CfnFunctionConfigurationProps
Inherits Object
Implements ICfnFunctionConfigurationProps
Remarks
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.AWS.AppSync;
var cfnFunctionConfigurationProps = new CfnFunctionConfigurationProps {
ApiId = "apiId",
DataSourceName = "dataSourceName",
Name = "name",
// the properties below are optional
Code = "code",
CodeS3Location = "codeS3Location",
Description = "description",
FunctionVersion = "functionVersion",
MaxBatchSize = 123,
RequestMappingTemplate = "requestMappingTemplate",
RequestMappingTemplateS3Location = "requestMappingTemplateS3Location",
ResponseMappingTemplate = "responseMappingTemplate",
ResponseMappingTemplateS3Location = "responseMappingTemplateS3Location",
Runtime = new AppSyncRuntimeProperty {
Name = "name",
RuntimeVersion = "runtimeVersion"
},
SyncConfig = new SyncConfigProperty {
ConflictDetection = "conflictDetection",
// the properties below are optional
ConflictHandler = "conflictHandler",
LambdaConflictHandlerConfig = new LambdaConflictHandlerConfigProperty {
LambdaConflictHandlerArn = "lambdaConflictHandlerArn"
}
}
};
Synopsis
Constructors
Cfn |
Properties
Api |
The AWS AppSync GraphQL API that you want to attach using this function. |
Code | The |
Code |
The Amazon S3 endpoint. |
Data |
The name of data source this function will attach. |
Description | The |
Function |
The version of the request mapping template. |
Max |
The maximum number of resolver request inputs that will be sent to a single AWS Lambda function in a |
Name | The name of the function. |
Request |
The |
Request |
Describes a Sync configuration for a resolver. |
Response |
The |
Response |
The location of a response mapping template in an Amazon S3 bucket. |
Runtime | Describes a runtime used by an AWS AppSync resolver or AWS AppSync function. |
Sync |
Describes a Sync configuration for a resolver. |
Constructors
CfnFunctionConfigurationProps()
public CfnFunctionConfigurationProps()
Properties
ApiId
The AWS AppSync GraphQL API that you want to attach using this function.
public string ApiId { get; set; }
Property Value
System.
Remarks
Code
The resolver
code that contains the request and response functions.
public string Code { get; set; }
Property Value
System.
Remarks
When code is used, the runtime
is required. The runtime value must be APPSYNC_JS
.
CodeS3Location
The Amazon S3 endpoint.
public string CodeS3Location { get; set; }
Property Value
System.
Remarks
DataSourceName
The name of data source this function will attach.
public string DataSourceName { get; set; }
Property Value
System.
Remarks
Description
The Function
description.
public string Description { get; set; }
Property Value
System.
Remarks
FunctionVersion
The version of the request mapping template.
public string FunctionVersion { get; set; }
Property Value
System.
Remarks
Currently, only the 2018-05-29 version of the template is supported.
MaxBatchSize
The maximum number of resolver request inputs that will be sent to a single AWS Lambda function in a BatchInvoke
operation.
public Nullable<double> MaxBatchSize { get; set; }
Property Value
System.
Remarks
Name
The name of the function.
public string Name { get; set; }
Property Value
System.
Remarks
RequestMappingTemplate
The Function
request mapping template.
public string RequestMappingTemplate { get; set; }
Property Value
System.
Remarks
Functions support only the 2018-05-29 version of the request mapping template.
RequestMappingTemplateS3Location
Describes a Sync configuration for a resolver.
public string RequestMappingTemplateS3Location { get; set; }
Property Value
System.
Remarks
Contains information on which Conflict Detection, as well as Resolution strategy, should be performed when the resolver is invoked.
ResponseMappingTemplate
The Function
response mapping template.
public string ResponseMappingTemplate { get; set; }
Property Value
System.
Remarks
ResponseMappingTemplateS3Location
The location of a response mapping template in an Amazon S3 bucket.
public string ResponseMappingTemplateS3Location { get; set; }
Property Value
System.
Remarks
Use this if you want to provision with a template file in Amazon S3 rather than embedding it in your CloudFormation template.
Runtime
Describes a runtime used by an AWS AppSync resolver or AWS AppSync function.
public object Runtime { get; set; }
Property Value
System.
Remarks
Specifies the name and version of the runtime to use. Note that if a runtime is specified, code must also be specified.
SyncConfig
Describes a Sync configuration for a resolver.
public object SyncConfig { get; set; }
Property Value
System.
Remarks
Specifies which Conflict Detection strategy and Resolution strategy to use when the resolver is invoked.