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

Inherits:
Struct
  • Object
show all
Includes:
Structure
Defined in:
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)


7951
7952
7953
7954
7955
7956
# File 'lib/aws-sdk-cloudwatchlogs/types.rb', line 7951

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)


7951
7952
7953
7954
7955
7956
# File 'lib/aws-sdk-cloudwatchlogs/types.rb', line 7951

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