1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
"""
Type stubs for aws_ssm_bridge Python bindings.
This module provides type hints for IDE autocomplete and static type checking.
"""
:
"""Package version string."""
"""Session type enumeration for AWS SSM Session Manager."""
:
"""Standard interactive shell session."""
:
"""Port forwarding session (AWS-StartPortForwardingSession)."""
:
"""Interactive command execution (AWS-StartInteractiveCommand)."""
"""
Create a SessionType from string.
Args:
session_type: One of 'standard_stream', 'port', 'interactive_commands'
Raises:
ValueError: If session_type is not valid
"""
...
"""Configuration for an SSM session."""
"""Target instance ID (e.g., 'i-1234567890abcdef0')."""
...
"""AWS region (e.g., 'us-east-1')."""
...
"""
Create session configuration.
Args:
target: Instance ID to connect to (required)
region: AWS region (uses default if not specified)
session_type: Type of session (default: STANDARD_STREAM)
document_name: SSM document name for custom sessions
parameters: Document parameters as dict of string lists
reason: Audit reason for the session
Example:
>>> config = SessionConfig(
... target="i-1234567890abcdef0",
... region="us-west-2",
... reason="Debugging production issue #123"
... )
"""
...
"""
Async iterator for session output data.
Yields chunks of bytes from the remote session's stdout/stderr.
Example:
>>> async for chunk in await session.output():
... print(chunk.decode('utf-8'), end='')
"""
"""Return self as async iterator."""
...
"""
Get next chunk of output.
Returns:
bytes: Next chunk of output data
Raises:
StopAsyncIteration: When stream is exhausted
"""
...
"""
An active SSM session.
Represents a connection to a remote EC2 instance via SSM.
Supports async context manager for automatic cleanup.
Example (context manager - recommended):
>>> async with await manager.start_session("i-xxx") as session:
... await session.send(b"ls -la\\n")
... async for chunk in await session.output():
... print(chunk.decode(), end='')
... # Session automatically terminated
Example (manual):
>>> session = await manager.start_session("i-xxx")
>>> try:
... await session.send(b"ls -la\\n")
... finally:
... await session.terminate()
"""
"""
Async context manager entry.
Waits for the session to be ready before returning.
"""
...
"""
Async context manager exit.
Terminates the session gracefully.
"""
...
"""Session ID assigned by AWS."""
...
"""
Get current session state.
Returns:
One of: 'initializing', 'connected', 'disconnecting', 'terminated'
"""
...
"""
Check if the session is ready to send data.
The session is ready once the SSM agent has completed the handshake
and sent the start_publication message.
Returns:
bool: True if ready to send, False otherwise
"""
...
"""
Wait for the session to become ready.
Blocks until the session is ready or timeout expires.
Call this after start_session() before sending data.
Args:
timeout_secs: Maximum time to wait in seconds (default: 30)
Returns:
bool: True if ready, False if timeout expired
Example:
>>> session = await manager.start_session("i-xxx")
>>> if await session.wait_for_ready(timeout_secs=10):
... await session.send(b"whoami\\n")
"""
...
"""
Get output stream for reading session output.
Returns:
OutputStream: Async iterator yielding output bytes
Example:
>>> stream = await session.output()
>>> async for chunk in stream:
... print(chunk.decode(), end='')
"""
...
"""
Send data to the session (stdin).
Args:
data: Bytes to send to the remote session
Raises:
RuntimeError: If session is not in 'connected' state
Example:
>>> await session.send(b"echo hello\\n")
>>> await session.send("ls -la\\n".encode())
"""
...
"""
Terminate the session gracefully.
Sends termination signal and waits for cleanup.
Call this when done with the session.
Example:
>>> await session.terminate()
"""
...
"""
Wait for session to fully terminate.
Blocks until the session reaches 'terminated' state.
Useful after calling terminate() to ensure cleanup.
"""
...
"""
Factory for creating and managing SSM sessions.
Handles AWS authentication and session lifecycle.
Uses the default AWS credential chain (environment, config files, IAM role).
Example:
>>> import asyncio
>>> from aws_ssm_bridge import SessionManager
>>>
>>> async def main():
... manager = await SessionManager.new()
... session = await manager.start_session("i-1234567890abcdef0")
... if await session.wait_for_ready():
... await session.send(b"hostname\\n")
... async for chunk in await session.output():
... print(chunk.decode(), end='')
... await session.terminate()
>>>
>>> asyncio.run(main())
"""
"""
Create a new session manager.
Initializes AWS SDK and loads credentials from the default chain.
Returns:
SessionManager: Ready to create sessions
Raises:
RuntimeError: If AWS credentials cannot be loaded
Example:
>>> manager = await SessionManager.new()
"""
...
"""
Start a new SSM session to a target instance.
Args:
target: Instance ID (e.g., 'i-1234567890abcdef0')
region: AWS region (uses default if not specified)
session_type: One of 'standard_stream', 'port', 'interactive_commands'
document_name: SSM document for custom sessions
parameters: Document parameters
reason: Audit reason for session
Returns:
Session: Connected session ready for use
Raises:
RuntimeError: If session creation fails
ValueError: If target or parameters are invalid
Example:
>>> session = await manager.start_session(
... target="i-1234567890abcdef0",
... region="us-west-2",
... reason="Investigating disk space issue"
... )
"""
...
"""
Terminate a session by its ID.
Args:
session_id: Session ID to terminate
Raises:
RuntimeError: If termination fails
"""
...
"""
Convenience function to quickly connect to an instance.
Creates a SessionManager and starts a session in one call.
For multiple sessions, prefer creating a SessionManager directly.
Args:
target: Instance ID to connect to (e.g., 'i-1234567890abcdef0')
region: AWS region (uses default if not specified)
session_type: Type of session ('standard_stream', 'port', etc.)
document_name: SSM document for custom sessions
parameters: Document parameters
reason: Audit reason for session
Returns:
Session: Connected session ready for use
Example:
>>> session = await connect("i-1234567890abcdef0")
>>> if await session.wait_for_ready():
... await session.send(b"whoami\\n")
>>> await session.terminate()
"""
...
"""
Configuration for interactive shell sessions.
Example:
>>> config = InteractiveConfig(
... show_banner=True,
... send_initial_size=True,
... forward_signals=True,
... )
"""
"""Whether to show session banner on connect."""
...
"""Whether to send terminal size on connect."""
...
"""Whether to forward Ctrl+C/Z as signals."""
...
"""
Create interactive shell configuration.
Args:
show_banner: Show session ID banner on connect
send_initial_size: Send terminal dimensions on connect
forward_signals: Forward Ctrl+C/Z to remote
"""
...
"""Create configuration with default settings."""
...
"""
Interactive shell session with full terminal support.
Provides a complete interactive shell experience with:
- Raw terminal mode (no echo, immediate input)
- Terminal resize detection (SIGWINCH on Unix)
- Signal forwarding (Ctrl+C, Ctrl+D, Ctrl+Z)
- Automatic terminal restoration on exit/crash
Example:
>>> import asyncio
>>> from aws_ssm_bridge import InteractiveShell, InteractiveConfig
>>>
>>> async def main():
... config = InteractiveConfig.default()
... shell = InteractiveShell(config)
... await shell.connect("i-0123456789abcdef0")
... await shell.run() # Blocks until Ctrl+D
>>>
>>> asyncio.run(main())
"""
"""
Create a new interactive shell.
Args:
config: Shell configuration (uses defaults if not specified)
Raises:
RuntimeError: If terminal cannot be initialized
"""
...
"""
Connect to an EC2 instance.
Args:
target: Instance ID (e.g., "i-0123456789abcdef0")
Raises:
RuntimeError: If connection fails
"""
...
"""
Run the interactive session.
Blocks until:
- User presses Ctrl+D (EOF)
- Session is closed by remote
- An error occurs
Terminal is automatically restored on exit.
Raises:
RuntimeError: If not connected or session error
"""
...
"""Check if connected to an instance."""
...
"""
Convenience function for quick interactive session.
Creates an InteractiveShell with default config, connects, and runs.
This is the simplest way to start an interactive shell.
Args:
target: Instance ID (e.g., "i-0123456789abcdef0")
Example:
>>> import asyncio
>>> from aws_ssm_bridge import run_shell
>>> asyncio.run(run_shell("i-0123456789abcdef0"))
"""
...
=