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
const c = await ext.sdkClientBuilder.createAwsService(
269
+
opts => new Service(opts),
270
+
{
271
+
apiConfig: apiConfig,
272
+
region: 'us-west-2',
273
+
credentials: credentials,
274
+
correctClockSkew: true,
275
+
endpoint: 'foo-beta.aws.dev',
276
+
}) as ClientFoo
277
+
const req = c.getThing({ id: 'asdf' })
278
+
req.send(function (err, data) { ... });
279
+
```
276
280
277
281
## Importing icons from other open source repos
278
282
279
283
If you are contribuing visual assets from other open source repos, the source repo must have a compatible license (such as MIT), and we need to document the source of the images. Follow these steps:
280
284
281
-
1. Use a separate location in this repo for every repo where images are
282
-
sourced from, in the form `third-party/resources/from-<BRIEF_REPO_NAME>`.
283
-
1. Copy the source repo's licence into this destination location's LICENSE.txt file
284
-
1. Create a README.md in the destination location, and type in a copyright attribution:
285
-
```text
286
-
The AWS Toolkit for VS Code includes the following third-party software/licensing:
285
+
1. Use a separate location in this repo for every repo where images are
286
+
sourced from, in the form `third-party/resources/from-<BRIEF_REPO_NAME>`.
287
+
1. Copy the source repo's licence into this destination location's LICENSE.txt file
288
+
1. Create a README.md in the destination location, and type in a copyright attribution:
289
+
290
+
```text
291
+
The AWS Toolkit for VS Code includes the following third-party software/licensing:
287
292
288
-
Icons contained in this folder and subfolders are from <SOURCE_REPO_NAME>: <SOURCE_REPO_URL>
293
+
Icons contained in this folder and subfolders are from <SOURCE_REPO_NAME>: <SOURCE_REPO_URL>
294
+
295
+
<PASTE_SOURCE_LICENSE_HERE>
296
+
```
289
297
290
-
<PASTE_SOURCE_LICENSE_HERE>
291
-
```
292
-
1. Copy the SVG file(s) into a suitable place within the destination location, for example `.../dark/xyz.svg` and `.../light/xyz.svg`
293
-
1. Add an entry to `third-party/README.md` summarizing the new destination location, where the asserts were sourced from, and a brief rationale.
298
+
1. Copy the SVG file(s) into a suitable place within the destination location, for example `.../dark/xyz.svg` and `.../light/xyz.svg`
299
+
1. Add an entry to `third-party/README.md` summarizing the new destination location, where the asserts were sourced from, and a brief rationale.
294
300
295
301
[PR #227](https://github.com/aws/aws-toolkit-vscode/pull/227) shows an example.
0 commit comments