Class: Aws::S3Control::Types::KeyNameConstraint
- Inherits:
-
Struct
- Object
- Struct
- Aws::S3Control::Types::KeyNameConstraint
- Includes:
- Aws::Structure
- Defined in:
- lib/aws-sdk-s3control/types.rb
Overview
If provided, the generated manifest includes only source bucket objects whose object keys match the string constraints specified for ‘MatchAnyPrefix`, `MatchAnySuffix`, and `MatchAnySubstring`.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#match_any_prefix ⇒ Array<String>
If provided, the generated manifest includes objects where the specified string appears at the start of the object key string.
-
#match_any_substring ⇒ Array<String>
If provided, the generated manifest includes objects where the specified string appears anywhere within the object key string.
-
#match_any_suffix ⇒ Array<String>
If provided, the generated manifest includes objects where the specified string appears at the end of the object key string.
Instance Attribute Details
#match_any_prefix ⇒ Array<String>
If provided, the generated manifest includes objects where the specified string appears at the start of the object key string. Each KeyNameConstraint filter accepts an array of strings with a length of 1 string.
4184 4185 4186 4187 4188 4189 4190 |
# File 'lib/aws-sdk-s3control/types.rb', line 4184 class KeyNameConstraint < Struct.new( :match_any_prefix, :match_any_suffix, :match_any_substring) SENSITIVE = [] include Aws::Structure end |
#match_any_substring ⇒ Array<String>
If provided, the generated manifest includes objects where the specified string appears anywhere within the object key string. Each KeyNameConstraint filter accepts an array of strings with a length of 1 string.
4184 4185 4186 4187 4188 4189 4190 |
# File 'lib/aws-sdk-s3control/types.rb', line 4184 class KeyNameConstraint < Struct.new( :match_any_prefix, :match_any_suffix, :match_any_substring) SENSITIVE = [] include Aws::Structure end |
#match_any_suffix ⇒ Array<String>
If provided, the generated manifest includes objects where the specified string appears at the end of the object key string. Each KeyNameConstraint filter accepts an array of strings with a length of 1 string.
4184 4185 4186 4187 4188 4189 4190 |
# File 'lib/aws-sdk-s3control/types.rb', line 4184 class KeyNameConstraint < Struct.new( :match_any_prefix, :match_any_suffix, :match_any_substring) SENSITIVE = [] include Aws::Structure end |