Class: Aws::S3Control::Types::Exclude

Inherits:
Struct
  • Object
show all
Defined in:
gems/aws-sdk-s3control/lib/aws-sdk-s3control/types.rb

Overview

A container for what Amazon S3 Storage Lens will exclude.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#bucketsArray<String>

A container for the S3 Storage Lens bucket excludes.

Returns:

  • (Array<String>)


2123
2124
2125
2126
2127
2128
# File 'gems/aws-sdk-s3control/lib/aws-sdk-s3control/types.rb', line 2123

class Exclude < Struct.new(
  :buckets,
  :regions)
  SENSITIVE = []
  include Aws::Structure
end

#regionsArray<String>

A container for the S3 Storage Lens Region excludes.

Returns:

  • (Array<String>)


2123
2124
2125
2126
2127
2128
# File 'gems/aws-sdk-s3control/lib/aws-sdk-s3control/types.rb', line 2123

class Exclude < Struct.new(
  :buckets,
  :regions)
  SENSITIVE = []
  include Aws::Structure
end