Class: Aws::AppSync::Types::SourceApiAssociationConfig

Inherits:
Struct
  • Object
show all
Defined in:
gems/aws-sdk-appsync/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

Instance Attribute Details

#merge_typeString

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.

Returns:

  • (String)


4048
4049
4050
4051
4052
# File 'gems/aws-sdk-appsync/lib/aws-sdk-appsync/types.rb', line 4048

class SourceApiAssociationConfig < Struct.new(
  :merge_type)
  SENSITIVE = []
  include Aws::Structure
end