(session, command_table, **kwargs)
| 37 | |
| 38 | |
| 39 | def add_custom_start_session(session, command_table, **kwargs): |
| 40 | command_table['start-session'] = StartSessionCommand( |
| 41 | name='start-session', |
| 42 | parent_name='ssm', |
| 43 | session=session, |
| 44 | operation_model=session.get_service_model('ssm').operation_model( |
| 45 | 'StartSession' |
| 46 | ), |
| 47 | operation_caller=StartSessionCaller(session), |
| 48 | ) |
| 49 | |
| 50 | |
| 51 | class VersionRequirement: |
nothing calls this directly
no test coverage detected