aws-sdk-appflow 1.16.0 → 1.17.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: 58fe880ae99c928905178f9feade2f43b22fdbb605fdaf854861023b55f1aeaa
4
- data.tar.gz: d5b8ea12676457b09d8ce1d706d46d1d1c0ab64c9249bc5707febdb7821fbc63
3
+ metadata.gz: 6355a56c286f9368938424778f03baadf594c36cdb6cbcb9b11428926d143ee6
4
+ data.tar.gz: 340ac8408380d70be14105a85189b5d16cc0931dcf1cd49dd91d016ef722736d
5
5
  SHA512:
6
- metadata.gz: cdb9bd2c98052da3ac60fc02999a4a11f4b4befe35798682776238bb75658f04536f2cd935cdb8dc815c89961516784616b779a6deb2b145ed7158b99feb6896
7
- data.tar.gz: 799e91ee6180527f98258cf2680f1af05806ac256ebbda329f59c1b9274f239257fc5a00d2156b69e17ae00f02dfdac89d9161fbcae43543a8a17a3a578d6b2f
6
+ metadata.gz: 7091c2303e85f0a82740e0710886e05e268b4c85b48a466e51eaf611aa8922fe4b24cc1cef7b4f8e0a8203e222e0f1c0fee437158668845484040ec6e0b95ea1
7
+ data.tar.gz: c7b293f3779572c4a1341756b574ea1a710f27b815da489cb874767f3fb60dadc7dda00b9039375733a116e07557d762600c339ca6c4121f572180cc8b1fb77e
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.17.0 (2021-10-20)
5
+ ------------------
6
+
7
+ * Feature - Feature to add support for JSON-L format for S3 as a source.
8
+
4
9
  1.16.0 (2021-10-18)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.16.0
1
+ 1.17.0
@@ -650,6 +650,9 @@ module Aws::Appflow
650
650
  # s3: {
651
651
  # bucket_name: "BucketName", # required
652
652
  # bucket_prefix: "BucketPrefix",
653
+ # s3_input_format_config: {
654
+ # s3_input_file_type: "CSV", # accepts CSV, JSON
655
+ # },
653
656
  # },
654
657
  # salesforce: {
655
658
  # object: "Object", # required
@@ -1150,6 +1153,7 @@ module Aws::Appflow
1150
1153
  # resp.source_flow_config.source_connector_properties.marketo.object #=> String
1151
1154
  # resp.source_flow_config.source_connector_properties.s3.bucket_name #=> String
1152
1155
  # resp.source_flow_config.source_connector_properties.s3.bucket_prefix #=> String
1156
+ # resp.source_flow_config.source_connector_properties.s3.s3_input_format_config.s3_input_file_type #=> String, one of "CSV", "JSON"
1153
1157
  # resp.source_flow_config.source_connector_properties.salesforce.object #=> String
1154
1158
  # resp.source_flow_config.source_connector_properties.salesforce.enable_dynamic_field_update #=> Boolean
1155
1159
  # resp.source_flow_config.source_connector_properties.salesforce.include_deleted_records #=> Boolean
@@ -1863,6 +1867,9 @@ module Aws::Appflow
1863
1867
  # s3: {
1864
1868
  # bucket_name: "BucketName", # required
1865
1869
  # bucket_prefix: "BucketPrefix",
1870
+ # s3_input_format_config: {
1871
+ # s3_input_file_type: "CSV", # accepts CSV, JSON
1872
+ # },
1866
1873
  # },
1867
1874
  # salesforce: {
1868
1875
  # object: "Object", # required
@@ -2052,7 +2059,7 @@ module Aws::Appflow
2052
2059
  params: params,
2053
2060
  config: config)
2054
2061
  context[:gem_name] = 'aws-sdk-appflow'
2055
- context[:gem_version] = '1.16.0'
2062
+ context[:gem_version] = '1.17.0'
2056
2063
  Seahorse::Client::Request.new(handlers, context)
2057
2064
  end
2058
2065
 
@@ -203,6 +203,8 @@ module Aws::Appflow
203
203
  RoleArn = Shapes::StringShape.new(name: 'RoleArn')
204
204
  S3ConnectorOperator = Shapes::StringShape.new(name: 'S3ConnectorOperator')
205
205
  S3DestinationProperties = Shapes::StructureShape.new(name: 'S3DestinationProperties')
206
+ S3InputFileType = Shapes::StringShape.new(name: 'S3InputFileType')
207
+ S3InputFormatConfig = Shapes::StructureShape.new(name: 'S3InputFormatConfig')
206
208
  S3Metadata = Shapes::StructureShape.new(name: 'S3Metadata')
207
209
  S3OutputFormatConfig = Shapes::StructureShape.new(name: 'S3OutputFormatConfig')
208
210
  S3SourceProperties = Shapes::StructureShape.new(name: 'S3SourceProperties')
@@ -817,6 +819,9 @@ module Aws::Appflow
817
819
  S3DestinationProperties.add_member(:s3_output_format_config, Shapes::ShapeRef.new(shape: S3OutputFormatConfig, location_name: "s3OutputFormatConfig"))
818
820
  S3DestinationProperties.struct_class = Types::S3DestinationProperties
819
821
 
822
+ S3InputFormatConfig.add_member(:s3_input_file_type, Shapes::ShapeRef.new(shape: S3InputFileType, location_name: "s3InputFileType"))
823
+ S3InputFormatConfig.struct_class = Types::S3InputFormatConfig
824
+
820
825
  S3Metadata.struct_class = Types::S3Metadata
821
826
 
822
827
  S3OutputFormatConfig.add_member(:file_type, Shapes::ShapeRef.new(shape: FileType, location_name: "fileType"))
@@ -826,6 +831,7 @@ module Aws::Appflow
826
831
 
827
832
  S3SourceProperties.add_member(:bucket_name, Shapes::ShapeRef.new(shape: BucketName, required: true, location_name: "bucketName"))
828
833
  S3SourceProperties.add_member(:bucket_prefix, Shapes::ShapeRef.new(shape: BucketPrefix, location_name: "bucketPrefix"))
834
+ S3SourceProperties.add_member(:s3_input_format_config, Shapes::ShapeRef.new(shape: S3InputFormatConfig, location_name: "s3InputFormatConfig"))
829
835
  S3SourceProperties.struct_class = Types::S3SourceProperties
830
836
 
831
837
  SAPODataConnectorProfileCredentials.add_member(:basic_auth_credentials, Shapes::ShapeRef.new(shape: BasicAuthCredentials, location_name: "basicAuthCredentials"))
@@ -1485,6 +1485,9 @@ module Aws::Appflow
1485
1485
  # s3: {
1486
1486
  # bucket_name: "BucketName", # required
1487
1487
  # bucket_prefix: "BucketPrefix",
1488
+ # s3_input_format_config: {
1489
+ # s3_input_file_type: "CSV", # accepts CSV, JSON
1490
+ # },
1488
1491
  # },
1489
1492
  # salesforce: {
1490
1493
  # object: "Object", # required
@@ -3797,6 +3800,28 @@ module Aws::Appflow
3797
3800
  include Aws::Structure
3798
3801
  end
3799
3802
 
3803
+ # When you use Amazon S3 as the source, the configuration format that
3804
+ # you provide the flow input data.
3805
+ #
3806
+ # @note When making an API call, you may pass S3InputFormatConfig
3807
+ # data as a hash:
3808
+ #
3809
+ # {
3810
+ # s3_input_file_type: "CSV", # accepts CSV, JSON
3811
+ # }
3812
+ #
3813
+ # @!attribute [rw] s3_input_file_type
3814
+ # The file type that Amazon AppFlow gets from your Amazon S3 bucket.
3815
+ # @return [String]
3816
+ #
3817
+ # @see http://docs.aws.amazon.com/goto/WebAPI/appflow-2020-08-23/S3InputFormatConfig AWS API Documentation
3818
+ #
3819
+ class S3InputFormatConfig < Struct.new(
3820
+ :s3_input_file_type)
3821
+ SENSITIVE = []
3822
+ include Aws::Structure
3823
+ end
3824
+
3800
3825
  # The connector metadata specific to Amazon S3.
3801
3826
  #
3802
3827
  # @see http://docs.aws.amazon.com/goto/WebAPI/appflow-2020-08-23/S3Metadata AWS API Documentation
@@ -3855,6 +3880,9 @@ module Aws::Appflow
3855
3880
  # {
3856
3881
  # bucket_name: "BucketName", # required
3857
3882
  # bucket_prefix: "BucketPrefix",
3883
+ # s3_input_format_config: {
3884
+ # s3_input_file_type: "CSV", # accepts CSV, JSON
3885
+ # },
3858
3886
  # }
3859
3887
  #
3860
3888
  # @!attribute [rw] bucket_name
@@ -3866,11 +3894,17 @@ module Aws::Appflow
3866
3894
  # are stored.
3867
3895
  # @return [String]
3868
3896
  #
3897
+ # @!attribute [rw] s3_input_format_config
3898
+ # When you use Amazon S3 as the source, the configuration format that
3899
+ # you provide the flow input data.
3900
+ # @return [Types::S3InputFormatConfig]
3901
+ #
3869
3902
  # @see http://docs.aws.amazon.com/goto/WebAPI/appflow-2020-08-23/S3SourceProperties AWS API Documentation
3870
3903
  #
3871
3904
  class S3SourceProperties < Struct.new(
3872
3905
  :bucket_name,
3873
- :bucket_prefix)
3906
+ :bucket_prefix,
3907
+ :s3_input_format_config)
3874
3908
  SENSITIVE = []
3875
3909
  include Aws::Structure
3876
3910
  end
@@ -4683,6 +4717,9 @@ module Aws::Appflow
4683
4717
  # s3: {
4684
4718
  # bucket_name: "BucketName", # required
4685
4719
  # bucket_prefix: "BucketPrefix",
4720
+ # s3_input_format_config: {
4721
+ # s3_input_file_type: "CSV", # accepts CSV, JSON
4722
+ # },
4686
4723
  # },
4687
4724
  # salesforce: {
4688
4725
  # object: "Object", # required
@@ -4851,6 +4888,9 @@ module Aws::Appflow
4851
4888
  # s3: {
4852
4889
  # bucket_name: "BucketName", # required
4853
4890
  # bucket_prefix: "BucketPrefix",
4891
+ # s3_input_format_config: {
4892
+ # s3_input_file_type: "CSV", # accepts CSV, JSON
4893
+ # },
4854
4894
  # },
4855
4895
  # salesforce: {
4856
4896
  # object: "Object", # required
@@ -5559,6 +5599,9 @@ module Aws::Appflow
5559
5599
  # s3: {
5560
5600
  # bucket_name: "BucketName", # required
5561
5601
  # bucket_prefix: "BucketPrefix",
5602
+ # s3_input_format_config: {
5603
+ # s3_input_file_type: "CSV", # accepts CSV, JSON
5604
+ # },
5562
5605
  # },
5563
5606
  # salesforce: {
5564
5607
  # object: "Object", # required
@@ -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.16.0'
51
+ GEM_VERSION = '1.17.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.16.0
4
+ version: 1.17.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-10-18 00:00:00.000000000 Z
11
+ date: 2021-10-20 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core