Class: Aws::DirectConnect::Types::UpdateConnectionRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::DirectConnect::Types::UpdateConnectionRequest
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-directconnect/types.rb
Overview
Note:
When making an API call, you may pass UpdateConnectionRequest data as a hash:
{
connection_id: "ConnectionId", # required
connection_name: "ConnectionName",
encryption_mode: "EncryptionMode",
}
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#connection_id ⇒ String
The ID of the dedicated connection.
-
#connection_name ⇒ String
The name of the connection.
-
#encryption_mode ⇒ String
The connection MAC Security (MACsec) encryption mode.
Instance Attribute Details
#connection_id ⇒ String
The ID of the dedicated connection.
You can use DescribeConnections to retrieve the connection ID.
4277 4278 4279 4280 4281 4282 4283 |
# File 'lib/aws-sdk-directconnect/types.rb', line 4277 class UpdateConnectionRequest < Struct.new( :connection_id, :connection_name, :encryption_mode) SENSITIVE = [] include Aws::Structure end |
#connection_name ⇒ String
The name of the connection.
4277 4278 4279 4280 4281 4282 4283 |
# File 'lib/aws-sdk-directconnect/types.rb', line 4277 class UpdateConnectionRequest < Struct.new( :connection_id, :connection_name, :encryption_mode) SENSITIVE = [] include Aws::Structure end |
#encryption_mode ⇒ String
The connection MAC Security (MACsec) encryption mode.
The valid values are `no_encrypt`, `should_encrypt`, and `must_encrypt`.
4277 4278 4279 4280 4281 4282 4283 |
# File 'lib/aws-sdk-directconnect/types.rb', line 4277 class UpdateConnectionRequest < Struct.new( :connection_id, :connection_name, :encryption_mode) SENSITIVE = [] include Aws::Structure end |