Class: Aws::DataSync::Types::FilterRule
- Inherits:
-
Struct
- Object
- Struct
- Aws::DataSync::Types::FilterRule
- Defined in:
- gems/aws-sdk-datasync/lib/aws-sdk-datasync/types.rb
Overview
Specifies which files, folders, and objects to include or exclude when transferring files from source to destination.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#filter_type ⇒ String
The type of filter rule to apply.
-
#value ⇒ String
A single filter string that consists of the patterns to include or exclude.
Instance Attribute Details
#filter_type ⇒ String
The type of filter rule to apply. DataSync only supports the SIMPLE_PATTERN rule type.
3053 3054 3055 3056 3057 3058 |
# File 'gems/aws-sdk-datasync/lib/aws-sdk-datasync/types.rb', line 3053 class FilterRule < Struct.new( :filter_type, :value) SENSITIVE = [] include Aws::Structure end |
#value ⇒ String
A single filter string that consists of the patterns to include or
exclude. The patterns are delimited by "|" (that is, a pipe), for
example: /folder1|/folder2
3053 3054 3055 3056 3057 3058 |
# File 'gems/aws-sdk-datasync/lib/aws-sdk-datasync/types.rb', line 3053 class FilterRule < Struct.new( :filter_type, :value) SENSITIVE = [] include Aws::Structure end |