Class: Aws::IoTSecureTunneling::Types::CloseTunnelRequest

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

Instance Attribute Details

#deleteBoolean

When set to true, IoT Secure Tunneling deletes the tunnel data immediately.

Returns:

  • (Boolean)


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_idString

The ID of the tunnel to close.

Returns:

  • (String)


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