Class: Aws::IoTSecureTunneling::Types::CloseTunnelRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::IoTSecureTunneling::Types::CloseTunnelRequest
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-iotsecuretunneling/types.rb
Overview
Note:
When making an API call, you may pass CloseTunnelRequest data as a hash:
{
tunnel_id: "TunnelId", # required
delete: false,
}
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#delete ⇒ Boolean
When set to true, AWS IoT Secure Tunneling deletes the tunnel data immediately.
-
#tunnel_id ⇒ String
The ID of the tunnel to close.
Instance Attribute Details
#delete ⇒ Boolean
When set to true, AWS IoT Secure Tunneling deletes the tunnel data immediately.
30 31 32 33 34 35 |
# File 'lib/aws-sdk-iotsecuretunneling/types.rb', line 30 class CloseTunnelRequest < Struct.new( :tunnel_id, :delete) SENSITIVE = [] include Aws::Structure end |
#tunnel_id ⇒ String
The ID of the tunnel to close.
30 31 32 33 34 35 |
# File 'lib/aws-sdk-iotsecuretunneling/types.rb', line 30 class CloseTunnelRequest < Struct.new( :tunnel_id, :delete) SENSITIVE = [] include Aws::Structure end |