Class: Aws::EC2::Types::ConnectionLogOptions

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

Overview

Describes the client connection logging options for the Client VPN endpoint.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#cloudwatch_log_groupString

The name of the CloudWatch Logs log group. Required if connection logging is enabled.

Returns:

  • (String)


5993
5994
5995
5996
5997
5998
5999
# File 'gems/aws-sdk-ec2/lib/aws-sdk-ec2/types.rb', line 5993

class ConnectionLogOptions < Struct.new(
  :enabled,
  :cloudwatch_log_group,
  :cloudwatch_log_stream)
  SENSITIVE = []
  include Aws::Structure
end

#cloudwatch_log_streamString

The name of the CloudWatch Logs log stream to which the connection data is published.

Returns:

  • (String)


5993
5994
5995
5996
5997
5998
5999
# File 'gems/aws-sdk-ec2/lib/aws-sdk-ec2/types.rb', line 5993

class ConnectionLogOptions < Struct.new(
  :enabled,
  :cloudwatch_log_group,
  :cloudwatch_log_stream)
  SENSITIVE = []
  include Aws::Structure
end

#enabledBoolean

Indicates whether connection logging is enabled.

Returns:

  • (Boolean)


5993
5994
5995
5996
5997
5998
5999
# File 'gems/aws-sdk-ec2/lib/aws-sdk-ec2/types.rb', line 5993

class ConnectionLogOptions < Struct.new(
  :enabled,
  :cloudwatch_log_group,
  :cloudwatch_log_stream)
  SENSITIVE = []
  include Aws::Structure
end