Class: Aws::Appflow::Types::PrefixConfig
- Inherits:
-
Struct
- Object
- Struct
- Aws::Appflow::Types::PrefixConfig
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-appflow/types.rb
Overview
Note:
When making an API call, you may pass PrefixConfig data as a hash:
{
prefix_type: "FILENAME", # accepts FILENAME, PATH, PATH_AND_FILENAME
prefix_format: "YEAR", # accepts YEAR, MONTH, DAY, HOUR, MINUTE
}
Determines the prefix that Amazon AppFlow applies to the destination folder name. You can name your destination folders according to the flow frequency and date.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#prefix_format ⇒ String
Determines the level of granularity that’s included in the prefix.
-
#prefix_type ⇒ String
Determines the format of the prefix, and whether it applies to the file name, file path, or both.
Instance Attribute Details
#prefix_format ⇒ String
Determines the level of granularity that’s included in the prefix.
3311 3312 3313 3314 3315 3316 |
# File 'lib/aws-sdk-appflow/types.rb', line 3311 class PrefixConfig < Struct.new( :prefix_type, :prefix_format) SENSITIVE = [] include Aws::Structure end |
#prefix_type ⇒ String
Determines the format of the prefix, and whether it applies to the file name, file path, or both.
3311 3312 3313 3314 3315 3316 |
# File 'lib/aws-sdk-appflow/types.rb', line 3311 class PrefixConfig < Struct.new( :prefix_type, :prefix_format) SENSITIVE = [] include Aws::Structure end |