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

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

Overview

Note:

When making an API call, you may pass ConnectionLogOptions data as a hash:

{
  enabled: false,
  cloudwatch_log_group: "String",
  cloudwatch_log_stream: "String",
}

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

Instance Attribute Summary collapse

Instance Attribute Details

#cloudwatch_log_groupString

The name of the CloudWatch Logs log group.

Returns:

  • (String)


3366
3367
3368
3369
3370
3371
# File 'lib/aws-sdk-ec2/types.rb', line 3366

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

#cloudwatch_log_streamString

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

Returns:

  • (String)


3366
3367
3368
3369
3370
3371
# File 'lib/aws-sdk-ec2/types.rb', line 3366

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

#enabledBoolean

Indicates whether connection logging is enabled.

Returns:

  • (Boolean)


3366
3367
3368
3369
3370
3371
# File 'lib/aws-sdk-ec2/types.rb', line 3366

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