Search code examples
amazon-web-servicesaws-sdkamazon-kinesis-firehose

AWS Firehose API Version


I'm looking to use a fixed version of the AWS Kinesis Firehose API instead of using just "latest" for the version, where might I find a list of the API versions for AWS Kinesis Firehose?

return new FirehoseClient([
        'version'     => 'latest',
        'region'      => 'us-west-2',
        'credentials' => [
            'key'    => "fake2",
            'secret' => "fake1"
        ]
    ]);

Solution

  • The latest version is 2015-08-04.

    This can be found at the top of any page in the Kinesis Firehose API Reference. The same is true for most AWS services. in the PDF version of the API reference documentation, which is linked at the top of each page of the HTML documentation. For some reason, the API version no longer appears in the HTML versions of the docs.