Class: Aws::EC2::Types::CloudWatchLogOptions

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

Overview

Options for sending VPN tunnel logs to CloudWatch.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#log_enabledBoolean

Status of VPN tunnel logging feature. Default value is ‘False`.

Valid values: ‘True` | `False`

Returns:

  • (Boolean)


5765
5766
5767
5768
5769
5770
5771
# File 'lib/aws-sdk-ec2/types.rb', line 5765

class CloudWatchLogOptions < Struct.new(
  :log_enabled,
  :log_group_arn,
  :log_output_format)
  SENSITIVE = []
  include Aws::Structure
end

#log_group_arnString

The Amazon Resource Name (ARN) of the CloudWatch log group to send logs to.

Returns:

  • (String)


5765
5766
5767
5768
5769
5770
5771
# File 'lib/aws-sdk-ec2/types.rb', line 5765

class CloudWatchLogOptions < Struct.new(
  :log_enabled,
  :log_group_arn,
  :log_output_format)
  SENSITIVE = []
  include Aws::Structure
end

#log_output_formatString

Configured log format. Default format is ‘json`.

Valid values: ‘json` | `text`

Returns:

  • (String)


5765
5766
5767
5768
5769
5770
5771
# File 'lib/aws-sdk-ec2/types.rb', line 5765

class CloudWatchLogOptions < Struct.new(
  :log_enabled,
  :log_group_arn,
  :log_output_format)
  SENSITIVE = []
  include Aws::Structure
end