Class: Aws::DirectConnect::Types::AssociateMacSecKeyRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::DirectConnect::Types::AssociateMacSecKeyRequest
- Defined in:
- gems/aws-sdk-directconnect/lib/aws-sdk-directconnect/types.rb
Overview
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#cak ⇒ String
The MAC Security (MACsec) CAK to associate with the connection.
-
#ckn ⇒ String
The MAC Security (MACsec) CKN to associate with the connection.
-
#connection_id ⇒ String
The ID of the dedicated connection (dxcon-xxxx), interconnect (dxcon-xxxx), or LAG (dxlag-xxxx).
-
#secret_arn ⇒ String
The Amazon Resource Name (ARN) of the MAC Security (MACsec) secret key to associate with the connection.
Instance Attribute Details
#cak ⇒ String
The MAC Security (MACsec) CAK to associate with the connection.
You can create the CKN/CAK pair using an industry standard tool.
The valid values are 64 hexadecimal characters (0-9, A-E).
If you use this request parameter, you must use the ckn
request
parameter and not use the secretARN
request parameter.
303 304 305 306 307 308 309 310 |
# File 'gems/aws-sdk-directconnect/lib/aws-sdk-directconnect/types.rb', line 303 class AssociateMacSecKeyRequest < Struct.new( :connection_id, :secret_arn, :ckn, :cak) SENSITIVE = [] include Aws::Structure end |
#ckn ⇒ String
The MAC Security (MACsec) CKN to associate with the connection.
You can create the CKN/CAK pair using an industry standard tool.
The valid values are 64 hexadecimal characters (0-9, A-E).
If you use this request parameter, you must use the cak
request
parameter and not use the secretARN
request parameter.
303 304 305 306 307 308 309 310 |
# File 'gems/aws-sdk-directconnect/lib/aws-sdk-directconnect/types.rb', line 303 class AssociateMacSecKeyRequest < Struct.new( :connection_id, :secret_arn, :ckn, :cak) SENSITIVE = [] include Aws::Structure end |
#connection_id ⇒ String
The ID of the dedicated connection (dxcon-xxxx), interconnect (dxcon-xxxx), or LAG (dxlag-xxxx).
You can use DescribeConnections, DescribeInterconnects, or DescribeLags to retrieve connection ID.
303 304 305 306 307 308 309 310 |
# File 'gems/aws-sdk-directconnect/lib/aws-sdk-directconnect/types.rb', line 303 class AssociateMacSecKeyRequest < Struct.new( :connection_id, :secret_arn, :ckn, :cak) SENSITIVE = [] include Aws::Structure end |
#secret_arn ⇒ String
The Amazon Resource Name (ARN) of the MAC Security (MACsec) secret key to associate with the connection.
You can use DescribeConnections or DescribeLags to retrieve the MAC Security (MACsec) secret key.
If you use this request parameter, you do not use the ckn
and
cak
request parameters.
303 304 305 306 307 308 309 310 |
# File 'gems/aws-sdk-directconnect/lib/aws-sdk-directconnect/types.rb', line 303 class AssociateMacSecKeyRequest < Struct.new( :connection_id, :secret_arn, :ckn, :cak) SENSITIVE = [] include Aws::Structure end |