You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This syntax means that temporary credentials will be automatically retrieved
67
+
from the EC2 instance's metadata server. It's also the preferred technique for
68
+
providing credentials to applications running on that specific context.
69
+
64
70
Sample configuration can be found in the `tests/fixtures` folder for [YAML](https://github.com/aws/aws-sdk-php-symfony/blob/master/tests/fixtures/config.yml), [PHP](https://github.com/aws/aws-sdk-php-symfony/blob/master/tests/fixtures/config.php), and [XML](https://github.com/aws/aws-sdk-php-symfony/blob/master/tests/fixtures/config.xml).
65
71
66
72
#### Sample YML Configuration
@@ -97,7 +103,7 @@ services:
97
103
### Usage
98
104
99
105
This bundle exposes an instance of the `Aws\Sdk` object as well as instances of
100
-
each AWS client object as services to your symfony application. They are name
106
+
each AWS client object as services to your symfony application. They are name
101
107
`aws.{$namespace}`, where `$namespace` is the namespace of the service client.
102
108
For instance:
103
109
@@ -109,13 +115,13 @@ aws.s3 | Aws\S3\S3Client
109
115
aws_sdk | Aws\Sdk
110
116
111
117
The services made available depends on which version of the SDK is installed. To
112
-
view a full list, run the following command from your application's root
118
+
view a full list, run the following command from your application's root
113
119
directory:
114
120
```
115
121
php bin/console debug:container aws
116
122
```
117
123
118
-
Full documentation on each of the services listed can be found in the [SDK API
124
+
Full documentation on each of the services listed can be found in the [SDK API
0 commit comments