Class: Aws::EC2::Types::ClientConnectOptions

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

Overview

The options for managing connection authorization for new client connections.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#enabledBoolean

Indicates whether client connect options are enabled. The default is false (not enabled).

Returns:

  • (Boolean)


5204
5205
5206
5207
5208
5209
# File 'gems/aws-sdk-ec2/lib/aws-sdk-ec2/types.rb', line 5204

class ClientConnectOptions < Struct.new(
  :enabled,
  :lambda_function_arn)
  SENSITIVE = []
  include Aws::Structure
end

#lambda_function_arnString

The Amazon Resource Name (ARN) of the Lambda function used for connection authorization.

Returns:

  • (String)


5204
5205
5206
5207
5208
5209
# File 'gems/aws-sdk-ec2/lib/aws-sdk-ec2/types.rb', line 5204

class ClientConnectOptions < Struct.new(
  :enabled,
  :lambda_function_arn)
  SENSITIVE = []
  include Aws::Structure
end