1<?php
2
3namespace Aws;
4
5use Psr\Http\Message\ResponseInterface;
6
7interface ResponseContainerInterface
8{
9    /**
10     * Get the received HTTP response if any.
11     *
12     * @return ResponseInterface|null
13     */
14    public function getResponse();
15}