Class: Aws::IoT::Types::TlsContext
- Inherits:
-
Struct
- Object
- Struct
- Aws::IoT::Types::TlsContext
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-iot/types.rb
Overview
Note:
When making an API call, you may pass TlsContext data as a hash:
{
server_name: "ServerName",
}
Specifies the TLS context to use for the test authorizer request.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#server_name ⇒ String
The value of the `serverName` key in a TLS authorization request.
Instance Attribute Details
#server_name ⇒ String
The value of the `serverName` key in a TLS authorization request.
18083 18084 18085 18086 18087 |
# File 'lib/aws-sdk-iot/types.rb', line 18083 class TlsContext < Struct.new( :server_name) SENSITIVE = [] include Aws::Structure end |