@aws-sdk/client-resource-groups-tagging-api 3.169.0 → 3.170.0

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.
Files changed (29) hide show
  1. package/CHANGELOG.md +8 -0
  2. package/dist-types/ts3.4/ResourceGroupsTaggingAPI.d.ts +148 -45
  3. package/dist-types/ts3.4/ResourceGroupsTaggingAPIClient.d.ts +178 -81
  4. package/dist-types/ts3.4/commands/DescribeReportCreationCommand.d.ts +41 -17
  5. package/dist-types/ts3.4/commands/GetComplianceSummaryCommand.d.ts +41 -17
  6. package/dist-types/ts3.4/commands/GetResourcesCommand.d.ts +34 -17
  7. package/dist-types/ts3.4/commands/GetTagKeysCommand.d.ts +34 -17
  8. package/dist-types/ts3.4/commands/GetTagValuesCommand.d.ts +34 -17
  9. package/dist-types/ts3.4/commands/StartReportCreationCommand.d.ts +38 -17
  10. package/dist-types/ts3.4/commands/TagResourcesCommand.d.ts +34 -17
  11. package/dist-types/ts3.4/commands/UntagResourcesCommand.d.ts +34 -17
  12. package/dist-types/ts3.4/commands/index.d.ts +8 -8
  13. package/dist-types/ts3.4/endpoints.d.ts +2 -2
  14. package/dist-types/ts3.4/index.d.ts +6 -6
  15. package/dist-types/ts3.4/models/ResourceGroupsTaggingAPIServiceException.d.ts +8 -6
  16. package/dist-types/ts3.4/models/index.d.ts +1 -1
  17. package/dist-types/ts3.4/models/models_0.d.ts +300 -270
  18. package/dist-types/ts3.4/pagination/GetComplianceSummaryPaginator.d.ts +11 -4
  19. package/dist-types/ts3.4/pagination/GetResourcesPaginator.d.ts +11 -4
  20. package/dist-types/ts3.4/pagination/GetTagKeysPaginator.d.ts +11 -4
  21. package/dist-types/ts3.4/pagination/GetTagValuesPaginator.d.ts +11 -4
  22. package/dist-types/ts3.4/pagination/Interfaces.d.ts +7 -6
  23. package/dist-types/ts3.4/pagination/index.d.ts +5 -5
  24. package/dist-types/ts3.4/protocols/Aws_json1_1.d.ts +101 -26
  25. package/dist-types/ts3.4/runtimeConfig.browser.d.ts +68 -38
  26. package/dist-types/ts3.4/runtimeConfig.d.ts +68 -38
  27. package/dist-types/ts3.4/runtimeConfig.native.d.ts +69 -37
  28. package/dist-types/ts3.4/runtimeConfig.shared.d.ts +13 -11
  29. package/package.json +34 -34
@@ -1,270 +1,300 @@
1
- import { ExceptionOptionType as __ExceptionOptionType } from "@aws-sdk/smithy-client";
2
- import { ResourceGroupsTaggingAPIServiceException as __BaseException } from "./ResourceGroupsTaggingAPIServiceException";
3
-
4
- export interface ComplianceDetails {
5
-
6
- NoncompliantKeys?: string[];
7
-
8
- KeysWithNoncompliantValues?: string[];
9
-
10
- ComplianceStatus?: boolean;
11
- }
12
-
13
- export declare class ConcurrentModificationException extends __BaseException {
14
- readonly name: "ConcurrentModificationException";
15
- readonly $fault: "client";
16
- Message?: string;
17
-
18
- constructor(opts: __ExceptionOptionType<ConcurrentModificationException, __BaseException>);
19
- }
20
-
21
- export declare class ConstraintViolationException extends __BaseException {
22
- readonly name: "ConstraintViolationException";
23
- readonly $fault: "client";
24
- Message?: string;
25
-
26
- constructor(opts: __ExceptionOptionType<ConstraintViolationException, __BaseException>);
27
- }
28
- export interface DescribeReportCreationInput {
29
- }
30
- export interface DescribeReportCreationOutput {
31
-
32
- Status?: string;
33
-
34
- S3Location?: string;
35
-
36
- StartDate?: string;
37
-
38
- ErrorMessage?: string;
39
- }
40
-
41
- export declare class InternalServiceException extends __BaseException {
42
- readonly name: "InternalServiceException";
43
- readonly $fault: "server";
44
- Message?: string;
45
-
46
- constructor(opts: __ExceptionOptionType<InternalServiceException, __BaseException>);
47
- }
48
-
49
- export declare class InvalidParameterException extends __BaseException {
50
- readonly name: "InvalidParameterException";
51
- readonly $fault: "client";
52
- Message?: string;
53
-
54
- constructor(opts: __ExceptionOptionType<InvalidParameterException, __BaseException>);
55
- }
56
-
57
- export declare class ThrottledException extends __BaseException {
58
- readonly name: "ThrottledException";
59
- readonly $fault: "client";
60
- Message?: string;
61
-
62
- constructor(opts: __ExceptionOptionType<ThrottledException, __BaseException>);
63
- }
64
- export declare enum ErrorCode {
65
- INTERNAL_SERVICE_EXCEPTION = "InternalServiceException",
66
- INVALID_PARAMETER_EXCEPTION = "InvalidParameterException"
67
- }
68
-
69
- export interface FailureInfo {
70
-
71
- StatusCode?: number;
72
-
73
- ErrorCode?: ErrorCode | string;
74
-
75
- ErrorMessage?: string;
76
- }
77
- export declare enum GroupByAttribute {
78
- REGION = "REGION",
79
- RESOURCE_TYPE = "RESOURCE_TYPE",
80
- TARGET_ID = "TARGET_ID"
81
- }
82
- export interface GetComplianceSummaryInput {
83
-
84
- TargetIdFilters?: string[];
85
-
86
- RegionFilters?: string[];
87
-
88
- ResourceTypeFilters?: string[];
89
-
90
- TagKeyFilters?: string[];
91
-
92
- GroupBy?: (GroupByAttribute | string)[];
93
-
94
- MaxResults?: number;
95
-
96
- PaginationToken?: string;
97
- }
98
- export declare enum TargetIdType {
99
- ACCOUNT = "ACCOUNT",
100
- OU = "OU",
101
- ROOT = "ROOT"
102
- }
103
-
104
- export interface Summary {
105
-
106
- LastUpdated?: string;
107
-
108
- TargetId?: string;
109
-
110
- TargetIdType?: TargetIdType | string;
111
-
112
- Region?: string;
113
-
114
- ResourceType?: string;
115
-
116
- NonCompliantResources?: number;
117
- }
118
- export interface GetComplianceSummaryOutput {
119
-
120
- SummaryList?: Summary[];
121
-
122
- PaginationToken?: string;
123
- }
124
-
125
- export interface TagFilter {
126
-
127
- Key?: string;
128
-
129
- Values?: string[];
130
- }
131
- export interface GetResourcesInput {
132
-
133
- PaginationToken?: string;
134
-
135
- TagFilters?: TagFilter[];
136
-
137
- ResourcesPerPage?: number;
138
-
139
- TagsPerPage?: number;
140
-
141
- ResourceTypeFilters?: string[];
142
-
143
- IncludeComplianceDetails?: boolean;
144
-
145
- ExcludeCompliantResources?: boolean;
146
-
147
- ResourceARNList?: string[];
148
- }
149
-
150
- export interface Tag {
151
-
152
- Key: string | undefined;
153
-
154
- Value: string | undefined;
155
- }
156
-
157
- export interface ResourceTagMapping {
158
-
159
- ResourceARN?: string;
160
-
161
- Tags?: Tag[];
162
-
163
- ComplianceDetails?: ComplianceDetails;
164
- }
165
- export interface GetResourcesOutput {
166
-
167
- PaginationToken?: string;
168
-
169
- ResourceTagMappingList?: ResourceTagMapping[];
170
- }
171
-
172
- export declare class PaginationTokenExpiredException extends __BaseException {
173
- readonly name: "PaginationTokenExpiredException";
174
- readonly $fault: "client";
175
- Message?: string;
176
-
177
- constructor(opts: __ExceptionOptionType<PaginationTokenExpiredException, __BaseException>);
178
- }
179
- export interface GetTagKeysInput {
180
-
181
- PaginationToken?: string;
182
- }
183
- export interface GetTagKeysOutput {
184
-
185
- PaginationToken?: string;
186
-
187
- TagKeys?: string[];
188
- }
189
- export interface GetTagValuesInput {
190
-
191
- PaginationToken?: string;
192
-
193
- Key: string | undefined;
194
- }
195
- export interface GetTagValuesOutput {
196
-
197
- PaginationToken?: string;
198
-
199
- TagValues?: string[];
200
- }
201
- export interface StartReportCreationInput {
202
-
203
- S3Bucket: string | undefined;
204
- }
205
- export interface StartReportCreationOutput {
206
- }
207
- export interface TagResourcesInput {
208
-
209
- ResourceARNList: string[] | undefined;
210
-
211
- Tags: Record<string, string> | undefined;
212
- }
213
- export interface TagResourcesOutput {
214
-
215
- FailedResourcesMap?: Record<string, FailureInfo>;
216
- }
217
- export interface UntagResourcesInput {
218
-
219
- ResourceARNList: string[] | undefined;
220
-
221
- TagKeys: string[] | undefined;
222
- }
223
- export interface UntagResourcesOutput {
224
-
225
- FailedResourcesMap?: Record<string, FailureInfo>;
226
- }
227
-
228
- export declare const ComplianceDetailsFilterSensitiveLog: (obj: ComplianceDetails) => any;
229
-
230
- export declare const DescribeReportCreationInputFilterSensitiveLog: (obj: DescribeReportCreationInput) => any;
231
-
232
- export declare const DescribeReportCreationOutputFilterSensitiveLog: (obj: DescribeReportCreationOutput) => any;
233
-
234
- export declare const FailureInfoFilterSensitiveLog: (obj: FailureInfo) => any;
235
-
236
- export declare const GetComplianceSummaryInputFilterSensitiveLog: (obj: GetComplianceSummaryInput) => any;
237
-
238
- export declare const SummaryFilterSensitiveLog: (obj: Summary) => any;
239
-
240
- export declare const GetComplianceSummaryOutputFilterSensitiveLog: (obj: GetComplianceSummaryOutput) => any;
241
-
242
- export declare const TagFilterFilterSensitiveLog: (obj: TagFilter) => any;
243
-
244
- export declare const GetResourcesInputFilterSensitiveLog: (obj: GetResourcesInput) => any;
245
-
246
- export declare const TagFilterSensitiveLog: (obj: Tag) => any;
247
-
248
- export declare const ResourceTagMappingFilterSensitiveLog: (obj: ResourceTagMapping) => any;
249
-
250
- export declare const GetResourcesOutputFilterSensitiveLog: (obj: GetResourcesOutput) => any;
251
-
252
- export declare const GetTagKeysInputFilterSensitiveLog: (obj: GetTagKeysInput) => any;
253
-
254
- export declare const GetTagKeysOutputFilterSensitiveLog: (obj: GetTagKeysOutput) => any;
255
-
256
- export declare const GetTagValuesInputFilterSensitiveLog: (obj: GetTagValuesInput) => any;
257
-
258
- export declare const GetTagValuesOutputFilterSensitiveLog: (obj: GetTagValuesOutput) => any;
259
-
260
- export declare const StartReportCreationInputFilterSensitiveLog: (obj: StartReportCreationInput) => any;
261
-
262
- export declare const StartReportCreationOutputFilterSensitiveLog: (obj: StartReportCreationOutput) => any;
263
-
264
- export declare const TagResourcesInputFilterSensitiveLog: (obj: TagResourcesInput) => any;
265
-
266
- export declare const TagResourcesOutputFilterSensitiveLog: (obj: TagResourcesOutput) => any;
267
-
268
- export declare const UntagResourcesInputFilterSensitiveLog: (obj: UntagResourcesInput) => any;
269
-
270
- export declare const UntagResourcesOutputFilterSensitiveLog: (obj: UntagResourcesOutput) => any;
1
+ import { ExceptionOptionType as __ExceptionOptionType } from "@aws-sdk/smithy-client";
2
+ import { ResourceGroupsTaggingAPIServiceException as __BaseException } from "./ResourceGroupsTaggingAPIServiceException";
3
+
4
+ export interface ComplianceDetails {
5
+ NoncompliantKeys?: string[];
6
+
7
+ KeysWithNoncompliantValues?: string[];
8
+
9
+ ComplianceStatus?: boolean;
10
+ }
11
+
12
+ export declare class ConcurrentModificationException extends __BaseException {
13
+ readonly name: "ConcurrentModificationException";
14
+ readonly $fault: "client";
15
+ Message?: string;
16
+
17
+ constructor(
18
+ opts: __ExceptionOptionType<
19
+ ConcurrentModificationException,
20
+ __BaseException
21
+ >
22
+ );
23
+ }
24
+
25
+ export declare class ConstraintViolationException extends __BaseException {
26
+ readonly name: "ConstraintViolationException";
27
+ readonly $fault: "client";
28
+ Message?: string;
29
+
30
+ constructor(
31
+ opts: __ExceptionOptionType<ConstraintViolationException, __BaseException>
32
+ );
33
+ }
34
+ export interface DescribeReportCreationInput {}
35
+ export interface DescribeReportCreationOutput {
36
+ Status?: string;
37
+
38
+ S3Location?: string;
39
+
40
+ StartDate?: string;
41
+
42
+ ErrorMessage?: string;
43
+ }
44
+
45
+ export declare class InternalServiceException extends __BaseException {
46
+ readonly name: "InternalServiceException";
47
+ readonly $fault: "server";
48
+ Message?: string;
49
+
50
+ constructor(
51
+ opts: __ExceptionOptionType<InternalServiceException, __BaseException>
52
+ );
53
+ }
54
+
55
+ export declare class InvalidParameterException extends __BaseException {
56
+ readonly name: "InvalidParameterException";
57
+ readonly $fault: "client";
58
+ Message?: string;
59
+
60
+ constructor(
61
+ opts: __ExceptionOptionType<InvalidParameterException, __BaseException>
62
+ );
63
+ }
64
+
65
+ export declare class ThrottledException extends __BaseException {
66
+ readonly name: "ThrottledException";
67
+ readonly $fault: "client";
68
+ Message?: string;
69
+
70
+ constructor(opts: __ExceptionOptionType<ThrottledException, __BaseException>);
71
+ }
72
+ export declare enum ErrorCode {
73
+ INTERNAL_SERVICE_EXCEPTION = "InternalServiceException",
74
+ INVALID_PARAMETER_EXCEPTION = "InvalidParameterException",
75
+ }
76
+
77
+ export interface FailureInfo {
78
+ StatusCode?: number;
79
+
80
+ ErrorCode?: ErrorCode | string;
81
+
82
+ ErrorMessage?: string;
83
+ }
84
+ export declare enum GroupByAttribute {
85
+ REGION = "REGION",
86
+ RESOURCE_TYPE = "RESOURCE_TYPE",
87
+ TARGET_ID = "TARGET_ID",
88
+ }
89
+ export interface GetComplianceSummaryInput {
90
+ TargetIdFilters?: string[];
91
+
92
+ RegionFilters?: string[];
93
+
94
+ ResourceTypeFilters?: string[];
95
+
96
+ TagKeyFilters?: string[];
97
+
98
+ GroupBy?: (GroupByAttribute | string)[];
99
+
100
+ MaxResults?: number;
101
+
102
+ PaginationToken?: string;
103
+ }
104
+ export declare enum TargetIdType {
105
+ ACCOUNT = "ACCOUNT",
106
+ OU = "OU",
107
+ ROOT = "ROOT",
108
+ }
109
+
110
+ export interface Summary {
111
+ LastUpdated?: string;
112
+
113
+ TargetId?: string;
114
+
115
+ TargetIdType?: TargetIdType | string;
116
+
117
+ Region?: string;
118
+
119
+ ResourceType?: string;
120
+
121
+ NonCompliantResources?: number;
122
+ }
123
+ export interface GetComplianceSummaryOutput {
124
+ SummaryList?: Summary[];
125
+
126
+ PaginationToken?: string;
127
+ }
128
+
129
+ export interface TagFilter {
130
+ Key?: string;
131
+
132
+ Values?: string[];
133
+ }
134
+ export interface GetResourcesInput {
135
+ PaginationToken?: string;
136
+
137
+ TagFilters?: TagFilter[];
138
+
139
+ ResourcesPerPage?: number;
140
+
141
+ TagsPerPage?: number;
142
+
143
+ ResourceTypeFilters?: string[];
144
+
145
+ IncludeComplianceDetails?: boolean;
146
+
147
+ ExcludeCompliantResources?: boolean;
148
+
149
+ ResourceARNList?: string[];
150
+ }
151
+
152
+ export interface Tag {
153
+ Key: string | undefined;
154
+
155
+ Value: string | undefined;
156
+ }
157
+
158
+ export interface ResourceTagMapping {
159
+ ResourceARN?: string;
160
+
161
+ Tags?: Tag[];
162
+
163
+ ComplianceDetails?: ComplianceDetails;
164
+ }
165
+ export interface GetResourcesOutput {
166
+ PaginationToken?: string;
167
+
168
+ ResourceTagMappingList?: ResourceTagMapping[];
169
+ }
170
+
171
+ export declare class PaginationTokenExpiredException extends __BaseException {
172
+ readonly name: "PaginationTokenExpiredException";
173
+ readonly $fault: "client";
174
+ Message?: string;
175
+
176
+ constructor(
177
+ opts: __ExceptionOptionType<
178
+ PaginationTokenExpiredException,
179
+ __BaseException
180
+ >
181
+ );
182
+ }
183
+ export interface GetTagKeysInput {
184
+ PaginationToken?: string;
185
+ }
186
+ export interface GetTagKeysOutput {
187
+ PaginationToken?: string;
188
+
189
+ TagKeys?: string[];
190
+ }
191
+ export interface GetTagValuesInput {
192
+ PaginationToken?: string;
193
+
194
+ Key: string | undefined;
195
+ }
196
+ export interface GetTagValuesOutput {
197
+ PaginationToken?: string;
198
+
199
+ TagValues?: string[];
200
+ }
201
+ export interface StartReportCreationInput {
202
+ S3Bucket: string | undefined;
203
+ }
204
+ export interface StartReportCreationOutput {}
205
+ export interface TagResourcesInput {
206
+ ResourceARNList: string[] | undefined;
207
+
208
+ Tags: Record<string, string> | undefined;
209
+ }
210
+ export interface TagResourcesOutput {
211
+ FailedResourcesMap?: Record<string, FailureInfo>;
212
+ }
213
+ export interface UntagResourcesInput {
214
+ ResourceARNList: string[] | undefined;
215
+
216
+ TagKeys: string[] | undefined;
217
+ }
218
+ export interface UntagResourcesOutput {
219
+ FailedResourcesMap?: Record<string, FailureInfo>;
220
+ }
221
+
222
+ export declare const ComplianceDetailsFilterSensitiveLog: (
223
+ obj: ComplianceDetails
224
+ ) => any;
225
+
226
+ export declare const DescribeReportCreationInputFilterSensitiveLog: (
227
+ obj: DescribeReportCreationInput
228
+ ) => any;
229
+
230
+ export declare const DescribeReportCreationOutputFilterSensitiveLog: (
231
+ obj: DescribeReportCreationOutput
232
+ ) => any;
233
+
234
+ export declare const FailureInfoFilterSensitiveLog: (obj: FailureInfo) => any;
235
+
236
+ export declare const GetComplianceSummaryInputFilterSensitiveLog: (
237
+ obj: GetComplianceSummaryInput
238
+ ) => any;
239
+
240
+ export declare const SummaryFilterSensitiveLog: (obj: Summary) => any;
241
+
242
+ export declare const GetComplianceSummaryOutputFilterSensitiveLog: (
243
+ obj: GetComplianceSummaryOutput
244
+ ) => any;
245
+
246
+ export declare const TagFilterFilterSensitiveLog: (obj: TagFilter) => any;
247
+
248
+ export declare const GetResourcesInputFilterSensitiveLog: (
249
+ obj: GetResourcesInput
250
+ ) => any;
251
+
252
+ export declare const TagFilterSensitiveLog: (obj: Tag) => any;
253
+
254
+ export declare const ResourceTagMappingFilterSensitiveLog: (
255
+ obj: ResourceTagMapping
256
+ ) => any;
257
+
258
+ export declare const GetResourcesOutputFilterSensitiveLog: (
259
+ obj: GetResourcesOutput
260
+ ) => any;
261
+
262
+ export declare const GetTagKeysInputFilterSensitiveLog: (
263
+ obj: GetTagKeysInput
264
+ ) => any;
265
+
266
+ export declare const GetTagKeysOutputFilterSensitiveLog: (
267
+ obj: GetTagKeysOutput
268
+ ) => any;
269
+
270
+ export declare const GetTagValuesInputFilterSensitiveLog: (
271
+ obj: GetTagValuesInput
272
+ ) => any;
273
+
274
+ export declare const GetTagValuesOutputFilterSensitiveLog: (
275
+ obj: GetTagValuesOutput
276
+ ) => any;
277
+
278
+ export declare const StartReportCreationInputFilterSensitiveLog: (
279
+ obj: StartReportCreationInput
280
+ ) => any;
281
+
282
+ export declare const StartReportCreationOutputFilterSensitiveLog: (
283
+ obj: StartReportCreationOutput
284
+ ) => any;
285
+
286
+ export declare const TagResourcesInputFilterSensitiveLog: (
287
+ obj: TagResourcesInput
288
+ ) => any;
289
+
290
+ export declare const TagResourcesOutputFilterSensitiveLog: (
291
+ obj: TagResourcesOutput
292
+ ) => any;
293
+
294
+ export declare const UntagResourcesInputFilterSensitiveLog: (
295
+ obj: UntagResourcesInput
296
+ ) => any;
297
+
298
+ export declare const UntagResourcesOutputFilterSensitiveLog: (
299
+ obj: UntagResourcesOutput
300
+ ) => any;
@@ -1,4 +1,11 @@
1
- import { Paginator } from "@aws-sdk/types";
2
- import { GetComplianceSummaryCommandInput, GetComplianceSummaryCommandOutput } from "../commands/GetComplianceSummaryCommand";
3
- import { ResourceGroupsTaggingAPIPaginationConfiguration } from "./Interfaces";
4
- export declare function paginateGetComplianceSummary(config: ResourceGroupsTaggingAPIPaginationConfiguration, input: GetComplianceSummaryCommandInput, ...additionalArguments: any): Paginator<GetComplianceSummaryCommandOutput>;
1
+ import { Paginator } from "@aws-sdk/types";
2
+ import {
3
+ GetComplianceSummaryCommandInput,
4
+ GetComplianceSummaryCommandOutput,
5
+ } from "../commands/GetComplianceSummaryCommand";
6
+ import { ResourceGroupsTaggingAPIPaginationConfiguration } from "./Interfaces";
7
+ export declare function paginateGetComplianceSummary(
8
+ config: ResourceGroupsTaggingAPIPaginationConfiguration,
9
+ input: GetComplianceSummaryCommandInput,
10
+ ...additionalArguments: any
11
+ ): Paginator<GetComplianceSummaryCommandOutput>;
@@ -1,4 +1,11 @@
1
- import { Paginator } from "@aws-sdk/types";
2
- import { GetResourcesCommandInput, GetResourcesCommandOutput } from "../commands/GetResourcesCommand";
3
- import { ResourceGroupsTaggingAPIPaginationConfiguration } from "./Interfaces";
4
- export declare function paginateGetResources(config: ResourceGroupsTaggingAPIPaginationConfiguration, input: GetResourcesCommandInput, ...additionalArguments: any): Paginator<GetResourcesCommandOutput>;
1
+ import { Paginator } from "@aws-sdk/types";
2
+ import {
3
+ GetResourcesCommandInput,
4
+ GetResourcesCommandOutput,
5
+ } from "../commands/GetResourcesCommand";
6
+ import { ResourceGroupsTaggingAPIPaginationConfiguration } from "./Interfaces";
7
+ export declare function paginateGetResources(
8
+ config: ResourceGroupsTaggingAPIPaginationConfiguration,
9
+ input: GetResourcesCommandInput,
10
+ ...additionalArguments: any
11
+ ): Paginator<GetResourcesCommandOutput>;
@@ -1,4 +1,11 @@
1
- import { Paginator } from "@aws-sdk/types";
2
- import { GetTagKeysCommandInput, GetTagKeysCommandOutput } from "../commands/GetTagKeysCommand";
3
- import { ResourceGroupsTaggingAPIPaginationConfiguration } from "./Interfaces";
4
- export declare function paginateGetTagKeys(config: ResourceGroupsTaggingAPIPaginationConfiguration, input: GetTagKeysCommandInput, ...additionalArguments: any): Paginator<GetTagKeysCommandOutput>;
1
+ import { Paginator } from "@aws-sdk/types";
2
+ import {
3
+ GetTagKeysCommandInput,
4
+ GetTagKeysCommandOutput,
5
+ } from "../commands/GetTagKeysCommand";
6
+ import { ResourceGroupsTaggingAPIPaginationConfiguration } from "./Interfaces";
7
+ export declare function paginateGetTagKeys(
8
+ config: ResourceGroupsTaggingAPIPaginationConfiguration,
9
+ input: GetTagKeysCommandInput,
10
+ ...additionalArguments: any
11
+ ): Paginator<GetTagKeysCommandOutput>;
@@ -1,4 +1,11 @@
1
- import { Paginator } from "@aws-sdk/types";
2
- import { GetTagValuesCommandInput, GetTagValuesCommandOutput } from "../commands/GetTagValuesCommand";
3
- import { ResourceGroupsTaggingAPIPaginationConfiguration } from "./Interfaces";
4
- export declare function paginateGetTagValues(config: ResourceGroupsTaggingAPIPaginationConfiguration, input: GetTagValuesCommandInput, ...additionalArguments: any): Paginator<GetTagValuesCommandOutput>;
1
+ import { Paginator } from "@aws-sdk/types";
2
+ import {
3
+ GetTagValuesCommandInput,
4
+ GetTagValuesCommandOutput,
5
+ } from "../commands/GetTagValuesCommand";
6
+ import { ResourceGroupsTaggingAPIPaginationConfiguration } from "./Interfaces";
7
+ export declare function paginateGetTagValues(
8
+ config: ResourceGroupsTaggingAPIPaginationConfiguration,
9
+ input: GetTagValuesCommandInput,
10
+ ...additionalArguments: any
11
+ ): Paginator<GetTagValuesCommandOutput>;
@@ -1,6 +1,7 @@
1
- import { PaginationConfiguration } from "@aws-sdk/types";
2
- import { ResourceGroupsTaggingAPI } from "../ResourceGroupsTaggingAPI";
3
- import { ResourceGroupsTaggingAPIClient } from "../ResourceGroupsTaggingAPIClient";
4
- export interface ResourceGroupsTaggingAPIPaginationConfiguration extends PaginationConfiguration {
5
- client: ResourceGroupsTaggingAPI | ResourceGroupsTaggingAPIClient;
6
- }
1
+ import { PaginationConfiguration } from "@aws-sdk/types";
2
+ import { ResourceGroupsTaggingAPI } from "../ResourceGroupsTaggingAPI";
3
+ import { ResourceGroupsTaggingAPIClient } from "../ResourceGroupsTaggingAPIClient";
4
+ export interface ResourceGroupsTaggingAPIPaginationConfiguration
5
+ extends PaginationConfiguration {
6
+ client: ResourceGroupsTaggingAPI | ResourceGroupsTaggingAPIClient;
7
+ }
@@ -1,5 +1,5 @@
1
- export * from "./GetComplianceSummaryPaginator";
2
- export * from "./GetResourcesPaginator";
3
- export * from "./GetTagKeysPaginator";
4
- export * from "./GetTagValuesPaginator";
5
- export * from "./Interfaces";
1
+ export * from "./GetComplianceSummaryPaginator";
2
+ export * from "./GetResourcesPaginator";
3
+ export * from "./GetTagKeysPaginator";
4
+ export * from "./GetTagValuesPaginator";
5
+ export * from "./Interfaces";