Class: Aws::CloudWatchLogs::Types::S3Configuration

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

Overview

Configuration details for delivering scheduled query results to an Amazon S3 bucket.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#destination_identifierString

The S3 URI where query results will be stored (e.g., s3://bucket-name/prefix/).

Returns:

  • (String)


7907
7908
7909
7910
7911
7912
# File 'gems/aws-sdk-cloudwatchlogs/lib/aws-sdk-cloudwatchlogs/types.rb', line 7907

class S3Configuration < Struct.new(
  :destination_identifier,
  :role_arn)
  SENSITIVE = []
  include Aws::Structure
end

#role_arnString

The ARN of the IAM role that CloudWatch Logs will assume to write results to the S3 bucket.

Returns:

  • (String)


7907
7908
7909
7910
7911
7912
# File 'gems/aws-sdk-cloudwatchlogs/lib/aws-sdk-cloudwatchlogs/types.rb', line 7907

class S3Configuration < Struct.new(
  :destination_identifier,
  :role_arn)
  SENSITIVE = []
  include Aws::Structure
end