@aws-sdk/client-resource-groups-tagging-api 3.687.0 → 3.691.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.
@@ -10,18 +10,18 @@ export interface ComplianceDetails {
10
10
  * <p>These tag keys on the resource are noncompliant with the effective tag policy.</p>
11
11
  * @public
12
12
  */
13
- NoncompliantKeys?: string[];
13
+ NoncompliantKeys?: string[] | undefined;
14
14
  /**
15
15
  * <p>These are keys defined in the effective policy that are on the resource with either
16
16
  * incorrect case treatment or noncompliant values. </p>
17
17
  * @public
18
18
  */
19
- KeysWithNoncompliantValues?: string[];
19
+ KeysWithNoncompliantValues?: string[] | undefined;
20
20
  /**
21
21
  * <p>Whether a resource is compliant with the effective tag policy.</p>
22
22
  * @public
23
23
  */
24
- ComplianceStatus?: boolean;
24
+ ComplianceStatus?: boolean | undefined;
25
25
  }
26
26
  /**
27
27
  * <p>The target of the operation is currently being modified by a different request. Try
@@ -31,7 +31,7 @@ export interface ComplianceDetails {
31
31
  export declare class ConcurrentModificationException extends __BaseException {
32
32
  readonly name: "ConcurrentModificationException";
33
33
  readonly $fault: "client";
34
- Message?: string;
34
+ Message?: string | undefined;
35
35
  /**
36
36
  * @internal
37
37
  */
@@ -63,7 +63,7 @@ export declare class ConcurrentModificationException extends __BaseException {
63
63
  export declare class ConstraintViolationException extends __BaseException {
64
64
  readonly name: "ConstraintViolationException";
65
65
  readonly $fault: "client";
66
- Message?: string;
66
+ Message?: string | undefined;
67
67
  /**
68
68
  * @internal
69
69
  */
@@ -104,22 +104,22 @@ export interface DescribeReportCreationOutput {
104
104
  * </ul>
105
105
  * @public
106
106
  */
107
- Status?: string;
107
+ Status?: string | undefined;
108
108
  /**
109
109
  * <p>The path to the Amazon S3 bucket where the report was stored on creation.</p>
110
110
  * @public
111
111
  */
112
- S3Location?: string;
112
+ S3Location?: string | undefined;
113
113
  /**
114
114
  * <p>The date and time that the report was started. </p>
115
115
  * @public
116
116
  */
117
- StartDate?: string;
117
+ StartDate?: string | undefined;
118
118
  /**
119
119
  * <p>Details of the common errors that all operations return.</p>
120
120
  * @public
121
121
  */
122
- ErrorMessage?: string;
122
+ ErrorMessage?: string | undefined;
123
123
  }
124
124
  /**
125
125
  * <p>The request processing failed because of an unknown error, exception, or failure. You
@@ -129,7 +129,7 @@ export interface DescribeReportCreationOutput {
129
129
  export declare class InternalServiceException extends __BaseException {
130
130
  readonly name: "InternalServiceException";
131
131
  readonly $fault: "server";
132
- Message?: string;
132
+ Message?: string | undefined;
133
133
  /**
134
134
  * @internal
135
135
  */
@@ -162,7 +162,7 @@ export declare class InternalServiceException extends __BaseException {
162
162
  export declare class InvalidParameterException extends __BaseException {
163
163
  readonly name: "InvalidParameterException";
164
164
  readonly $fault: "client";
165
- Message?: string;
165
+ Message?: string | undefined;
166
166
  /**
167
167
  * @internal
168
168
  */
@@ -175,7 +175,7 @@ export declare class InvalidParameterException extends __BaseException {
175
175
  export declare class ThrottledException extends __BaseException {
176
176
  readonly name: "ThrottledException";
177
177
  readonly $fault: "client";
178
- Message?: string;
178
+ Message?: string | undefined;
179
179
  /**
180
180
  * @internal
181
181
  */
@@ -232,7 +232,7 @@ export interface FailureInfo {
232
232
  * <p>The HTTP status code of the common error.</p>
233
233
  * @public
234
234
  */
235
- StatusCode?: number;
235
+ StatusCode?: number | undefined;
236
236
  /**
237
237
  * <p>The code of the common error. Valid values include
238
238
  * <code>InternalServiceException</code>, <code>InvalidParameterException</code>, and
@@ -240,12 +240,12 @@ export interface FailureInfo {
240
240
  * to tag.</p>
241
241
  * @public
242
242
  */
243
- ErrorCode?: ErrorCode;
243
+ ErrorCode?: ErrorCode | undefined;
244
244
  /**
245
245
  * <p>The message of the common error.</p>
246
246
  * @public
247
247
  */
248
- ErrorMessage?: string;
248
+ ErrorMessage?: string | undefined;
249
249
  }
250
250
  /**
251
251
  * @public
@@ -270,14 +270,14 @@ export interface GetComplianceSummaryInput {
270
270
  * resources with the specified target IDs.</p>
271
271
  * @public
272
272
  */
273
- TargetIdFilters?: string[];
273
+ TargetIdFilters?: string[] | undefined;
274
274
  /**
275
275
  * <p>Specifies a list of Amazon Web Services Regions to limit the output to. If you use this parameter,
276
276
  * the count of returned noncompliant resources includes only resources in the specified
277
277
  * Regions.</p>
278
278
  * @public
279
279
  */
280
- RegionFilters?: string[];
280
+ RegionFilters?: string[] | undefined;
281
281
  /**
282
282
  * <p>Specifies that you want the response to include information for only resources of the
283
283
  * specified types. The format of each resource type is
@@ -308,20 +308,20 @@ export interface GetComplianceSummaryInput {
308
308
  * resource type filter. </p>
309
309
  * @public
310
310
  */
311
- ResourceTypeFilters?: string[];
311
+ ResourceTypeFilters?: string[] | undefined;
312
312
  /**
313
313
  * <p>Specifies that you want the response to include information for only resources that
314
314
  * have tags with the specified tag keys. If you use this parameter, the count of returned
315
315
  * noncompliant resources includes only resources that have the specified tag keys.</p>
316
316
  * @public
317
317
  */
318
- TagKeyFilters?: string[];
318
+ TagKeyFilters?: string[] | undefined;
319
319
  /**
320
320
  * <p>Specifies a list of attributes to group the counts of noncompliant resources by. If
321
321
  * supplied, the counts are sorted by those attributes.</p>
322
322
  * @public
323
323
  */
324
- GroupBy?: GroupByAttribute[];
324
+ GroupBy?: GroupByAttribute[] | undefined;
325
325
  /**
326
326
  * <p>Specifies the maximum number of results to be returned in each page. A
327
327
  * query can return fewer than this maximum, even if there are more results still to return. You
@@ -329,14 +329,14 @@ export interface GetComplianceSummaryInput {
329
329
  * results. You can specify a minimum of 1 and a maximum value of 100.</p>
330
330
  * @public
331
331
  */
332
- MaxResults?: number;
332
+ MaxResults?: number | undefined;
333
333
  /**
334
334
  * <p>Specifies a <code>PaginationToken</code> response value from a
335
335
  * previous request to indicate that you want the next page of results. Leave this parameter empty
336
336
  * in your initial request.</p>
337
337
  * @public
338
338
  */
339
- PaginationToken?: string;
339
+ PaginationToken?: string | undefined;
340
340
  }
341
341
  /**
342
342
  * @public
@@ -360,33 +360,33 @@ export interface Summary {
360
360
  * <p>The timestamp that shows when this summary was generated in this Region. </p>
361
361
  * @public
362
362
  */
363
- LastUpdated?: string;
363
+ LastUpdated?: string | undefined;
364
364
  /**
365
365
  * <p>The account identifier or the root identifier of the organization. If you don't know
366
366
  * the root ID, you can call the Organizations <a href="https://docs.aws.amazon.com/organizations/latest/APIReference/API_ListRoots.html">ListRoots</a> API.</p>
367
367
  * @public
368
368
  */
369
- TargetId?: string;
369
+ TargetId?: string | undefined;
370
370
  /**
371
371
  * <p>Whether the target is an account, an OU, or the organization root.</p>
372
372
  * @public
373
373
  */
374
- TargetIdType?: TargetIdType;
374
+ TargetIdType?: TargetIdType | undefined;
375
375
  /**
376
376
  * <p>The Amazon Web Services Region that the summary applies to.</p>
377
377
  * @public
378
378
  */
379
- Region?: string;
379
+ Region?: string | undefined;
380
380
  /**
381
381
  * <p>The Amazon Web Services resource type.</p>
382
382
  * @public
383
383
  */
384
- ResourceType?: string;
384
+ ResourceType?: string | undefined;
385
385
  /**
386
386
  * <p>The count of noncompliant resources.</p>
387
387
  * @public
388
388
  */
389
- NonCompliantResources?: number;
389
+ NonCompliantResources?: number | undefined;
390
390
  }
391
391
  /**
392
392
  * @public
@@ -396,14 +396,14 @@ export interface GetComplianceSummaryOutput {
396
396
  * <p>A table that shows counts of noncompliant resources.</p>
397
397
  * @public
398
398
  */
399
- SummaryList?: Summary[];
399
+ SummaryList?: Summary[] | undefined;
400
400
  /**
401
401
  * <p>A string that indicates that there is more data available than this
402
402
  * response contains. To receive the next part of the response, specify this response value
403
403
  * as the <code>PaginationToken</code> value in the request for the next page.</p>
404
404
  * @public
405
405
  */
406
- PaginationToken?: string;
406
+ PaginationToken?: string | undefined;
407
407
  }
408
408
  /**
409
409
  * <p>A list of tags (keys and values) that are used to specify the associated
@@ -416,13 +416,13 @@ export interface TagFilter {
416
416
  * that acts like a category for more specific tag values.</p>
417
417
  * @public
418
418
  */
419
- Key?: string;
419
+ Key?: string | undefined;
420
420
  /**
421
421
  * <p>One part of a key-value pair that make up a tag. A value acts as a
422
422
  * descriptor within a tag category (key). The value can be empty or null.</p>
423
423
  * @public
424
424
  */
425
- Values?: string[];
425
+ Values?: string[] | undefined;
426
426
  }
427
427
  /**
428
428
  * @public
@@ -434,7 +434,7 @@ export interface GetResourcesInput {
434
434
  * in your initial request.</p>
435
435
  * @public
436
436
  */
437
- PaginationToken?: string;
437
+ PaginationToken?: string | undefined;
438
438
  /**
439
439
  * <p>Specifies a list of TagFilters (keys and values) to restrict the output to only those
440
440
  * resources that have tags with the specified keys and, if included, the specified values.
@@ -494,7 +494,7 @@ export interface GetResourcesInput {
494
494
  * </ul>
495
495
  * @public
496
496
  */
497
- TagFilters?: TagFilter[];
497
+ TagFilters?: TagFilter[] | undefined;
498
498
  /**
499
499
  * <p>Specifies the maximum number of results to be returned in each page. A
500
500
  * query can return fewer than this maximum, even if there are more results still to return. You
@@ -502,7 +502,7 @@ export interface GetResourcesInput {
502
502
  * results. You can specify a minimum of 1 and a maximum value of 100.</p>
503
503
  * @public
504
504
  */
505
- ResourcesPerPage?: number;
505
+ ResourcesPerPage?: number | undefined;
506
506
  /**
507
507
  * <p>Amazon Web Services recommends using <code>ResourcesPerPage</code> instead of this parameter.</p>
508
508
  * <p>A limit that restricts the number of tags (key and value pairs) returned by
@@ -522,7 +522,7 @@ export interface GetResourcesInput {
522
522
  * items.</p>
523
523
  * @public
524
524
  */
525
- TagsPerPage?: number;
525
+ TagsPerPage?: number | undefined;
526
526
  /**
527
527
  * <p>Specifies the resource types that you want included in the response. The format of
528
528
  * each resource type is <code>service[:resourceType]</code>. For example, specifying a
@@ -541,14 +541,14 @@ export interface GetResourcesInput {
541
541
  * </p>
542
542
  * @public
543
543
  */
544
- ResourceTypeFilters?: string[];
544
+ ResourceTypeFilters?: string[] | undefined;
545
545
  /**
546
546
  * <p>Specifies whether to include details regarding the compliance with the effective tag
547
547
  * policy. Set this to <code>true</code> to determine whether resources are compliant with
548
548
  * the tag policy and to get details.</p>
549
549
  * @public
550
550
  */
551
- IncludeComplianceDetails?: boolean;
551
+ IncludeComplianceDetails?: boolean | undefined;
552
552
  /**
553
553
  * <p>Specifies whether to exclude resources that are compliant with the tag policy. Set
554
554
  * this to <code>true</code> if you are interested in retrieving information on
@@ -557,7 +557,7 @@ export interface GetResourcesInput {
557
557
  * is also set to <code>true</code>.</p>
558
558
  * @public
559
559
  */
560
- ExcludeCompliantResources?: boolean;
560
+ ExcludeCompliantResources?: boolean | undefined;
561
561
  /**
562
562
  * <p>Specifies a list of ARNs of resources for which you want to retrieve tag data. You
563
563
  * can't specify both this parameter and any of the pagination parameters
@@ -572,7 +572,7 @@ export interface GetResourcesInput {
572
572
  * <i>Amazon Web Services General Reference</i>.</p>
573
573
  * @public
574
574
  */
575
- ResourceARNList?: string[];
575
+ ResourceARNList?: string[] | undefined;
576
576
  }
577
577
  /**
578
578
  * <p>The metadata that you apply to Amazon Web Services resources to help you categorize and organize
@@ -604,18 +604,18 @@ export interface ResourceTagMapping {
604
604
  * <p>The ARN of the resource.</p>
605
605
  * @public
606
606
  */
607
- ResourceARN?: string;
607
+ ResourceARN?: string | undefined;
608
608
  /**
609
609
  * <p>The tags that have been applied to one or more Amazon Web Services resources.</p>
610
610
  * @public
611
611
  */
612
- Tags?: Tag[];
612
+ Tags?: Tag[] | undefined;
613
613
  /**
614
614
  * <p>Information that shows whether a resource is compliant with the effective tag policy,
615
615
  * including details on any noncompliant tag keys.</p>
616
616
  * @public
617
617
  */
618
- ComplianceDetails?: ComplianceDetails;
618
+ ComplianceDetails?: ComplianceDetails | undefined;
619
619
  }
620
620
  /**
621
621
  * @public
@@ -627,13 +627,13 @@ export interface GetResourcesOutput {
627
627
  * as the <code>PaginationToken</code> value in the request for the next page.</p>
628
628
  * @public
629
629
  */
630
- PaginationToken?: string;
630
+ PaginationToken?: string | undefined;
631
631
  /**
632
632
  * <p>A list of resource ARNs and the tags (keys and values) associated with
633
633
  * each.</p>
634
634
  * @public
635
635
  */
636
- ResourceTagMappingList?: ResourceTagMapping[];
636
+ ResourceTagMappingList?: ResourceTagMapping[] | undefined;
637
637
  }
638
638
  /**
639
639
  * <p>A <code>PaginationToken</code> is valid for a maximum of 15 minutes. Your request was
@@ -643,7 +643,7 @@ export interface GetResourcesOutput {
643
643
  export declare class PaginationTokenExpiredException extends __BaseException {
644
644
  readonly name: "PaginationTokenExpiredException";
645
645
  readonly $fault: "client";
646
- Message?: string;
646
+ Message?: string | undefined;
647
647
  /**
648
648
  * @internal
649
649
  */
@@ -659,7 +659,7 @@ export interface GetTagKeysInput {
659
659
  * in your initial request.</p>
660
660
  * @public
661
661
  */
662
- PaginationToken?: string;
662
+ PaginationToken?: string | undefined;
663
663
  }
664
664
  /**
665
665
  * @public
@@ -671,12 +671,12 @@ export interface GetTagKeysOutput {
671
671
  * as the <code>PaginationToken</code> value in the request for the next page.</p>
672
672
  * @public
673
673
  */
674
- PaginationToken?: string;
674
+ PaginationToken?: string | undefined;
675
675
  /**
676
676
  * <p>A list of all tag keys in the Amazon Web Services account.</p>
677
677
  * @public
678
678
  */
679
- TagKeys?: string[];
679
+ TagKeys?: string[] | undefined;
680
680
  }
681
681
  /**
682
682
  * @public
@@ -688,7 +688,7 @@ export interface GetTagValuesInput {
688
688
  * in your initial request.</p>
689
689
  * @public
690
690
  */
691
- PaginationToken?: string;
691
+ PaginationToken?: string | undefined;
692
692
  /**
693
693
  * <p>Specifies the tag key for which you want to list all existing values that are
694
694
  * currently used in the specified Amazon Web Services Region for the calling account.</p>
@@ -706,13 +706,13 @@ export interface GetTagValuesOutput {
706
706
  * as the <code>PaginationToken</code> value in the request for the next page.</p>
707
707
  * @public
708
708
  */
709
- PaginationToken?: string;
709
+ PaginationToken?: string | undefined;
710
710
  /**
711
711
  * <p>A list of all tag values for the specified key currently used in the specified Amazon Web Services
712
712
  * Region for the calling account.</p>
713
713
  * @public
714
714
  */
715
- TagValues?: string[];
715
+ TagValues?: string[] | undefined;
716
716
  }
717
717
  /**
718
718
  * @public
@@ -765,7 +765,7 @@ export interface TagResourcesOutput {
765
765
  * errors, the <code>FailedResourcesMap</code> is empty.</p>
766
766
  * @public
767
767
  */
768
- FailedResourcesMap?: Record<string, FailureInfo>;
768
+ FailedResourcesMap?: Record<string, FailureInfo> | undefined;
769
769
  }
770
770
  /**
771
771
  * @public
@@ -798,5 +798,5 @@ export interface UntagResourcesOutput {
798
798
  * errors, the <code>FailedResourcesMap</code> is empty.</p>
799
799
  * @public
800
800
  */
801
- FailedResourcesMap?: Record<string, FailureInfo>;
801
+ FailedResourcesMap?: Record<string, FailureInfo> | undefined;
802
802
  }
@@ -1,14 +1,14 @@
1
1
  import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client";
2
2
  import { ResourceGroupsTaggingAPIServiceException as __BaseException } from "./ResourceGroupsTaggingAPIServiceException";
3
3
  export interface ComplianceDetails {
4
- NoncompliantKeys?: string[];
5
- KeysWithNoncompliantValues?: string[];
6
- ComplianceStatus?: boolean;
4
+ NoncompliantKeys?: string[] | undefined;
5
+ KeysWithNoncompliantValues?: string[] | undefined;
6
+ ComplianceStatus?: boolean | undefined;
7
7
  }
8
8
  export declare class ConcurrentModificationException extends __BaseException {
9
9
  readonly name: "ConcurrentModificationException";
10
10
  readonly $fault: "client";
11
- Message?: string;
11
+ Message?: string | undefined;
12
12
  constructor(
13
13
  opts: __ExceptionOptionType<
14
14
  ConcurrentModificationException,
@@ -19,22 +19,22 @@ export declare class ConcurrentModificationException extends __BaseException {
19
19
  export declare class ConstraintViolationException extends __BaseException {
20
20
  readonly name: "ConstraintViolationException";
21
21
  readonly $fault: "client";
22
- Message?: string;
22
+ Message?: string | undefined;
23
23
  constructor(
24
24
  opts: __ExceptionOptionType<ConstraintViolationException, __BaseException>
25
25
  );
26
26
  }
27
27
  export interface DescribeReportCreationInput {}
28
28
  export interface DescribeReportCreationOutput {
29
- Status?: string;
30
- S3Location?: string;
31
- StartDate?: string;
32
- ErrorMessage?: string;
29
+ Status?: string | undefined;
30
+ S3Location?: string | undefined;
31
+ StartDate?: string | undefined;
32
+ ErrorMessage?: string | undefined;
33
33
  }
34
34
  export declare class InternalServiceException extends __BaseException {
35
35
  readonly name: "InternalServiceException";
36
36
  readonly $fault: "server";
37
- Message?: string;
37
+ Message?: string | undefined;
38
38
  constructor(
39
39
  opts: __ExceptionOptionType<InternalServiceException, __BaseException>
40
40
  );
@@ -42,7 +42,7 @@ export declare class InternalServiceException extends __BaseException {
42
42
  export declare class InvalidParameterException extends __BaseException {
43
43
  readonly name: "InvalidParameterException";
44
44
  readonly $fault: "client";
45
- Message?: string;
45
+ Message?: string | undefined;
46
46
  constructor(
47
47
  opts: __ExceptionOptionType<InvalidParameterException, __BaseException>
48
48
  );
@@ -50,7 +50,7 @@ export declare class InvalidParameterException extends __BaseException {
50
50
  export declare class ThrottledException extends __BaseException {
51
51
  readonly name: "ThrottledException";
52
52
  readonly $fault: "client";
53
- Message?: string;
53
+ Message?: string | undefined;
54
54
  constructor(opts: __ExceptionOptionType<ThrottledException, __BaseException>);
55
55
  }
56
56
  export declare const ErrorCode: {
@@ -59,9 +59,9 @@ export declare const ErrorCode: {
59
59
  };
60
60
  export type ErrorCode = (typeof ErrorCode)[keyof typeof ErrorCode];
61
61
  export interface FailureInfo {
62
- StatusCode?: number;
63
- ErrorCode?: ErrorCode;
64
- ErrorMessage?: string;
62
+ StatusCode?: number | undefined;
63
+ ErrorCode?: ErrorCode | undefined;
64
+ ErrorMessage?: string | undefined;
65
65
  }
66
66
  export declare const GroupByAttribute: {
67
67
  readonly REGION: "REGION";
@@ -71,13 +71,13 @@ export declare const GroupByAttribute: {
71
71
  export type GroupByAttribute =
72
72
  (typeof GroupByAttribute)[keyof typeof GroupByAttribute];
73
73
  export interface GetComplianceSummaryInput {
74
- TargetIdFilters?: string[];
75
- RegionFilters?: string[];
76
- ResourceTypeFilters?: string[];
77
- TagKeyFilters?: string[];
78
- GroupBy?: GroupByAttribute[];
79
- MaxResults?: number;
80
- PaginationToken?: string;
74
+ TargetIdFilters?: string[] | undefined;
75
+ RegionFilters?: string[] | undefined;
76
+ ResourceTypeFilters?: string[] | undefined;
77
+ TagKeyFilters?: string[] | undefined;
78
+ GroupBy?: GroupByAttribute[] | undefined;
79
+ MaxResults?: number | undefined;
80
+ PaginationToken?: string | undefined;
81
81
  }
82
82
  export declare const TargetIdType: {
83
83
  readonly ACCOUNT: "ACCOUNT";
@@ -86,48 +86,48 @@ export declare const TargetIdType: {
86
86
  };
87
87
  export type TargetIdType = (typeof TargetIdType)[keyof typeof TargetIdType];
88
88
  export interface Summary {
89
- LastUpdated?: string;
90
- TargetId?: string;
91
- TargetIdType?: TargetIdType;
92
- Region?: string;
93
- ResourceType?: string;
94
- NonCompliantResources?: number;
89
+ LastUpdated?: string | undefined;
90
+ TargetId?: string | undefined;
91
+ TargetIdType?: TargetIdType | undefined;
92
+ Region?: string | undefined;
93
+ ResourceType?: string | undefined;
94
+ NonCompliantResources?: number | undefined;
95
95
  }
96
96
  export interface GetComplianceSummaryOutput {
97
- SummaryList?: Summary[];
98
- PaginationToken?: string;
97
+ SummaryList?: Summary[] | undefined;
98
+ PaginationToken?: string | undefined;
99
99
  }
100
100
  export interface TagFilter {
101
- Key?: string;
102
- Values?: string[];
101
+ Key?: string | undefined;
102
+ Values?: string[] | undefined;
103
103
  }
104
104
  export interface GetResourcesInput {
105
- PaginationToken?: string;
106
- TagFilters?: TagFilter[];
107
- ResourcesPerPage?: number;
108
- TagsPerPage?: number;
109
- ResourceTypeFilters?: string[];
110
- IncludeComplianceDetails?: boolean;
111
- ExcludeCompliantResources?: boolean;
112
- ResourceARNList?: string[];
105
+ PaginationToken?: string | undefined;
106
+ TagFilters?: TagFilter[] | undefined;
107
+ ResourcesPerPage?: number | undefined;
108
+ TagsPerPage?: number | undefined;
109
+ ResourceTypeFilters?: string[] | undefined;
110
+ IncludeComplianceDetails?: boolean | undefined;
111
+ ExcludeCompliantResources?: boolean | undefined;
112
+ ResourceARNList?: string[] | undefined;
113
113
  }
114
114
  export interface Tag {
115
115
  Key: string | undefined;
116
116
  Value: string | undefined;
117
117
  }
118
118
  export interface ResourceTagMapping {
119
- ResourceARN?: string;
120
- Tags?: Tag[];
121
- ComplianceDetails?: ComplianceDetails;
119
+ ResourceARN?: string | undefined;
120
+ Tags?: Tag[] | undefined;
121
+ ComplianceDetails?: ComplianceDetails | undefined;
122
122
  }
123
123
  export interface GetResourcesOutput {
124
- PaginationToken?: string;
125
- ResourceTagMappingList?: ResourceTagMapping[];
124
+ PaginationToken?: string | undefined;
125
+ ResourceTagMappingList?: ResourceTagMapping[] | undefined;
126
126
  }
127
127
  export declare class PaginationTokenExpiredException extends __BaseException {
128
128
  readonly name: "PaginationTokenExpiredException";
129
129
  readonly $fault: "client";
130
- Message?: string;
130
+ Message?: string | undefined;
131
131
  constructor(
132
132
  opts: __ExceptionOptionType<
133
133
  PaginationTokenExpiredException,
@@ -136,19 +136,19 @@ export declare class PaginationTokenExpiredException extends __BaseException {
136
136
  );
137
137
  }
138
138
  export interface GetTagKeysInput {
139
- PaginationToken?: string;
139
+ PaginationToken?: string | undefined;
140
140
  }
141
141
  export interface GetTagKeysOutput {
142
- PaginationToken?: string;
143
- TagKeys?: string[];
142
+ PaginationToken?: string | undefined;
143
+ TagKeys?: string[] | undefined;
144
144
  }
145
145
  export interface GetTagValuesInput {
146
- PaginationToken?: string;
146
+ PaginationToken?: string | undefined;
147
147
  Key: string | undefined;
148
148
  }
149
149
  export interface GetTagValuesOutput {
150
- PaginationToken?: string;
151
- TagValues?: string[];
150
+ PaginationToken?: string | undefined;
151
+ TagValues?: string[] | undefined;
152
152
  }
153
153
  export interface StartReportCreationInput {
154
154
  S3Bucket: string | undefined;
@@ -159,12 +159,12 @@ export interface TagResourcesInput {
159
159
  Tags: Record<string, string> | undefined;
160
160
  }
161
161
  export interface TagResourcesOutput {
162
- FailedResourcesMap?: Record<string, FailureInfo>;
162
+ FailedResourcesMap?: Record<string, FailureInfo> | undefined;
163
163
  }
164
164
  export interface UntagResourcesInput {
165
165
  ResourceARNList: string[] | undefined;
166
166
  TagKeys: string[] | undefined;
167
167
  }
168
168
  export interface UntagResourcesOutput {
169
- FailedResourcesMap?: Record<string, FailureInfo>;
169
+ FailedResourcesMap?: Record<string, FailureInfo> | undefined;
170
170
  }
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@aws-sdk/client-resource-groups-tagging-api",
3
3
  "description": "AWS SDK for JavaScript Resource Groups Tagging Api Client for Node.js, Browser and React Native",
4
- "version": "3.687.0",
4
+ "version": "3.691.0",
5
5
  "scripts": {
6
6
  "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
7
7
  "build:cjs": "node ../../scripts/compilation/inline client-resource-groups-tagging-api",
@@ -20,19 +20,19 @@
20
20
  "dependencies": {
21
21
  "@aws-crypto/sha256-browser": "5.2.0",
22
22
  "@aws-crypto/sha256-js": "5.2.0",
23
- "@aws-sdk/client-sso-oidc": "3.687.0",
24
- "@aws-sdk/client-sts": "3.687.0",
25
- "@aws-sdk/core": "3.686.0",
26
- "@aws-sdk/credential-provider-node": "3.687.0",
23
+ "@aws-sdk/client-sso-oidc": "3.691.0",
24
+ "@aws-sdk/client-sts": "3.691.0",
25
+ "@aws-sdk/core": "3.691.0",
26
+ "@aws-sdk/credential-provider-node": "3.691.0",
27
27
  "@aws-sdk/middleware-host-header": "3.686.0",
28
28
  "@aws-sdk/middleware-logger": "3.686.0",
29
29
  "@aws-sdk/middleware-recursion-detection": "3.686.0",
30
- "@aws-sdk/middleware-user-agent": "3.687.0",
30
+ "@aws-sdk/middleware-user-agent": "3.691.0",
31
31
  "@aws-sdk/region-config-resolver": "3.686.0",
32
32
  "@aws-sdk/types": "3.686.0",
33
33
  "@aws-sdk/util-endpoints": "3.686.0",
34
34
  "@aws-sdk/util-user-agent-browser": "3.686.0",
35
- "@aws-sdk/util-user-agent-node": "3.687.0",
35
+ "@aws-sdk/util-user-agent-node": "3.691.0",
36
36
  "@smithy/config-resolver": "^3.0.10",
37
37
  "@smithy/core": "^2.5.1",
38
38
  "@smithy/fetch-http-handler": "^4.0.0",