Class: Aws::Appflow::Types::UpsolverDestinationProperties
- Inherits:
-
Struct
- Object
- Struct
- Aws::Appflow::Types::UpsolverDestinationProperties
- Defined in:
- gems/aws-sdk-appflow/lib/aws-sdk-appflow/types.rb
Overview
Note:
When making an API call, you may pass UpsolverDestinationProperties data as a hash:
{
bucket_name: "UpsolverBucketName", # required
bucket_prefix: "BucketPrefix",
s3_output_format_config: { # required
file_type: "CSV", # accepts CSV, JSON, PARQUET
prefix_config: { # required
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 Upsolver is used as a destination.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#bucket_name ⇒ String
The Upsolver Amazon S3 bucket name in which Amazon AppFlow places the transferred data.
-
#bucket_prefix ⇒ String
The object key for the destination Upsolver Amazon S3 bucket in which Amazon AppFlow places the files.
-
#s3_output_format_config ⇒ Types::UpsolverS3OutputFormatConfig
The configuration that determines how data is formatted when Upsolver is used as the flow destination.
Instance Attribute Details
#bucket_name ⇒ String
The Upsolver Amazon S3 bucket name in which Amazon AppFlow places the transferred data.
7522 7523 7524 7525 7526 7527 7528 |
# File 'gems/aws-sdk-appflow/lib/aws-sdk-appflow/types.rb', line 7522 class UpsolverDestinationProperties < Struct.new( :bucket_name, :bucket_prefix, :s3_output_format_config) SENSITIVE = [] include Aws::Structure end |
#bucket_prefix ⇒ String
The object key for the destination Upsolver Amazon S3 bucket in which Amazon AppFlow places the files.
7522 7523 7524 7525 7526 7527 7528 |
# File 'gems/aws-sdk-appflow/lib/aws-sdk-appflow/types.rb', line 7522 class UpsolverDestinationProperties < Struct.new( :bucket_name, :bucket_prefix, :s3_output_format_config) SENSITIVE = [] include Aws::Structure end |
#s3_output_format_config ⇒ Types::UpsolverS3OutputFormatConfig
The configuration that determines how data is formatted when Upsolver is used as the flow destination.
7522 7523 7524 7525 7526 7527 7528 |
# File 'gems/aws-sdk-appflow/lib/aws-sdk-appflow/types.rb', line 7522 class UpsolverDestinationProperties < Struct.new( :bucket_name, :bucket_prefix, :s3_output_format_config) SENSITIVE = [] include Aws::Structure end |