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

Inherits:
Struct
  • Object
show all
Defined in:
gems/aws-sdk-s3control/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.

Returns:

  • (Array<String>)


4128
4129
4130
4131
4132
4133
4134
# File 'gems/aws-sdk-s3control/lib/aws-sdk-s3control/types.rb', line 4128

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.

Returns:

  • (Array<String>)


4128
4129
4130
4131
4132
4133
4134
# File 'gems/aws-sdk-s3control/lib/aws-sdk-s3control/types.rb', line 4128

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.

Returns:

  • (Array<String>)


4128
4129
4130
4131
4132
4133
4134
# File 'gems/aws-sdk-s3control/lib/aws-sdk-s3control/types.rb', line 4128

class KeyNameConstraint < Struct.new(
  :match_any_prefix,
  :match_any_suffix,
  :match_any_substring)
  SENSITIVE = []
  include Aws::Structure
end