| 35 | LambdaClient m_lambda_client; |
| 36 | Aws::IAM::IAMClient m_iam_client; |
| 37 | static Aws::Client::ClientConfiguration create_iam_config() |
| 38 | { |
| 39 | Aws::Client::ClientConfiguration config; |
| 40 | config.requestTimeoutMs = REQUEST_TIMEOUT; |
| 41 | config.region = Aws::Region::US_EAST_1; |
| 42 | return config; |
| 43 | } |
| 44 | |
| 45 | static Aws::Client::ClientConfiguration create_lambda_config() |
| 46 | { |
nothing calls this directly
no outgoing calls
no test coverage detected