Interface CfnSourceApiAssociation.SourceApiAssociationConfigProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnSourceApiAssociation.SourceApiAssociationConfigProperty.Jsii$Proxy
- Enclosing class:
CfnSourceApiAssociation
@Stability(Stable)
public static interface CfnSourceApiAssociation.SourceApiAssociationConfigProperty
extends software.amazon.jsii.JsiiSerializable
Describes properties used to specify configurations related to a source API.
This is a property of the AWS:AppSync:SourceApiAssociation
type.
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.*; SourceApiAssociationConfigProperty sourceApiAssociationConfigProperty = SourceApiAssociationConfigProperty.builder() .mergeType("mergeType") .build();
- See Also:
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic final class
static final class
An implementation forCfnSourceApiAssociation.SourceApiAssociationConfigProperty
-
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getMergeType
The property that indicates which merging option is enabled in the source API association.Valid merge types are
MANUAL_MERGE
(default) andAUTO_MERGE
. Manual merges are the default behavior and require the user to trigger any changes from the source APIs to the merged API manually. Auto merges subscribe the merged API to the changes performed on the source APIs so that any change in the source APIs are also made to the merged API. Auto merges useMergedApiExecutionRoleArn
to perform merge operations.The following values are valid:
MANUAL_MERGE | AUTO_MERGE
- See Also:
-
builder
@Stability(Stable) static CfnSourceApiAssociation.SourceApiAssociationConfigProperty.Builder builder()
-