@aws-lite/route53-types 0.0.4 → 0.0.6
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/index.d.ts +4 -2
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -6,6 +6,8 @@ import {
|
|
|
6
6
|
// $IMPORTS_END
|
|
7
7
|
} from "@aws-sdk/client-route-53";
|
|
8
8
|
|
|
9
|
+
import type { AwsLiteMethodOptions } from "@aws-lite/client";
|
|
10
|
+
|
|
9
11
|
declare interface AwsLiteRoute53 {
|
|
10
12
|
/* ! Do not remove METHODS_START / METHODS_END ! */
|
|
11
13
|
// $METHODS_START
|
|
@@ -14,13 +16,13 @@ declare interface AwsLiteRoute53 {
|
|
|
14
16
|
* - AWS docs: {@link https://docs.aws.amazon.com/Route53/latest/APIReference/API_ChangeResourceRecordSets.html Route 53: ChangeResourceRecordSets}
|
|
15
17
|
* - aws-lite docs: {@link https://github.com/aws-lite/aws-lite/blob/main/plugins/route53/readme.md#ChangeResourceRecordSets Route 53: ChangeResourceRecordSets}
|
|
16
18
|
*/
|
|
17
|
-
ChangeResourceRecordSets: (input: { HostedZoneId: string, ChangeBatch?: Record<string, any> }) => Promise<ChangeResourceRecordSetsResponse>
|
|
19
|
+
ChangeResourceRecordSets: (input: AwsLiteMethodOptions & { HostedZoneId: string, ChangeBatch?: Record<string, any> }) => Promise<ChangeResourceRecordSetsResponse>
|
|
18
20
|
/**
|
|
19
21
|
* @description
|
|
20
22
|
* - AWS docs: {@link https://docs.aws.amazon.com/Route53/latest/APIReference/API_ListResourceRecordSets.html Route 53: ListResourceRecordSets}
|
|
21
23
|
* - aws-lite docs: {@link https://github.com/aws-lite/aws-lite/blob/main/plugins/route53/readme.md#ListResourceRecordSets Route 53: ListResourceRecordSets}
|
|
22
24
|
*/
|
|
23
|
-
ListResourceRecordSets: (input: { HostedZoneId: string, MaxItems?: number, StartRecordIdentifier?: string, StartRecordName?: string, StartRecordType?: string, paginate?: boolean | string }) => Promise<ListResourceRecordSetsResponse>
|
|
25
|
+
ListResourceRecordSets: (input: AwsLiteMethodOptions & { HostedZoneId: string, MaxItems?: number, StartRecordIdentifier?: string, StartRecordName?: string, StartRecordType?: string, paginate?: boolean | string }) => Promise<ListResourceRecordSetsResponse>
|
|
24
26
|
// $METHODS_END
|
|
25
27
|
}
|
|
26
28
|
|