Class: Aws::Appflow::Types::S3SourceProperties
- Inherits:
-
Struct
- Object
- Struct
- Aws::Appflow::Types::S3SourceProperties
- Defined in:
- gems/aws-sdk-appflow/lib/aws-sdk-appflow/types.rb
Overview
Note:
When making an API call, you may pass S3SourceProperties data as a hash:
{
bucket_name: "BucketName", # required
bucket_prefix: "BucketPrefix",
s3_input_format_config: {
s3_input_file_type: "CSV", # accepts CSV, JSON
},
}
The properties that are applied when Amazon S3 is being used as the flow source.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#bucket_name ⇒ String
The Amazon S3 bucket name where the source files are stored.
-
#bucket_prefix ⇒ String
The object key for the Amazon S3 bucket in which the source files are stored.
-
#s3_input_format_config ⇒ Types::S3InputFormatConfig
When you use Amazon S3 as the source, the configuration format that you provide the flow input data.
Instance Attribute Details
#bucket_name ⇒ String
The Amazon S3 bucket name where the source files are stored.
5288 5289 5290 5291 5292 5293 5294 |
# File 'gems/aws-sdk-appflow/lib/aws-sdk-appflow/types.rb', line 5288 class S3SourceProperties < Struct.new( :bucket_name, :bucket_prefix, :s3_input_format_config) SENSITIVE = [] include Aws::Structure end |
#bucket_prefix ⇒ String
The object key for the Amazon S3 bucket in which the source files are stored.
5288 5289 5290 5291 5292 5293 5294 |
# File 'gems/aws-sdk-appflow/lib/aws-sdk-appflow/types.rb', line 5288 class S3SourceProperties < Struct.new( :bucket_name, :bucket_prefix, :s3_input_format_config) SENSITIVE = [] include Aws::Structure end |
#s3_input_format_config ⇒ Types::S3InputFormatConfig
When you use Amazon S3 as the source, the configuration format that you provide the flow input data.
5288 5289 5290 5291 5292 5293 5294 |
# File 'gems/aws-sdk-appflow/lib/aws-sdk-appflow/types.rb', line 5288 class S3SourceProperties < Struct.new( :bucket_name, :bucket_prefix, :s3_input_format_config) SENSITIVE = [] include Aws::Structure end |