@aws-sdk/client-service-catalog-appregistry 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,44 +10,44 @@ export interface Application {
10
10
  * <p>The identifier of the application.</p>
11
11
  * @public
12
12
  */
13
- id?: string;
13
+ id?: string | undefined;
14
14
  /**
15
15
  * <p>The Amazon resource name (ARN) that specifies the application across services.</p>
16
16
  * @public
17
17
  */
18
- arn?: string;
18
+ arn?: string | undefined;
19
19
  /**
20
20
  * <p>The name of the application. The name must be unique in the region in which you are creating the application.</p>
21
21
  * @public
22
22
  */
23
- name?: string;
23
+ name?: string | undefined;
24
24
  /**
25
25
  * <p>The description of the application.</p>
26
26
  * @public
27
27
  */
28
- description?: string;
28
+ description?: string | undefined;
29
29
  /**
30
30
  * <p>The ISO-8601 formatted timestamp of the moment when the application was created.</p>
31
31
  * @public
32
32
  */
33
- creationTime?: Date;
33
+ creationTime?: Date | undefined;
34
34
  /**
35
35
  * <p> The ISO-8601 formatted timestamp of the moment when the application was last updated.</p>
36
36
  * @public
37
37
  */
38
- lastUpdateTime?: Date;
38
+ lastUpdateTime?: Date | undefined;
39
39
  /**
40
40
  * <p>Key-value pairs you can use to associate with the application.</p>
41
41
  * @public
42
42
  */
43
- tags?: Record<string, string>;
43
+ tags?: Record<string, string> | undefined;
44
44
  /**
45
45
  * <p>
46
46
  * A key-value pair that identifies an associated resource.
47
47
  * </p>
48
48
  * @public
49
49
  */
50
- applicationTag?: Record<string, string>;
50
+ applicationTag?: Record<string, string> | undefined;
51
51
  }
52
52
  /**
53
53
  * <p>Summary of a Amazon Web Services Service Catalog AppRegistry application.</p>
@@ -58,32 +58,32 @@ export interface ApplicationSummary {
58
58
  * <p>The identifier of the application.</p>
59
59
  * @public
60
60
  */
61
- id?: string;
61
+ id?: string | undefined;
62
62
  /**
63
63
  * <p>The Amazon resource name (ARN) that specifies the application across services.</p>
64
64
  * @public
65
65
  */
66
- arn?: string;
66
+ arn?: string | undefined;
67
67
  /**
68
68
  * <p>The name of the application. The name must be unique in the region in which you are creating the application.</p>
69
69
  * @public
70
70
  */
71
- name?: string;
71
+ name?: string | undefined;
72
72
  /**
73
73
  * <p>The description of the application.</p>
74
74
  * @public
75
75
  */
76
- description?: string;
76
+ description?: string | undefined;
77
77
  /**
78
78
  * <p>The ISO-8601 formatted timestamp of the moment when the application was created.</p>
79
79
  * @public
80
80
  */
81
- creationTime?: Date;
81
+ creationTime?: Date | undefined;
82
82
  /**
83
83
  * <p> The ISO-8601 formatted timestamp of the moment when the application was last updated.</p>
84
84
  * @public
85
85
  */
86
- lastUpdateTime?: Date;
86
+ lastUpdateTime?: Date | undefined;
87
87
  }
88
88
  /**
89
89
  * @public
@@ -111,28 +111,28 @@ export interface ResourcesListItem {
111
111
  * </p>
112
112
  * @public
113
113
  */
114
- resourceArn?: string;
114
+ resourceArn?: string | undefined;
115
115
  /**
116
116
  * <p>
117
117
  * The message returned if the call fails.
118
118
  * </p>
119
119
  * @public
120
120
  */
121
- errorMessage?: string;
121
+ errorMessage?: string | undefined;
122
122
  /**
123
123
  * <p>
124
124
  * The status of the list item.
125
125
  * </p>
126
126
  * @public
127
127
  */
128
- status?: string;
128
+ status?: string | undefined;
129
129
  /**
130
130
  * <p>
131
131
  * Provides information about the AppRegistry resource type.
132
132
  * </p>
133
133
  * @public
134
134
  */
135
- resourceType?: string;
135
+ resourceType?: string | undefined;
136
136
  }
137
137
  /**
138
138
  * <p>
@@ -147,28 +147,28 @@ export interface ApplicationTagResult {
147
147
  * </p>
148
148
  * @public
149
149
  */
150
- applicationTagStatus?: ApplicationTagStatus;
150
+ applicationTagStatus?: ApplicationTagStatus | undefined;
151
151
  /**
152
152
  * <p>
153
153
  * The message returned if the call fails.
154
154
  * </p>
155
155
  * @public
156
156
  */
157
- errorMessage?: string;
157
+ errorMessage?: string | undefined;
158
158
  /**
159
159
  * <p>
160
160
  * The resources associated with an application
161
161
  * </p>
162
162
  * @public
163
163
  */
164
- resources?: ResourcesListItem[];
164
+ resources?: ResourcesListItem[] | undefined;
165
165
  /**
166
166
  * <p>
167
167
  * A unique pagination token for each page of results. Make the call again with the returned token to retrieve the next page of results.
168
168
  * </p>
169
169
  * @public
170
170
  */
171
- nextToken?: string;
171
+ nextToken?: string | undefined;
172
172
  }
173
173
  /**
174
174
  * <p>
@@ -190,7 +190,7 @@ export interface TagQueryConfiguration {
190
190
  * </p>
191
191
  * @public
192
192
  */
193
- tagKey?: string;
193
+ tagKey?: string | undefined;
194
194
  }
195
195
  /**
196
196
  * <p>
@@ -207,7 +207,7 @@ export interface AppRegistryConfiguration {
207
207
  * </p>
208
208
  * @public
209
209
  */
210
- tagQueryConfiguration?: TagQueryConfiguration;
210
+ tagQueryConfiguration?: TagQueryConfiguration | undefined;
211
211
  }
212
212
  /**
213
213
  * @public
@@ -240,12 +240,12 @@ export interface AssociateAttributeGroupResponse {
240
240
  * <p>The Amazon resource name (ARN) of the application that was augmented with attributes.</p>
241
241
  * @public
242
242
  */
243
- applicationArn?: string;
243
+ applicationArn?: string | undefined;
244
244
  /**
245
245
  * <p>The Amazon resource name (ARN) of the attribute group that contains the application's new attributes.</p>
246
246
  * @public
247
247
  */
248
- attributeGroupArn?: string;
248
+ attributeGroupArn?: string | undefined;
249
249
  }
250
250
  /**
251
251
  * <p>There was a conflict when processing the request (for example, a resource with the given
@@ -363,7 +363,7 @@ export interface AssociateResourceRequest {
363
363
  * </p>
364
364
  * @public
365
365
  */
366
- options?: AssociationOption[];
366
+ options?: AssociationOption[] | undefined;
367
367
  }
368
368
  /**
369
369
  * @public
@@ -373,19 +373,19 @@ export interface AssociateResourceResponse {
373
373
  * <p>The Amazon resource name (ARN) of the application that was augmented with attributes.</p>
374
374
  * @public
375
375
  */
376
- applicationArn?: string;
376
+ applicationArn?: string | undefined;
377
377
  /**
378
378
  * <p>The Amazon resource name (ARN) that specifies the resource.</p>
379
379
  * @public
380
380
  */
381
- resourceArn?: string;
381
+ resourceArn?: string | undefined;
382
382
  /**
383
383
  * <p>
384
384
  * Determines whether an application tag is applied or skipped.
385
385
  * </p>
386
386
  * @public
387
387
  */
388
- options?: AssociationOption[];
388
+ options?: AssociationOption[] | undefined;
389
389
  }
390
390
  /**
391
391
  * <p>
@@ -402,7 +402,7 @@ export declare class ThrottlingException extends __BaseException {
402
402
  * <p>The originating service code.</p>
403
403
  * @public
404
404
  */
405
- serviceCode?: string;
405
+ serviceCode?: string | undefined;
406
406
  /**
407
407
  * @internal
408
408
  */
@@ -417,37 +417,37 @@ export interface AttributeGroup {
417
417
  * <p>The globally unique attribute group identifier of the attribute group.</p>
418
418
  * @public
419
419
  */
420
- id?: string;
420
+ id?: string | undefined;
421
421
  /**
422
422
  * <p>The Amazon resource name (ARN) that specifies the attribute group across services.</p>
423
423
  * @public
424
424
  */
425
- arn?: string;
425
+ arn?: string | undefined;
426
426
  /**
427
427
  * <p>The name of the attribute group.</p>
428
428
  * @public
429
429
  */
430
- name?: string;
430
+ name?: string | undefined;
431
431
  /**
432
432
  * <p>The description of the attribute group that the user provides.</p>
433
433
  * @public
434
434
  */
435
- description?: string;
435
+ description?: string | undefined;
436
436
  /**
437
437
  * <p>The ISO-8601 formatted timestamp of the moment the attribute group was created.</p>
438
438
  * @public
439
439
  */
440
- creationTime?: Date;
440
+ creationTime?: Date | undefined;
441
441
  /**
442
442
  * <p>The ISO-8601 formatted timestamp of the moment the attribute group was last updated. This time is the same as the creationTime for a newly created attribute group.</p>
443
443
  * @public
444
444
  */
445
- lastUpdateTime?: Date;
445
+ lastUpdateTime?: Date | undefined;
446
446
  /**
447
447
  * <p>Key-value pairs you can use to associate with the attribute group.</p>
448
448
  * @public
449
449
  */
450
- tags?: Record<string, string>;
450
+ tags?: Record<string, string> | undefined;
451
451
  }
452
452
  /**
453
453
  * <p>
@@ -460,12 +460,12 @@ export interface AttributeGroupDetails {
460
460
  * <p>The unique identifier of the attribute group.</p>
461
461
  * @public
462
462
  */
463
- id?: string;
463
+ id?: string | undefined;
464
464
  /**
465
465
  * <p>The Amazon resource name (ARN) that specifies the attribute group.</p>
466
466
  * @public
467
467
  */
468
- arn?: string;
468
+ arn?: string | undefined;
469
469
  /**
470
470
  * <important>
471
471
  * <p>
@@ -479,12 +479,12 @@ export interface AttributeGroupDetails {
479
479
  * </p>
480
480
  * @public
481
481
  */
482
- name?: string;
482
+ name?: string | undefined;
483
483
  /**
484
484
  * <p>The service principal that created the attribute group.</p>
485
485
  * @public
486
486
  */
487
- createdBy?: string;
487
+ createdBy?: string | undefined;
488
488
  }
489
489
  /**
490
490
  * <p>Summary of a Amazon Web Services Service Catalog AppRegistry attribute group.</p>
@@ -495,37 +495,37 @@ export interface AttributeGroupSummary {
495
495
  * <p>The globally unique attribute group identifier of the attribute group.</p>
496
496
  * @public
497
497
  */
498
- id?: string;
498
+ id?: string | undefined;
499
499
  /**
500
500
  * <p>The Amazon resource name (ARN) that specifies the attribute group across services.</p>
501
501
  * @public
502
502
  */
503
- arn?: string;
503
+ arn?: string | undefined;
504
504
  /**
505
505
  * <p>The name of the attribute group.</p>
506
506
  * @public
507
507
  */
508
- name?: string;
508
+ name?: string | undefined;
509
509
  /**
510
510
  * <p>The description of the attribute group that the user provides.</p>
511
511
  * @public
512
512
  */
513
- description?: string;
513
+ description?: string | undefined;
514
514
  /**
515
515
  * <p>The ISO-8601 formatted timestamp of the moment the attribute group was created.</p>
516
516
  * @public
517
517
  */
518
- creationTime?: Date;
518
+ creationTime?: Date | undefined;
519
519
  /**
520
520
  * <p>The ISO-8601 formatted timestamp of the moment the attribute group was last updated. This time is the same as the creationTime for a newly created attribute group.</p>
521
521
  * @public
522
522
  */
523
- lastUpdateTime?: Date;
523
+ lastUpdateTime?: Date | undefined;
524
524
  /**
525
525
  * <p>The service principal that created the attribute group.</p>
526
526
  * @public
527
527
  */
528
- createdBy?: string;
528
+ createdBy?: string | undefined;
529
529
  }
530
530
  /**
531
531
  * @public
@@ -540,12 +540,12 @@ export interface CreateApplicationRequest {
540
540
  * <p>The description of the application.</p>
541
541
  * @public
542
542
  */
543
- description?: string;
543
+ description?: string | undefined;
544
544
  /**
545
545
  * <p>Key-value pairs you can use to associate with the application.</p>
546
546
  * @public
547
547
  */
548
- tags?: Record<string, string>;
548
+ tags?: Record<string, string> | undefined;
549
549
  /**
550
550
  * <p>A unique identifier that you provide to ensure idempotency. If you retry a request that
551
551
  * completed successfully using the same client token and the same parameters, the retry succeeds
@@ -553,7 +553,7 @@ export interface CreateApplicationRequest {
553
553
  * client token, but one or more of the parameters are different, the retry fails.</p>
554
554
  * @public
555
555
  */
556
- clientToken?: string;
556
+ clientToken?: string | undefined;
557
557
  }
558
558
  /**
559
559
  * @public
@@ -563,7 +563,7 @@ export interface CreateApplicationResponse {
563
563
  * <p>Information about the application.</p>
564
564
  * @public
565
565
  */
566
- application?: Application;
566
+ application?: Application | undefined;
567
567
  }
568
568
  /**
569
569
  * @public
@@ -578,7 +578,7 @@ export interface CreateAttributeGroupRequest {
578
578
  * <p>The description of the attribute group that the user provides.</p>
579
579
  * @public
580
580
  */
581
- description?: string;
581
+ description?: string | undefined;
582
582
  /**
583
583
  * <p>A JSON string in the form of nested key-value pairs that represent the attributes in the group and describes an application and its components.</p>
584
584
  * @public
@@ -588,7 +588,7 @@ export interface CreateAttributeGroupRequest {
588
588
  * <p>Key-value pairs you can use to associate with the attribute group.</p>
589
589
  * @public
590
590
  */
591
- tags?: Record<string, string>;
591
+ tags?: Record<string, string> | undefined;
592
592
  /**
593
593
  * <p>A unique identifier that you provide to ensure idempotency. If you retry a request that
594
594
  * completed successfully using the same client token and the same parameters, the retry succeeds
@@ -596,7 +596,7 @@ export interface CreateAttributeGroupRequest {
596
596
  * client token, but one or more of the parameters are different, the retry fails.</p>
597
597
  * @public
598
598
  */
599
- clientToken?: string;
599
+ clientToken?: string | undefined;
600
600
  }
601
601
  /**
602
602
  * @public
@@ -606,7 +606,7 @@ export interface CreateAttributeGroupResponse {
606
606
  * <p>Information about the attribute group.</p>
607
607
  * @public
608
608
  */
609
- attributeGroup?: AttributeGroup;
609
+ attributeGroup?: AttributeGroup | undefined;
610
610
  }
611
611
  /**
612
612
  * @public
@@ -629,7 +629,7 @@ export interface DeleteApplicationResponse {
629
629
  * <p>Information about the deleted application.</p>
630
630
  * @public
631
631
  */
632
- application?: ApplicationSummary;
632
+ application?: ApplicationSummary | undefined;
633
633
  }
634
634
  /**
635
635
  * @public
@@ -654,7 +654,7 @@ export interface DeleteAttributeGroupResponse {
654
654
  * <p>Information about the deleted attribute group.</p>
655
655
  * @public
656
656
  */
657
- attributeGroup?: AttributeGroupSummary;
657
+ attributeGroup?: AttributeGroupSummary | undefined;
658
658
  }
659
659
  /**
660
660
  * @public
@@ -687,12 +687,12 @@ export interface DisassociateAttributeGroupResponse {
687
687
  * <p>The Amazon resource name (ARN) that specifies the application.</p>
688
688
  * @public
689
689
  */
690
- applicationArn?: string;
690
+ applicationArn?: string | undefined;
691
691
  /**
692
692
  * <p>The Amazon resource name (ARN) that specifies the attribute group.</p>
693
693
  * @public
694
694
  */
695
- attributeGroupArn?: string;
695
+ attributeGroupArn?: string | undefined;
696
696
  }
697
697
  /**
698
698
  * @public
@@ -722,12 +722,12 @@ export interface DisassociateResourceResponse {
722
722
  * <p>The Amazon resource name (ARN) that specifies the application.</p>
723
723
  * @public
724
724
  */
725
- applicationArn?: string;
725
+ applicationArn?: string | undefined;
726
726
  /**
727
727
  * <p>The Amazon resource name (ARN) that specifies the resource.</p>
728
728
  * @public
729
729
  */
730
- resourceArn?: string;
730
+ resourceArn?: string | undefined;
731
731
  }
732
732
  /**
733
733
  * @public
@@ -779,17 +779,17 @@ export interface ResourceGroup {
779
779
  * <code>UPDATE_FAILED</code> if the resource group could not update successfully.</p>
780
780
  * @public
781
781
  */
782
- state?: ResourceGroupState;
782
+ state?: ResourceGroupState | undefined;
783
783
  /**
784
784
  * <p>The Amazon resource name (ARN) of the resource group.</p>
785
785
  * @public
786
786
  */
787
- arn?: string;
787
+ arn?: string | undefined;
788
788
  /**
789
789
  * <p>The error message that generates when the propagation process for the resource group fails.</p>
790
790
  * @public
791
791
  */
792
- errorMessage?: string;
792
+ errorMessage?: string | undefined;
793
793
  }
794
794
  /**
795
795
  * <p> The information about the service integration.</p>
@@ -800,12 +800,12 @@ export interface Integrations {
800
800
  * <p> The information about the resource group integration.</p>
801
801
  * @public
802
802
  */
803
- resourceGroup?: ResourceGroup;
803
+ resourceGroup?: ResourceGroup | undefined;
804
804
  /**
805
805
  * <p>The information about the resource group integration.</p>
806
806
  * @public
807
807
  */
808
- applicationTagResourceGroup?: ResourceGroup;
808
+ applicationTagResourceGroup?: ResourceGroup | undefined;
809
809
  }
810
810
  /**
811
811
  * @public
@@ -815,42 +815,42 @@ export interface GetApplicationResponse {
815
815
  * <p>The identifier of the application.</p>
816
816
  * @public
817
817
  */
818
- id?: string;
818
+ id?: string | undefined;
819
819
  /**
820
820
  * <p>The Amazon resource name (ARN) that specifies the application across services.</p>
821
821
  * @public
822
822
  */
823
- arn?: string;
823
+ arn?: string | undefined;
824
824
  /**
825
825
  * <p>The name of the application. The name must be unique in the region in which you are creating the application.</p>
826
826
  * @public
827
827
  */
828
- name?: string;
828
+ name?: string | undefined;
829
829
  /**
830
830
  * <p>The description of the application.</p>
831
831
  * @public
832
832
  */
833
- description?: string;
833
+ description?: string | undefined;
834
834
  /**
835
835
  * <p>The ISO-8601 formatted timestamp of the moment when the application was created.</p>
836
836
  * @public
837
837
  */
838
- creationTime?: Date;
838
+ creationTime?: Date | undefined;
839
839
  /**
840
840
  * <p>The ISO-8601 formatted timestamp of the moment when the application was last updated.</p>
841
841
  * @public
842
842
  */
843
- lastUpdateTime?: Date;
843
+ lastUpdateTime?: Date | undefined;
844
844
  /**
845
845
  * <p>The number of top-level resources that were registered as part of this application.</p>
846
846
  * @public
847
847
  */
848
- associatedResourceCount?: number;
848
+ associatedResourceCount?: number | undefined;
849
849
  /**
850
850
  * <p>Key-value pairs associated with the application.</p>
851
851
  * @public
852
852
  */
853
- tags?: Record<string, string>;
853
+ tags?: Record<string, string> | undefined;
854
854
  /**
855
855
  * <p>
856
856
  * The information
@@ -862,14 +862,14 @@ export interface GetApplicationResponse {
862
862
  * </p>
863
863
  * @public
864
864
  */
865
- integrations?: Integrations;
865
+ integrations?: Integrations | undefined;
866
866
  /**
867
867
  * <p>
868
868
  * A key-value pair that identifies an associated resource.
869
869
  * </p>
870
870
  * @public
871
871
  */
872
- applicationTag?: Record<string, string>;
872
+ applicationTag?: Record<string, string> | undefined;
873
873
  }
874
874
  /**
875
875
  * @public
@@ -914,21 +914,21 @@ export interface GetAssociatedResourceRequest {
914
914
  * </p>
915
915
  * @public
916
916
  */
917
- nextToken?: string;
917
+ nextToken?: string | undefined;
918
918
  /**
919
919
  * <p>
920
920
  * States whether an application tag is applied, not applied, in the process of being applied, or skipped.
921
921
  * </p>
922
922
  * @public
923
923
  */
924
- resourceTagStatus?: ResourceItemStatus[];
924
+ resourceTagStatus?: ResourceItemStatus[] | undefined;
925
925
  /**
926
926
  * <p>
927
927
  * The maximum number of results to return. If the parameter is omitted, it defaults to 25. The value is optional.
928
928
  * </p>
929
929
  * @public
930
930
  */
931
- maxResults?: number;
931
+ maxResults?: number | undefined;
932
932
  }
933
933
  /**
934
934
  * <p>The service integration information about the resource.</p>
@@ -939,7 +939,7 @@ export interface ResourceIntegrations {
939
939
  * <p>The information about the integration of Resource Groups.</p>
940
940
  * @public
941
941
  */
942
- resourceGroup?: ResourceGroup;
942
+ resourceGroup?: ResourceGroup | undefined;
943
943
  }
944
944
  /**
945
945
  * <p> The information about the resource.</p>
@@ -950,23 +950,23 @@ export interface Resource {
950
950
  * <p>The name of the resource.</p>
951
951
  * @public
952
952
  */
953
- name?: string;
953
+ name?: string | undefined;
954
954
  /**
955
955
  * <p>The Amazon resource name (ARN) of the resource.</p>
956
956
  * @public
957
957
  */
958
- arn?: string;
958
+ arn?: string | undefined;
959
959
  /**
960
960
  * <p>The time the resource was associated with the application.</p>
961
961
  * @public
962
962
  */
963
- associationTime?: Date;
963
+ associationTime?: Date | undefined;
964
964
  /**
965
965
  * <p>The service integration information about the resource.
966
966
  * </p>
967
967
  * @public
968
968
  */
969
- integrations?: ResourceIntegrations;
969
+ integrations?: ResourceIntegrations | undefined;
970
970
  }
971
971
  /**
972
972
  * @public
@@ -976,21 +976,21 @@ export interface GetAssociatedResourceResponse {
976
976
  * <p>The resource associated with the application.</p>
977
977
  * @public
978
978
  */
979
- resource?: Resource;
979
+ resource?: Resource | undefined;
980
980
  /**
981
981
  * <p>
982
982
  * Determines whether an application tag is applied or skipped.
983
983
  * </p>
984
984
  * @public
985
985
  */
986
- options?: AssociationOption[];
986
+ options?: AssociationOption[] | undefined;
987
987
  /**
988
988
  * <p>
989
989
  * The result of the application that's tag applied to a resource.
990
990
  * </p>
991
991
  * @public
992
992
  */
993
- applicationTagResult?: ApplicationTagResult;
993
+ applicationTagResult?: ApplicationTagResult | undefined;
994
994
  }
995
995
  /**
996
996
  * @public
@@ -1015,47 +1015,47 @@ export interface GetAttributeGroupResponse {
1015
1015
  * <p>The identifier of the attribute group.</p>
1016
1016
  * @public
1017
1017
  */
1018
- id?: string;
1018
+ id?: string | undefined;
1019
1019
  /**
1020
1020
  * <p>The Amazon resource name (ARN) that specifies the attribute group across services.</p>
1021
1021
  * @public
1022
1022
  */
1023
- arn?: string;
1023
+ arn?: string | undefined;
1024
1024
  /**
1025
1025
  * <p>The name of the attribute group.</p>
1026
1026
  * @public
1027
1027
  */
1028
- name?: string;
1028
+ name?: string | undefined;
1029
1029
  /**
1030
1030
  * <p>The description of the attribute group that the user provides.</p>
1031
1031
  * @public
1032
1032
  */
1033
- description?: string;
1033
+ description?: string | undefined;
1034
1034
  /**
1035
1035
  * <p>A JSON string in the form of nested key-value pairs that represent the attributes in the group and describes an application and its components.</p>
1036
1036
  * @public
1037
1037
  */
1038
- attributes?: string;
1038
+ attributes?: string | undefined;
1039
1039
  /**
1040
1040
  * <p>The ISO-8601 formatted timestamp of the moment the attribute group was created.</p>
1041
1041
  * @public
1042
1042
  */
1043
- creationTime?: Date;
1043
+ creationTime?: Date | undefined;
1044
1044
  /**
1045
1045
  * <p>The ISO-8601 formatted timestamp of the moment the attribute group was last updated. This time is the same as the creationTime for a newly created attribute group.</p>
1046
1046
  * @public
1047
1047
  */
1048
- lastUpdateTime?: Date;
1048
+ lastUpdateTime?: Date | undefined;
1049
1049
  /**
1050
1050
  * <p>Key-value pairs associated with the attribute group.</p>
1051
1051
  * @public
1052
1052
  */
1053
- tags?: Record<string, string>;
1053
+ tags?: Record<string, string> | undefined;
1054
1054
  /**
1055
1055
  * <p>The service principal that created the attribute group.</p>
1056
1056
  * @public
1057
1057
  */
1058
- createdBy?: string;
1058
+ createdBy?: string | undefined;
1059
1059
  }
1060
1060
  /**
1061
1061
  * @public
@@ -1068,7 +1068,7 @@ export interface GetConfigurationResponse {
1068
1068
  * </p>
1069
1069
  * @public
1070
1070
  */
1071
- configuration?: AppRegistryConfiguration;
1071
+ configuration?: AppRegistryConfiguration | undefined;
1072
1072
  }
1073
1073
  /**
1074
1074
  * @public
@@ -1078,12 +1078,12 @@ export interface ListApplicationsRequest {
1078
1078
  * <p>The token to use to get the next page of results after a previous API call. </p>
1079
1079
  * @public
1080
1080
  */
1081
- nextToken?: string;
1081
+ nextToken?: string | undefined;
1082
1082
  /**
1083
1083
  * <p>The upper bound of the number of results to return (cannot exceed 25). If this parameter is omitted, it defaults to 25. This value is optional.</p>
1084
1084
  * @public
1085
1085
  */
1086
- maxResults?: number;
1086
+ maxResults?: number | undefined;
1087
1087
  }
1088
1088
  /**
1089
1089
  * @public
@@ -1093,12 +1093,12 @@ export interface ListApplicationsResponse {
1093
1093
  * <p>This list of applications.</p>
1094
1094
  * @public
1095
1095
  */
1096
- applications?: ApplicationSummary[];
1096
+ applications?: ApplicationSummary[] | undefined;
1097
1097
  /**
1098
1098
  * <p>The token to use to get the next page of results after a previous API call. </p>
1099
1099
  * @public
1100
1100
  */
1101
- nextToken?: string;
1101
+ nextToken?: string | undefined;
1102
1102
  }
1103
1103
  /**
1104
1104
  * @public
@@ -1113,12 +1113,12 @@ export interface ListAssociatedAttributeGroupsRequest {
1113
1113
  * <p>The token to use to get the next page of results after a previous API call. </p>
1114
1114
  * @public
1115
1115
  */
1116
- nextToken?: string;
1116
+ nextToken?: string | undefined;
1117
1117
  /**
1118
1118
  * <p>The upper bound of the number of results to return (cannot exceed 25). If this parameter is omitted, it defaults to 25. This value is optional.</p>
1119
1119
  * @public
1120
1120
  */
1121
- maxResults?: number;
1121
+ maxResults?: number | undefined;
1122
1122
  }
1123
1123
  /**
1124
1124
  * @public
@@ -1128,12 +1128,12 @@ export interface ListAssociatedAttributeGroupsResponse {
1128
1128
  * <p>A list of attribute group IDs.</p>
1129
1129
  * @public
1130
1130
  */
1131
- attributeGroups?: string[];
1131
+ attributeGroups?: string[] | undefined;
1132
1132
  /**
1133
1133
  * <p>The token to use to get the next page of results after a previous API call. </p>
1134
1134
  * @public
1135
1135
  */
1136
- nextToken?: string;
1136
+ nextToken?: string | undefined;
1137
1137
  }
1138
1138
  /**
1139
1139
  * @public
@@ -1151,12 +1151,12 @@ export interface ListAssociatedResourcesRequest {
1151
1151
  * <p>The token to use to get the next page of results after a previous API call. </p>
1152
1152
  * @public
1153
1153
  */
1154
- nextToken?: string;
1154
+ nextToken?: string | undefined;
1155
1155
  /**
1156
1156
  * <p>The upper bound of the number of results to return (cannot exceed 25). If this parameter is omitted, it defaults to 25. This value is optional.</p>
1157
1157
  * @public
1158
1158
  */
1159
- maxResults?: number;
1159
+ maxResults?: number | undefined;
1160
1160
  }
1161
1161
  /**
1162
1162
  * <p>
@@ -1172,7 +1172,7 @@ export interface ResourceDetails {
1172
1172
  * <p>The value of the tag.</p>
1173
1173
  * @public
1174
1174
  */
1175
- tagValue?: string;
1175
+ tagValue?: string | undefined;
1176
1176
  }
1177
1177
  /**
1178
1178
  * <p>The information about the resource.</p>
@@ -1183,12 +1183,12 @@ export interface ResourceInfo {
1183
1183
  * <p>The name of the resource.</p>
1184
1184
  * @public
1185
1185
  */
1186
- name?: string;
1186
+ name?: string | undefined;
1187
1187
  /**
1188
1188
  * <p>The Amazon resource name (ARN) that specifies the resource across services.</p>
1189
1189
  * @public
1190
1190
  */
1191
- arn?: string;
1191
+ arn?: string | undefined;
1192
1192
  /**
1193
1193
  * <p>
1194
1194
  * Provides information
@@ -1196,7 +1196,7 @@ export interface ResourceInfo {
1196
1196
  * </p>
1197
1197
  * @public
1198
1198
  */
1199
- resourceType?: ResourceType;
1199
+ resourceType?: ResourceType | undefined;
1200
1200
  /**
1201
1201
  * <p>
1202
1202
  * The details related
@@ -1205,14 +1205,14 @@ export interface ResourceInfo {
1205
1205
  * </p>
1206
1206
  * @public
1207
1207
  */
1208
- resourceDetails?: ResourceDetails;
1208
+ resourceDetails?: ResourceDetails | undefined;
1209
1209
  /**
1210
1210
  * <p>
1211
1211
  * Determines whether an application tag is applied or skipped.
1212
1212
  * </p>
1213
1213
  * @public
1214
1214
  */
1215
- options?: AssociationOption[];
1215
+ options?: AssociationOption[] | undefined;
1216
1216
  }
1217
1217
  /**
1218
1218
  * @public
@@ -1222,12 +1222,12 @@ export interface ListAssociatedResourcesResponse {
1222
1222
  * <p>Information about the resources.</p>
1223
1223
  * @public
1224
1224
  */
1225
- resources?: ResourceInfo[];
1225
+ resources?: ResourceInfo[] | undefined;
1226
1226
  /**
1227
1227
  * <p>The token to use to get the next page of results after a previous API call. </p>
1228
1228
  * @public
1229
1229
  */
1230
- nextToken?: string;
1230
+ nextToken?: string | undefined;
1231
1231
  }
1232
1232
  /**
1233
1233
  * @public
@@ -1237,12 +1237,12 @@ export interface ListAttributeGroupsRequest {
1237
1237
  * <p>The token to use to get the next page of results after a previous API call. </p>
1238
1238
  * @public
1239
1239
  */
1240
- nextToken?: string;
1240
+ nextToken?: string | undefined;
1241
1241
  /**
1242
1242
  * <p>The upper bound of the number of results to return (cannot exceed 25). If this parameter is omitted, it defaults to 25. This value is optional.</p>
1243
1243
  * @public
1244
1244
  */
1245
- maxResults?: number;
1245
+ maxResults?: number | undefined;
1246
1246
  }
1247
1247
  /**
1248
1248
  * @public
@@ -1252,12 +1252,12 @@ export interface ListAttributeGroupsResponse {
1252
1252
  * <p>This list of attribute groups.</p>
1253
1253
  * @public
1254
1254
  */
1255
- attributeGroups?: AttributeGroupSummary[];
1255
+ attributeGroups?: AttributeGroupSummary[] | undefined;
1256
1256
  /**
1257
1257
  * <p>The token to use to get the next page of results after a previous API call. </p>
1258
1258
  * @public
1259
1259
  */
1260
- nextToken?: string;
1260
+ nextToken?: string | undefined;
1261
1261
  }
1262
1262
  /**
1263
1263
  * @public
@@ -1272,12 +1272,12 @@ export interface ListAttributeGroupsForApplicationRequest {
1272
1272
  * <p>This token retrieves the next page of results after a previous API call.</p>
1273
1273
  * @public
1274
1274
  */
1275
- nextToken?: string;
1275
+ nextToken?: string | undefined;
1276
1276
  /**
1277
1277
  * <p>The upper bound of the number of results to return. The value cannot exceed 25. If you omit this parameter, it defaults to 25. This value is optional.</p>
1278
1278
  * @public
1279
1279
  */
1280
- maxResults?: number;
1280
+ maxResults?: number | undefined;
1281
1281
  }
1282
1282
  /**
1283
1283
  * @public
@@ -1287,12 +1287,12 @@ export interface ListAttributeGroupsForApplicationResponse {
1287
1287
  * <p> The details related to a specific attribute group. </p>
1288
1288
  * @public
1289
1289
  */
1290
- attributeGroupsDetails?: AttributeGroupDetails[];
1290
+ attributeGroupsDetails?: AttributeGroupDetails[] | undefined;
1291
1291
  /**
1292
1292
  * <p>The token to use to get the next page of results after a previous API call.</p>
1293
1293
  * @public
1294
1294
  */
1295
- nextToken?: string;
1295
+ nextToken?: string | undefined;
1296
1296
  }
1297
1297
  /**
1298
1298
  * @public
@@ -1312,7 +1312,7 @@ export interface ListTagsForResourceResponse {
1312
1312
  * <p>The tags on the resource.</p>
1313
1313
  * @public
1314
1314
  */
1315
- tags?: Record<string, string>;
1315
+ tags?: Record<string, string> | undefined;
1316
1316
  }
1317
1317
  /**
1318
1318
  * @public
@@ -1362,17 +1362,17 @@ export interface SyncResourceResponse {
1362
1362
  * <p>The Amazon resource name (ARN) that specifies the application.</p>
1363
1363
  * @public
1364
1364
  */
1365
- applicationArn?: string;
1365
+ applicationArn?: string | undefined;
1366
1366
  /**
1367
1367
  * <p>The Amazon resource name (ARN) that specifies the resource.</p>
1368
1368
  * @public
1369
1369
  */
1370
- resourceArn?: string;
1370
+ resourceArn?: string | undefined;
1371
1371
  /**
1372
1372
  * <p>The results of the output if an application is associated with an ARN value, which could be <code>syncStarted</code> or None.</p>
1373
1373
  * @public
1374
1374
  */
1375
- actionTaken?: SyncAction;
1375
+ actionTaken?: SyncAction | undefined;
1376
1376
  }
1377
1377
  /**
1378
1378
  * @public
@@ -1434,12 +1434,12 @@ export interface UpdateApplicationRequest {
1434
1434
  * updating the application. Please do not use this field as we have stopped supporting name updates.</p>
1435
1435
  * @public
1436
1436
  */
1437
- name?: string;
1437
+ name?: string | undefined;
1438
1438
  /**
1439
1439
  * <p>The new description of the application.</p>
1440
1440
  * @public
1441
1441
  */
1442
- description?: string;
1442
+ description?: string | undefined;
1443
1443
  }
1444
1444
  /**
1445
1445
  * @public
@@ -1449,7 +1449,7 @@ export interface UpdateApplicationResponse {
1449
1449
  * <p>The updated information of the application.</p>
1450
1450
  * @public
1451
1451
  */
1452
- application?: Application;
1452
+ application?: Application | undefined;
1453
1453
  }
1454
1454
  /**
1455
1455
  * @public
@@ -1472,17 +1472,17 @@ export interface UpdateAttributeGroupRequest {
1472
1472
  * updating the attribute group. Please do not use this field as we have stopped supporting name updates.</p>
1473
1473
  * @public
1474
1474
  */
1475
- name?: string;
1475
+ name?: string | undefined;
1476
1476
  /**
1477
1477
  * <p>The description of the attribute group that the user provides.</p>
1478
1478
  * @public
1479
1479
  */
1480
- description?: string;
1480
+ description?: string | undefined;
1481
1481
  /**
1482
1482
  * <p>A JSON string in the form of nested key-value pairs that represent the attributes in the group and describes an application and its components.</p>
1483
1483
  * @public
1484
1484
  */
1485
- attributes?: string;
1485
+ attributes?: string | undefined;
1486
1486
  }
1487
1487
  /**
1488
1488
  * @public
@@ -1492,5 +1492,5 @@ export interface UpdateAttributeGroupResponse {
1492
1492
  * <p>The updated information of the attribute group.</p>
1493
1493
  * @public
1494
1494
  */
1495
- attributeGroup?: AttributeGroup;
1495
+ attributeGroup?: AttributeGroup | undefined;
1496
1496
  }