Class: Aws::DirectConnect::Types::UpdateConnectionRequest

Inherits:
Struct
  • Object
show all
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

Instance Attribute Details

#connection_idString

The ID of the dedicated connection.

You can use DescribeConnections to retrieve the connection ID.

Returns:

  • (String)


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_nameString

The name of the connection.

Returns:

  • (String)


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_modeString

The connection MAC Security (MACsec) encryption mode.

The valid values are `no_encrypt`, `should_encrypt`, and `must_encrypt`.

Returns:

  • (String)


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