aws-sdk-appflow 1.24.0 → 1.27.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: e7a3bd2ab3148c238ef893becbebc67f4d6f44001cc8095776b794387877418d
4
- data.tar.gz: 601fccc64f1e49cb455e413efe598065319cdc413f3d0a21a38a54ce10c04fef
3
+ metadata.gz: b3b39dd2b85beb50b0f8ce08892d26debcc334ef5cdc864db6e694f19f9c1d2d
4
+ data.tar.gz: d2947354a1f002e72f03936ce692f6c986965c62248a5f6745ec2866d97a0239
5
5
  SHA512:
6
- metadata.gz: cac458b16bc9d98958e9ae8d1ad9c4ca2c0705ebe3b11a66dcaa33d0961c39cb650e5ff3a16de09bab8915cc3b9b89194fd9b6b6fa4b0d1870b48f8c1659794f
7
- data.tar.gz: 52b21f7dd9c949851044d8b5b8f9ad4badab59fd7b66ff5e1a95427644f7eaad2235342fc8527c1a4cc3de153ed3b154a3dc57cb949acc90f6342d830d397695
6
+ metadata.gz: 6c9386f160b09c358f8e1181811adcc8f6a94e0f715954d561636b7829d6564e70b6e5cf7708135c525fb333845f0dc4d66a26e61de4a5b3484df891be116bc4
7
+ data.tar.gz: f71dd62069b5fdce98d8bc02f512ec985c2a0f64a2c8180cef42792eb8c2774781fcbcadd818cdfe6f99a969662f3a251fae5155de8b9d657daa81ddb93e6abb
data/CHANGELOG.md CHANGED
@@ -1,6 +1,21 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.27.0 (2022-05-27)
5
+ ------------------
6
+
7
+ * Feature - Adding the following features/changes: Parquet output that preserves typing from the source connector, Failed executions threshold before deactivation for scheduled flows, increasing max size of access and refresh token from 2048 to 4096
8
+
9
+ 1.26.0 (2022-04-14)
10
+ ------------------
11
+
12
+ * Feature - Enables users to pass custom token URL parameters for Oauth2 authentication during create connector profile
13
+
14
+ 1.25.0 (2022-03-03)
15
+ ------------------
16
+
17
+ * Feature - Launching Amazon AppFlow Marketo as a destination connector SDK.
18
+
4
19
  1.24.0 (2022-02-24)
5
20
  ------------------
6
21
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.24.0
1
+ 1.27.0
@@ -355,7 +355,9 @@ module Aws::Appflow
355
355
  # Services account. There is a soft quota of 100 connector profiles per
356
356
  # Amazon Web Services account. If you need more connector profiles than
357
357
  # this quota allows, you can submit a request to the Amazon AppFlow team
358
- # through the Amazon AppFlow support channel.
358
+ # through the Amazon AppFlow support channel. In each connector profile
359
+ # that you create, you can provide the credentials and properties for
360
+ # only one connector.
359
361
  #
360
362
  # @option params [required, String] :connector_profile_name
361
363
  # The name of the connector profile. The name is unique for each
@@ -471,6 +473,9 @@ module Aws::Appflow
471
473
  # o_auth_2_properties: {
472
474
  # token_url: "TokenUrl", # required
473
475
  # o_auth_2_grant_type: "CLIENT_CREDENTIALS", # required, accepts CLIENT_CREDENTIALS, AUTHORIZATION_CODE
476
+ # token_url_custom_properties: {
477
+ # "CustomPropertyKey" => "CustomPropertyValue",
478
+ # },
474
479
  # },
475
480
  # },
476
481
  # },
@@ -688,6 +693,7 @@ module Aws::Appflow
688
693
  # timezone: "Timezone",
689
694
  # schedule_offset: 1,
690
695
  # first_execution_from: Time.now,
696
+ # flow_error_deactivation_threshold: 1,
691
697
  # },
692
698
  # },
693
699
  # },
@@ -790,6 +796,7 @@ module Aws::Appflow
790
796
  # aggregation_config: {
791
797
  # aggregation_type: "None", # accepts None, SingleFile
792
798
  # },
799
+ # preserve_source_data_typing: false,
793
800
  # },
794
801
  # },
795
802
  # salesforce: {
@@ -858,6 +865,14 @@ module Aws::Appflow
858
865
  # },
859
866
  # write_operation_type: "INSERT", # accepts INSERT, UPSERT, UPDATE, DELETE
860
867
  # },
868
+ # marketo: {
869
+ # object: "Object", # required
870
+ # error_handling_config: {
871
+ # fail_on_first_destination_error: false,
872
+ # bucket_prefix: "BucketPrefix",
873
+ # bucket_name: "BucketName",
874
+ # },
875
+ # },
861
876
  # custom_connector: {
862
877
  # entity_name: "EntityName", # required
863
878
  # error_handling_config: {
@@ -1062,6 +1077,15 @@ module Aws::Appflow
1062
1077
  # resp.connector_configuration.authentication_config.o_auth_2_defaults.auth_code_urls[0] #=> String
1063
1078
  # resp.connector_configuration.authentication_config.o_auth_2_defaults.oauth2_grant_types_supported #=> Array
1064
1079
  # resp.connector_configuration.authentication_config.o_auth_2_defaults.oauth2_grant_types_supported[0] #=> String, one of "CLIENT_CREDENTIALS", "AUTHORIZATION_CODE"
1080
+ # resp.connector_configuration.authentication_config.o_auth_2_defaults.oauth2_custom_properties #=> Array
1081
+ # resp.connector_configuration.authentication_config.o_auth_2_defaults.oauth2_custom_properties[0].key #=> String
1082
+ # resp.connector_configuration.authentication_config.o_auth_2_defaults.oauth2_custom_properties[0].is_required #=> Boolean
1083
+ # resp.connector_configuration.authentication_config.o_auth_2_defaults.oauth2_custom_properties[0].label #=> String
1084
+ # resp.connector_configuration.authentication_config.o_auth_2_defaults.oauth2_custom_properties[0].description #=> String
1085
+ # resp.connector_configuration.authentication_config.o_auth_2_defaults.oauth2_custom_properties[0].is_sensitive_field #=> Boolean
1086
+ # resp.connector_configuration.authentication_config.o_auth_2_defaults.oauth2_custom_properties[0].connector_supplied_values #=> Array
1087
+ # resp.connector_configuration.authentication_config.o_auth_2_defaults.oauth2_custom_properties[0].connector_supplied_values[0] #=> String
1088
+ # resp.connector_configuration.authentication_config.o_auth_2_defaults.oauth2_custom_properties[0].type #=> String, one of "TOKEN_URL", "AUTH_URL"
1065
1089
  # resp.connector_configuration.authentication_config.custom_auth_configs #=> Array
1066
1090
  # resp.connector_configuration.authentication_config.custom_auth_configs[0].custom_authentication_type #=> String
1067
1091
  # resp.connector_configuration.authentication_config.custom_auth_configs[0].auth_parameters #=> Array
@@ -1103,7 +1127,7 @@ module Aws::Appflow
1103
1127
  end
1104
1128
 
1105
1129
  # Provides details regarding the entity used with the connector, with a
1106
- # description of the data model for each entity.
1130
+ # description of the data model for each field in that entity.
1107
1131
  #
1108
1132
  # @option params [required, String] :connector_entity_name
1109
1133
  # The entity name for that connector.
@@ -1264,6 +1288,8 @@ module Aws::Appflow
1264
1288
  # resp.connector_profile_details[0].connector_profile_properties.custom_connector.profile_properties["ProfilePropertyKey"] #=> String
1265
1289
  # resp.connector_profile_details[0].connector_profile_properties.custom_connector.o_auth_2_properties.token_url #=> String
1266
1290
  # resp.connector_profile_details[0].connector_profile_properties.custom_connector.o_auth_2_properties.o_auth_2_grant_type #=> String, one of "CLIENT_CREDENTIALS", "AUTHORIZATION_CODE"
1291
+ # resp.connector_profile_details[0].connector_profile_properties.custom_connector.o_auth_2_properties.token_url_custom_properties #=> Hash
1292
+ # resp.connector_profile_details[0].connector_profile_properties.custom_connector.o_auth_2_properties.token_url_custom_properties["CustomPropertyKey"] #=> String
1267
1293
  # resp.connector_profile_details[0].created_at #=> Time
1268
1294
  # resp.connector_profile_details[0].last_updated_at #=> Time
1269
1295
  # resp.connector_profile_details[0].private_connection_provisioning_state.status #=> String, one of "FAILED", "PENDING", "CREATED"
@@ -1360,6 +1386,15 @@ module Aws::Appflow
1360
1386
  # resp.connector_configurations["ConnectorType"].authentication_config.o_auth_2_defaults.auth_code_urls[0] #=> String
1361
1387
  # resp.connector_configurations["ConnectorType"].authentication_config.o_auth_2_defaults.oauth2_grant_types_supported #=> Array
1362
1388
  # resp.connector_configurations["ConnectorType"].authentication_config.o_auth_2_defaults.oauth2_grant_types_supported[0] #=> String, one of "CLIENT_CREDENTIALS", "AUTHORIZATION_CODE"
1389
+ # resp.connector_configurations["ConnectorType"].authentication_config.o_auth_2_defaults.oauth2_custom_properties #=> Array
1390
+ # resp.connector_configurations["ConnectorType"].authentication_config.o_auth_2_defaults.oauth2_custom_properties[0].key #=> String
1391
+ # resp.connector_configurations["ConnectorType"].authentication_config.o_auth_2_defaults.oauth2_custom_properties[0].is_required #=> Boolean
1392
+ # resp.connector_configurations["ConnectorType"].authentication_config.o_auth_2_defaults.oauth2_custom_properties[0].label #=> String
1393
+ # resp.connector_configurations["ConnectorType"].authentication_config.o_auth_2_defaults.oauth2_custom_properties[0].description #=> String
1394
+ # resp.connector_configurations["ConnectorType"].authentication_config.o_auth_2_defaults.oauth2_custom_properties[0].is_sensitive_field #=> Boolean
1395
+ # resp.connector_configurations["ConnectorType"].authentication_config.o_auth_2_defaults.oauth2_custom_properties[0].connector_supplied_values #=> Array
1396
+ # resp.connector_configurations["ConnectorType"].authentication_config.o_auth_2_defaults.oauth2_custom_properties[0].connector_supplied_values[0] #=> String
1397
+ # resp.connector_configurations["ConnectorType"].authentication_config.o_auth_2_defaults.oauth2_custom_properties[0].type #=> String, one of "TOKEN_URL", "AUTH_URL"
1363
1398
  # resp.connector_configurations["ConnectorType"].authentication_config.custom_auth_configs #=> Array
1364
1399
  # resp.connector_configurations["ConnectorType"].authentication_config.custom_auth_configs[0].custom_authentication_type #=> String
1365
1400
  # resp.connector_configurations["ConnectorType"].authentication_config.custom_auth_configs[0].auth_parameters #=> Array
@@ -1499,6 +1534,7 @@ module Aws::Appflow
1499
1534
  # resp.destination_flow_config_list[0].destination_connector_properties.s3.s3_output_format_config.prefix_config.prefix_type #=> String, one of "FILENAME", "PATH", "PATH_AND_FILENAME"
1500
1535
  # resp.destination_flow_config_list[0].destination_connector_properties.s3.s3_output_format_config.prefix_config.prefix_format #=> String, one of "YEAR", "MONTH", "DAY", "HOUR", "MINUTE"
1501
1536
  # resp.destination_flow_config_list[0].destination_connector_properties.s3.s3_output_format_config.aggregation_config.aggregation_type #=> String, one of "None", "SingleFile"
1537
+ # resp.destination_flow_config_list[0].destination_connector_properties.s3.s3_output_format_config.preserve_source_data_typing #=> Boolean
1502
1538
  # resp.destination_flow_config_list[0].destination_connector_properties.salesforce.object #=> String
1503
1539
  # resp.destination_flow_config_list[0].destination_connector_properties.salesforce.id_field_names #=> Array
1504
1540
  # resp.destination_flow_config_list[0].destination_connector_properties.salesforce.id_field_names[0] #=> String
@@ -1535,6 +1571,10 @@ module Aws::Appflow
1535
1571
  # resp.destination_flow_config_list[0].destination_connector_properties.zendesk.error_handling_config.bucket_prefix #=> String
1536
1572
  # resp.destination_flow_config_list[0].destination_connector_properties.zendesk.error_handling_config.bucket_name #=> String
1537
1573
  # resp.destination_flow_config_list[0].destination_connector_properties.zendesk.write_operation_type #=> String, one of "INSERT", "UPSERT", "UPDATE", "DELETE"
1574
+ # resp.destination_flow_config_list[0].destination_connector_properties.marketo.object #=> String
1575
+ # resp.destination_flow_config_list[0].destination_connector_properties.marketo.error_handling_config.fail_on_first_destination_error #=> Boolean
1576
+ # resp.destination_flow_config_list[0].destination_connector_properties.marketo.error_handling_config.bucket_prefix #=> String
1577
+ # resp.destination_flow_config_list[0].destination_connector_properties.marketo.error_handling_config.bucket_name #=> String
1538
1578
  # resp.destination_flow_config_list[0].destination_connector_properties.custom_connector.entity_name #=> String
1539
1579
  # resp.destination_flow_config_list[0].destination_connector_properties.custom_connector.error_handling_config.fail_on_first_destination_error #=> Boolean
1540
1580
  # resp.destination_flow_config_list[0].destination_connector_properties.custom_connector.error_handling_config.bucket_prefix #=> String
@@ -1564,6 +1604,7 @@ module Aws::Appflow
1564
1604
  # resp.trigger_config.trigger_properties.scheduled.timezone #=> String
1565
1605
  # resp.trigger_config.trigger_properties.scheduled.schedule_offset #=> Integer
1566
1606
  # resp.trigger_config.trigger_properties.scheduled.first_execution_from #=> Time
1607
+ # resp.trigger_config.trigger_properties.scheduled.flow_error_deactivation_threshold #=> Integer
1567
1608
  # resp.tasks #=> Array
1568
1609
  # resp.tasks[0].source_fields #=> Array
1569
1610
  # resp.tasks[0].source_fields[0] #=> String
@@ -2145,6 +2186,9 @@ module Aws::Appflow
2145
2186
  # o_auth_2_properties: {
2146
2187
  # token_url: "TokenUrl", # required
2147
2188
  # o_auth_2_grant_type: "CLIENT_CREDENTIALS", # required, accepts CLIENT_CREDENTIALS, AUTHORIZATION_CODE
2189
+ # token_url_custom_properties: {
2190
+ # "CustomPropertyKey" => "CustomPropertyValue",
2191
+ # },
2148
2192
  # },
2149
2193
  # },
2150
2194
  # },
@@ -2346,6 +2390,7 @@ module Aws::Appflow
2346
2390
  # timezone: "Timezone",
2347
2391
  # schedule_offset: 1,
2348
2392
  # first_execution_from: Time.now,
2393
+ # flow_error_deactivation_threshold: 1,
2349
2394
  # },
2350
2395
  # },
2351
2396
  # },
@@ -2448,6 +2493,7 @@ module Aws::Appflow
2448
2493
  # aggregation_config: {
2449
2494
  # aggregation_type: "None", # accepts None, SingleFile
2450
2495
  # },
2496
+ # preserve_source_data_typing: false,
2451
2497
  # },
2452
2498
  # },
2453
2499
  # salesforce: {
@@ -2516,6 +2562,14 @@ module Aws::Appflow
2516
2562
  # },
2517
2563
  # write_operation_type: "INSERT", # accepts INSERT, UPSERT, UPDATE, DELETE
2518
2564
  # },
2565
+ # marketo: {
2566
+ # object: "Object", # required
2567
+ # error_handling_config: {
2568
+ # fail_on_first_destination_error: false,
2569
+ # bucket_prefix: "BucketPrefix",
2570
+ # bucket_name: "BucketName",
2571
+ # },
2572
+ # },
2519
2573
  # custom_connector: {
2520
2574
  # entity_name: "EntityName", # required
2521
2575
  # error_handling_config: {
@@ -2602,7 +2656,7 @@ module Aws::Appflow
2602
2656
  params: params,
2603
2657
  config: config)
2604
2658
  context[:gem_name] = 'aws-sdk-appflow'
2605
- context[:gem_version] = '1.24.0'
2659
+ context[:gem_version] = '1.27.0'
2606
2660
  Seahorse::Client::Request.new(handlers, context)
2607
2661
  end
2608
2662
 
@@ -171,6 +171,7 @@ module Aws::Appflow
171
171
  FlowArn = Shapes::StringShape.new(name: 'FlowArn')
172
172
  FlowDefinition = Shapes::StructureShape.new(name: 'FlowDefinition')
173
173
  FlowDescription = Shapes::StringShape.new(name: 'FlowDescription')
174
+ FlowErrorDeactivationThreshold = Shapes::IntegerShape.new(name: 'FlowErrorDeactivationThreshold')
174
175
  FlowExecutionList = Shapes::ListShape.new(name: 'FlowExecutionList')
175
176
  FlowList = Shapes::ListShape.new(name: 'FlowList')
176
177
  FlowName = Shapes::StringShape.new(name: 'FlowName')
@@ -196,6 +197,7 @@ module Aws::Appflow
196
197
  InforNexusSourceProperties = Shapes::StructureShape.new(name: 'InforNexusSourceProperties')
197
198
  InstanceUrl = Shapes::StringShape.new(name: 'InstanceUrl')
198
199
  InternalServerException = Shapes::StructureShape.new(name: 'InternalServerException')
200
+ JavaBoolean = Shapes::BooleanShape.new(name: 'JavaBoolean')
199
201
  KMSArn = Shapes::StringShape.new(name: 'KMSArn')
200
202
  Key = Shapes::StringShape.new(name: 'Key')
201
203
  Label = Shapes::StringShape.new(name: 'Label')
@@ -215,6 +217,7 @@ module Aws::Appflow
215
217
  MarketoConnectorOperator = Shapes::StringShape.new(name: 'MarketoConnectorOperator')
216
218
  MarketoConnectorProfileCredentials = Shapes::StructureShape.new(name: 'MarketoConnectorProfileCredentials')
217
219
  MarketoConnectorProfileProperties = Shapes::StructureShape.new(name: 'MarketoConnectorProfileProperties')
220
+ MarketoDestinationProperties = Shapes::StructureShape.new(name: 'MarketoDestinationProperties')
218
221
  MarketoMetadata = Shapes::StructureShape.new(name: 'MarketoMetadata')
219
222
  MarketoSourceProperties = Shapes::StructureShape.new(name: 'MarketoSourceProperties')
220
223
  MaxResults = Shapes::IntegerShape.new(name: 'MaxResults')
@@ -222,6 +225,9 @@ module Aws::Appflow
222
225
  Name = Shapes::StringShape.new(name: 'Name')
223
226
  NextToken = Shapes::StringShape.new(name: 'NextToken')
224
227
  OAuth2Credentials = Shapes::StructureShape.new(name: 'OAuth2Credentials')
228
+ OAuth2CustomParameter = Shapes::StructureShape.new(name: 'OAuth2CustomParameter')
229
+ OAuth2CustomPropType = Shapes::StringShape.new(name: 'OAuth2CustomPropType')
230
+ OAuth2CustomPropertiesList = Shapes::ListShape.new(name: 'OAuth2CustomPropertiesList')
225
231
  OAuth2Defaults = Shapes::StructureShape.new(name: 'OAuth2Defaults')
226
232
  OAuth2GrantType = Shapes::StringShape.new(name: 'OAuth2GrantType')
227
233
  OAuth2GrantTypeSupportedList = Shapes::ListShape.new(name: 'OAuth2GrantTypeSupportedList')
@@ -338,6 +344,7 @@ module Aws::Appflow
338
344
  ThrottlingException = Shapes::StructureShape.new(name: 'ThrottlingException')
339
345
  Timezone = Shapes::StringShape.new(name: 'Timezone')
340
346
  TokenUrl = Shapes::StringShape.new(name: 'TokenUrl')
347
+ TokenUrlCustomProperties = Shapes::MapShape.new(name: 'TokenUrlCustomProperties')
341
348
  TokenUrlList = Shapes::ListShape.new(name: 'TokenUrlList')
342
349
  TrendmicroConnectorOperator = Shapes::StringShape.new(name: 'TrendmicroConnectorOperator')
343
350
  TrendmicroConnectorProfileCredentials = Shapes::StructureShape.new(name: 'TrendmicroConnectorProfileCredentials')
@@ -801,6 +808,7 @@ module Aws::Appflow
801
808
  DestinationConnectorProperties.add_member(:honeycode, Shapes::ShapeRef.new(shape: HoneycodeDestinationProperties, location_name: "Honeycode"))
802
809
  DestinationConnectorProperties.add_member(:customer_profiles, Shapes::ShapeRef.new(shape: CustomerProfilesDestinationProperties, location_name: "CustomerProfiles"))
803
810
  DestinationConnectorProperties.add_member(:zendesk, Shapes::ShapeRef.new(shape: ZendeskDestinationProperties, location_name: "Zendesk"))
811
+ DestinationConnectorProperties.add_member(:marketo, Shapes::ShapeRef.new(shape: MarketoDestinationProperties, location_name: "Marketo"))
804
812
  DestinationConnectorProperties.add_member(:custom_connector, Shapes::ShapeRef.new(shape: CustomConnectorDestinationProperties, location_name: "CustomConnector"))
805
813
  DestinationConnectorProperties.add_member(:sapo_data, Shapes::ShapeRef.new(shape: SAPODataDestinationProperties, location_name: "SAPOData"))
806
814
  DestinationConnectorProperties.struct_class = Types::DestinationConnectorProperties
@@ -995,6 +1003,10 @@ module Aws::Appflow
995
1003
  MarketoConnectorProfileProperties.add_member(:instance_url, Shapes::ShapeRef.new(shape: InstanceUrl, required: true, location_name: "instanceUrl"))
996
1004
  MarketoConnectorProfileProperties.struct_class = Types::MarketoConnectorProfileProperties
997
1005
 
1006
+ MarketoDestinationProperties.add_member(:object, Shapes::ShapeRef.new(shape: Object, required: true, location_name: "object"))
1007
+ MarketoDestinationProperties.add_member(:error_handling_config, Shapes::ShapeRef.new(shape: ErrorHandlingConfig, location_name: "errorHandlingConfig"))
1008
+ MarketoDestinationProperties.struct_class = Types::MarketoDestinationProperties
1009
+
998
1010
  MarketoMetadata.struct_class = Types::MarketoMetadata
999
1011
 
1000
1012
  MarketoSourceProperties.add_member(:object, Shapes::ShapeRef.new(shape: Object, required: true, location_name: "object"))
@@ -1007,16 +1019,29 @@ module Aws::Appflow
1007
1019
  OAuth2Credentials.add_member(:o_auth_request, Shapes::ShapeRef.new(shape: ConnectorOAuthRequest, location_name: "oAuthRequest"))
1008
1020
  OAuth2Credentials.struct_class = Types::OAuth2Credentials
1009
1021
 
1022
+ OAuth2CustomParameter.add_member(:key, Shapes::ShapeRef.new(shape: Key, location_name: "key"))
1023
+ OAuth2CustomParameter.add_member(:is_required, Shapes::ShapeRef.new(shape: Boolean, location_name: "isRequired"))
1024
+ OAuth2CustomParameter.add_member(:label, Shapes::ShapeRef.new(shape: Label, location_name: "label"))
1025
+ OAuth2CustomParameter.add_member(:description, Shapes::ShapeRef.new(shape: Description, location_name: "description"))
1026
+ OAuth2CustomParameter.add_member(:is_sensitive_field, Shapes::ShapeRef.new(shape: Boolean, location_name: "isSensitiveField"))
1027
+ OAuth2CustomParameter.add_member(:connector_supplied_values, Shapes::ShapeRef.new(shape: ConnectorSuppliedValueList, location_name: "connectorSuppliedValues"))
1028
+ OAuth2CustomParameter.add_member(:type, Shapes::ShapeRef.new(shape: OAuth2CustomPropType, location_name: "type"))
1029
+ OAuth2CustomParameter.struct_class = Types::OAuth2CustomParameter
1030
+
1031
+ OAuth2CustomPropertiesList.member = Shapes::ShapeRef.new(shape: OAuth2CustomParameter)
1032
+
1010
1033
  OAuth2Defaults.add_member(:oauth_scopes, Shapes::ShapeRef.new(shape: OAuthScopeList, location_name: "oauthScopes"))
1011
1034
  OAuth2Defaults.add_member(:token_urls, Shapes::ShapeRef.new(shape: TokenUrlList, location_name: "tokenUrls"))
1012
1035
  OAuth2Defaults.add_member(:auth_code_urls, Shapes::ShapeRef.new(shape: AuthCodeUrlList, location_name: "authCodeUrls"))
1013
1036
  OAuth2Defaults.add_member(:oauth2_grant_types_supported, Shapes::ShapeRef.new(shape: OAuth2GrantTypeSupportedList, location_name: "oauth2GrantTypesSupported"))
1037
+ OAuth2Defaults.add_member(:oauth2_custom_properties, Shapes::ShapeRef.new(shape: OAuth2CustomPropertiesList, location_name: "oauth2CustomProperties"))
1014
1038
  OAuth2Defaults.struct_class = Types::OAuth2Defaults
1015
1039
 
1016
1040
  OAuth2GrantTypeSupportedList.member = Shapes::ShapeRef.new(shape: OAuth2GrantType)
1017
1041
 
1018
1042
  OAuth2Properties.add_member(:token_url, Shapes::ShapeRef.new(shape: TokenUrl, required: true, location_name: "tokenUrl"))
1019
1043
  OAuth2Properties.add_member(:o_auth_2_grant_type, Shapes::ShapeRef.new(shape: OAuth2GrantType, required: true, location_name: "oAuth2GrantType"))
1044
+ OAuth2Properties.add_member(:token_url_custom_properties, Shapes::ShapeRef.new(shape: TokenUrlCustomProperties, location_name: "tokenUrlCustomProperties"))
1020
1045
  OAuth2Properties.struct_class = Types::OAuth2Properties
1021
1046
 
1022
1047
  OAuthCredentials.add_member(:client_id, Shapes::ShapeRef.new(shape: ClientId, required: true, location_name: "clientId"))
@@ -1094,6 +1119,7 @@ module Aws::Appflow
1094
1119
  S3OutputFormatConfig.add_member(:file_type, Shapes::ShapeRef.new(shape: FileType, location_name: "fileType"))
1095
1120
  S3OutputFormatConfig.add_member(:prefix_config, Shapes::ShapeRef.new(shape: PrefixConfig, location_name: "prefixConfig"))
1096
1121
  S3OutputFormatConfig.add_member(:aggregation_config, Shapes::ShapeRef.new(shape: AggregationConfig, location_name: "aggregationConfig"))
1122
+ S3OutputFormatConfig.add_member(:preserve_source_data_typing, Shapes::ShapeRef.new(shape: JavaBoolean, location_name: "preserveSourceDataTyping"))
1097
1123
  S3OutputFormatConfig.struct_class = Types::S3OutputFormatConfig
1098
1124
 
1099
1125
  S3SourceProperties.add_member(:bucket_name, Shapes::ShapeRef.new(shape: BucketName, required: true, location_name: "bucketName"))
@@ -1157,6 +1183,7 @@ module Aws::Appflow
1157
1183
  ScheduledTriggerProperties.add_member(:timezone, Shapes::ShapeRef.new(shape: Timezone, location_name: "timezone"))
1158
1184
  ScheduledTriggerProperties.add_member(:schedule_offset, Shapes::ShapeRef.new(shape: ScheduleOffset, location_name: "scheduleOffset", metadata: {"box"=>true}))
1159
1185
  ScheduledTriggerProperties.add_member(:first_execution_from, Shapes::ShapeRef.new(shape: Date, location_name: "firstExecutionFrom"))
1186
+ ScheduledTriggerProperties.add_member(:flow_error_deactivation_threshold, Shapes::ShapeRef.new(shape: FlowErrorDeactivationThreshold, location_name: "flowErrorDeactivationThreshold", metadata: {"box"=>true}))
1160
1187
  ScheduledTriggerProperties.struct_class = Types::ScheduledTriggerProperties
1161
1188
 
1162
1189
  SchedulingFrequencyTypeList.member = Shapes::ShapeRef.new(shape: ScheduleFrequencyType)
@@ -1311,6 +1338,9 @@ module Aws::Appflow
1311
1338
  ThrottlingException.add_member(:message, Shapes::ShapeRef.new(shape: ErrorMessage, location_name: "message"))
1312
1339
  ThrottlingException.struct_class = Types::ThrottlingException
1313
1340
 
1341
+ TokenUrlCustomProperties.key = Shapes::ShapeRef.new(shape: CustomPropertyKey)
1342
+ TokenUrlCustomProperties.value = Shapes::ShapeRef.new(shape: CustomPropertyValue)
1343
+
1314
1344
  TokenUrlList.member = Shapes::ShapeRef.new(shape: TokenUrl)
1315
1345
 
1316
1346
  TrendmicroConnectorProfileCredentials.add_member(:api_secret_key, Shapes::ShapeRef.new(shape: ApiSecretKey, required: true, location_name: "apiSecretKey"))
@@ -997,6 +997,9 @@ module Aws::Appflow
997
997
  # o_auth_2_properties: {
998
998
  # token_url: "TokenUrl", # required
999
999
  # o_auth_2_grant_type: "CLIENT_CREDENTIALS", # required, accepts CLIENT_CREDENTIALS, AUTHORIZATION_CODE
1000
+ # token_url_custom_properties: {
1001
+ # "CustomPropertyKey" => "CustomPropertyValue",
1002
+ # },
1000
1003
  # },
1001
1004
  # },
1002
1005
  # },
@@ -1482,6 +1485,9 @@ module Aws::Appflow
1482
1485
  # o_auth_2_properties: {
1483
1486
  # token_url: "TokenUrl", # required
1484
1487
  # o_auth_2_grant_type: "CLIENT_CREDENTIALS", # required, accepts CLIENT_CREDENTIALS, AUTHORIZATION_CODE
1488
+ # token_url_custom_properties: {
1489
+ # "CustomPropertyKey" => "CustomPropertyValue",
1490
+ # },
1485
1491
  # },
1486
1492
  # },
1487
1493
  # }
@@ -1752,6 +1758,9 @@ module Aws::Appflow
1752
1758
  # o_auth_2_properties: {
1753
1759
  # token_url: "TokenUrl", # required
1754
1760
  # o_auth_2_grant_type: "CLIENT_CREDENTIALS", # required, accepts CLIENT_CREDENTIALS, AUTHORIZATION_CODE
1761
+ # token_url_custom_properties: {
1762
+ # "CustomPropertyKey" => "CustomPropertyValue",
1763
+ # },
1755
1764
  # },
1756
1765
  # },
1757
1766
  # },
@@ -1973,6 +1982,7 @@ module Aws::Appflow
1973
1982
  # timezone: "Timezone",
1974
1983
  # schedule_offset: 1,
1975
1984
  # first_execution_from: Time.now,
1985
+ # flow_error_deactivation_threshold: 1,
1976
1986
  # },
1977
1987
  # },
1978
1988
  # },
@@ -2075,6 +2085,7 @@ module Aws::Appflow
2075
2085
  # aggregation_config: {
2076
2086
  # aggregation_type: "None", # accepts None, SingleFile
2077
2087
  # },
2088
+ # preserve_source_data_typing: false,
2078
2089
  # },
2079
2090
  # },
2080
2091
  # salesforce: {
@@ -2143,6 +2154,14 @@ module Aws::Appflow
2143
2154
  # },
2144
2155
  # write_operation_type: "INSERT", # accepts INSERT, UPSERT, UPDATE, DELETE
2145
2156
  # },
2157
+ # marketo: {
2158
+ # object: "Object", # required
2159
+ # error_handling_config: {
2160
+ # fail_on_first_destination_error: false,
2161
+ # bucket_prefix: "BucketPrefix",
2162
+ # bucket_name: "BucketName",
2163
+ # },
2164
+ # },
2146
2165
  # custom_connector: {
2147
2166
  # entity_name: "EntityName", # required
2148
2167
  # error_handling_config: {
@@ -2466,6 +2485,9 @@ module Aws::Appflow
2466
2485
  # o_auth_2_properties: {
2467
2486
  # token_url: "TokenUrl", # required
2468
2487
  # o_auth_2_grant_type: "CLIENT_CREDENTIALS", # required, accepts CLIENT_CREDENTIALS, AUTHORIZATION_CODE
2488
+ # token_url_custom_properties: {
2489
+ # "CustomPropertyKey" => "CustomPropertyValue",
2490
+ # },
2469
2491
  # },
2470
2492
  # }
2471
2493
  #
@@ -3109,6 +3131,7 @@ module Aws::Appflow
3109
3131
  # aggregation_config: {
3110
3132
  # aggregation_type: "None", # accepts None, SingleFile
3111
3133
  # },
3134
+ # preserve_source_data_typing: false,
3112
3135
  # },
3113
3136
  # },
3114
3137
  # salesforce: {
@@ -3177,6 +3200,14 @@ module Aws::Appflow
3177
3200
  # },
3178
3201
  # write_operation_type: "INSERT", # accepts INSERT, UPSERT, UPDATE, DELETE
3179
3202
  # },
3203
+ # marketo: {
3204
+ # object: "Object", # required
3205
+ # error_handling_config: {
3206
+ # fail_on_first_destination_error: false,
3207
+ # bucket_prefix: "BucketPrefix",
3208
+ # bucket_name: "BucketName",
3209
+ # },
3210
+ # },
3180
3211
  # custom_connector: {
3181
3212
  # entity_name: "EntityName", # required
3182
3213
  # error_handling_config: {
@@ -3246,6 +3277,10 @@ module Aws::Appflow
3246
3277
  # The properties required to query Zendesk.
3247
3278
  # @return [Types::ZendeskDestinationProperties]
3248
3279
  #
3280
+ # @!attribute [rw] marketo
3281
+ # The properties required to query Marketo.
3282
+ # @return [Types::MarketoDestinationProperties]
3283
+ #
3249
3284
  # @!attribute [rw] custom_connector
3250
3285
  # The properties that are required to query the custom Connector.
3251
3286
  # @return [Types::CustomConnectorDestinationProperties]
@@ -3267,6 +3302,7 @@ module Aws::Appflow
3267
3302
  :honeycode,
3268
3303
  :customer_profiles,
3269
3304
  :zendesk,
3305
+ :marketo,
3270
3306
  :custom_connector,
3271
3307
  :sapo_data)
3272
3308
  SENSITIVE = []
@@ -3353,6 +3389,7 @@ module Aws::Appflow
3353
3389
  # aggregation_config: {
3354
3390
  # aggregation_type: "None", # accepts None, SingleFile
3355
3391
  # },
3392
+ # preserve_source_data_typing: false,
3356
3393
  # },
3357
3394
  # },
3358
3395
  # salesforce: {
@@ -3421,6 +3458,14 @@ module Aws::Appflow
3421
3458
  # },
3422
3459
  # write_operation_type: "INSERT", # accepts INSERT, UPSERT, UPDATE, DELETE
3423
3460
  # },
3461
+ # marketo: {
3462
+ # object: "Object", # required
3463
+ # error_handling_config: {
3464
+ # fail_on_first_destination_error: false,
3465
+ # bucket_prefix: "BucketPrefix",
3466
+ # bucket_name: "BucketName",
3467
+ # },
3468
+ # },
3424
3469
  # custom_connector: {
3425
3470
  # entity_name: "EntityName", # required
3426
3471
  # error_handling_config: {
@@ -4486,6 +4531,43 @@ module Aws::Appflow
4486
4531
  include Aws::Structure
4487
4532
  end
4488
4533
 
4534
+ # The properties that Amazon AppFlow applies when you use Marketo as a
4535
+ # flow destination.
4536
+ #
4537
+ # @note When making an API call, you may pass MarketoDestinationProperties
4538
+ # data as a hash:
4539
+ #
4540
+ # {
4541
+ # object: "Object", # required
4542
+ # error_handling_config: {
4543
+ # fail_on_first_destination_error: false,
4544
+ # bucket_prefix: "BucketPrefix",
4545
+ # bucket_name: "BucketName",
4546
+ # },
4547
+ # }
4548
+ #
4549
+ # @!attribute [rw] object
4550
+ # The object specified in the Marketo flow destination.
4551
+ # @return [String]
4552
+ #
4553
+ # @!attribute [rw] error_handling_config
4554
+ # The settings that determine how Amazon AppFlow handles an error when
4555
+ # placing data in the destination. For example, this setting would
4556
+ # determine if the flow should fail after one insertion error, or
4557
+ # continue and attempt to insert every record regardless of the
4558
+ # initial failure. `ErrorHandlingConfig` is a part of the destination
4559
+ # connector details.
4560
+ # @return [Types::ErrorHandlingConfig]
4561
+ #
4562
+ # @see http://docs.aws.amazon.com/goto/WebAPI/appflow-2020-08-23/MarketoDestinationProperties AWS API Documentation
4563
+ #
4564
+ class MarketoDestinationProperties < Struct.new(
4565
+ :object,
4566
+ :error_handling_config)
4567
+ SENSITIVE = []
4568
+ include Aws::Structure
4569
+ end
4570
+
4489
4571
  # The connector metadata specific to Marketo.
4490
4572
  #
4491
4573
  # @see http://docs.aws.amazon.com/goto/WebAPI/appflow-2020-08-23/MarketoMetadata AWS API Documentation
@@ -4564,6 +4646,55 @@ module Aws::Appflow
4564
4646
  include Aws::Structure
4565
4647
  end
4566
4648
 
4649
+ # Custom parameter required for OAuth 2.0 authentication.
4650
+ #
4651
+ # @!attribute [rw] key
4652
+ # The key of the custom parameter required for OAuth 2.0
4653
+ # authentication.
4654
+ # @return [String]
4655
+ #
4656
+ # @!attribute [rw] is_required
4657
+ # Indicates whether the custom parameter for OAuth 2.0 authentication
4658
+ # is required.
4659
+ # @return [Boolean]
4660
+ #
4661
+ # @!attribute [rw] label
4662
+ # The label of the custom parameter used for OAuth 2.0 authentication.
4663
+ # @return [String]
4664
+ #
4665
+ # @!attribute [rw] description
4666
+ # A description about the custom parameter used for OAuth 2.0
4667
+ # authentication.
4668
+ # @return [String]
4669
+ #
4670
+ # @!attribute [rw] is_sensitive_field
4671
+ # Indicates whether this authentication custom parameter is a
4672
+ # sensitive field.
4673
+ # @return [Boolean]
4674
+ #
4675
+ # @!attribute [rw] connector_supplied_values
4676
+ # Contains default values for this authentication parameter that are
4677
+ # supplied by the connector.
4678
+ # @return [Array<String>]
4679
+ #
4680
+ # @!attribute [rw] type
4681
+ # Indicates whether custom parameter is used with TokenUrl or AuthUrl.
4682
+ # @return [String]
4683
+ #
4684
+ # @see http://docs.aws.amazon.com/goto/WebAPI/appflow-2020-08-23/OAuth2CustomParameter AWS API Documentation
4685
+ #
4686
+ class OAuth2CustomParameter < Struct.new(
4687
+ :key,
4688
+ :is_required,
4689
+ :label,
4690
+ :description,
4691
+ :is_sensitive_field,
4692
+ :connector_supplied_values,
4693
+ :type)
4694
+ SENSITIVE = []
4695
+ include Aws::Structure
4696
+ end
4697
+
4567
4698
  # Contains the default values required for OAuth 2.0 authentication.
4568
4699
  #
4569
4700
  # @!attribute [rw] oauth_scopes
@@ -4582,13 +4713,18 @@ module Aws::Appflow
4582
4713
  # OAuth 2.0 grant types supported by the connector.
4583
4714
  # @return [Array<String>]
4584
4715
  #
4716
+ # @!attribute [rw] oauth2_custom_properties
4717
+ # List of custom parameters required for OAuth 2.0 authentication.
4718
+ # @return [Array<Types::OAuth2CustomParameter>]
4719
+ #
4585
4720
  # @see http://docs.aws.amazon.com/goto/WebAPI/appflow-2020-08-23/OAuth2Defaults AWS API Documentation
4586
4721
  #
4587
4722
  class OAuth2Defaults < Struct.new(
4588
4723
  :oauth_scopes,
4589
4724
  :token_urls,
4590
4725
  :auth_code_urls,
4591
- :oauth2_grant_types_supported)
4726
+ :oauth2_grant_types_supported,
4727
+ :oauth2_custom_properties)
4592
4728
  SENSITIVE = []
4593
4729
  include Aws::Structure
4594
4730
  end
@@ -4601,6 +4737,9 @@ module Aws::Appflow
4601
4737
  # {
4602
4738
  # token_url: "TokenUrl", # required
4603
4739
  # o_auth_2_grant_type: "CLIENT_CREDENTIALS", # required, accepts CLIENT_CREDENTIALS, AUTHORIZATION_CODE
4740
+ # token_url_custom_properties: {
4741
+ # "CustomPropertyKey" => "CustomPropertyValue",
4742
+ # },
4604
4743
  # }
4605
4744
  #
4606
4745
  # @!attribute [rw] token_url
@@ -4612,11 +4751,18 @@ module Aws::Appflow
4612
4751
  # authentication.
4613
4752
  # @return [String]
4614
4753
  #
4754
+ # @!attribute [rw] token_url_custom_properties
4755
+ # Associates your token URL with a map of properties that you define.
4756
+ # Use this parameter to provide any additional details that the
4757
+ # connector requires to authenticate your request.
4758
+ # @return [Hash<String,String>]
4759
+ #
4615
4760
  # @see http://docs.aws.amazon.com/goto/WebAPI/appflow-2020-08-23/OAuth2Properties AWS API Documentation
4616
4761
  #
4617
4762
  class OAuth2Properties < Struct.new(
4618
4763
  :token_url,
4619
- :o_auth_2_grant_type)
4764
+ :o_auth_2_grant_type,
4765
+ :token_url_custom_properties)
4620
4766
  SENSITIVE = []
4621
4767
  include Aws::Structure
4622
4768
  end
@@ -4993,6 +5139,7 @@ module Aws::Appflow
4993
5139
  # aggregation_config: {
4994
5140
  # aggregation_type: "None", # accepts None, SingleFile
4995
5141
  # },
5142
+ # preserve_source_data_typing: false,
4996
5143
  # },
4997
5144
  # }
4998
5145
  #
@@ -5064,6 +5211,7 @@ module Aws::Appflow
5064
5211
  # aggregation_config: {
5065
5212
  # aggregation_type: "None", # accepts None, SingleFile
5066
5213
  # },
5214
+ # preserve_source_data_typing: false,
5067
5215
  # }
5068
5216
  #
5069
5217
  # @!attribute [rw] file_type
@@ -5082,12 +5230,27 @@ module Aws::Appflow
5082
5230
  # format of your flow data.
5083
5231
  # @return [Types::AggregationConfig]
5084
5232
  #
5233
+ # @!attribute [rw] preserve_source_data_typing
5234
+ # If your file output format is Parquet, use this parameter to set
5235
+ # whether Amazon AppFlow preserves the data types in your source data
5236
+ # when it writes the output to Amazon S3.
5237
+ #
5238
+ # * `true`\: Amazon AppFlow preserves the data types when it writes to
5239
+ # Amazon S3. For example, an integer or `1` in your source data is
5240
+ # still an integer in your output.
5241
+ #
5242
+ # * `false`\: Amazon AppFlow converts all of the source data into
5243
+ # strings when it writes to Amazon S3. For example, an integer of
5244
+ # `1` in your source data becomes the string `"1"` in the output.
5245
+ # @return [Boolean]
5246
+ #
5085
5247
  # @see http://docs.aws.amazon.com/goto/WebAPI/appflow-2020-08-23/S3OutputFormatConfig AWS API Documentation
5086
5248
  #
5087
5249
  class S3OutputFormatConfig < Struct.new(
5088
5250
  :file_type,
5089
5251
  :prefix_config,
5090
- :aggregation_config)
5252
+ :aggregation_config,
5253
+ :preserve_source_data_typing)
5091
5254
  SENSITIVE = []
5092
5255
  include Aws::Structure
5093
5256
  end
@@ -5517,6 +5680,7 @@ module Aws::Appflow
5517
5680
  # timezone: "Timezone",
5518
5681
  # schedule_offset: 1,
5519
5682
  # first_execution_from: Time.now,
5683
+ # flow_error_deactivation_threshold: 1,
5520
5684
  # }
5521
5685
  #
5522
5686
  # @!attribute [rw] schedule_expression
@@ -5530,16 +5694,27 @@ module Aws::Appflow
5530
5694
  # @return [String]
5531
5695
  #
5532
5696
  # @!attribute [rw] schedule_start_time
5533
- # Specifies the scheduled start time for a schedule-triggered flow.
5697
+ # The time at which the scheduled flow starts. The time is formatted
5698
+ # as a timestamp that follows the ISO 8601 standard, such as
5699
+ # `2022-04-26T13:00:00-07:00`.
5534
5700
  # @return [Time]
5535
5701
  #
5536
5702
  # @!attribute [rw] schedule_end_time
5537
- # Specifies the scheduled end time for a schedule-triggered flow.
5703
+ # The time at which the scheduled flow ends. The time is formatted as
5704
+ # a timestamp that follows the ISO 8601 standard, such as
5705
+ # `2022-04-27T13:00:00-07:00`.
5538
5706
  # @return [Time]
5539
5707
  #
5540
5708
  # @!attribute [rw] timezone
5541
- # Specifies the time zone used when referring to the date and time of
5542
- # a scheduled-triggered flow, such as `America/New_York`.
5709
+ # Specifies the time zone used when referring to the dates and times
5710
+ # of a scheduled flow, such as `America/New_York`. This time zone is
5711
+ # only a descriptive label. It doesn't affect how Amazon AppFlow
5712
+ # interprets the timestamps that you specify to schedule the flow.
5713
+ #
5714
+ # If you want to schedule a flow by using times in a particular time
5715
+ # zone, indicate the time zone as a UTC offset in your timestamps. For
5716
+ # example, the UTC offsets for the `America/New_York` timezone are
5717
+ # `-04:00` EDT and `-05:00 EST`.
5543
5718
  # @return [String]
5544
5719
  #
5545
5720
  # @!attribute [rw] schedule_offset
@@ -5552,6 +5727,11 @@ module Aws::Appflow
5552
5727
  # connector in the first flow run.
5553
5728
  # @return [Time]
5554
5729
  #
5730
+ # @!attribute [rw] flow_error_deactivation_threshold
5731
+ # Defines how many times a scheduled flow fails consecutively before
5732
+ # Amazon AppFlow deactivates it.
5733
+ # @return [Integer]
5734
+ #
5555
5735
  # @see http://docs.aws.amazon.com/goto/WebAPI/appflow-2020-08-23/ScheduledTriggerProperties AWS API Documentation
5556
5736
  #
5557
5737
  class ScheduledTriggerProperties < Struct.new(
@@ -5561,7 +5741,8 @@ module Aws::Appflow
5561
5741
  :schedule_end_time,
5562
5742
  :timezone,
5563
5743
  :schedule_offset,
5564
- :first_execution_from)
5744
+ :first_execution_from,
5745
+ :flow_error_deactivation_threshold)
5565
5746
  SENSITIVE = []
5566
5747
  include Aws::Structure
5567
5748
  end
@@ -6593,6 +6774,7 @@ module Aws::Appflow
6593
6774
  # timezone: "Timezone",
6594
6775
  # schedule_offset: 1,
6595
6776
  # first_execution_from: Time.now,
6777
+ # flow_error_deactivation_threshold: 1,
6596
6778
  # },
6597
6779
  # },
6598
6780
  # }
@@ -6633,6 +6815,7 @@ module Aws::Appflow
6633
6815
  # timezone: "Timezone",
6634
6816
  # schedule_offset: 1,
6635
6817
  # first_execution_from: Time.now,
6818
+ # flow_error_deactivation_threshold: 1,
6636
6819
  # },
6637
6820
  # }
6638
6821
  #
@@ -6805,6 +6988,9 @@ module Aws::Appflow
6805
6988
  # o_auth_2_properties: {
6806
6989
  # token_url: "TokenUrl", # required
6807
6990
  # o_auth_2_grant_type: "CLIENT_CREDENTIALS", # required, accepts CLIENT_CREDENTIALS, AUTHORIZATION_CODE
6991
+ # token_url_custom_properties: {
6992
+ # "CustomPropertyKey" => "CustomPropertyValue",
6993
+ # },
6808
6994
  # },
6809
6995
  # },
6810
6996
  # },
@@ -7002,6 +7188,7 @@ module Aws::Appflow
7002
7188
  # timezone: "Timezone",
7003
7189
  # schedule_offset: 1,
7004
7190
  # first_execution_from: Time.now,
7191
+ # flow_error_deactivation_threshold: 1,
7005
7192
  # },
7006
7193
  # },
7007
7194
  # },
@@ -7104,6 +7291,7 @@ module Aws::Appflow
7104
7291
  # aggregation_config: {
7105
7292
  # aggregation_type: "None", # accepts None, SingleFile
7106
7293
  # },
7294
+ # preserve_source_data_typing: false,
7107
7295
  # },
7108
7296
  # },
7109
7297
  # salesforce: {
@@ -7172,6 +7360,14 @@ module Aws::Appflow
7172
7360
  # },
7173
7361
  # write_operation_type: "INSERT", # accepts INSERT, UPSERT, UPDATE, DELETE
7174
7362
  # },
7363
+ # marketo: {
7364
+ # object: "Object", # required
7365
+ # error_handling_config: {
7366
+ # fail_on_first_destination_error: false,
7367
+ # bucket_prefix: "BucketPrefix",
7368
+ # bucket_name: "BucketName",
7369
+ # },
7370
+ # },
7175
7371
  # custom_connector: {
7176
7372
  # entity_name: "EntityName", # required
7177
7373
  # error_handling_config: {
@@ -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.24.0'
51
+ GEM_VERSION = '1.27.0'
52
52
 
53
53
  end
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.24.0
4
+ version: 1.27.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: 2022-02-24 00:00:00.000000000 Z
11
+ date: 2022-05-27 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core