aws-sdk-appflow 1.9.0 → 1.13.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 40b01ce68c52117b0b24070036ddb849d572aece5bcfef98e8f365b60dab8725
4
- data.tar.gz: 440cf661d2a010d25281981f7b5cd93195128b5a8e650037f4ea070b43e1bdc3
3
+ metadata.gz: 971ec82439fae74d609bb839e15f4cc62f5078e6f23c115df2ef735a6b312fb9
4
+ data.tar.gz: 1beba46aa3c4b861f855efadc5f1c4e37561571dbb4be26a19bcb029aa3b5f8c
5
5
  SHA512:
6
- metadata.gz: d9f3826f83ef42201ca30f5bf119f07a13237e332a595513e8cb67c1ee611e97dcb03d7f63d3a4896f321eacfe08aa22fbd50d4f64f5650f407bf389b7476d79
7
- data.tar.gz: 476f5231365dfa75fdb8a2888d5022f1a02ad196fc8c5d8e46b1976d9ec717febb12c4d439e8d6da7e9b6dc32105c2e3eb0fba036e90df63684d602a99cd7226
6
+ metadata.gz: 03e3dcec836ed71e36c1978b5d1361a7371161b8bef7b722f449cc432033a721c5fe856429b96a037421987591ed160a0499974f74a2791cf61539f693a0bab5
7
+ data.tar.gz: a922c99f40d40bf065be063b74d986271c3c9eb9da6550ede363338752fe7110d8fcaddbf9e1c2dbaa82b4a9ce96cc1413e2fea6f872bc57e149e8f56d826b45
data/CHANGELOG.md CHANGED
@@ -1,6 +1,26 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.13.0 (2021-07-30)
5
+ ------------------
6
+
7
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
8
+
9
+ 1.12.0 (2021-07-28)
10
+ ------------------
11
+
12
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
13
+
14
+ 1.11.0 (2021-06-10)
15
+ ------------------
16
+
17
+ * Feature - Adding MAP_ALL task type support.
18
+
19
+ 1.10.0 (2021-04-05)
20
+ ------------------
21
+
22
+ * Feature - Added destination properties for Zendesk.
23
+
4
24
  1.9.0 (2021-03-10)
5
25
  ------------------
6
26
 
@@ -9,7 +29,7 @@ Unreleased Changes
9
29
  1.8.0 (2021-03-05)
10
30
  ------------------
11
31
 
12
- * Feature - Documentation updates for arn:aws:trebuchet:::service:v1:decb008d-e0d8-44a4-b93c-092f0355d523
32
+ * Feature - Documentation updates for AppFlow.
13
33
 
14
34
  1.7.0 (2021-02-24)
15
35
  ------------------
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.9.0
1
+ 1.13.0
@@ -48,6 +48,6 @@ require_relative 'aws-sdk-appflow/customizations'
48
48
  # @!group service
49
49
  module Aws::Appflow
50
50
 
51
- GEM_VERSION = '1.9.0'
51
+ GEM_VERSION = '1.13.0'
52
52
 
53
53
  end
@@ -734,6 +734,16 @@ module Aws::Appflow
734
734
  # domain_name: "DomainName", # required
735
735
  # object_type_name: "ObjectTypeName",
736
736
  # },
737
+ # zendesk: {
738
+ # object: "Object", # required
739
+ # id_field_names: ["Name"],
740
+ # error_handling_config: {
741
+ # fail_on_first_destination_error: false,
742
+ # bucket_prefix: "BucketPrefix",
743
+ # bucket_name: "BucketName",
744
+ # },
745
+ # write_operation_type: "INSERT", # accepts INSERT, UPSERT, UPDATE
746
+ # },
737
747
  # },
738
748
  # },
739
749
  # ],
@@ -757,7 +767,7 @@ module Aws::Appflow
757
767
  # zendesk: "PROJECTION", # accepts PROJECTION, GREATER_THAN, ADDITION, MULTIPLICATION, DIVISION, SUBTRACTION, MASK_ALL, MASK_FIRST_N, MASK_LAST_N, VALIDATE_NON_NULL, VALIDATE_NON_ZERO, VALIDATE_NON_NEGATIVE, VALIDATE_NUMERIC, NO_OP
758
768
  # },
759
769
  # destination_field: "DestinationField",
760
- # task_type: "Arithmetic", # required, accepts Arithmetic, Filter, Map, Mask, Merge, Truncate, Validate
770
+ # task_type: "Arithmetic", # required, accepts Arithmetic, Filter, Map, Map_all, Mask, Merge, Truncate, Validate
761
771
  # task_properties: {
762
772
  # "VALUE" => "Property",
763
773
  # },
@@ -1143,6 +1153,13 @@ module Aws::Appflow
1143
1153
  # resp.destination_flow_config_list[0].destination_connector_properties.honeycode.error_handling_config.bucket_name #=> String
1144
1154
  # resp.destination_flow_config_list[0].destination_connector_properties.customer_profiles.domain_name #=> String
1145
1155
  # resp.destination_flow_config_list[0].destination_connector_properties.customer_profiles.object_type_name #=> String
1156
+ # resp.destination_flow_config_list[0].destination_connector_properties.zendesk.object #=> String
1157
+ # resp.destination_flow_config_list[0].destination_connector_properties.zendesk.id_field_names #=> Array
1158
+ # resp.destination_flow_config_list[0].destination_connector_properties.zendesk.id_field_names[0] #=> String
1159
+ # resp.destination_flow_config_list[0].destination_connector_properties.zendesk.error_handling_config.fail_on_first_destination_error #=> Boolean
1160
+ # resp.destination_flow_config_list[0].destination_connector_properties.zendesk.error_handling_config.bucket_prefix #=> String
1161
+ # resp.destination_flow_config_list[0].destination_connector_properties.zendesk.error_handling_config.bucket_name #=> String
1162
+ # resp.destination_flow_config_list[0].destination_connector_properties.zendesk.write_operation_type #=> String, one of "INSERT", "UPSERT", "UPDATE"
1146
1163
  # resp.last_run_execution_details.most_recent_execution_message #=> String
1147
1164
  # resp.last_run_execution_details.most_recent_execution_time #=> Time
1148
1165
  # resp.last_run_execution_details.most_recent_execution_status #=> String, one of "InProgress", "Successful", "Error"
@@ -1172,7 +1189,7 @@ module Aws::Appflow
1172
1189
  # resp.tasks[0].connector_operator.veeva #=> String, one of "PROJECTION", "LESS_THAN", "GREATER_THAN", "CONTAINS", "BETWEEN", "LESS_THAN_OR_EQUAL_TO", "GREATER_THAN_OR_EQUAL_TO", "EQUAL_TO", "NOT_EQUAL_TO", "ADDITION", "MULTIPLICATION", "DIVISION", "SUBTRACTION", "MASK_ALL", "MASK_FIRST_N", "MASK_LAST_N", "VALIDATE_NON_NULL", "VALIDATE_NON_ZERO", "VALIDATE_NON_NEGATIVE", "VALIDATE_NUMERIC", "NO_OP"
1173
1190
  # resp.tasks[0].connector_operator.zendesk #=> String, one of "PROJECTION", "GREATER_THAN", "ADDITION", "MULTIPLICATION", "DIVISION", "SUBTRACTION", "MASK_ALL", "MASK_FIRST_N", "MASK_LAST_N", "VALIDATE_NON_NULL", "VALIDATE_NON_ZERO", "VALIDATE_NON_NEGATIVE", "VALIDATE_NUMERIC", "NO_OP"
1174
1191
  # resp.tasks[0].destination_field #=> String
1175
- # resp.tasks[0].task_type #=> String, one of "Arithmetic", "Filter", "Map", "Mask", "Merge", "Truncate", "Validate"
1192
+ # resp.tasks[0].task_type #=> String, one of "Arithmetic", "Filter", "Map", "Map_all", "Mask", "Merge", "Truncate", "Validate"
1176
1193
  # resp.tasks[0].task_properties #=> Hash
1177
1194
  # resp.tasks[0].task_properties["OperatorPropertiesKeys"] #=> String
1178
1195
  # resp.created_at #=> Time
@@ -1874,6 +1891,16 @@ module Aws::Appflow
1874
1891
  # domain_name: "DomainName", # required
1875
1892
  # object_type_name: "ObjectTypeName",
1876
1893
  # },
1894
+ # zendesk: {
1895
+ # object: "Object", # required
1896
+ # id_field_names: ["Name"],
1897
+ # error_handling_config: {
1898
+ # fail_on_first_destination_error: false,
1899
+ # bucket_prefix: "BucketPrefix",
1900
+ # bucket_name: "BucketName",
1901
+ # },
1902
+ # write_operation_type: "INSERT", # accepts INSERT, UPSERT, UPDATE
1903
+ # },
1877
1904
  # },
1878
1905
  # },
1879
1906
  # ],
@@ -1897,7 +1924,7 @@ module Aws::Appflow
1897
1924
  # zendesk: "PROJECTION", # accepts PROJECTION, GREATER_THAN, ADDITION, MULTIPLICATION, DIVISION, SUBTRACTION, MASK_ALL, MASK_FIRST_N, MASK_LAST_N, VALIDATE_NON_NULL, VALIDATE_NON_ZERO, VALIDATE_NON_NEGATIVE, VALIDATE_NUMERIC, NO_OP
1898
1925
  # },
1899
1926
  # destination_field: "DestinationField",
1900
- # task_type: "Arithmetic", # required, accepts Arithmetic, Filter, Map, Mask, Merge, Truncate, Validate
1927
+ # task_type: "Arithmetic", # required, accepts Arithmetic, Filter, Map, Map_all, Mask, Merge, Truncate, Validate
1901
1928
  # task_properties: {
1902
1929
  # "VALUE" => "Property",
1903
1930
  # },
@@ -1931,7 +1958,7 @@ module Aws::Appflow
1931
1958
  params: params,
1932
1959
  config: config)
1933
1960
  context[:gem_name] = 'aws-sdk-appflow'
1934
- context[:gem_version] = '1.9.0'
1961
+ context[:gem_version] = '1.13.0'
1935
1962
  Seahorse::Client::Request.new(handlers, context)
1936
1963
  end
1937
1964
 
@@ -282,6 +282,7 @@ module Aws::Appflow
282
282
  ZendeskConnectorOperator = Shapes::StringShape.new(name: 'ZendeskConnectorOperator')
283
283
  ZendeskConnectorProfileCredentials = Shapes::StructureShape.new(name: 'ZendeskConnectorProfileCredentials')
284
284
  ZendeskConnectorProfileProperties = Shapes::StructureShape.new(name: 'ZendeskConnectorProfileProperties')
285
+ ZendeskDestinationProperties = Shapes::StructureShape.new(name: 'ZendeskDestinationProperties')
285
286
  ZendeskMetadata = Shapes::StructureShape.new(name: 'ZendeskMetadata')
286
287
  ZendeskSourceProperties = Shapes::StructureShape.new(name: 'ZendeskSourceProperties')
287
288
 
@@ -558,6 +559,7 @@ module Aws::Appflow
558
559
  DestinationConnectorProperties.add_member(:upsolver, Shapes::ShapeRef.new(shape: UpsolverDestinationProperties, location_name: "Upsolver"))
559
560
  DestinationConnectorProperties.add_member(:honeycode, Shapes::ShapeRef.new(shape: HoneycodeDestinationProperties, location_name: "Honeycode"))
560
561
  DestinationConnectorProperties.add_member(:customer_profiles, Shapes::ShapeRef.new(shape: CustomerProfilesDestinationProperties, location_name: "CustomerProfiles"))
562
+ DestinationConnectorProperties.add_member(:zendesk, Shapes::ShapeRef.new(shape: ZendeskDestinationProperties, location_name: "Zendesk"))
561
563
  DestinationConnectorProperties.struct_class = Types::DestinationConnectorProperties
562
564
 
563
565
  DestinationFieldProperties.add_member(:is_creatable, Shapes::ShapeRef.new(shape: Boolean, location_name: "isCreatable"))
@@ -1033,6 +1035,12 @@ module Aws::Appflow
1033
1035
  ZendeskConnectorProfileProperties.add_member(:instance_url, Shapes::ShapeRef.new(shape: InstanceUrl, required: true, location_name: "instanceUrl"))
1034
1036
  ZendeskConnectorProfileProperties.struct_class = Types::ZendeskConnectorProfileProperties
1035
1037
 
1038
+ ZendeskDestinationProperties.add_member(:object, Shapes::ShapeRef.new(shape: Object, required: true, location_name: "object"))
1039
+ ZendeskDestinationProperties.add_member(:id_field_names, Shapes::ShapeRef.new(shape: IdFieldNameList, location_name: "idFieldNames"))
1040
+ ZendeskDestinationProperties.add_member(:error_handling_config, Shapes::ShapeRef.new(shape: ErrorHandlingConfig, location_name: "errorHandlingConfig"))
1041
+ ZendeskDestinationProperties.add_member(:write_operation_type, Shapes::ShapeRef.new(shape: WriteOperationType, location_name: "writeOperationType"))
1042
+ ZendeskDestinationProperties.struct_class = Types::ZendeskDestinationProperties
1043
+
1036
1044
  ZendeskMetadata.add_member(:o_auth_scopes, Shapes::ShapeRef.new(shape: OAuthScopeList, location_name: "oAuthScopes"))
1037
1045
  ZendeskMetadata.struct_class = Types::ZendeskMetadata
1038
1046
 
@@ -1455,6 +1455,16 @@ module Aws::Appflow
1455
1455
  # domain_name: "DomainName", # required
1456
1456
  # object_type_name: "ObjectTypeName",
1457
1457
  # },
1458
+ # zendesk: {
1459
+ # object: "Object", # required
1460
+ # id_field_names: ["Name"],
1461
+ # error_handling_config: {
1462
+ # fail_on_first_destination_error: false,
1463
+ # bucket_prefix: "BucketPrefix",
1464
+ # bucket_name: "BucketName",
1465
+ # },
1466
+ # write_operation_type: "INSERT", # accepts INSERT, UPSERT, UPDATE
1467
+ # },
1458
1468
  # },
1459
1469
  # },
1460
1470
  # ],
@@ -1478,7 +1488,7 @@ module Aws::Appflow
1478
1488
  # zendesk: "PROJECTION", # accepts PROJECTION, GREATER_THAN, ADDITION, MULTIPLICATION, DIVISION, SUBTRACTION, MASK_ALL, MASK_FIRST_N, MASK_LAST_N, VALIDATE_NON_NULL, VALIDATE_NON_ZERO, VALIDATE_NON_NEGATIVE, VALIDATE_NUMERIC, NO_OP
1479
1489
  # },
1480
1490
  # destination_field: "DestinationField",
1481
- # task_type: "Arithmetic", # required, accepts Arithmetic, Filter, Map, Mask, Merge, Truncate, Validate
1491
+ # task_type: "Arithmetic", # required, accepts Arithmetic, Filter, Map, Map_all, Mask, Merge, Truncate, Validate
1482
1492
  # task_properties: {
1483
1493
  # "VALUE" => "Property",
1484
1494
  # },
@@ -2143,6 +2153,16 @@ module Aws::Appflow
2143
2153
  # domain_name: "DomainName", # required
2144
2154
  # object_type_name: "ObjectTypeName",
2145
2155
  # },
2156
+ # zendesk: {
2157
+ # object: "Object", # required
2158
+ # id_field_names: ["Name"],
2159
+ # error_handling_config: {
2160
+ # fail_on_first_destination_error: false,
2161
+ # bucket_prefix: "BucketPrefix",
2162
+ # bucket_name: "BucketName",
2163
+ # },
2164
+ # write_operation_type: "INSERT", # accepts INSERT, UPSERT, UPDATE
2165
+ # },
2146
2166
  # }
2147
2167
  #
2148
2168
  # @!attribute [rw] redshift
@@ -2181,6 +2201,10 @@ module Aws::Appflow
2181
2201
  # The properties required to query Amazon Connect Customer Profiles.
2182
2202
  # @return [Types::CustomerProfilesDestinationProperties]
2183
2203
  #
2204
+ # @!attribute [rw] zendesk
2205
+ # The properties required to query Zendesk.
2206
+ # @return [Types::ZendeskDestinationProperties]
2207
+ #
2184
2208
  # @see http://docs.aws.amazon.com/goto/WebAPI/appflow-2020-08-23/DestinationConnectorProperties AWS API Documentation
2185
2209
  #
2186
2210
  class DestinationConnectorProperties < Struct.new(
@@ -2192,7 +2216,8 @@ module Aws::Appflow
2192
2216
  :lookout_metrics,
2193
2217
  :upsolver,
2194
2218
  :honeycode,
2195
- :customer_profiles)
2219
+ :customer_profiles,
2220
+ :zendesk)
2196
2221
  SENSITIVE = []
2197
2222
  include Aws::Structure
2198
2223
  end
@@ -2328,6 +2353,16 @@ module Aws::Appflow
2328
2353
  # domain_name: "DomainName", # required
2329
2354
  # object_type_name: "ObjectTypeName",
2330
2355
  # },
2356
+ # zendesk: {
2357
+ # object: "Object", # required
2358
+ # id_field_names: ["Name"],
2359
+ # error_handling_config: {
2360
+ # fail_on_first_destination_error: false,
2361
+ # bucket_prefix: "BucketPrefix",
2362
+ # bucket_name: "BucketName",
2363
+ # },
2364
+ # write_operation_type: "INSERT", # accepts INSERT, UPSERT, UPDATE
2365
+ # },
2331
2366
  # },
2332
2367
  # }
2333
2368
  #
@@ -4623,7 +4658,7 @@ module Aws::Appflow
4623
4658
  # zendesk: "PROJECTION", # accepts PROJECTION, GREATER_THAN, ADDITION, MULTIPLICATION, DIVISION, SUBTRACTION, MASK_ALL, MASK_FIRST_N, MASK_LAST_N, VALIDATE_NON_NULL, VALIDATE_NON_ZERO, VALIDATE_NON_NEGATIVE, VALIDATE_NUMERIC, NO_OP
4624
4659
  # },
4625
4660
  # destination_field: "DestinationField",
4626
- # task_type: "Arithmetic", # required, accepts Arithmetic, Filter, Map, Mask, Merge, Truncate, Validate
4661
+ # task_type: "Arithmetic", # required, accepts Arithmetic, Filter, Map, Map_all, Mask, Merge, Truncate, Validate
4627
4662
  # task_properties: {
4628
4663
  # "VALUE" => "Property",
4629
4664
  # },
@@ -5194,6 +5229,16 @@ module Aws::Appflow
5194
5229
  # domain_name: "DomainName", # required
5195
5230
  # object_type_name: "ObjectTypeName",
5196
5231
  # },
5232
+ # zendesk: {
5233
+ # object: "Object", # required
5234
+ # id_field_names: ["Name"],
5235
+ # error_handling_config: {
5236
+ # fail_on_first_destination_error: false,
5237
+ # bucket_prefix: "BucketPrefix",
5238
+ # bucket_name: "BucketName",
5239
+ # },
5240
+ # write_operation_type: "INSERT", # accepts INSERT, UPSERT, UPDATE
5241
+ # },
5197
5242
  # },
5198
5243
  # },
5199
5244
  # ],
@@ -5217,7 +5262,7 @@ module Aws::Appflow
5217
5262
  # zendesk: "PROJECTION", # accepts PROJECTION, GREATER_THAN, ADDITION, MULTIPLICATION, DIVISION, SUBTRACTION, MASK_ALL, MASK_FIRST_N, MASK_LAST_N, VALIDATE_NON_NULL, VALIDATE_NON_ZERO, VALIDATE_NON_NEGATIVE, VALIDATE_NUMERIC, NO_OP
5218
5263
  # },
5219
5264
  # destination_field: "DestinationField",
5220
- # task_type: "Arithmetic", # required, accepts Arithmetic, Filter, Map, Mask, Merge, Truncate, Validate
5265
+ # task_type: "Arithmetic", # required, accepts Arithmetic, Filter, Map, Map_all, Mask, Merge, Truncate, Validate
5221
5266
  # task_properties: {
5222
5267
  # "VALUE" => "Property",
5223
5268
  # },
@@ -5527,6 +5572,56 @@ module Aws::Appflow
5527
5572
  include Aws::Structure
5528
5573
  end
5529
5574
 
5575
+ # The properties that are applied when Zendesk is used as a destination.
5576
+ #
5577
+ # @note When making an API call, you may pass ZendeskDestinationProperties
5578
+ # data as a hash:
5579
+ #
5580
+ # {
5581
+ # object: "Object", # required
5582
+ # id_field_names: ["Name"],
5583
+ # error_handling_config: {
5584
+ # fail_on_first_destination_error: false,
5585
+ # bucket_prefix: "BucketPrefix",
5586
+ # bucket_name: "BucketName",
5587
+ # },
5588
+ # write_operation_type: "INSERT", # accepts INSERT, UPSERT, UPDATE
5589
+ # }
5590
+ #
5591
+ # @!attribute [rw] object
5592
+ # The object specified in the Zendesk flow destination.
5593
+ # @return [String]
5594
+ #
5595
+ # @!attribute [rw] id_field_names
5596
+ # A list of field names that can be used as an ID field when
5597
+ # performing a write operation.
5598
+ # @return [Array<String>]
5599
+ #
5600
+ # @!attribute [rw] error_handling_config
5601
+ # The settings that determine how Amazon AppFlow handles an error when
5602
+ # placing data in the destination. For example, this setting would
5603
+ # determine if the flow should fail after one insertion error, or
5604
+ # continue and attempt to insert every record regardless of the
5605
+ # initial failure. `ErrorHandlingConfig` is a part of the destination
5606
+ # connector details.
5607
+ # @return [Types::ErrorHandlingConfig]
5608
+ #
5609
+ # @!attribute [rw] write_operation_type
5610
+ # The possible write operations in the destination connector. When
5611
+ # this value is not provided, this defaults to the `INSERT` operation.
5612
+ # @return [String]
5613
+ #
5614
+ # @see http://docs.aws.amazon.com/goto/WebAPI/appflow-2020-08-23/ZendeskDestinationProperties AWS API Documentation
5615
+ #
5616
+ class ZendeskDestinationProperties < Struct.new(
5617
+ :object,
5618
+ :id_field_names,
5619
+ :error_handling_config,
5620
+ :write_operation_type)
5621
+ SENSITIVE = []
5622
+ include Aws::Structure
5623
+ end
5624
+
5530
5625
  # The connector metadata specific to Zendesk.
5531
5626
  #
5532
5627
  # @!attribute [rw] o_auth_scopes
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-appflow
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.9.0
4
+ version: 1.13.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Amazon Web Services
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2021-03-10 00:00:00.000000000 Z
11
+ date: 2021-07-30 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core
@@ -19,7 +19,7 @@ dependencies:
19
19
  version: '3'
20
20
  - - ">="
21
21
  - !ruby/object:Gem::Version
22
- version: 3.112.0
22
+ version: 3.119.0
23
23
  type: :runtime
24
24
  prerelease: false
25
25
  version_requirements: !ruby/object:Gem::Requirement
@@ -29,7 +29,7 @@ dependencies:
29
29
  version: '3'
30
30
  - - ">="
31
31
  - !ruby/object:Gem::Version
32
- version: 3.112.0
32
+ version: 3.119.0
33
33
  - !ruby/object:Gem::Dependency
34
34
  name: aws-sigv4
35
35
  requirement: !ruby/object:Gem::Requirement
@@ -66,8 +66,8 @@ homepage: https://github.com/aws/aws-sdk-ruby
66
66
  licenses:
67
67
  - Apache-2.0
68
68
  metadata:
69
- source_code_uri: https://github.com/aws/aws-sdk-ruby/tree/master/gems/aws-sdk-appflow
70
- changelog_uri: https://github.com/aws/aws-sdk-ruby/tree/master/gems/aws-sdk-appflow/CHANGELOG.md
69
+ source_code_uri: https://github.com/aws/aws-sdk-ruby/tree/version-3/gems/aws-sdk-appflow
70
+ changelog_uri: https://github.com/aws/aws-sdk-ruby/tree/version-3/gems/aws-sdk-appflow/CHANGELOG.md
71
71
  post_install_message:
72
72
  rdoc_options: []
73
73
  require_paths:
@@ -83,8 +83,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
83
83
  - !ruby/object:Gem::Version
84
84
  version: '0'
85
85
  requirements: []
86
- rubyforge_project:
87
- rubygems_version: 2.7.6.2
86
+ rubygems_version: 3.1.6
88
87
  signing_key:
89
88
  specification_version: 4
90
89
  summary: AWS SDK for Ruby - Amazon Appflow