@aws-sdk/client-route53profiles 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.
@@ -9,7 +9,7 @@ import { Route53ProfilesServiceException as __BaseException } from "./Route53Pro
9
9
  export declare class AccessDeniedException extends __BaseException {
10
10
  readonly name: "AccessDeniedException";
11
11
  readonly $fault: "client";
12
- Message?: string;
12
+ Message?: string | undefined;
13
13
  /**
14
14
  * @internal
15
15
  */
@@ -68,7 +68,7 @@ export interface AssociateProfileRequest {
68
68
  * </p>
69
69
  * @public
70
70
  */
71
- Tags?: Tag[];
71
+ Tags?: Tag[] | undefined;
72
72
  }
73
73
  /**
74
74
  * @public
@@ -99,63 +99,63 @@ export interface ProfileAssociation {
99
99
  * </p>
100
100
  * @public
101
101
  */
102
- Id?: string;
102
+ Id?: string | undefined;
103
103
  /**
104
104
  * <p>
105
105
  * Name of the Profile association.
106
106
  * </p>
107
107
  * @public
108
108
  */
109
- Name?: string;
109
+ Name?: string | undefined;
110
110
  /**
111
111
  * <p>
112
112
  * Amazon Web Services account ID of the Profile association owner.
113
113
  * </p>
114
114
  * @public
115
115
  */
116
- OwnerId?: string;
116
+ OwnerId?: string | undefined;
117
117
  /**
118
118
  * <p>
119
119
  * ID of the Profile.
120
120
  * </p>
121
121
  * @public
122
122
  */
123
- ProfileId?: string;
123
+ ProfileId?: string | undefined;
124
124
  /**
125
125
  * <p>
126
126
  * The Amazon Resource Name (ARN) of the VPC.
127
127
  * </p>
128
128
  * @public
129
129
  */
130
- ResourceId?: string;
130
+ ResourceId?: string | undefined;
131
131
  /**
132
132
  * <p>
133
133
  * Status of the Profile association.
134
134
  * </p>
135
135
  * @public
136
136
  */
137
- Status?: ProfileStatus;
137
+ Status?: ProfileStatus | undefined;
138
138
  /**
139
139
  * <p>
140
140
  * Additional information about the Profile association.
141
141
  * </p>
142
142
  * @public
143
143
  */
144
- StatusMessage?: string;
144
+ StatusMessage?: string | undefined;
145
145
  /**
146
146
  * <p>
147
147
  * The date and time that the Profile association was created, in Unix time format and Coordinated Universal Time (UTC).
148
148
  * </p>
149
149
  * @public
150
150
  */
151
- CreationTime?: Date;
151
+ CreationTime?: Date | undefined;
152
152
  /**
153
153
  * <p>
154
154
  * The date and time that the Profile association was modified, in Unix time format and Coordinated Universal Time (UTC).
155
155
  * </p>
156
156
  * @public
157
157
  */
158
- ModificationTime?: Date;
158
+ ModificationTime?: Date | undefined;
159
159
  }
160
160
  /**
161
161
  * @public
@@ -167,7 +167,7 @@ export interface AssociateProfileResponse {
167
167
  * </p>
168
168
  * @public
169
169
  */
170
- ProfileAssociation?: ProfileAssociation;
170
+ ProfileAssociation?: ProfileAssociation | undefined;
171
171
  }
172
172
  /**
173
173
  * <p>
@@ -178,7 +178,7 @@ export interface AssociateProfileResponse {
178
178
  export declare class ConflictException extends __BaseException {
179
179
  readonly name: "ConflictException";
180
180
  readonly $fault: "client";
181
- Message?: string;
181
+ Message?: string | undefined;
182
182
  /**
183
183
  * @internal
184
184
  */
@@ -200,7 +200,7 @@ export declare class InvalidParameterException extends __BaseException {
200
200
  * </p>
201
201
  * @public
202
202
  */
203
- FieldName?: string;
203
+ FieldName?: string | undefined;
204
204
  /**
205
205
  * @internal
206
206
  */
@@ -215,14 +215,14 @@ export declare class InvalidParameterException extends __BaseException {
215
215
  export declare class LimitExceededException extends __BaseException {
216
216
  readonly name: "LimitExceededException";
217
217
  readonly $fault: "client";
218
- Message?: string;
218
+ Message?: string | undefined;
219
219
  /**
220
220
  * <p>
221
221
  * The resource type that caused the limits to be exceeded.
222
222
  * </p>
223
223
  * @public
224
224
  */
225
- ResourceType?: string;
225
+ ResourceType?: string | undefined;
226
226
  /**
227
227
  * @internal
228
228
  */
@@ -237,14 +237,14 @@ export declare class LimitExceededException extends __BaseException {
237
237
  export declare class ResourceExistsException extends __BaseException {
238
238
  readonly name: "ResourceExistsException";
239
239
  readonly $fault: "client";
240
- Message?: string;
240
+ Message?: string | undefined;
241
241
  /**
242
242
  * <p>
243
243
  * The resource type that caused the resource exists exception.
244
244
  * </p>
245
245
  * @public
246
246
  */
247
- ResourceType?: string;
247
+ ResourceType?: string | undefined;
248
248
  /**
249
249
  * @internal
250
250
  */
@@ -259,14 +259,14 @@ export declare class ResourceExistsException extends __BaseException {
259
259
  export declare class ResourceNotFoundException extends __BaseException {
260
260
  readonly name: "ResourceNotFoundException";
261
261
  readonly $fault: "client";
262
- Message?: string;
262
+ Message?: string | undefined;
263
263
  /**
264
264
  * <p>
265
265
  * The resource type that caused the resource not found exception.
266
266
  * </p>
267
267
  * @public
268
268
  */
269
- ResourceType?: string;
269
+ ResourceType?: string | undefined;
270
270
  /**
271
271
  * @internal
272
272
  */
@@ -281,7 +281,7 @@ export declare class ResourceNotFoundException extends __BaseException {
281
281
  export declare class ThrottlingException extends __BaseException {
282
282
  readonly name: "ThrottlingException";
283
283
  readonly $fault: "client";
284
- Message?: string;
284
+ Message?: string | undefined;
285
285
  /**
286
286
  * @internal
287
287
  */
@@ -296,7 +296,7 @@ export declare class ThrottlingException extends __BaseException {
296
296
  export declare class ValidationException extends __BaseException {
297
297
  readonly name: "ValidationException";
298
298
  readonly $fault: "client";
299
- Message?: string;
299
+ Message?: string | undefined;
300
300
  /**
301
301
  * @internal
302
302
  */
@@ -334,7 +334,7 @@ export interface AssociateResourceToProfileRequest {
334
334
  * <p>The allowed values for priority are between 100 and 9900.</p>
335
335
  * @public
336
336
  */
337
- ResourceProperties?: string;
337
+ ResourceProperties?: string | undefined;
338
338
  }
339
339
  /**
340
340
  * <p>
@@ -349,77 +349,77 @@ export interface ProfileResourceAssociation {
349
349
  * </p>
350
350
  * @public
351
351
  */
352
- Id?: string;
352
+ Id?: string | undefined;
353
353
  /**
354
354
  * <p>
355
355
  * Name of the Profile resource association.
356
356
  * </p>
357
357
  * @public
358
358
  */
359
- Name?: string;
359
+ Name?: string | undefined;
360
360
  /**
361
361
  * <p>
362
362
  * Amazon Web Services account ID of the Profile resource association owner.
363
363
  * </p>
364
364
  * @public
365
365
  */
366
- OwnerId?: string;
366
+ OwnerId?: string | undefined;
367
367
  /**
368
368
  * <p>
369
369
  * Profile ID of the Profile that the resources are associated with.
370
370
  * </p>
371
371
  * @public
372
372
  */
373
- ProfileId?: string;
373
+ ProfileId?: string | undefined;
374
374
  /**
375
375
  * <p>
376
376
  * The Amazon Resource Name (ARN) of the resource association.
377
377
  * </p>
378
378
  * @public
379
379
  */
380
- ResourceArn?: string;
380
+ ResourceArn?: string | undefined;
381
381
  /**
382
382
  * <p>
383
383
  * Resource type, such as a private hosted zone, or DNS Firewall rule group.
384
384
  * </p>
385
385
  * @public
386
386
  */
387
- ResourceType?: string;
387
+ ResourceType?: string | undefined;
388
388
  /**
389
389
  * <p>
390
390
  * If the DNS resource is a DNS Firewall rule group, this indicates the priority.
391
391
  * </p>
392
392
  * @public
393
393
  */
394
- ResourceProperties?: string;
394
+ ResourceProperties?: string | undefined;
395
395
  /**
396
396
  * <p>
397
397
  * Status of the Profile resource association.
398
398
  * </p>
399
399
  * @public
400
400
  */
401
- Status?: ProfileStatus;
401
+ Status?: ProfileStatus | undefined;
402
402
  /**
403
403
  * <p>
404
404
  * Additional information about the Profile resource association.
405
405
  * </p>
406
406
  * @public
407
407
  */
408
- StatusMessage?: string;
408
+ StatusMessage?: string | undefined;
409
409
  /**
410
410
  * <p>
411
411
  * The date and time that the Profile resource association was created, in Unix time format and Coordinated Universal Time (UTC).
412
412
  * </p>
413
413
  * @public
414
414
  */
415
- CreationTime?: Date;
415
+ CreationTime?: Date | undefined;
416
416
  /**
417
417
  * <p>
418
418
  * The date and time that the Profile resource association was modified, in Unix time format and Coordinated Universal Time (UTC).
419
419
  * </p>
420
420
  * @public
421
421
  */
422
- ModificationTime?: Date;
422
+ ModificationTime?: Date | undefined;
423
423
  }
424
424
  /**
425
425
  * @public
@@ -431,7 +431,7 @@ export interface AssociateResourceToProfileResponse {
431
431
  * </p>
432
432
  * @public
433
433
  */
434
- ProfileResourceAssociation?: ProfileResourceAssociation;
434
+ ProfileResourceAssociation?: ProfileResourceAssociation | undefined;
435
435
  }
436
436
  /**
437
437
  * <p>
@@ -442,7 +442,7 @@ export interface AssociateResourceToProfileResponse {
442
442
  export declare class InternalServiceErrorException extends __BaseException {
443
443
  readonly name: "InternalServiceErrorException";
444
444
  readonly $fault: "client";
445
- Message?: string;
445
+ Message?: string | undefined;
446
446
  /**
447
447
  * @internal
448
448
  */
@@ -467,14 +467,14 @@ export interface CreateProfileRequest {
467
467
  * </p>
468
468
  * @public
469
469
  */
470
- ClientToken?: string;
470
+ ClientToken?: string | undefined;
471
471
  /**
472
472
  * <p>
473
473
  * A list of the tag keys and values that you want to associate with the Route 53 Profile.
474
474
  * </p>
475
475
  * @public
476
476
  */
477
- Tags?: Tag[];
477
+ Tags?: Tag[] | undefined;
478
478
  }
479
479
  /**
480
480
  * @public
@@ -502,70 +502,70 @@ export interface Profile {
502
502
  * </p>
503
503
  * @public
504
504
  */
505
- Id?: string;
505
+ Id?: string | undefined;
506
506
  /**
507
507
  * <p>
508
508
  * The Amazon Resource Name (ARN) of the Profile.
509
509
  * </p>
510
510
  * @public
511
511
  */
512
- Arn?: string;
512
+ Arn?: string | undefined;
513
513
  /**
514
514
  * <p>
515
515
  * Name of the Profile.
516
516
  * </p>
517
517
  * @public
518
518
  */
519
- Name?: string;
519
+ Name?: string | undefined;
520
520
  /**
521
521
  * <p>
522
522
  * Amazon Web Services account ID of the Profile owner.
523
523
  * </p>
524
524
  * @public
525
525
  */
526
- OwnerId?: string;
526
+ OwnerId?: string | undefined;
527
527
  /**
528
528
  * <p>
529
529
  * The status for the Profile.
530
530
  * </p>
531
531
  * @public
532
532
  */
533
- Status?: ProfileStatus;
533
+ Status?: ProfileStatus | undefined;
534
534
  /**
535
535
  * <p>
536
536
  * Status message that includes additiona information about the Profile.
537
537
  * </p>
538
538
  * @public
539
539
  */
540
- StatusMessage?: string;
540
+ StatusMessage?: string | undefined;
541
541
  /**
542
542
  * <p>
543
543
  * Sharing status for the Profile.
544
544
  * </p>
545
545
  * @public
546
546
  */
547
- ShareStatus?: ShareStatus;
547
+ ShareStatus?: ShareStatus | undefined;
548
548
  /**
549
549
  * <p>
550
550
  * The date and time that the Profile was created, in Unix time format and Coordinated Universal Time (UTC).
551
551
  * </p>
552
552
  * @public
553
553
  */
554
- CreationTime?: Date;
554
+ CreationTime?: Date | undefined;
555
555
  /**
556
556
  * <p>
557
557
  * The date and time that the Profile was modified, in Unix time format and Coordinated Universal Time (UTC).
558
558
  * </p>
559
559
  * @public
560
560
  */
561
- ModificationTime?: Date;
561
+ ModificationTime?: Date | undefined;
562
562
  /**
563
563
  * <p>
564
564
  * The <code>ClientToken</code> value that was assigned when the Profile was created.
565
565
  * </p>
566
566
  * @public
567
567
  */
568
- ClientToken?: string;
568
+ ClientToken?: string | undefined;
569
569
  }
570
570
  /**
571
571
  * @public
@@ -577,7 +577,7 @@ export interface CreateProfileResponse {
577
577
  * </p>
578
578
  * @public
579
579
  */
580
- Profile?: Profile;
580
+ Profile?: Profile | undefined;
581
581
  }
582
582
  /**
583
583
  * @public
@@ -601,7 +601,7 @@ export interface DeleteProfileResponse {
601
601
  * </p>
602
602
  * @public
603
603
  */
604
- Profile?: Profile;
604
+ Profile?: Profile | undefined;
605
605
  }
606
606
  /**
607
607
  * @public
@@ -632,7 +632,7 @@ export interface DisassociateProfileResponse {
632
632
  * </p>
633
633
  * @public
634
634
  */
635
- ProfileAssociation?: ProfileAssociation;
635
+ ProfileAssociation?: ProfileAssociation | undefined;
636
636
  }
637
637
  /**
638
638
  * @public
@@ -662,7 +662,7 @@ export interface DisassociateResourceFromProfileResponse {
662
662
  * </p>
663
663
  * @public
664
664
  */
665
- ProfileResourceAssociation?: ProfileResourceAssociation;
665
+ ProfileResourceAssociation?: ProfileResourceAssociation | undefined;
666
666
  }
667
667
  /**
668
668
  * @public
@@ -686,7 +686,7 @@ export interface GetProfileResponse {
686
686
  * </p>
687
687
  * @public
688
688
  */
689
- Profile?: Profile;
689
+ Profile?: Profile | undefined;
690
690
  }
691
691
  /**
692
692
  * @public
@@ -710,7 +710,7 @@ export interface GetProfileAssociationResponse {
710
710
  * </p>
711
711
  * @public
712
712
  */
713
- ProfileAssociation?: ProfileAssociation;
713
+ ProfileAssociation?: ProfileAssociation | undefined;
714
714
  }
715
715
  /**
716
716
  * @public
@@ -735,7 +735,7 @@ export interface GetProfileResourceAssociationResponse {
735
735
  * </p>
736
736
  * @public
737
737
  */
738
- ProfileResourceAssociation?: ProfileResourceAssociation;
738
+ ProfileResourceAssociation?: ProfileResourceAssociation | undefined;
739
739
  }
740
740
  /**
741
741
  * <p>
@@ -746,7 +746,7 @@ export interface GetProfileResourceAssociationResponse {
746
746
  export declare class InvalidNextTokenException extends __BaseException {
747
747
  readonly name: "InvalidNextTokenException";
748
748
  readonly $fault: "client";
749
- Message?: string;
749
+ Message?: string | undefined;
750
750
  /**
751
751
  * @internal
752
752
  */
@@ -762,14 +762,14 @@ export interface ListProfileAssociationsRequest {
762
762
  * </p>
763
763
  * @public
764
764
  */
765
- ResourceId?: string;
765
+ ResourceId?: string | undefined;
766
766
  /**
767
767
  * <p>
768
768
  * ID of the Profile.
769
769
  * </p>
770
770
  * @public
771
771
  */
772
- ProfileId?: string;
772
+ ProfileId?: string | undefined;
773
773
  /**
774
774
  * <p>
775
775
  * The maximum number of objects that you want to return for this request. If more objects are available, in the response,
@@ -779,7 +779,7 @@ export interface ListProfileAssociationsRequest {
779
779
  * </p>
780
780
  * @public
781
781
  */
782
- MaxResults?: number;
782
+ MaxResults?: number | undefined;
783
783
  /**
784
784
  * <p>
785
785
  * For the first call to this list request, omit this value.
@@ -789,7 +789,7 @@ export interface ListProfileAssociationsRequest {
789
789
  * To retrieve the next batch of objects, use the token that was returned for the prior request in your next request.</p>
790
790
  * @public
791
791
  */
792
- NextToken?: string;
792
+ NextToken?: string | undefined;
793
793
  }
794
794
  /**
795
795
  * @public
@@ -801,7 +801,7 @@ export interface ListProfileAssociationsResponse {
801
801
  * </p>
802
802
  * @public
803
803
  */
804
- ProfileAssociations?: ProfileAssociation[];
804
+ ProfileAssociations?: ProfileAssociation[] | undefined;
805
805
  /**
806
806
  * <p>
807
807
  * If more than <code>MaxResults</code> profile associations match the specified criteria, you can submit another
@@ -809,7 +809,7 @@ export interface ListProfileAssociationsResponse {
809
809
  * </p>
810
810
  * @public
811
811
  */
812
- NextToken?: string;
812
+ NextToken?: string | undefined;
813
813
  }
814
814
  /**
815
815
  * @public
@@ -828,7 +828,7 @@ export interface ListProfileResourceAssociationsRequest {
828
828
  * </p>
829
829
  * @public
830
830
  */
831
- ResourceType?: string;
831
+ ResourceType?: string | undefined;
832
832
  /**
833
833
  * <p>
834
834
  * The maximum number of objects that you want to return for this request. If more objects are available, in the response,
@@ -838,7 +838,7 @@ export interface ListProfileResourceAssociationsRequest {
838
838
  * </p>
839
839
  * @public
840
840
  */
841
- MaxResults?: number;
841
+ MaxResults?: number | undefined;
842
842
  /**
843
843
  * <p>
844
844
  * For the first call to this list request, omit this value.
@@ -848,7 +848,7 @@ export interface ListProfileResourceAssociationsRequest {
848
848
  * To retrieve the next batch of objects, use the token that was returned for the prior request in your next request.</p>
849
849
  * @public
850
850
  */
851
- NextToken?: string;
851
+ NextToken?: string | undefined;
852
852
  }
853
853
  /**
854
854
  * @public
@@ -860,7 +860,7 @@ export interface ListProfileResourceAssociationsResponse {
860
860
  * </p>
861
861
  * @public
862
862
  */
863
- ProfileResourceAssociations?: ProfileResourceAssociation[];
863
+ ProfileResourceAssociations?: ProfileResourceAssociation[] | undefined;
864
864
  /**
865
865
  * <p>
866
866
  * If more than <code>MaxResults</code> resource associations match the specified criteria, you can submit another
@@ -868,7 +868,7 @@ export interface ListProfileResourceAssociationsResponse {
868
868
  * </p>
869
869
  * @public
870
870
  */
871
- NextToken?: string;
871
+ NextToken?: string | undefined;
872
872
  }
873
873
  /**
874
874
  * @public
@@ -883,7 +883,7 @@ export interface ListProfilesRequest {
883
883
  * </p>
884
884
  * @public
885
885
  */
886
- MaxResults?: number;
886
+ MaxResults?: number | undefined;
887
887
  /**
888
888
  * <p>
889
889
  * For the first call to this list request, omit this value.
@@ -893,7 +893,7 @@ export interface ListProfilesRequest {
893
893
  * To retrieve the next batch of objects, use the token that was returned for the prior request in your next request.</p>
894
894
  * @public
895
895
  */
896
- NextToken?: string;
896
+ NextToken?: string | undefined;
897
897
  }
898
898
  /**
899
899
  * <p>
@@ -908,28 +908,28 @@ export interface ProfileSummary {
908
908
  * </p>
909
909
  * @public
910
910
  */
911
- Id?: string;
911
+ Id?: string | undefined;
912
912
  /**
913
913
  * <p>
914
914
  * The Amazon Resource Name (ARN) of the Profile.
915
915
  * </p>
916
916
  * @public
917
917
  */
918
- Arn?: string;
918
+ Arn?: string | undefined;
919
919
  /**
920
920
  * <p>
921
921
  * Name of the Profile.
922
922
  * </p>
923
923
  * @public
924
924
  */
925
- Name?: string;
925
+ Name?: string | undefined;
926
926
  /**
927
927
  * <p>
928
928
  * Share status of the Profile.
929
929
  * </p>
930
930
  * @public
931
931
  */
932
- ShareStatus?: ShareStatus;
932
+ ShareStatus?: ShareStatus | undefined;
933
933
  }
934
934
  /**
935
935
  * @public
@@ -941,7 +941,7 @@ export interface ListProfilesResponse {
941
941
  * </p>
942
942
  * @public
943
943
  */
944
- ProfileSummaries?: ProfileSummary[];
944
+ ProfileSummaries?: ProfileSummary[] | undefined;
945
945
  /**
946
946
  * <p>
947
947
  * If more than <code>MaxResults</code> resource associations match the specified criteria, you can submit another
@@ -949,7 +949,7 @@ export interface ListProfilesResponse {
949
949
  * </p>
950
950
  * @public
951
951
  */
952
- NextToken?: string;
952
+ NextToken?: string | undefined;
953
953
  }
954
954
  /**
955
955
  * @public
@@ -1040,7 +1040,7 @@ export interface UpdateProfileResourceAssociationRequest {
1040
1040
  * </p>
1041
1041
  * @public
1042
1042
  */
1043
- Name?: string;
1043
+ Name?: string | undefined;
1044
1044
  /**
1045
1045
  * <p>
1046
1046
  * If you are adding a DNS Firewall rule group, include also a priority. The priority indicates the processing order for the rule groups, starting with the priority assinged the lowest value.
@@ -1048,7 +1048,7 @@ export interface UpdateProfileResourceAssociationRequest {
1048
1048
  * <p>The allowed values for priority are between 100 and 9900.</p>
1049
1049
  * @public
1050
1050
  */
1051
- ResourceProperties?: string;
1051
+ ResourceProperties?: string | undefined;
1052
1052
  }
1053
1053
  /**
1054
1054
  * @public
@@ -1060,5 +1060,5 @@ export interface UpdateProfileResourceAssociationResponse {
1060
1060
  * </p>
1061
1061
  * @public
1062
1062
  */
1063
- ProfileResourceAssociation?: ProfileResourceAssociation;
1063
+ ProfileResourceAssociation?: ProfileResourceAssociation | undefined;
1064
1064
  }
@@ -3,7 +3,7 @@ import { Route53ProfilesServiceException as __BaseException } from "./Route53Pro
3
3
  export declare class AccessDeniedException extends __BaseException {
4
4
  readonly name: "AccessDeniedException";
5
5
  readonly $fault: "client";
6
- Message?: string;
6
+ Message?: string | undefined;
7
7
  constructor(
8
8
  opts: __ExceptionOptionType<AccessDeniedException, __BaseException>
9
9
  );
@@ -16,7 +16,7 @@ export interface AssociateProfileRequest {
16
16
  ProfileId: string | undefined;
17
17
  ResourceId: string | undefined;
18
18
  Name: string | undefined;
19
- Tags?: Tag[];
19
+ Tags?: Tag[] | undefined;
20
20
  }
21
21
  export declare const ProfileStatus: {
22
22
  readonly COMPLETE: "COMPLETE";
@@ -28,30 +28,30 @@ export declare const ProfileStatus: {
28
28
  };
29
29
  export type ProfileStatus = (typeof ProfileStatus)[keyof typeof ProfileStatus];
30
30
  export interface ProfileAssociation {
31
- Id?: string;
32
- Name?: string;
33
- OwnerId?: string;
34
- ProfileId?: string;
35
- ResourceId?: string;
36
- Status?: ProfileStatus;
37
- StatusMessage?: string;
38
- CreationTime?: Date;
39
- ModificationTime?: Date;
31
+ Id?: string | undefined;
32
+ Name?: string | undefined;
33
+ OwnerId?: string | undefined;
34
+ ProfileId?: string | undefined;
35
+ ResourceId?: string | undefined;
36
+ Status?: ProfileStatus | undefined;
37
+ StatusMessage?: string | undefined;
38
+ CreationTime?: Date | undefined;
39
+ ModificationTime?: Date | undefined;
40
40
  }
41
41
  export interface AssociateProfileResponse {
42
- ProfileAssociation?: ProfileAssociation;
42
+ ProfileAssociation?: ProfileAssociation | undefined;
43
43
  }
44
44
  export declare class ConflictException extends __BaseException {
45
45
  readonly name: "ConflictException";
46
46
  readonly $fault: "client";
47
- Message?: string;
47
+ Message?: string | undefined;
48
48
  constructor(opts: __ExceptionOptionType<ConflictException, __BaseException>);
49
49
  }
50
50
  export declare class InvalidParameterException extends __BaseException {
51
51
  readonly name: "InvalidParameterException";
52
52
  readonly $fault: "client";
53
53
  Message: string | undefined;
54
- FieldName?: string;
54
+ FieldName?: string | undefined;
55
55
  constructor(
56
56
  opts: __ExceptionOptionType<InvalidParameterException, __BaseException>
57
57
  );
@@ -59,8 +59,8 @@ export declare class InvalidParameterException extends __BaseException {
59
59
  export declare class LimitExceededException extends __BaseException {
60
60
  readonly name: "LimitExceededException";
61
61
  readonly $fault: "client";
62
- Message?: string;
63
- ResourceType?: string;
62
+ Message?: string | undefined;
63
+ ResourceType?: string | undefined;
64
64
  constructor(
65
65
  opts: __ExceptionOptionType<LimitExceededException, __BaseException>
66
66
  );
@@ -68,8 +68,8 @@ export declare class LimitExceededException extends __BaseException {
68
68
  export declare class ResourceExistsException extends __BaseException {
69
69
  readonly name: "ResourceExistsException";
70
70
  readonly $fault: "client";
71
- Message?: string;
72
- ResourceType?: string;
71
+ Message?: string | undefined;
72
+ ResourceType?: string | undefined;
73
73
  constructor(
74
74
  opts: __ExceptionOptionType<ResourceExistsException, __BaseException>
75
75
  );
@@ -77,8 +77,8 @@ export declare class ResourceExistsException extends __BaseException {
77
77
  export declare class ResourceNotFoundException extends __BaseException {
78
78
  readonly name: "ResourceNotFoundException";
79
79
  readonly $fault: "client";
80
- Message?: string;
81
- ResourceType?: string;
80
+ Message?: string | undefined;
81
+ ResourceType?: string | undefined;
82
82
  constructor(
83
83
  opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>
84
84
  );
@@ -86,7 +86,7 @@ export declare class ResourceNotFoundException extends __BaseException {
86
86
  export declare class ThrottlingException extends __BaseException {
87
87
  readonly name: "ThrottlingException";
88
88
  readonly $fault: "client";
89
- Message?: string;
89
+ Message?: string | undefined;
90
90
  constructor(
91
91
  opts: __ExceptionOptionType<ThrottlingException, __BaseException>
92
92
  );
@@ -94,7 +94,7 @@ export declare class ThrottlingException extends __BaseException {
94
94
  export declare class ValidationException extends __BaseException {
95
95
  readonly name: "ValidationException";
96
96
  readonly $fault: "client";
97
- Message?: string;
97
+ Message?: string | undefined;
98
98
  constructor(
99
99
  opts: __ExceptionOptionType<ValidationException, __BaseException>
100
100
  );
@@ -103,36 +103,36 @@ export interface AssociateResourceToProfileRequest {
103
103
  ProfileId: string | undefined;
104
104
  ResourceArn: string | undefined;
105
105
  Name: string | undefined;
106
- ResourceProperties?: string;
106
+ ResourceProperties?: string | undefined;
107
107
  }
108
108
  export interface ProfileResourceAssociation {
109
- Id?: string;
110
- Name?: string;
111
- OwnerId?: string;
112
- ProfileId?: string;
113
- ResourceArn?: string;
114
- ResourceType?: string;
115
- ResourceProperties?: string;
116
- Status?: ProfileStatus;
117
- StatusMessage?: string;
118
- CreationTime?: Date;
119
- ModificationTime?: Date;
109
+ Id?: string | undefined;
110
+ Name?: string | undefined;
111
+ OwnerId?: string | undefined;
112
+ ProfileId?: string | undefined;
113
+ ResourceArn?: string | undefined;
114
+ ResourceType?: string | undefined;
115
+ ResourceProperties?: string | undefined;
116
+ Status?: ProfileStatus | undefined;
117
+ StatusMessage?: string | undefined;
118
+ CreationTime?: Date | undefined;
119
+ ModificationTime?: Date | undefined;
120
120
  }
121
121
  export interface AssociateResourceToProfileResponse {
122
- ProfileResourceAssociation?: ProfileResourceAssociation;
122
+ ProfileResourceAssociation?: ProfileResourceAssociation | undefined;
123
123
  }
124
124
  export declare class InternalServiceErrorException extends __BaseException {
125
125
  readonly name: "InternalServiceErrorException";
126
126
  readonly $fault: "client";
127
- Message?: string;
127
+ Message?: string | undefined;
128
128
  constructor(
129
129
  opts: __ExceptionOptionType<InternalServiceErrorException, __BaseException>
130
130
  );
131
131
  }
132
132
  export interface CreateProfileRequest {
133
133
  Name: string | undefined;
134
- ClientToken?: string;
135
- Tags?: Tag[];
134
+ ClientToken?: string | undefined;
135
+ Tags?: Tag[] | undefined;
136
136
  }
137
137
  export declare const ShareStatus: {
138
138
  readonly NOT_SHARED: "NOT_SHARED";
@@ -141,99 +141,99 @@ export declare const ShareStatus: {
141
141
  };
142
142
  export type ShareStatus = (typeof ShareStatus)[keyof typeof ShareStatus];
143
143
  export interface Profile {
144
- Id?: string;
145
- Arn?: string;
146
- Name?: string;
147
- OwnerId?: string;
148
- Status?: ProfileStatus;
149
- StatusMessage?: string;
150
- ShareStatus?: ShareStatus;
151
- CreationTime?: Date;
152
- ModificationTime?: Date;
153
- ClientToken?: string;
144
+ Id?: string | undefined;
145
+ Arn?: string | undefined;
146
+ Name?: string | undefined;
147
+ OwnerId?: string | undefined;
148
+ Status?: ProfileStatus | undefined;
149
+ StatusMessage?: string | undefined;
150
+ ShareStatus?: ShareStatus | undefined;
151
+ CreationTime?: Date | undefined;
152
+ ModificationTime?: Date | undefined;
153
+ ClientToken?: string | undefined;
154
154
  }
155
155
  export interface CreateProfileResponse {
156
- Profile?: Profile;
156
+ Profile?: Profile | undefined;
157
157
  }
158
158
  export interface DeleteProfileRequest {
159
159
  ProfileId: string | undefined;
160
160
  }
161
161
  export interface DeleteProfileResponse {
162
- Profile?: Profile;
162
+ Profile?: Profile | undefined;
163
163
  }
164
164
  export interface DisassociateProfileRequest {
165
165
  ProfileId: string | undefined;
166
166
  ResourceId: string | undefined;
167
167
  }
168
168
  export interface DisassociateProfileResponse {
169
- ProfileAssociation?: ProfileAssociation;
169
+ ProfileAssociation?: ProfileAssociation | undefined;
170
170
  }
171
171
  export interface DisassociateResourceFromProfileRequest {
172
172
  ProfileId: string | undefined;
173
173
  ResourceArn: string | undefined;
174
174
  }
175
175
  export interface DisassociateResourceFromProfileResponse {
176
- ProfileResourceAssociation?: ProfileResourceAssociation;
176
+ ProfileResourceAssociation?: ProfileResourceAssociation | undefined;
177
177
  }
178
178
  export interface GetProfileRequest {
179
179
  ProfileId: string | undefined;
180
180
  }
181
181
  export interface GetProfileResponse {
182
- Profile?: Profile;
182
+ Profile?: Profile | undefined;
183
183
  }
184
184
  export interface GetProfileAssociationRequest {
185
185
  ProfileAssociationId: string | undefined;
186
186
  }
187
187
  export interface GetProfileAssociationResponse {
188
- ProfileAssociation?: ProfileAssociation;
188
+ ProfileAssociation?: ProfileAssociation | undefined;
189
189
  }
190
190
  export interface GetProfileResourceAssociationRequest {
191
191
  ProfileResourceAssociationId: string | undefined;
192
192
  }
193
193
  export interface GetProfileResourceAssociationResponse {
194
- ProfileResourceAssociation?: ProfileResourceAssociation;
194
+ ProfileResourceAssociation?: ProfileResourceAssociation | undefined;
195
195
  }
196
196
  export declare class InvalidNextTokenException extends __BaseException {
197
197
  readonly name: "InvalidNextTokenException";
198
198
  readonly $fault: "client";
199
- Message?: string;
199
+ Message?: string | undefined;
200
200
  constructor(
201
201
  opts: __ExceptionOptionType<InvalidNextTokenException, __BaseException>
202
202
  );
203
203
  }
204
204
  export interface ListProfileAssociationsRequest {
205
- ResourceId?: string;
206
- ProfileId?: string;
207
- MaxResults?: number;
208
- NextToken?: string;
205
+ ResourceId?: string | undefined;
206
+ ProfileId?: string | undefined;
207
+ MaxResults?: number | undefined;
208
+ NextToken?: string | undefined;
209
209
  }
210
210
  export interface ListProfileAssociationsResponse {
211
- ProfileAssociations?: ProfileAssociation[];
212
- NextToken?: string;
211
+ ProfileAssociations?: ProfileAssociation[] | undefined;
212
+ NextToken?: string | undefined;
213
213
  }
214
214
  export interface ListProfileResourceAssociationsRequest {
215
215
  ProfileId: string | undefined;
216
- ResourceType?: string;
217
- MaxResults?: number;
218
- NextToken?: string;
216
+ ResourceType?: string | undefined;
217
+ MaxResults?: number | undefined;
218
+ NextToken?: string | undefined;
219
219
  }
220
220
  export interface ListProfileResourceAssociationsResponse {
221
- ProfileResourceAssociations?: ProfileResourceAssociation[];
222
- NextToken?: string;
221
+ ProfileResourceAssociations?: ProfileResourceAssociation[] | undefined;
222
+ NextToken?: string | undefined;
223
223
  }
224
224
  export interface ListProfilesRequest {
225
- MaxResults?: number;
226
- NextToken?: string;
225
+ MaxResults?: number | undefined;
226
+ NextToken?: string | undefined;
227
227
  }
228
228
  export interface ProfileSummary {
229
- Id?: string;
230
- Arn?: string;
231
- Name?: string;
232
- ShareStatus?: ShareStatus;
229
+ Id?: string | undefined;
230
+ Arn?: string | undefined;
231
+ Name?: string | undefined;
232
+ ShareStatus?: ShareStatus | undefined;
233
233
  }
234
234
  export interface ListProfilesResponse {
235
- ProfileSummaries?: ProfileSummary[];
236
- NextToken?: string;
235
+ ProfileSummaries?: ProfileSummary[] | undefined;
236
+ NextToken?: string | undefined;
237
237
  }
238
238
  export interface ListTagsForResourceRequest {
239
239
  ResourceArn: string | undefined;
@@ -253,9 +253,9 @@ export interface UntagResourceRequest {
253
253
  export interface UntagResourceResponse {}
254
254
  export interface UpdateProfileResourceAssociationRequest {
255
255
  ProfileResourceAssociationId: string | undefined;
256
- Name?: string;
257
- ResourceProperties?: string;
256
+ Name?: string | undefined;
257
+ ResourceProperties?: string | undefined;
258
258
  }
259
259
  export interface UpdateProfileResourceAssociationResponse {
260
- ProfileResourceAssociation?: ProfileResourceAssociation;
260
+ ProfileResourceAssociation?: ProfileResourceAssociation | undefined;
261
261
  }
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@aws-sdk/client-route53profiles",
3
3
  "description": "AWS SDK for JavaScript Route53profiles Client for Node.js, Browser and React Native",
4
- "version": "3.686.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": "tsc -p tsconfig.cjs.json",
@@ -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.686.0",
24
- "@aws-sdk/client-sts": "3.686.0",
25
- "@aws-sdk/core": "3.686.0",
26
- "@aws-sdk/credential-provider-node": "3.686.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.686.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.686.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",