Class: Aws::Appflow::Types::S3DestinationProperties
- Inherits:
-
Struct
- Object
- Struct
- Aws::Appflow::Types::S3DestinationProperties
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-appflow/types.rb
Overview
Note:
When making an API call, you may pass S3DestinationProperties data as a hash:
{
bucket_name: "BucketName", # required
bucket_prefix: "BucketPrefix",
s3_output_format_config: {
file_type: "CSV", # accepts CSV, JSON, PARQUET
prefix_config: {
prefix_type: "FILENAME", # accepts FILENAME, PATH, PATH_AND_FILENAME
prefix_format: "YEAR", # accepts YEAR, MONTH, DAY, HOUR, MINUTE
},
aggregation_config: {
aggregation_type: "None", # accepts None, SingleFile
},
},
}
The properties that are applied when Amazon S3 is used as a destination.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#bucket_name ⇒ String
The Amazon S3 bucket name in which Amazon AppFlow places the transferred data.
-
#bucket_prefix ⇒ String
The object key for the destination bucket in which Amazon AppFlow places the files.
-
#s3_output_format_config ⇒ Types::S3OutputFormatConfig
The configuration that determines how Amazon AppFlow should format the flow output data when Amazon S3 is used as the destination.
Instance Attribute Details
#bucket_name ⇒ String
The Amazon S3 bucket name in which Amazon AppFlow places the transferred data.
3495 3496 3497 3498 3499 3500 3501 |
# File 'lib/aws-sdk-appflow/types.rb', line 3495 class S3DestinationProperties < Struct.new( :bucket_name, :bucket_prefix, :s3_output_format_config) SENSITIVE = [] include Aws::Structure end |
#bucket_prefix ⇒ String
The object key for the destination bucket in which Amazon AppFlow places the files.
3495 3496 3497 3498 3499 3500 3501 |
# File 'lib/aws-sdk-appflow/types.rb', line 3495 class S3DestinationProperties < Struct.new( :bucket_name, :bucket_prefix, :s3_output_format_config) SENSITIVE = [] include Aws::Structure end |
#s3_output_format_config ⇒ Types::S3OutputFormatConfig
The configuration that determines how Amazon AppFlow should format the flow output data when Amazon S3 is used as the destination.
3495 3496 3497 3498 3499 3500 3501 |
# File 'lib/aws-sdk-appflow/types.rb', line 3495 class S3DestinationProperties < Struct.new( :bucket_name, :bucket_prefix, :s3_output_format_config) SENSITIVE = [] include Aws::Structure end |