Class: Aws::Appflow::Types::PrefixConfig
- Inherits:
-
Struct
- Object
- Struct
- Aws::Appflow::Types::PrefixConfig
- Defined in:
- gems/aws-sdk-appflow/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.
4879 4880 4881 4882 4883 4884 |
# File 'gems/aws-sdk-appflow/lib/aws-sdk-appflow/types.rb', line 4879 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.
4879 4880 4881 4882 4883 4884 |
# File 'gems/aws-sdk-appflow/lib/aws-sdk-appflow/types.rb', line 4879 class PrefixConfig < Struct.new( :prefix_type, :prefix_format) SENSITIVE = [] include Aws::Structure end |