Skip to content

Commit ef3c8a9

Browse files
authoredOct 28, 2020
Add AWS.Endpoint to ServiceConfigurationOptions.endpoint type (#2923)
1 parent 31f17ac commit ef3c8a9

File tree

5 files changed

+20
-4
lines changed

5 files changed

+20
-4
lines changed
 
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
{
2+
"type": "feature",
3+
"category": "TypeScript",
4+
"description": "Add AWS.Endpoint to ServiceConfigurationOptions.endpoint type."
5+
}

‎doc-src/templates/api-versions/plugin.rb

+3-2
Original file line numberDiff line numberDiff line change
@@ -146,9 +146,10 @@ def add_class_documentation(service, klass, model, api_version, dualstack)
146146
@option options [map] params An optional map of parameters to bind to every
147147
request sent by this service object. For more information on bound parameters,
148148
see ["Working with Services" in the Getting Started Guide](/AWSJavaScriptSDK/guide/node-services.html#Bound_Parameters).
149-
@option options [String] endpoint The endpoint URI to send requests
149+
@option options [String|AWS.Endpoint] endpoint The endpoint URI to send requests
150150
to. The default endpoint is built from the configured `region`.
151-
The endpoint should be a string like `'https://{service}.{region}.amazonaws.com'`.
151+
The endpoint should be a string like `'https://{service}.{region}.amazonaws.com'` or an
152+
Endpoint object.
152153
@option (see AWS.Config.constructor)
153154
#{dualstack ? "@option options [Boolean] useDualstack Enables IPv6/IPv4 dualstack endpoint.
154155
When a DNS lookup is performed on an endpoint of this type, it returns an “A” record with

‎lib/service.d.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -69,9 +69,9 @@ export class Service {
6969
export interface ServiceConfigurationOptions extends ConfigurationOptions {
7070
/**
7171
* The endpoint URI to send requests to. The default endpoint is built from the configured region.
72-
* The endpoint should be a string like 'https://{service}.{region}.amazonaws.com'.
72+
* The endpoint should be a string like 'https://{service}.{region}.amazonaws.com' or an Endpoint object.
7373
*/
74-
endpoint?: string;
74+
endpoint?: string | Endpoint;
7575
/**
7676
* An optional map of parameters to bind to every request sent by this service object.
7777
* For more information on bound parameters, see "Working with Services" in the Getting Started Guide.

‎ts/s3.ts

+5
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,11 @@ new S3({
1010
credentials: null
1111
});
1212

13+
// Instantiate S3 with an Endpoint object
14+
new S3({
15+
endpoint: new Endpoint('awsproxy.example.com')
16+
});
17+
1318
// test waiters
1419
s3.waitFor('bucketExists', {
1520
Bucket: 'test',

‎ts/service.ts

+5
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,11 @@
11
import {AWSError} from '../lib/error';
22
import {DescribeTableOutput} from '../clients/dynamodb';
33
import {Service} from '../lib/service';
4+
import {Endpoint} from '../lib/endpoint';
5+
6+
new Service({
7+
endpoint: new Endpoint('http://localhost:3000')
8+
});
49

510
const service: Service = new Service({
611
endpoint: 'http://localhost:3000',

0 commit comments

Comments
 (0)