aws-sdk-appflow 1.26.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: e6939317be062f5ff1b7a4f64f04cef74df0727bcb1b1fdb416eb03c0ed959b1
4
- data.tar.gz: 1d39a8c00f636bf0dd6ad7899145543d15b665854dca5f896ad5ab8f3de128a9
3
+ metadata.gz: b3b39dd2b85beb50b0f8ce08892d26debcc334ef5cdc864db6e694f19f9c1d2d
4
+ data.tar.gz: d2947354a1f002e72f03936ce692f6c986965c62248a5f6745ec2866d97a0239
5
5
  SHA512:
6
- metadata.gz: c892168b94a35dc7f29f5ed30bd90a7aac821f44d3bd60b59b57d8c337dfdd947fe07891ba286ba80aadba2fc4209c6845948a00fe650fb642e91c3bda8ca4a1
7
- data.tar.gz: 606e3b64d7f613cbd8309e2203b354c21491ed59d6977c9cdd7a832936fda28f9c86bccc2114cb404e34423d2f73bb2c4f15794c125b0b875b84a104d80baf54
6
+ metadata.gz: 6c9386f160b09c358f8e1181811adcc8f6a94e0f715954d561636b7829d6564e70b6e5cf7708135c525fb333845f0dc4d66a26e61de4a5b3484df891be116bc4
7
+ data.tar.gz: f71dd62069b5fdce98d8bc02f512ec985c2a0f64a2c8180cef42792eb8c2774781fcbcadd818cdfe6f99a969662f3a251fae5155de8b9d657daa81ddb93e6abb
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
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
+
4
9
  1.26.0 (2022-04-14)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.26.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
@@ -691,6 +693,7 @@ module Aws::Appflow
691
693
  # timezone: "Timezone",
692
694
  # schedule_offset: 1,
693
695
  # first_execution_from: Time.now,
696
+ # flow_error_deactivation_threshold: 1,
694
697
  # },
695
698
  # },
696
699
  # },
@@ -793,6 +796,7 @@ module Aws::Appflow
793
796
  # aggregation_config: {
794
797
  # aggregation_type: "None", # accepts None, SingleFile
795
798
  # },
799
+ # preserve_source_data_typing: false,
796
800
  # },
797
801
  # },
798
802
  # salesforce: {
@@ -1123,7 +1127,7 @@ module Aws::Appflow
1123
1127
  end
1124
1128
 
1125
1129
  # Provides details regarding the entity used with the connector, with a
1126
- # description of the data model for each entity.
1130
+ # description of the data model for each field in that entity.
1127
1131
  #
1128
1132
  # @option params [required, String] :connector_entity_name
1129
1133
  # The entity name for that connector.
@@ -1530,6 +1534,7 @@ module Aws::Appflow
1530
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"
1531
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"
1532
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
1533
1538
  # resp.destination_flow_config_list[0].destination_connector_properties.salesforce.object #=> String
1534
1539
  # resp.destination_flow_config_list[0].destination_connector_properties.salesforce.id_field_names #=> Array
1535
1540
  # resp.destination_flow_config_list[0].destination_connector_properties.salesforce.id_field_names[0] #=> String
@@ -1599,6 +1604,7 @@ module Aws::Appflow
1599
1604
  # resp.trigger_config.trigger_properties.scheduled.timezone #=> String
1600
1605
  # resp.trigger_config.trigger_properties.scheduled.schedule_offset #=> Integer
1601
1606
  # resp.trigger_config.trigger_properties.scheduled.first_execution_from #=> Time
1607
+ # resp.trigger_config.trigger_properties.scheduled.flow_error_deactivation_threshold #=> Integer
1602
1608
  # resp.tasks #=> Array
1603
1609
  # resp.tasks[0].source_fields #=> Array
1604
1610
  # resp.tasks[0].source_fields[0] #=> String
@@ -2384,6 +2390,7 @@ module Aws::Appflow
2384
2390
  # timezone: "Timezone",
2385
2391
  # schedule_offset: 1,
2386
2392
  # first_execution_from: Time.now,
2393
+ # flow_error_deactivation_threshold: 1,
2387
2394
  # },
2388
2395
  # },
2389
2396
  # },
@@ -2486,6 +2493,7 @@ module Aws::Appflow
2486
2493
  # aggregation_config: {
2487
2494
  # aggregation_type: "None", # accepts None, SingleFile
2488
2495
  # },
2496
+ # preserve_source_data_typing: false,
2489
2497
  # },
2490
2498
  # },
2491
2499
  # salesforce: {
@@ -2648,7 +2656,7 @@ module Aws::Appflow
2648
2656
  params: params,
2649
2657
  config: config)
2650
2658
  context[:gem_name] = 'aws-sdk-appflow'
2651
- context[:gem_version] = '1.26.0'
2659
+ context[:gem_version] = '1.27.0'
2652
2660
  Seahorse::Client::Request.new(handlers, context)
2653
2661
  end
2654
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')
@@ -1117,6 +1119,7 @@ module Aws::Appflow
1117
1119
  S3OutputFormatConfig.add_member(:file_type, Shapes::ShapeRef.new(shape: FileType, location_name: "fileType"))
1118
1120
  S3OutputFormatConfig.add_member(:prefix_config, Shapes::ShapeRef.new(shape: PrefixConfig, location_name: "prefixConfig"))
1119
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"))
1120
1123
  S3OutputFormatConfig.struct_class = Types::S3OutputFormatConfig
1121
1124
 
1122
1125
  S3SourceProperties.add_member(:bucket_name, Shapes::ShapeRef.new(shape: BucketName, required: true, location_name: "bucketName"))
@@ -1180,6 +1183,7 @@ module Aws::Appflow
1180
1183
  ScheduledTriggerProperties.add_member(:timezone, Shapes::ShapeRef.new(shape: Timezone, location_name: "timezone"))
1181
1184
  ScheduledTriggerProperties.add_member(:schedule_offset, Shapes::ShapeRef.new(shape: ScheduleOffset, location_name: "scheduleOffset", metadata: {"box"=>true}))
1182
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}))
1183
1187
  ScheduledTriggerProperties.struct_class = Types::ScheduledTriggerProperties
1184
1188
 
1185
1189
  SchedulingFrequencyTypeList.member = Shapes::ShapeRef.new(shape: ScheduleFrequencyType)
@@ -1982,6 +1982,7 @@ module Aws::Appflow
1982
1982
  # timezone: "Timezone",
1983
1983
  # schedule_offset: 1,
1984
1984
  # first_execution_from: Time.now,
1985
+ # flow_error_deactivation_threshold: 1,
1985
1986
  # },
1986
1987
  # },
1987
1988
  # },
@@ -2084,6 +2085,7 @@ module Aws::Appflow
2084
2085
  # aggregation_config: {
2085
2086
  # aggregation_type: "None", # accepts None, SingleFile
2086
2087
  # },
2088
+ # preserve_source_data_typing: false,
2087
2089
  # },
2088
2090
  # },
2089
2091
  # salesforce: {
@@ -3129,6 +3131,7 @@ module Aws::Appflow
3129
3131
  # aggregation_config: {
3130
3132
  # aggregation_type: "None", # accepts None, SingleFile
3131
3133
  # },
3134
+ # preserve_source_data_typing: false,
3132
3135
  # },
3133
3136
  # },
3134
3137
  # salesforce: {
@@ -3386,6 +3389,7 @@ module Aws::Appflow
3386
3389
  # aggregation_config: {
3387
3390
  # aggregation_type: "None", # accepts None, SingleFile
3388
3391
  # },
3392
+ # preserve_source_data_typing: false,
3389
3393
  # },
3390
3394
  # },
3391
3395
  # salesforce: {
@@ -5135,6 +5139,7 @@ module Aws::Appflow
5135
5139
  # aggregation_config: {
5136
5140
  # aggregation_type: "None", # accepts None, SingleFile
5137
5141
  # },
5142
+ # preserve_source_data_typing: false,
5138
5143
  # },
5139
5144
  # }
5140
5145
  #
@@ -5206,6 +5211,7 @@ module Aws::Appflow
5206
5211
  # aggregation_config: {
5207
5212
  # aggregation_type: "None", # accepts None, SingleFile
5208
5213
  # },
5214
+ # preserve_source_data_typing: false,
5209
5215
  # }
5210
5216
  #
5211
5217
  # @!attribute [rw] file_type
@@ -5224,12 +5230,27 @@ module Aws::Appflow
5224
5230
  # format of your flow data.
5225
5231
  # @return [Types::AggregationConfig]
5226
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
+ #
5227
5247
  # @see http://docs.aws.amazon.com/goto/WebAPI/appflow-2020-08-23/S3OutputFormatConfig AWS API Documentation
5228
5248
  #
5229
5249
  class S3OutputFormatConfig < Struct.new(
5230
5250
  :file_type,
5231
5251
  :prefix_config,
5232
- :aggregation_config)
5252
+ :aggregation_config,
5253
+ :preserve_source_data_typing)
5233
5254
  SENSITIVE = []
5234
5255
  include Aws::Structure
5235
5256
  end
@@ -5659,6 +5680,7 @@ module Aws::Appflow
5659
5680
  # timezone: "Timezone",
5660
5681
  # schedule_offset: 1,
5661
5682
  # first_execution_from: Time.now,
5683
+ # flow_error_deactivation_threshold: 1,
5662
5684
  # }
5663
5685
  #
5664
5686
  # @!attribute [rw] schedule_expression
@@ -5672,16 +5694,27 @@ module Aws::Appflow
5672
5694
  # @return [String]
5673
5695
  #
5674
5696
  # @!attribute [rw] schedule_start_time
5675
- # 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`.
5676
5700
  # @return [Time]
5677
5701
  #
5678
5702
  # @!attribute [rw] schedule_end_time
5679
- # 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`.
5680
5706
  # @return [Time]
5681
5707
  #
5682
5708
  # @!attribute [rw] timezone
5683
- # Specifies the time zone used when referring to the date and time of
5684
- # 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`.
5685
5718
  # @return [String]
5686
5719
  #
5687
5720
  # @!attribute [rw] schedule_offset
@@ -5694,6 +5727,11 @@ module Aws::Appflow
5694
5727
  # connector in the first flow run.
5695
5728
  # @return [Time]
5696
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
+ #
5697
5735
  # @see http://docs.aws.amazon.com/goto/WebAPI/appflow-2020-08-23/ScheduledTriggerProperties AWS API Documentation
5698
5736
  #
5699
5737
  class ScheduledTriggerProperties < Struct.new(
@@ -5703,7 +5741,8 @@ module Aws::Appflow
5703
5741
  :schedule_end_time,
5704
5742
  :timezone,
5705
5743
  :schedule_offset,
5706
- :first_execution_from)
5744
+ :first_execution_from,
5745
+ :flow_error_deactivation_threshold)
5707
5746
  SENSITIVE = []
5708
5747
  include Aws::Structure
5709
5748
  end
@@ -6735,6 +6774,7 @@ module Aws::Appflow
6735
6774
  # timezone: "Timezone",
6736
6775
  # schedule_offset: 1,
6737
6776
  # first_execution_from: Time.now,
6777
+ # flow_error_deactivation_threshold: 1,
6738
6778
  # },
6739
6779
  # },
6740
6780
  # }
@@ -6775,6 +6815,7 @@ module Aws::Appflow
6775
6815
  # timezone: "Timezone",
6776
6816
  # schedule_offset: 1,
6777
6817
  # first_execution_from: Time.now,
6818
+ # flow_error_deactivation_threshold: 1,
6778
6819
  # },
6779
6820
  # }
6780
6821
  #
@@ -7147,6 +7188,7 @@ module Aws::Appflow
7147
7188
  # timezone: "Timezone",
7148
7189
  # schedule_offset: 1,
7149
7190
  # first_execution_from: Time.now,
7191
+ # flow_error_deactivation_threshold: 1,
7150
7192
  # },
7151
7193
  # },
7152
7194
  # },
@@ -7249,6 +7291,7 @@ module Aws::Appflow
7249
7291
  # aggregation_config: {
7250
7292
  # aggregation_type: "None", # accepts None, SingleFile
7251
7293
  # },
7294
+ # preserve_source_data_typing: false,
7252
7295
  # },
7253
7296
  # },
7254
7297
  # salesforce: {
@@ -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.26.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.26.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-04-14 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