Class: Aws::DirectConnect::Types::DisassociateMacSecKeyRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::DirectConnect::Types::DisassociateMacSecKeyRequest
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-directconnect/types.rb
Overview
Note:
When making an API call, you may pass DisassociateMacSecKeyRequest data as a hash:
{
connection_id: "ConnectionId", # required
secret_arn: "SecretARN", # required
}
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#connection_id ⇒ String
The ID of the dedicated connection (dxcon-xxxx), or the ID of the LAG (dxlag-xxxx).
-
#secret_arn ⇒ String
The Amazon Resource Name (ARN) of the MAC Security (MACsec) secret key.
Instance Attribute Details
#connection_id ⇒ String
The ID of the dedicated connection (dxcon-xxxx), or the ID of the LAG (dxlag-xxxx).
You can use DescribeConnections or DescribeLags to retrieve connection ID.
2915 2916 2917 2918 2919 2920 |
# File 'lib/aws-sdk-directconnect/types.rb', line 2915 class DisassociateMacSecKeyRequest < Struct.new( :connection_id, :secret_arn) SENSITIVE = [] include Aws::Structure end |
#secret_arn ⇒ String
The Amazon Resource Name (ARN) of the MAC Security (MACsec) secret key.
You can use DescribeConnections to retrieve the ARN of the MAC Security (MACsec) secret key.
2915 2916 2917 2918 2919 2920 |
# File 'lib/aws-sdk-directconnect/types.rb', line 2915 class DisassociateMacSecKeyRequest < Struct.new( :connection_id, :secret_arn) SENSITIVE = [] include Aws::Structure end |