Class: Aws::ApiGatewayManagementApi::Types::PostToConnectionRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::ApiGatewayManagementApi::Types::PostToConnectionRequest
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-apigatewaymanagementapi/types.rb
Overview
Note:
When making an API call, you may pass PostToConnectionRequest data as a hash:
{
data: "data", # required
connection_id: "__string", # required
}
Instance Attribute Summary collapse
- #connection_id ⇒ String
-
#data ⇒ String
The data to be sent to the client specified by its connection id.
Instance Attribute Details
#connection_id ⇒ String
97 98 99 100 101 |
# File 'lib/aws-sdk-apigatewaymanagementapi/types.rb', line 97 class PostToConnectionRequest < Struct.new( :data, :connection_id) include Aws::Structure end |
#data ⇒ String
The data to be sent to the client specified by its connection id.
97 98 99 100 101 |
# File 'lib/aws-sdk-apigatewaymanagementapi/types.rb', line 97 class PostToConnectionRequest < Struct.new( :data, :connection_id) include Aws::Structure end |