Class: Aws::S3Control::Types::KeyNameConstraint

Inherits:
Struct
  • Object
show all
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

Instance Attribute Details

#match_any_prefixArray<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.

Returns:

  • (Array<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_substringArray<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.

Returns:

  • (Array<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_suffixArray<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.

Returns:

  • (Array<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