Skip to content

Commit

Permalink
PHP: Update CloudFront signing URL examples to a supported API version (
Browse files Browse the repository at this point in the history
awsdocs#5435)

Update CloudFront signing URL examples to a supported API version
  • Loading branch information
wsamoht authored Oct 3, 2023
1 parent a94e46e commit f2c6867
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion php/example_code/cloudfront/SignCookie.php
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ function signACookie()

$cloudFrontClient = new CloudFrontClient([
'profile' => 'default',
'version' => '2014-11-06',
'version' => '2018-06-18',
'region' => 'us-east-1'
]);

Expand Down
2 changes: 1 addition & 1 deletion php/example_code/cloudfront/SignCookiePolicy.php
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ function signACookiePolicy()

$cloudFrontClient = new CloudFrontClient([
'profile' => 'default',
'version' => '2014-11-06',
'version' => '2018-06-18',
'region' => 'us-east-1'
]);

Expand Down
2 changes: 1 addition & 1 deletion php/example_code/cloudfront/SignPrivateDistribution.php
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ function signAPrivateDistribution()

$cloudFrontClient = new CloudFrontClient([
'profile' => 'default',
'version' => '2014-11-06',
'version' => '2018-06-18',
'region' => 'us-east-1'
]);

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ function signAPrivateDistributionPolicy()

$cloudFrontClient = new CloudFrontClient([
'profile' => 'default',
'version' => '2014-11-06',
'version' => '2018-06-18',
'region' => 'us-east-1'
]);

Expand Down

0 comments on commit f2c6867

Please sign in to comment.