@aws-sdk/client-resource-groups 3.686.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.
@@ -35,17 +35,17 @@ export interface AccountSettings {
35
35
  * <p>The desired target status of the group lifecycle events feature. If</p>
36
36
  * @public
37
37
  */
38
- GroupLifecycleEventsDesiredStatus?: GroupLifecycleEventsDesiredStatus;
38
+ GroupLifecycleEventsDesiredStatus?: GroupLifecycleEventsDesiredStatus | undefined;
39
39
  /**
40
40
  * <p>The current status of the group lifecycle events feature.</p>
41
41
  * @public
42
42
  */
43
- GroupLifecycleEventsStatus?: GroupLifecycleEventsStatus;
43
+ GroupLifecycleEventsStatus?: GroupLifecycleEventsStatus | undefined;
44
44
  /**
45
45
  * <p>The text of any error message occurs during an attempt to turn group lifecycle events on or off.</p>
46
46
  * @public
47
47
  */
48
- GroupLifecycleEventsStatusMessage?: string;
48
+ GroupLifecycleEventsStatusMessage?: string | undefined;
49
49
  }
50
50
  /**
51
51
  * <p>The request includes one or more parameters that violate validation rules.</p>
@@ -54,7 +54,7 @@ export interface AccountSettings {
54
54
  export declare class BadRequestException extends __BaseException {
55
55
  readonly name: "BadRequestException";
56
56
  readonly $fault: "client";
57
- Message?: string;
57
+ Message?: string | undefined;
58
58
  /**
59
59
  * @internal
60
60
  */
@@ -77,7 +77,7 @@ export interface CancelTagSyncTaskInput {
77
77
  export declare class ForbiddenException extends __BaseException {
78
78
  readonly name: "ForbiddenException";
79
79
  readonly $fault: "client";
80
- Message?: string;
80
+ Message?: string | undefined;
81
81
  /**
82
82
  * @internal
83
83
  */
@@ -90,7 +90,7 @@ export declare class ForbiddenException extends __BaseException {
90
90
  export declare class InternalServerErrorException extends __BaseException {
91
91
  readonly name: "InternalServerErrorException";
92
92
  readonly $fault: "server";
93
- Message?: string;
93
+ Message?: string | undefined;
94
94
  /**
95
95
  * @internal
96
96
  */
@@ -103,7 +103,7 @@ export declare class InternalServerErrorException extends __BaseException {
103
103
  export declare class MethodNotAllowedException extends __BaseException {
104
104
  readonly name: "MethodNotAllowedException";
105
105
  readonly $fault: "client";
106
- Message?: string;
106
+ Message?: string | undefined;
107
107
  /**
108
108
  * @internal
109
109
  */
@@ -117,7 +117,7 @@ export declare class MethodNotAllowedException extends __BaseException {
117
117
  export declare class TooManyRequestsException extends __BaseException {
118
118
  readonly name: "TooManyRequestsException";
119
119
  readonly $fault: "client";
120
- Message?: string;
120
+ Message?: string | undefined;
121
121
  /**
122
122
  * @internal
123
123
  */
@@ -131,7 +131,7 @@ export declare class TooManyRequestsException extends __BaseException {
131
131
  export declare class UnauthorizedException extends __BaseException {
132
132
  readonly name: "UnauthorizedException";
133
133
  readonly $fault: "client";
134
- Message?: string;
134
+ Message?: string | undefined;
135
135
  /**
136
136
  * @internal
137
137
  */
@@ -157,7 +157,7 @@ export interface GroupConfigurationParameter {
157
157
  * parameters</a>.</p>
158
158
  * @public
159
159
  */
160
- Values?: string[];
160
+ Values?: string[] | undefined;
161
161
  }
162
162
  /**
163
163
  * <p>An item in a group configuration. A group service configuration can have one or more
@@ -180,7 +180,7 @@ export interface GroupConfigurationItem {
180
180
  * resource types and parameters</a>.</p>
181
181
  * @public
182
182
  */
183
- Parameters?: GroupConfigurationParameter[];
183
+ Parameters?: GroupConfigurationParameter[] | undefined;
184
184
  }
185
185
  /**
186
186
  * @public
@@ -367,7 +367,7 @@ export interface CreateGroupInput {
367
367
  * hyphens, underscores, periods, and spaces.</p>
368
368
  * @public
369
369
  */
370
- Description?: string;
370
+ Description?: string | undefined;
371
371
  /**
372
372
  * <p>The resource query that determines which Amazon Web Services resources are members of this group.
373
373
  * For more information about resource queries, see <a href="https://docs.aws.amazon.com/ARG/latest/userguide/gettingstarted-query.html#gettingstarted-query-cli-tag">Create
@@ -378,12 +378,12 @@ export interface CreateGroupInput {
378
378
  * </note>
379
379
  * @public
380
380
  */
381
- ResourceQuery?: ResourceQuery;
381
+ ResourceQuery?: ResourceQuery | undefined;
382
382
  /**
383
383
  * <p>The tags to add to the group. A tag is key-value pair string.</p>
384
384
  * @public
385
385
  */
386
- Tags?: Record<string, string>;
386
+ Tags?: Record<string, string> | undefined;
387
387
  /**
388
388
  * <p>A configuration associates the resource group with an Amazon Web Services service and specifies how
389
389
  * the service can interact with the resources in the group. A configuration is an array of
@@ -395,24 +395,24 @@ export interface CreateGroupInput {
395
395
  * </note>
396
396
  * @public
397
397
  */
398
- Configuration?: GroupConfigurationItem[];
398
+ Configuration?: GroupConfigurationItem[] | undefined;
399
399
  /**
400
400
  * <p>The critical rank of the application group on a scale of 1 to 10, with a
401
401
  * rank of 1 being the most critical, and a rank of 10 being least critical.</p>
402
402
  * @public
403
403
  */
404
- Criticality?: number;
404
+ Criticality?: number | undefined;
405
405
  /**
406
406
  * <p>A name, email address or other identifier for the person or group
407
407
  * who is considered as the owner of this application group within your organization. </p>
408
408
  * @public
409
409
  */
410
- Owner?: string;
410
+ Owner?: string | undefined;
411
411
  /**
412
412
  * <p>The name of the application group, which you can change at any time. </p>
413
413
  * @public
414
414
  */
415
- DisplayName?: string;
415
+ DisplayName?: string | undefined;
416
416
  }
417
417
  /**
418
418
  * <p>A resource group that contains Amazon Web Services resources. You can assign resources to the group
@@ -449,30 +449,30 @@ export interface Group {
449
449
  * <p>The description of the resource group.</p>
450
450
  * @public
451
451
  */
452
- Description?: string;
452
+ Description?: string | undefined;
453
453
  /**
454
454
  * <p>The critical rank of the application group on a scale of 1 to 10, with a
455
455
  * rank of 1 being the most critical, and a rank of 10 being least critical.</p>
456
456
  * @public
457
457
  */
458
- Criticality?: number;
458
+ Criticality?: number | undefined;
459
459
  /**
460
460
  * <p>A name, email address or other identifier for the person or group
461
461
  * who is considered as the owner of this application group within your organization. </p>
462
462
  * @public
463
463
  */
464
- Owner?: string;
464
+ Owner?: string | undefined;
465
465
  /**
466
466
  * <p>The name of the application group, which you can change at any time. </p>
467
467
  * @public
468
468
  */
469
- DisplayName?: string;
469
+ DisplayName?: string | undefined;
470
470
  /**
471
471
  * <p>A tag that defines the application group membership. This tag is only supported
472
472
  * for application groups. </p>
473
473
  * @public
474
474
  */
475
- ApplicationTag?: Record<string, string>;
475
+ ApplicationTag?: Record<string, string> | undefined;
476
476
  }
477
477
  /**
478
478
  * @public
@@ -501,23 +501,23 @@ export interface GroupConfiguration {
501
501
  * <p>The configuration currently associated with the group and in effect.</p>
502
502
  * @public
503
503
  */
504
- Configuration?: GroupConfigurationItem[];
504
+ Configuration?: GroupConfigurationItem[] | undefined;
505
505
  /**
506
506
  * <p>If present, the new configuration that is in the process of being applied to the
507
507
  * group.</p>
508
508
  * @public
509
509
  */
510
- ProposedConfiguration?: GroupConfigurationItem[];
510
+ ProposedConfiguration?: GroupConfigurationItem[] | undefined;
511
511
  /**
512
512
  * <p>The current status of an attempt to update the group configuration.</p>
513
513
  * @public
514
514
  */
515
- Status?: GroupConfigurationStatus;
515
+ Status?: GroupConfigurationStatus | undefined;
516
516
  /**
517
517
  * <p>If present, the reason why a request to update the group configuration failed.</p>
518
518
  * @public
519
519
  */
520
- FailureReason?: string;
520
+ FailureReason?: string | undefined;
521
521
  }
522
522
  /**
523
523
  * @public
@@ -527,25 +527,25 @@ export interface CreateGroupOutput {
527
527
  * <p>The description of the resource group.</p>
528
528
  * @public
529
529
  */
530
- Group?: Group;
530
+ Group?: Group | undefined;
531
531
  /**
532
532
  * <p>The resource query associated with the group. For more information about resource
533
533
  * queries, see <a href="https://docs.aws.amazon.com/ARG/latest/userguide/gettingstarted-query.html#gettingstarted-query-cli-tag">Create
534
534
  * a tag-based group in Resource Groups</a>. </p>
535
535
  * @public
536
536
  */
537
- ResourceQuery?: ResourceQuery;
537
+ ResourceQuery?: ResourceQuery | undefined;
538
538
  /**
539
539
  * <p>The tags associated with the group.</p>
540
540
  * @public
541
541
  */
542
- Tags?: Record<string, string>;
542
+ Tags?: Record<string, string> | undefined;
543
543
  /**
544
544
  * <p>The service configuration associated with the resource group. For details about the
545
545
  * syntax of a service configuration, see <a href="https://docs.aws.amazon.com/ARG/latest/APIReference/about-slg.html">Service configurations for Resource Groups</a>.</p>
546
546
  * @public
547
547
  */
548
- GroupConfiguration?: GroupConfiguration;
548
+ GroupConfiguration?: GroupConfiguration | undefined;
549
549
  }
550
550
  /**
551
551
  * @public
@@ -557,12 +557,12 @@ export interface DeleteGroupInput {
557
557
  * <p>Deprecated - don't use this parameter. Use <code>Group</code> instead.</p>
558
558
  * @public
559
559
  */
560
- GroupName?: string;
560
+ GroupName?: string | undefined;
561
561
  /**
562
562
  * <p>The name or the Amazon resource name (ARN) of the resource group to delete.</p>
563
563
  * @public
564
564
  */
565
- Group?: string;
565
+ Group?: string | undefined;
566
566
  }
567
567
  /**
568
568
  * @public
@@ -572,7 +572,7 @@ export interface DeleteGroupOutput {
572
572
  * <p>A full description of the deleted resource group.</p>
573
573
  * @public
574
574
  */
575
- Group?: Group;
575
+ Group?: Group | undefined;
576
576
  }
577
577
  /**
578
578
  * <p>One or more of the specified resources don't exist.</p>
@@ -581,7 +581,7 @@ export interface DeleteGroupOutput {
581
581
  export declare class NotFoundException extends __BaseException {
582
582
  readonly name: "NotFoundException";
583
583
  readonly $fault: "client";
584
- Message?: string;
584
+ Message?: string | undefined;
585
585
  /**
586
586
  * @internal
587
587
  */
@@ -595,7 +595,7 @@ export interface GetAccountSettingsOutput {
595
595
  * <p>The current settings for the optional features in Resource Groups.</p>
596
596
  * @public
597
597
  */
598
- AccountSettings?: AccountSettings;
598
+ AccountSettings?: AccountSettings | undefined;
599
599
  }
600
600
  /**
601
601
  * @public
@@ -607,12 +607,12 @@ export interface GetGroupInput {
607
607
  * <p>Deprecated - don't use this parameter. Use <code>Group</code> instead.</p>
608
608
  * @public
609
609
  */
610
- GroupName?: string;
610
+ GroupName?: string | undefined;
611
611
  /**
612
612
  * <p>The name or the Amazon resource name (ARN) of the resource group to retrieve.</p>
613
613
  * @public
614
614
  */
615
- Group?: string;
615
+ Group?: string | undefined;
616
616
  }
617
617
  /**
618
618
  * @public
@@ -624,7 +624,7 @@ export interface GetGroupOutput {
624
624
  * those additional details of the resource group.</p>
625
625
  * @public
626
626
  */
627
- Group?: Group;
627
+ Group?: Group | undefined;
628
628
  }
629
629
  /**
630
630
  * @public
@@ -635,7 +635,7 @@ export interface GetGroupConfigurationInput {
635
635
  * configuration.</p>
636
636
  * @public
637
637
  */
638
- Group?: string;
638
+ Group?: string | undefined;
639
639
  }
640
640
  /**
641
641
  * @public
@@ -647,7 +647,7 @@ export interface GetGroupConfigurationOutput {
647
647
  * Resource Groups</a>.</p>
648
648
  * @public
649
649
  */
650
- GroupConfiguration?: GroupConfiguration;
650
+ GroupConfiguration?: GroupConfiguration | undefined;
651
651
  }
652
652
  /**
653
653
  * @public
@@ -659,12 +659,12 @@ export interface GetGroupQueryInput {
659
659
  * <p>Don't use this parameter. Use <code>Group</code> instead.</p>
660
660
  * @public
661
661
  */
662
- GroupName?: string;
662
+ GroupName?: string | undefined;
663
663
  /**
664
664
  * <p>The name or the Amazon resource name (ARN) of the resource group to query.</p>
665
665
  * @public
666
666
  */
667
- Group?: string;
667
+ Group?: string | undefined;
668
668
  }
669
669
  /**
670
670
  * <p>A mapping of a query attached to a resource group that determines the Amazon Web Services resources
@@ -695,7 +695,7 @@ export interface GetGroupQueryOutput {
695
695
  * a tag-based group in Resource Groups</a>.</p>
696
696
  * @public
697
697
  */
698
- GroupQuery?: GroupQuery;
698
+ GroupQuery?: GroupQuery | undefined;
699
699
  }
700
700
  /**
701
701
  * @public
@@ -715,12 +715,12 @@ export interface GetTagsOutput {
715
715
  * <p>TheAmazon resource name (ARN) of the tagged resource group.</p>
716
716
  * @public
717
717
  */
718
- Arn?: string;
718
+ Arn?: string | undefined;
719
719
  /**
720
720
  * <p>The tags associated with the specified resource group.</p>
721
721
  * @public
722
722
  */
723
- Tags?: Record<string, string>;
723
+ Tags?: Record<string, string> | undefined;
724
724
  }
725
725
  /**
726
726
  * @public
@@ -752,34 +752,34 @@ export interface GetTagSyncTaskOutput {
752
752
  * <p>The Amazon resource name (ARN) of the application group. </p>
753
753
  * @public
754
754
  */
755
- GroupArn?: string;
755
+ GroupArn?: string | undefined;
756
756
  /**
757
757
  * <p>The name of the application group. </p>
758
758
  * @public
759
759
  */
760
- GroupName?: string;
760
+ GroupName?: string | undefined;
761
761
  /**
762
762
  * <p>The Amazon resource name (ARN) of the tag-sync task. </p>
763
763
  * @public
764
764
  */
765
- TaskArn?: string;
765
+ TaskArn?: string | undefined;
766
766
  /**
767
767
  * <p>The tag key. </p>
768
768
  * @public
769
769
  */
770
- TagKey?: string;
770
+ TagKey?: string | undefined;
771
771
  /**
772
772
  * <p>The tag value. </p>
773
773
  * @public
774
774
  */
775
- TagValue?: string;
775
+ TagValue?: string | undefined;
776
776
  /**
777
777
  * <p>The Amazon resource name (ARN) of the role assumed by Resource Groups to tag and untag resources on your behalf. </p>
778
778
  * <p>For more information about this role, review <a href="https://docs.aws.amazon.com/servicecatalog/latest/arguide/app-tag-sync.html#tag-sync-role">Tag-sync required permissions</a>.
779
779
  * </p>
780
780
  * @public
781
781
  */
782
- RoleArn?: string;
782
+ RoleArn?: string | undefined;
783
783
  /**
784
784
  * <p>The status of the tag-sync task. </p>
785
785
  * <p>Valid values include:</p>
@@ -801,18 +801,18 @@ export interface GetTagSyncTaskOutput {
801
801
  * </ul>
802
802
  * @public
803
803
  */
804
- Status?: TagSyncTaskStatus;
804
+ Status?: TagSyncTaskStatus | undefined;
805
805
  /**
806
806
  * <p>The specific error message in cases where the tag-sync task status
807
807
  * is <code>ERROR</code>. </p>
808
808
  * @public
809
809
  */
810
- ErrorMessage?: string;
810
+ ErrorMessage?: string | undefined;
811
811
  /**
812
812
  * <p>The timestamp of when the tag-sync task was created. </p>
813
813
  * @public
814
814
  */
815
- CreatedAt?: Date;
815
+ CreatedAt?: Date | undefined;
816
816
  }
817
817
  /**
818
818
  * @public
@@ -838,17 +838,17 @@ export interface FailedResource {
838
838
  * <p>The Amazon resource name (ARN) of the resource that failed to be added or removed.</p>
839
839
  * @public
840
840
  */
841
- ResourceArn?: string;
841
+ ResourceArn?: string | undefined;
842
842
  /**
843
843
  * <p>The error message text associated with the failure.</p>
844
844
  * @public
845
845
  */
846
- ErrorMessage?: string;
846
+ ErrorMessage?: string | undefined;
847
847
  /**
848
848
  * <p>The error code associated with the failure.</p>
849
849
  * @public
850
850
  */
851
- ErrorCode?: string;
851
+ ErrorCode?: string | undefined;
852
852
  }
853
853
  /**
854
854
  * <p>A structure that identifies a resource that is currently pending addition to the group
@@ -861,7 +861,7 @@ export interface PendingResource {
861
861
  * <p>The Amazon resource name (ARN) of the resource that's in a pending state.</p>
862
862
  * @public
863
863
  */
864
- ResourceArn?: string;
864
+ ResourceArn?: string | undefined;
865
865
  }
866
866
  /**
867
867
  * @public
@@ -872,12 +872,12 @@ export interface GroupResourcesOutput {
872
872
  * group.</p>
873
873
  * @public
874
874
  */
875
- Succeeded?: string[];
875
+ Succeeded?: string[] | undefined;
876
876
  /**
877
877
  * <p>A list of Amazon resource names (ARNs) of any resources that this operation failed to add to the group.</p>
878
878
  * @public
879
879
  */
880
- Failed?: FailedResource[];
880
+ Failed?: FailedResource[] | undefined;
881
881
  /**
882
882
  * <p>A list of Amazon resource names (ARNs) of any resources that this operation is still in the process adding to
883
883
  * the group. These pending additions continue asynchronously. You can check the status of
@@ -888,7 +888,7 @@ export interface GroupResourcesOutput {
888
888
  * <code>Status</code> field of each object in that array. </p>
889
889
  * @public
890
890
  */
891
- Pending?: PendingResource[];
891
+ Pending?: PendingResource[] | undefined;
892
892
  }
893
893
  /**
894
894
  * @public
@@ -932,13 +932,13 @@ export interface ListGroupingStatusesInput {
932
932
  * response. </p>
933
933
  * @public
934
934
  */
935
- MaxResults?: number;
935
+ MaxResults?: number | undefined;
936
936
  /**
937
937
  * <p>The filter name and value pair that is used to return more
938
938
  * specific results from a list of resources. </p>
939
939
  * @public
940
940
  */
941
- Filters?: ListGroupingStatusesFilter[];
941
+ Filters?: ListGroupingStatusesFilter[] | undefined;
942
942
  /**
943
943
  * <p>The parameter for receiving additional results if you receive a
944
944
  * <code>NextToken</code> response in a previous request. A <code>NextToken</code>
@@ -947,7 +947,7 @@ export interface ListGroupingStatusesInput {
947
947
  * where the output should continue from. </p>
948
948
  * @public
949
949
  */
950
- NextToken?: string;
950
+ NextToken?: string | undefined;
951
951
  }
952
952
  /**
953
953
  * @public
@@ -984,35 +984,35 @@ export interface GroupingStatusesItem {
984
984
  * <p>The Amazon resource name (ARN) of a resource. </p>
985
985
  * @public
986
986
  */
987
- ResourceArn?: string;
987
+ ResourceArn?: string | undefined;
988
988
  /**
989
989
  * <p>Describes the resource grouping action with values of
990
990
  * <code>GROUP</code> or <code>UNGROUP</code>. </p>
991
991
  * @public
992
992
  */
993
- Action?: GroupingType;
993
+ Action?: GroupingType | undefined;
994
994
  /**
995
995
  * <p>Describes the resource grouping status with values of
996
996
  * <code>SUCCESS</code>, <code>FAILED</code>, <code>IN_PROGRESS</code>,
997
997
  * or <code>SKIPPED</code>. </p>
998
998
  * @public
999
999
  */
1000
- Status?: GroupingStatus;
1000
+ Status?: GroupingStatus | undefined;
1001
1001
  /**
1002
1002
  * <p>A message that explains the <code>ErrorCode</code>. </p>
1003
1003
  * @public
1004
1004
  */
1005
- ErrorMessage?: string;
1005
+ ErrorMessage?: string | undefined;
1006
1006
  /**
1007
1007
  * <p>Specifies the error code that was raised. </p>
1008
1008
  * @public
1009
1009
  */
1010
- ErrorCode?: string;
1010
+ ErrorCode?: string | undefined;
1011
1011
  /**
1012
1012
  * <p>A timestamp of when the status was last updated. </p>
1013
1013
  * @public
1014
1014
  */
1015
- UpdatedAt?: Date;
1015
+ UpdatedAt?: Date | undefined;
1016
1016
  }
1017
1017
  /**
1018
1018
  * @public
@@ -1022,20 +1022,20 @@ export interface ListGroupingStatusesOutput {
1022
1022
  * <p>The application group identifier, expressed as an Amazon resource name (ARN) or the application group name.</p>
1023
1023
  * @public
1024
1024
  */
1025
- Group?: string;
1025
+ Group?: string | undefined;
1026
1026
  /**
1027
1027
  * <p>Returns details about the grouping or ungrouping status of the
1028
1028
  * resources in the specified application group. </p>
1029
1029
  * @public
1030
1030
  */
1031
- GroupingStatuses?: GroupingStatusesItem[];
1031
+ GroupingStatuses?: GroupingStatusesItem[] | undefined;
1032
1032
  /**
1033
1033
  * <p>If present, indicates that more output is available than is included in the current response.
1034
1034
  * Use this value in the <code>NextToken</code> request parameter in a subsequent call to the operation to get the next part of the output.
1035
1035
  * You should repeat this until the <code>NextToken</code> response element comes back as <code>null</code>. </p>
1036
1036
  * @public
1037
1037
  */
1038
- NextToken?: string;
1038
+ NextToken?: string | undefined;
1039
1039
  }
1040
1040
  /**
1041
1041
  * @public
@@ -1083,12 +1083,12 @@ export interface ListGroupResourcesInput {
1083
1083
  * </important>
1084
1084
  * @public
1085
1085
  */
1086
- GroupName?: string;
1086
+ GroupName?: string | undefined;
1087
1087
  /**
1088
1088
  * <p>The name or the Amazon resource name (ARN) of the resource group. </p>
1089
1089
  * @public
1090
1090
  */
1091
- Group?: string;
1091
+ Group?: string | undefined;
1092
1092
  /**
1093
1093
  * <p>Filters, formatted as <a>ResourceFilter</a> objects, that you want to apply
1094
1094
  * to a <code>ListGroupResources</code> operation. Filters the results to include only
@@ -1121,7 +1121,7 @@ export interface ListGroupResourcesInput {
1121
1121
  * Amazon CloudFront stack-based queries).</p>
1122
1122
  * @public
1123
1123
  */
1124
- Filters?: ResourceFilter[];
1124
+ Filters?: ResourceFilter[] | undefined;
1125
1125
  /**
1126
1126
  * <p>The total number of results that you want included on each page of the
1127
1127
  * response. If you do not include this parameter, it defaults to a value that is specific to the
@@ -1133,7 +1133,7 @@ export interface ListGroupResourcesInput {
1133
1133
  * ensure that you receive all of the results.</p>
1134
1134
  * @public
1135
1135
  */
1136
- MaxResults?: number;
1136
+ MaxResults?: number | undefined;
1137
1137
  /**
1138
1138
  * <p>The parameter for receiving additional results if you receive a
1139
1139
  * <code>NextToken</code> response in a previous request. A <code>NextToken</code> response
@@ -1141,7 +1141,7 @@ export interface ListGroupResourcesInput {
1141
1141
  * call's <code>NextToken</code> response to indicate where the output should continue from.</p>
1142
1142
  * @public
1143
1143
  */
1144
- NextToken?: string;
1144
+ NextToken?: string | undefined;
1145
1145
  }
1146
1146
  /**
1147
1147
  * @public
@@ -1167,12 +1167,12 @@ export interface QueryError {
1167
1167
  * <p>Specifies the error code that was raised.</p>
1168
1168
  * @public
1169
1169
  */
1170
- ErrorCode?: QueryErrorCode;
1170
+ ErrorCode?: QueryErrorCode | undefined;
1171
1171
  /**
1172
1172
  * <p>A message that explains the <code>ErrorCode</code>. </p>
1173
1173
  * @public
1174
1174
  */
1175
- Message?: string;
1175
+ Message?: string | undefined;
1176
1176
  }
1177
1177
  /**
1178
1178
  * <p>A structure that contains the ARN of a resource and its resource type.</p>
@@ -1183,12 +1183,12 @@ export interface ResourceIdentifier {
1183
1183
  * <p>The Amazon resource name (ARN) of a resource.</p>
1184
1184
  * @public
1185
1185
  */
1186
- ResourceArn?: string;
1186
+ ResourceArn?: string | undefined;
1187
1187
  /**
1188
1188
  * <p>The resource type of a resource, such as <code>AWS::EC2::Instance</code>.</p>
1189
1189
  * @public
1190
1190
  */
1191
- ResourceType?: string;
1191
+ ResourceType?: string | undefined;
1192
1192
  }
1193
1193
  /**
1194
1194
  * @public
@@ -1213,7 +1213,7 @@ export interface ResourceStatus {
1213
1213
  * <p>The current status.</p>
1214
1214
  * @public
1215
1215
  */
1216
- Name?: ResourceStatusValue;
1216
+ Name?: ResourceStatusValue | undefined;
1217
1217
  }
1218
1218
  /**
1219
1219
  * <p>A structure returned by the <a>ListGroupResources</a> operation that
@@ -1226,7 +1226,7 @@ export interface ListGroupResourcesItem {
1226
1226
  * <p>A structure that contains the ARN of a resource and its resource type.</p>
1227
1227
  * @public
1228
1228
  */
1229
- Identifier?: ResourceIdentifier;
1229
+ Identifier?: ResourceIdentifier | undefined;
1230
1230
  /**
1231
1231
  * <p>A structure that contains the status of this resource's membership in the
1232
1232
  * group.</p>
@@ -1236,7 +1236,7 @@ export interface ListGroupResourcesItem {
1236
1236
  * </note>
1237
1237
  * @public
1238
1238
  */
1239
- Status?: ResourceStatus;
1239
+ Status?: ResourceStatus | undefined;
1240
1240
  }
1241
1241
  /**
1242
1242
  * @public
@@ -1247,7 +1247,7 @@ export interface ListGroupResourcesOutput {
1247
1247
  * group membership status.</p>
1248
1248
  * @public
1249
1249
  */
1250
- Resources?: ListGroupResourcesItem[];
1250
+ Resources?: ListGroupResourcesItem[] | undefined;
1251
1251
  /**
1252
1252
  * @deprecated
1253
1253
  *
@@ -1262,7 +1262,7 @@ export interface ListGroupResourcesOutput {
1262
1262
  * </important>
1263
1263
  * @public
1264
1264
  */
1265
- ResourceIdentifiers?: ResourceIdentifier[];
1265
+ ResourceIdentifiers?: ResourceIdentifier[] | undefined;
1266
1266
  /**
1267
1267
  * <p>If present, indicates that more output is available than is
1268
1268
  * included in the current response. Use this value in the <code>NextToken</code> request parameter
@@ -1270,7 +1270,7 @@ export interface ListGroupResourcesOutput {
1270
1270
  * until the <code>NextToken</code> response element comes back as <code>null</code>.</p>
1271
1271
  * @public
1272
1272
  */
1273
- NextToken?: string;
1273
+ NextToken?: string | undefined;
1274
1274
  /**
1275
1275
  * <p>A list of <code>QueryError</code> objects. Each error contains an
1276
1276
  * <code>ErrorCode</code> and <code>Message</code>. Possible values for
@@ -1278,7 +1278,7 @@ export interface ListGroupResourcesOutput {
1278
1278
  * <code>CLOUDFORMATION_STACK_UNASSUMABLE_ROLE</code> and <code>RESOURCE_TYPE_NOT_SUPPORTED</code>. </p>
1279
1279
  * @public
1280
1280
  */
1281
- QueryErrors?: QueryError[];
1281
+ QueryErrors?: QueryError[] | undefined;
1282
1282
  }
1283
1283
  /**
1284
1284
  * @public
@@ -1374,7 +1374,7 @@ export interface ListGroupsInput {
1374
1374
  * </ul>
1375
1375
  * @public
1376
1376
  */
1377
- Filters?: GroupFilter[];
1377
+ Filters?: GroupFilter[] | undefined;
1378
1378
  /**
1379
1379
  * <p>The total number of results that you want included on each page of the
1380
1380
  * response. If you do not include this parameter, it defaults to a value that is specific to the
@@ -1386,7 +1386,7 @@ export interface ListGroupsInput {
1386
1386
  * ensure that you receive all of the results.</p>
1387
1387
  * @public
1388
1388
  */
1389
- MaxResults?: number;
1389
+ MaxResults?: number | undefined;
1390
1390
  /**
1391
1391
  * <p>The parameter for receiving additional results if you receive a
1392
1392
  * <code>NextToken</code> response in a previous request. A <code>NextToken</code> response
@@ -1394,7 +1394,7 @@ export interface ListGroupsInput {
1394
1394
  * call's <code>NextToken</code> response to indicate where the output should continue from.</p>
1395
1395
  * @public
1396
1396
  */
1397
- NextToken?: string;
1397
+ NextToken?: string | undefined;
1398
1398
  }
1399
1399
  /**
1400
1400
  * <p>The unique identifiers for a resource group.</p>
@@ -1405,34 +1405,34 @@ export interface GroupIdentifier {
1405
1405
  * <p>The name of the resource group.</p>
1406
1406
  * @public
1407
1407
  */
1408
- GroupName?: string;
1408
+ GroupName?: string | undefined;
1409
1409
  /**
1410
1410
  * <p>The Amazon resource name (ARN) of the resource group.</p>
1411
1411
  * @public
1412
1412
  */
1413
- GroupArn?: string;
1413
+ GroupArn?: string | undefined;
1414
1414
  /**
1415
1415
  * <p>The description of the application group. </p>
1416
1416
  * @public
1417
1417
  */
1418
- Description?: string;
1418
+ Description?: string | undefined;
1419
1419
  /**
1420
1420
  * <p>The critical rank of the application group on a scale of 1 to 10, with a
1421
1421
  * rank of 1 being the most critical, and a rank of 10 being least critical.</p>
1422
1422
  * @public
1423
1423
  */
1424
- Criticality?: number;
1424
+ Criticality?: number | undefined;
1425
1425
  /**
1426
1426
  * <p>A name, email address or other identifier for the person or group
1427
1427
  * who is considered as the owner of this group within your organization. </p>
1428
1428
  * @public
1429
1429
  */
1430
- Owner?: string;
1430
+ Owner?: string | undefined;
1431
1431
  /**
1432
1432
  * <p>The name of the application group, which you can change at any time. </p>
1433
1433
  * @public
1434
1434
  */
1435
- DisplayName?: string;
1435
+ DisplayName?: string | undefined;
1436
1436
  }
1437
1437
  /**
1438
1438
  * @public
@@ -1443,7 +1443,7 @@ export interface ListGroupsOutput {
1443
1443
  * contains both the <code>Name</code> and the <code>GroupArn</code>.</p>
1444
1444
  * @public
1445
1445
  */
1446
- GroupIdentifiers?: GroupIdentifier[];
1446
+ GroupIdentifiers?: GroupIdentifier[] | undefined;
1447
1447
  /**
1448
1448
  * @deprecated
1449
1449
  *
@@ -1458,7 +1458,7 @@ export interface ListGroupsOutput {
1458
1458
  * </important>
1459
1459
  * @public
1460
1460
  */
1461
- Groups?: Group[];
1461
+ Groups?: Group[] | undefined;
1462
1462
  /**
1463
1463
  * <p>If present, indicates that more output is available than is
1464
1464
  * included in the current response. Use this value in the <code>NextToken</code> request parameter
@@ -1466,7 +1466,7 @@ export interface ListGroupsOutput {
1466
1466
  * until the <code>NextToken</code> response element comes back as <code>null</code>.</p>
1467
1467
  * @public
1468
1468
  */
1469
- NextToken?: string;
1469
+ NextToken?: string | undefined;
1470
1470
  }
1471
1471
  /**
1472
1472
  * <p>Returns tag-sync tasks filtered by the Amazon resource name (ARN) or name of a
@@ -1478,12 +1478,12 @@ export interface ListTagSyncTasksFilter {
1478
1478
  * <p>The Amazon resource name (ARN) of the application group. </p>
1479
1479
  * @public
1480
1480
  */
1481
- GroupArn?: string;
1481
+ GroupArn?: string | undefined;
1482
1482
  /**
1483
1483
  * <p>The name of the application group. </p>
1484
1484
  * @public
1485
1485
  */
1486
- GroupName?: string;
1486
+ GroupName?: string | undefined;
1487
1487
  }
1488
1488
  /**
1489
1489
  * @public
@@ -1494,12 +1494,12 @@ export interface ListTagSyncTasksInput {
1494
1494
  * list of tag-sync tasks. </p>
1495
1495
  * @public
1496
1496
  */
1497
- Filters?: ListTagSyncTasksFilter[];
1497
+ Filters?: ListTagSyncTasksFilter[] | undefined;
1498
1498
  /**
1499
1499
  * <p>The maximum number of results to be included in the response. </p>
1500
1500
  * @public
1501
1501
  */
1502
- MaxResults?: number;
1502
+ MaxResults?: number | undefined;
1503
1503
  /**
1504
1504
  * <p>The parameter for receiving additional results if you receive a
1505
1505
  * <code>NextToken</code> response in a previous request. A <code>NextToken</code>
@@ -1508,7 +1508,7 @@ export interface ListTagSyncTasksInput {
1508
1508
  * where the output should continue from. </p>
1509
1509
  * @public
1510
1510
  */
1511
- NextToken?: string;
1511
+ NextToken?: string | undefined;
1512
1512
  }
1513
1513
  /**
1514
1514
  * <p>The Amazon resource name (ARN) of the tag-sync task. </p>
@@ -1519,32 +1519,32 @@ export interface TagSyncTaskItem {
1519
1519
  * <p>The Amazon resource name (ARN) of the application group. </p>
1520
1520
  * @public
1521
1521
  */
1522
- GroupArn?: string;
1522
+ GroupArn?: string | undefined;
1523
1523
  /**
1524
1524
  * <p>The name of the application group. </p>
1525
1525
  * @public
1526
1526
  */
1527
- GroupName?: string;
1527
+ GroupName?: string | undefined;
1528
1528
  /**
1529
1529
  * <p>The Amazon resource name (ARN) of the tag-sync task. </p>
1530
1530
  * @public
1531
1531
  */
1532
- TaskArn?: string;
1532
+ TaskArn?: string | undefined;
1533
1533
  /**
1534
1534
  * <p>The tag key. </p>
1535
1535
  * @public
1536
1536
  */
1537
- TagKey?: string;
1537
+ TagKey?: string | undefined;
1538
1538
  /**
1539
1539
  * <p>The tag value. </p>
1540
1540
  * @public
1541
1541
  */
1542
- TagValue?: string;
1542
+ TagValue?: string | undefined;
1543
1543
  /**
1544
1544
  * <p>The Amazon resource name (ARN) of the role assumed by the service to tag and untag resources on your behalf.</p>
1545
1545
  * @public
1546
1546
  */
1547
- RoleArn?: string;
1547
+ RoleArn?: string | undefined;
1548
1548
  /**
1549
1549
  * <p>The status of the tag-sync task. </p>
1550
1550
  * <p>Valid values include:</p>
@@ -1566,18 +1566,18 @@ export interface TagSyncTaskItem {
1566
1566
  * </ul>
1567
1567
  * @public
1568
1568
  */
1569
- Status?: TagSyncTaskStatus;
1569
+ Status?: TagSyncTaskStatus | undefined;
1570
1570
  /**
1571
1571
  * <p>The specific error message in cases where the tag-sync task status
1572
1572
  * is <code>Error</code>.</p>
1573
1573
  * @public
1574
1574
  */
1575
- ErrorMessage?: string;
1575
+ ErrorMessage?: string | undefined;
1576
1576
  /**
1577
1577
  * <p>The timestamp of when the tag-sync task was created. </p>
1578
1578
  * @public
1579
1579
  */
1580
- CreatedAt?: Date;
1580
+ CreatedAt?: Date | undefined;
1581
1581
  }
1582
1582
  /**
1583
1583
  * @public
@@ -1587,14 +1587,14 @@ export interface ListTagSyncTasksOutput {
1587
1587
  * <p>A list of tag-sync tasks and information about each task. </p>
1588
1588
  * @public
1589
1589
  */
1590
- TagSyncTasks?: TagSyncTaskItem[];
1590
+ TagSyncTasks?: TagSyncTaskItem[] | undefined;
1591
1591
  /**
1592
1592
  * <p>If present, indicates that more output is available than is included in the current response.
1593
1593
  * Use this value in the <code>NextToken</code> request parameter in a subsequent call to the operation to get the next part of the output.
1594
1594
  * You should repeat this until the <code>NextToken</code> response element comes back as <code>null</code>.</p>
1595
1595
  * @public
1596
1596
  */
1597
- NextToken?: string;
1597
+ NextToken?: string | undefined;
1598
1598
  }
1599
1599
  /**
1600
1600
  * @public
@@ -1605,7 +1605,7 @@ export interface PutGroupConfigurationInput {
1605
1605
  * update.</p>
1606
1606
  * @public
1607
1607
  */
1608
- Group?: string;
1608
+ Group?: string | undefined;
1609
1609
  /**
1610
1610
  * <p>The new configuration to associate with the specified group. A configuration
1611
1611
  * associates the resource group with an Amazon Web Services service and specifies how the service can
@@ -1618,7 +1618,7 @@ export interface PutGroupConfigurationInput {
1618
1618
  * </note>
1619
1619
  * @public
1620
1620
  */
1621
- Configuration?: GroupConfigurationItem[];
1621
+ Configuration?: GroupConfigurationItem[] | undefined;
1622
1622
  }
1623
1623
  /**
1624
1624
  * @public
@@ -1646,7 +1646,7 @@ export interface SearchResourcesInput {
1646
1646
  * ensure that you receive all of the results.</p>
1647
1647
  * @public
1648
1648
  */
1649
- MaxResults?: number;
1649
+ MaxResults?: number | undefined;
1650
1650
  /**
1651
1651
  * <p>The parameter for receiving additional results if you receive a
1652
1652
  * <code>NextToken</code> response in a previous request. A <code>NextToken</code> response
@@ -1654,7 +1654,7 @@ export interface SearchResourcesInput {
1654
1654
  * call's <code>NextToken</code> response to indicate where the output should continue from.</p>
1655
1655
  * @public
1656
1656
  */
1657
- NextToken?: string;
1657
+ NextToken?: string | undefined;
1658
1658
  }
1659
1659
  /**
1660
1660
  * @public
@@ -1665,7 +1665,7 @@ export interface SearchResourcesOutput {
1665
1665
  * specified.</p>
1666
1666
  * @public
1667
1667
  */
1668
- ResourceIdentifiers?: ResourceIdentifier[];
1668
+ ResourceIdentifiers?: ResourceIdentifier[] | undefined;
1669
1669
  /**
1670
1670
  * <p>If present, indicates that more output is available than is
1671
1671
  * included in the current response. Use this value in the <code>NextToken</code> request parameter
@@ -1673,7 +1673,7 @@ export interface SearchResourcesOutput {
1673
1673
  * until the <code>NextToken</code> response element comes back as <code>null</code>.</p>
1674
1674
  * @public
1675
1675
  */
1676
- NextToken?: string;
1676
+ NextToken?: string | undefined;
1677
1677
  /**
1678
1678
  * <p>A list of <code>QueryError</code> objects. Each error contains an
1679
1679
  * <code>ErrorCode</code> and <code>Message</code>.</p>
@@ -1697,7 +1697,7 @@ export interface SearchResourcesOutput {
1697
1697
  * </ul>
1698
1698
  * @public
1699
1699
  */
1700
- QueryErrors?: QueryError[];
1700
+ QueryErrors?: QueryError[] | undefined;
1701
1701
  }
1702
1702
  /**
1703
1703
  * @public
@@ -1736,32 +1736,32 @@ export interface StartTagSyncTaskOutput {
1736
1736
  * <p>The Amazon resource name (ARN) of the application group for which you want to add or remove resources. </p>
1737
1737
  * @public
1738
1738
  */
1739
- GroupArn?: string;
1739
+ GroupArn?: string | undefined;
1740
1740
  /**
1741
1741
  * <p>The name of the application group to onboard and sync resources.</p>
1742
1742
  * @public
1743
1743
  */
1744
- GroupName?: string;
1744
+ GroupName?: string | undefined;
1745
1745
  /**
1746
1746
  * <p>The Amazon resource name (ARN) of the new tag-sync task. </p>
1747
1747
  * @public
1748
1748
  */
1749
- TaskArn?: string;
1749
+ TaskArn?: string | undefined;
1750
1750
  /**
1751
1751
  * <p>The tag key of the tag-sync task. </p>
1752
1752
  * @public
1753
1753
  */
1754
- TagKey?: string;
1754
+ TagKey?: string | undefined;
1755
1755
  /**
1756
1756
  * <p>The tag value of the tag-sync task. </p>
1757
1757
  * @public
1758
1758
  */
1759
- TagValue?: string;
1759
+ TagValue?: string | undefined;
1760
1760
  /**
1761
1761
  * <p>The Amazon resource name (ARN) of the role assumed by the service to tag and untag resources on your behalf.</p>
1762
1762
  * @public
1763
1763
  */
1764
- RoleArn?: string;
1764
+ RoleArn?: string | undefined;
1765
1765
  }
1766
1766
  /**
1767
1767
  * @public
@@ -1787,12 +1787,12 @@ export interface TagOutput {
1787
1787
  * <p>The Amazon resource name (ARN) of the tagged resource.</p>
1788
1788
  * @public
1789
1789
  */
1790
- Arn?: string;
1790
+ Arn?: string | undefined;
1791
1791
  /**
1792
1792
  * <p>The tags that have been added to the specified resource group.</p>
1793
1793
  * @public
1794
1794
  */
1795
- Tags?: Record<string, string>;
1795
+ Tags?: Record<string, string> | undefined;
1796
1796
  }
1797
1797
  /**
1798
1798
  * @public
@@ -1818,13 +1818,13 @@ export interface UngroupResourcesOutput {
1818
1818
  * operation.</p>
1819
1819
  * @public
1820
1820
  */
1821
- Succeeded?: string[];
1821
+ Succeeded?: string[] | undefined;
1822
1822
  /**
1823
1823
  * <p>A list of any resources that failed to be removed from the group by this
1824
1824
  * operation.</p>
1825
1825
  * @public
1826
1826
  */
1827
- Failed?: FailedResource[];
1827
+ Failed?: FailedResource[] | undefined;
1828
1828
  /**
1829
1829
  * <p>A list of any resources that are still in the process of being removed from the group
1830
1830
  * by this operation. These pending removals continue asynchronously. You can check the
@@ -1834,7 +1834,7 @@ export interface UngroupResourcesOutput {
1834
1834
  * appears in the response.</p>
1835
1835
  * @public
1836
1836
  */
1837
- Pending?: PendingResource[];
1837
+ Pending?: PendingResource[] | undefined;
1838
1838
  }
1839
1839
  /**
1840
1840
  * @public
@@ -1860,12 +1860,12 @@ export interface UntagOutput {
1860
1860
  * <p>The Amazon resource name (ARN) of the resource group from which tags have been removed.</p>
1861
1861
  * @public
1862
1862
  */
1863
- Arn?: string;
1863
+ Arn?: string | undefined;
1864
1864
  /**
1865
1865
  * <p>The keys of the tags that were removed.</p>
1866
1866
  * @public
1867
1867
  */
1868
- Keys?: string[];
1868
+ Keys?: string[] | undefined;
1869
1869
  }
1870
1870
  /**
1871
1871
  * @public
@@ -1876,7 +1876,7 @@ export interface UpdateAccountSettingsInput {
1876
1876
  * <p>You can't turn on group lifecycle events if your resource groups quota is greater than 2,000. </p>
1877
1877
  * @public
1878
1878
  */
1879
- GroupLifecycleEventsDesiredStatus?: GroupLifecycleEventsDesiredStatus;
1879
+ GroupLifecycleEventsDesiredStatus?: GroupLifecycleEventsDesiredStatus | undefined;
1880
1880
  }
1881
1881
  /**
1882
1882
  * @public
@@ -1886,7 +1886,7 @@ export interface UpdateAccountSettingsOutput {
1886
1886
  * <p>A structure that displays the status of the optional features in the account.</p>
1887
1887
  * @public
1888
1888
  */
1889
- AccountSettings?: AccountSettings;
1889
+ AccountSettings?: AccountSettings | undefined;
1890
1890
  }
1891
1891
  /**
1892
1892
  * @public
@@ -1898,35 +1898,35 @@ export interface UpdateGroupInput {
1898
1898
  * <p>Don't use this parameter. Use <code>Group</code> instead.</p>
1899
1899
  * @public
1900
1900
  */
1901
- GroupName?: string;
1901
+ GroupName?: string | undefined;
1902
1902
  /**
1903
1903
  * <p>The name or the ARN of the resource group to update.</p>
1904
1904
  * @public
1905
1905
  */
1906
- Group?: string;
1906
+ Group?: string | undefined;
1907
1907
  /**
1908
1908
  * <p>The new description that you want to update the resource group with. Descriptions can
1909
1909
  * contain letters, numbers, hyphens, underscores, periods, and spaces.</p>
1910
1910
  * @public
1911
1911
  */
1912
- Description?: string;
1912
+ Description?: string | undefined;
1913
1913
  /**
1914
1914
  * <p>The critical rank of the application group on a scale of 1 to 10, with a
1915
1915
  * rank of 1 being the most critical, and a rank of 10 being least critical.</p>
1916
1916
  * @public
1917
1917
  */
1918
- Criticality?: number;
1918
+ Criticality?: number | undefined;
1919
1919
  /**
1920
1920
  * <p>A name, email address or other identifier for the person or group
1921
1921
  * who is considered as the owner of this application group within your organization. </p>
1922
1922
  * @public
1923
1923
  */
1924
- Owner?: string;
1924
+ Owner?: string | undefined;
1925
1925
  /**
1926
1926
  * <p>The name of the application group, which you can change at any time. </p>
1927
1927
  * @public
1928
1928
  */
1929
- DisplayName?: string;
1929
+ DisplayName?: string | undefined;
1930
1930
  }
1931
1931
  /**
1932
1932
  * @public
@@ -1936,7 +1936,7 @@ export interface UpdateGroupOutput {
1936
1936
  * <p>The update description of the resource group.</p>
1937
1937
  * @public
1938
1938
  */
1939
- Group?: Group;
1939
+ Group?: Group | undefined;
1940
1940
  }
1941
1941
  /**
1942
1942
  * @public
@@ -1948,12 +1948,12 @@ export interface UpdateGroupQueryInput {
1948
1948
  * <p>Don't use this parameter. Use <code>Group</code> instead.</p>
1949
1949
  * @public
1950
1950
  */
1951
- GroupName?: string;
1951
+ GroupName?: string | undefined;
1952
1952
  /**
1953
1953
  * <p>The name or the Amazon resource name (ARN) of the resource group to query.</p>
1954
1954
  * @public
1955
1955
  */
1956
- Group?: string;
1956
+ Group?: string | undefined;
1957
1957
  /**
1958
1958
  * <p>The resource query to determine which Amazon Web Services resources are members of this resource
1959
1959
  * group.</p>
@@ -1973,5 +1973,5 @@ export interface UpdateGroupQueryOutput {
1973
1973
  * <p>The updated resource query associated with the resource group after the update.</p>
1974
1974
  * @public
1975
1975
  */
1976
- GroupQuery?: GroupQuery;
1976
+ GroupQuery?: GroupQuery | undefined;
1977
1977
  }