paws.storage (version 0.1.0)

s3_put_bucket_analytics_configuration: Sets an analytics configuration for the bucket (specified by the analytics configuration ID)

Description

Sets an analytics configuration for the bucket (specified by the analytics configuration ID).

Usage

s3_put_bucket_analytics_configuration(Bucket, Id,
  AnalyticsConfiguration)

Arguments

Bucket

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

Id

[required] The identifier used to represent an analytics configuration.

AnalyticsConfiguration

[required] The configuration and any analyses for the analytics filter.

Request syntax

svc$put_bucket_analytics_configuration(
  Bucket = "string",
  Id = "string",
  AnalyticsConfiguration = list(
    Id = "string",
    Filter = list(
      Prefix = "string",
      Tag = list(
        Key = "string",
        Value = "string"
      ),
      And = list(
        Prefix = "string",
        Tags = list(
          list(
            Key = "string",
            Value = "string"
          )
        )
      )
    ),
    StorageClassAnalysis = list(
      DataExport = list(
        OutputSchemaVersion = "V_1",
        Destination = list(
          S3BucketDestination = list(
            Format = "CSV",
            BucketAccountId = "string",
            Bucket = "string",
            Prefix = "string"
          )
        )
      )
    )
  )
)