void ShutdownClient()

in awsio/csrc/io/s3/s3_io.cpp [106:112]


void ShutdownClient(std::shared_ptr<Aws::S3::S3Client> *s3_client) {
    if (s3_client != nullptr) {
        delete s3_client;
        Aws::SDKOptions options;
        Aws::ShutdownAPI(options);
    }
}