Class: Aws::NetworkFirewall::Types::DeleteProxyRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::NetworkFirewall::Types::DeleteProxyRequest
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-networkfirewall/types.rb
Overview
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#nat_gateway_id ⇒ String
The NAT Gateway the proxy is attached to.
-
#proxy_arn ⇒ String
The Amazon Resource Name (ARN) of a proxy.
-
#proxy_name ⇒ String
The descriptive name of the proxy.
Instance Attribute Details
#nat_gateway_id ⇒ String
The NAT Gateway the proxy is attached to.
2020 2021 2022 2023 2024 2025 2026 |
# File 'lib/aws-sdk-networkfirewall/types.rb', line 2020 class DeleteProxyRequest < Struct.new( :nat_gateway_id, :proxy_name, :proxy_arn) SENSITIVE = [] include Aws::Structure end |
#proxy_arn ⇒ String
The Amazon Resource Name (ARN) of a proxy.
You must specify the ARN or the name, and you can specify both.
2020 2021 2022 2023 2024 2025 2026 |
# File 'lib/aws-sdk-networkfirewall/types.rb', line 2020 class DeleteProxyRequest < Struct.new( :nat_gateway_id, :proxy_name, :proxy_arn) SENSITIVE = [] include Aws::Structure end |
#proxy_name ⇒ String
The descriptive name of the proxy. You can’t change the name of a proxy after you create it.
You must specify the ARN or the name, and you can specify both.
2020 2021 2022 2023 2024 2025 2026 |
# File 'lib/aws-sdk-networkfirewall/types.rb', line 2020 class DeleteProxyRequest < Struct.new( :nat_gateway_id, :proxy_name, :proxy_arn) SENSITIVE = [] include Aws::Structure end |