SIGN IN SIGN UP

Welcome to the AWS Code Examples Repository. This repo contains code examples used in the AWS documentation, AWS SDK Developer Guides, and more. For more information, see the Readme.md file below.

0 0 106 Java
<?php
// Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
// SPDX-License-Identifier: Apache-2.0
use Bedrock\GettingStartedWithBedrock;
include __DIR__ . '/vendor/autoload.php';
include 'GettingStartedWithBedrock.php';
try {
$runner = new GettingStartedWithBedrock();
$runner->runExample();
} catch (Exception $e) {
echo "Error: ({$e->getCode()} - {$e->getMessage()}\n";
}