Class: Aws::AppSync::Types::SourceApiAssociationConfig
- Inherits:
-
Struct
- Object
- Struct
- Aws::AppSync::Types::SourceApiAssociationConfig
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-appsync/types.rb
Overview
Describes properties used to specify configurations related to a source API.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#merge_type ⇒ String
The property that indicates which merging option is enabled in the source API association.
Instance Attribute Details
#merge_type ⇒ String
The property that indicates which merging option is enabled in the source API association.
Valid merge types are ‘MANUAL_MERGE` (default) and `AUTO_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 use `MergedApiExecutionRoleArn` to perform merge operations.
4599 4600 4601 4602 4603 |
# File 'lib/aws-sdk-appsync/types.rb', line 4599 class SourceApiAssociationConfig < Struct.new( :merge_type) SENSITIVE = [] include Aws::Structure end |