Class: Aws::EC2::Types::ClientConnectOptions
- Inherits:
-
Struct
- Object
- Struct
- Aws::EC2::Types::ClientConnectOptions
- Includes:
- Structure
- Defined in:
- 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
-
#enabled ⇒ Boolean
Indicates whether client connect options are enabled.
-
#lambda_function_arn ⇒ String
The Amazon Resource Name (ARN) of the Lambda function used for connection authorization.
Instance Attribute Details
#enabled ⇒ Boolean
Indicates whether client connect options are enabled. The default is ‘false` (not enabled).
5226 5227 5228 5229 5230 5231 |
# File 'lib/aws-sdk-ec2/types.rb', line 5226 class ClientConnectOptions < Struct.new( :enabled, :lambda_function_arn) SENSITIVE = [] include Aws::Structure end |
#lambda_function_arn ⇒ String
The Amazon Resource Name (ARN) of the Lambda function used for connection authorization.
5226 5227 5228 5229 5230 5231 |
# File 'lib/aws-sdk-ec2/types.rb', line 5226 class ClientConnectOptions < Struct.new( :enabled, :lambda_function_arn) SENSITIVE = [] include Aws::Structure end |