Class: Aws::S3::Types::PutBucketAnalyticsConfigurationRequest

Inherits:
Struct
  • Object
show all
Includes:
Aws::Structure
Defined in:
lib/aws-sdk-s3/types.rb

Overview

Note:

When making an API call, you may pass PutBucketAnalyticsConfigurationRequest data as a hash:

{
  bucket: "BucketName", # required
  id: "AnalyticsId", # required
  analytics_configuration: { # required
    id: "AnalyticsId", # required
    filter: {
      prefix: "Prefix",
      tag: {
        key: "ObjectKey", # required
        value: "Value", # required
      },
      and: {
        prefix: "Prefix",
        tags: [
          {
            key: "ObjectKey", # required
            value: "Value", # required
          },
        ],
      },
    },
    storage_class_analysis: { # required
      data_export: {
        output_schema_version: "V_1", # required, accepts V_1
        destination: { # required
          s3_bucket_destination: { # required
            format: "CSV", # required, accepts CSV
            bucket_account_id: "AccountId",
            bucket: "BucketName", # required
            prefix: "Prefix",
          },
        },
      },
    },
  },
  expected_bucket_owner: "AccountId",
}

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#analytics_configurationTypes::AnalyticsConfiguration

The configuration and any analyses for the analytics filter.



11480
11481
11482
11483
11484
11485
11486
11487
# File 'lib/aws-sdk-s3/types.rb', line 11480

class PutBucketAnalyticsConfigurationRequest < Struct.new(
  :bucket,
  :id,
  :analytics_configuration,
  :expected_bucket_owner)
  SENSITIVE = []
  include Aws::Structure
end

#bucketString

The name of the bucket to which an analytics configuration is stored.

Returns:

  • (String)


11480
11481
11482
11483
11484
11485
11486
11487
# File 'lib/aws-sdk-s3/types.rb', line 11480

class PutBucketAnalyticsConfigurationRequest < Struct.new(
  :bucket,
  :id,
  :analytics_configuration,
  :expected_bucket_owner)
  SENSITIVE = []
  include Aws::Structure
end

#expected_bucket_ownerString

The account ID of the expected bucket owner. If the bucket is owned by a different account, the request fails with the HTTP status code ‘403 Forbidden` (access denied).

Returns:

  • (String)


11480
11481
11482
11483
11484
11485
11486
11487
# File 'lib/aws-sdk-s3/types.rb', line 11480

class PutBucketAnalyticsConfigurationRequest < Struct.new(
  :bucket,
  :id,
  :analytics_configuration,
  :expected_bucket_owner)
  SENSITIVE = []
  include Aws::Structure
end

#idString

The ID that identifies the analytics configuration.

Returns:

  • (String)


11480
11481
11482
11483
11484
11485
11486
11487
# File 'lib/aws-sdk-s3/types.rb', line 11480

class PutBucketAnalyticsConfigurationRequest < Struct.new(
  :bucket,
  :id,
  :analytics_configuration,
  :expected_bucket_owner)
  SENSITIVE = []
  include Aws::Structure
end