public static interface CfnResolver.SyncConfigProperty
Specifies which Conflict Detection strategy and Resolution strategy to use when the resolver is invoked.
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.*; SyncConfigProperty syncConfigProperty = SyncConfigProperty.builder() .conflictDetection("conflictDetection") // the properties below are optional .conflictHandler("conflictHandler") .lambdaConflictHandlerConfig(LambdaConflictHandlerConfigProperty.builder() .lambdaConflictHandlerArn("lambdaConflictHandlerArn") .build()) .build();
Modifier and Type | Interface and Description |
---|---|
static class |
CfnResolver.SyncConfigProperty.Builder
A builder for
CfnResolver.SyncConfigProperty |
static class |
CfnResolver.SyncConfigProperty.Jsii$Proxy
An implementation for
CfnResolver.SyncConfigProperty |
Modifier and Type | Method and Description |
---|---|
static CfnResolver.SyncConfigProperty.Builder |
builder() |
java.lang.String |
getConflictDetection()
The Conflict Detection strategy to use.
|
default java.lang.String |
getConflictHandler()
The Conflict Resolution strategy to perform in the event of a conflict.
|
default java.lang.Object |
getLambdaConflictHandlerConfig()
The `LambdaConflictHandlerConfig` when configuring `LAMBDA` as the Conflict Handler.
|
java.lang.String getConflictDetection()
default java.lang.String getConflictHandler()
LambdaConflictHandlerConfig
.default java.lang.Object getLambdaConflictHandlerConfig()
static CfnResolver.SyncConfigProperty.Builder builder()