Class: Aws::Appflow::Types::PrefixConfig
- Inherits:
-
Struct
- Object
- Struct
- Aws::Appflow::Types::PrefixConfig
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-appflow/types.rb
Overview
Specifies elements that Amazon AppFlow includes in the file and folder names in the flow destination.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#path_prefix_hierarchy ⇒ Array<String>
Specifies whether the destination file path includes either or both of the following elements:.
-
#prefix_format ⇒ String
Determines the level of granularity for the date and time 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
#path_prefix_hierarchy ⇒ Array<String>
Specifies whether the destination file path includes either or both of the following elements:
EXECUTION_ID
: The ID that Amazon AppFlow assigns to the flow run.
SCHEMA_VERSION
: The version number of your data schema. Amazon AppFlow assigns
this version number. The version number increases by one when you
change any of the following settings in your flow configuration:
* Source-to-destination field mappings
* Field data types
* Partition keys
3628 3629 3630 3631 3632 3633 3634 |
# File 'lib/aws-sdk-appflow/types.rb', line 3628 class PrefixConfig < Struct.new( :prefix_type, :prefix_format, :path_prefix_hierarchy) SENSITIVE = [] include Aws::Structure end |
#prefix_format ⇒ String
Determines the level of granularity for the date and time that’s included in the prefix.
3628 3629 3630 3631 3632 3633 3634 |
# File 'lib/aws-sdk-appflow/types.rb', line 3628 class PrefixConfig < Struct.new( :prefix_type, :prefix_format, :path_prefix_hierarchy) 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.
3628 3629 3630 3631 3632 3633 3634 |
# File 'lib/aws-sdk-appflow/types.rb', line 3628 class PrefixConfig < Struct.new( :prefix_type, :prefix_format, :path_prefix_hierarchy) SENSITIVE = [] include Aws::Structure end |