@aws-sdk/client-vpc-lattice 3.687.0 → 3.692.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.
@@ -15,10 +15,10 @@ export declare class ConflictException extends __BaseException {
15
15
  constructor(opts: __ExceptionOptionType<ConflictException, __BaseException>);
16
16
  }
17
17
  export interface CreateAccessLogSubscriptionRequest {
18
- clientToken?: string;
18
+ clientToken?: string | undefined;
19
19
  resourceIdentifier: string | undefined;
20
20
  destinationArn: string | undefined;
21
- tags?: Record<string, string>;
21
+ tags?: Record<string, string> | undefined;
22
22
  }
23
23
  export interface CreateAccessLogSubscriptionResponse {
24
24
  id: string | undefined;
@@ -31,7 +31,7 @@ export declare class InternalServerException extends __BaseException {
31
31
  readonly name: "InternalServerException";
32
32
  readonly $fault: "server";
33
33
  $retryable: {};
34
- retryAfterSeconds?: number;
34
+ retryAfterSeconds?: number | undefined;
35
35
  constructor(
36
36
  opts: __ExceptionOptionType<InternalServerException, __BaseException>
37
37
  );
@@ -51,9 +51,9 @@ export declare class ThrottlingException extends __BaseException {
51
51
  $retryable: {
52
52
  throttling: boolean;
53
53
  };
54
- serviceCode?: string;
55
- quotaCode?: string;
56
- retryAfterSeconds?: number;
54
+ serviceCode?: string | undefined;
55
+ quotaCode?: string | undefined;
56
+ retryAfterSeconds?: number | undefined;
57
57
  constructor(
58
58
  opts: __ExceptionOptionType<ThrottlingException, __BaseException>
59
59
  );
@@ -74,7 +74,7 @@ export declare class ValidationException extends __BaseException {
74
74
  readonly name: "ValidationException";
75
75
  readonly $fault: "client";
76
76
  reason: ValidationExceptionReason | undefined;
77
- fieldList?: ValidationExceptionField[];
77
+ fieldList?: ValidationExceptionField[] | undefined;
78
78
  constructor(
79
79
  opts: __ExceptionOptionType<ValidationException, __BaseException>
80
80
  );
@@ -97,8 +97,8 @@ export interface GetAccessLogSubscriptionResponse {
97
97
  }
98
98
  export interface ListAccessLogSubscriptionsRequest {
99
99
  resourceIdentifier: string | undefined;
100
- maxResults?: number;
101
- nextToken?: string;
100
+ maxResults?: number | undefined;
101
+ nextToken?: string | undefined;
102
102
  }
103
103
  export interface AccessLogSubscriptionSummary {
104
104
  id: string | undefined;
@@ -111,7 +111,7 @@ export interface AccessLogSubscriptionSummary {
111
111
  }
112
112
  export interface ListAccessLogSubscriptionsResponse {
113
113
  items: AccessLogSubscriptionSummary[] | undefined;
114
- nextToken?: string;
114
+ nextToken?: string | undefined;
115
115
  }
116
116
  export interface UpdateAccessLogSubscriptionRequest {
117
117
  accessLogSubscriptionIdentifier: string | undefined;
@@ -140,7 +140,7 @@ export interface FixedResponseAction {
140
140
  }
141
141
  export interface WeightedTargetGroup {
142
142
  targetGroupIdentifier: string | undefined;
143
- weight?: number;
143
+ weight?: number | undefined;
144
144
  }
145
145
  export interface ForwardAction {
146
146
  targetGroups: WeightedTargetGroup[] | undefined;
@@ -213,7 +213,7 @@ export declare namespace HeaderMatchType {
213
213
  export interface HeaderMatch {
214
214
  name: string | undefined;
215
215
  match: HeaderMatchType | undefined;
216
- caseSensitive?: boolean;
216
+ caseSensitive?: boolean | undefined;
217
217
  }
218
218
  export type PathMatchType =
219
219
  | PathMatchType.ExactMember
@@ -244,12 +244,12 @@ export declare namespace PathMatchType {
244
244
  }
245
245
  export interface PathMatch {
246
246
  match: PathMatchType | undefined;
247
- caseSensitive?: boolean;
247
+ caseSensitive?: boolean | undefined;
248
248
  }
249
249
  export interface HttpMatch {
250
- method?: string;
251
- pathMatch?: PathMatch;
252
- headerMatches?: HeaderMatch[];
250
+ method?: string | undefined;
251
+ pathMatch?: PathMatch | undefined;
252
+ headerMatches?: HeaderMatch[] | undefined;
253
253
  }
254
254
  export type RuleMatch = RuleMatch.HttpMatchMember | RuleMatch.$UnknownMember;
255
255
  export declare namespace RuleMatch {
@@ -269,9 +269,9 @@ export declare namespace RuleMatch {
269
269
  }
270
270
  export interface RuleUpdate {
271
271
  ruleIdentifier: string | undefined;
272
- match?: RuleMatch;
273
- priority?: number;
274
- action?: RuleAction;
272
+ match?: RuleMatch | undefined;
273
+ priority?: number | undefined;
274
+ action?: RuleAction | undefined;
275
275
  }
276
276
  export interface BatchUpdateRuleRequest {
277
277
  serviceIdentifier: string | undefined;
@@ -279,22 +279,22 @@ export interface BatchUpdateRuleRequest {
279
279
  rules: RuleUpdate[] | undefined;
280
280
  }
281
281
  export interface RuleUpdateSuccess {
282
- arn?: string;
283
- id?: string;
284
- name?: string;
285
- isDefault?: boolean;
286
- match?: RuleMatch;
287
- priority?: number;
288
- action?: RuleAction;
282
+ arn?: string | undefined;
283
+ id?: string | undefined;
284
+ name?: string | undefined;
285
+ isDefault?: boolean | undefined;
286
+ match?: RuleMatch | undefined;
287
+ priority?: number | undefined;
288
+ action?: RuleAction | undefined;
289
289
  }
290
290
  export interface RuleUpdateFailure {
291
- ruleIdentifier?: string;
292
- failureCode?: string;
293
- failureMessage?: string;
291
+ ruleIdentifier?: string | undefined;
292
+ failureCode?: string | undefined;
293
+ failureMessage?: string | undefined;
294
294
  }
295
295
  export interface BatchUpdateRuleResponse {
296
- successful?: RuleUpdateSuccess[];
297
- unsuccessful?: RuleUpdateFailure[];
296
+ successful?: RuleUpdateSuccess[] | undefined;
297
+ unsuccessful?: RuleUpdateFailure[] | undefined;
298
298
  }
299
299
  export declare const ListenerProtocol: {
300
300
  readonly HTTP: "HTTP";
@@ -307,25 +307,25 @@ export interface CreateListenerRequest {
307
307
  serviceIdentifier: string | undefined;
308
308
  name: string | undefined;
309
309
  protocol: ListenerProtocol | undefined;
310
- port?: number;
310
+ port?: number | undefined;
311
311
  defaultAction: RuleAction | undefined;
312
- clientToken?: string;
313
- tags?: Record<string, string>;
312
+ clientToken?: string | undefined;
313
+ tags?: Record<string, string> | undefined;
314
314
  }
315
315
  export interface CreateListenerResponse {
316
- arn?: string;
317
- id?: string;
318
- name?: string;
319
- protocol?: ListenerProtocol;
320
- port?: number;
321
- serviceArn?: string;
322
- serviceId?: string;
323
- defaultAction?: RuleAction;
316
+ arn?: string | undefined;
317
+ id?: string | undefined;
318
+ name?: string | undefined;
319
+ protocol?: ListenerProtocol | undefined;
320
+ port?: number | undefined;
321
+ serviceArn?: string | undefined;
322
+ serviceId?: string | undefined;
323
+ defaultAction?: RuleAction | undefined;
324
324
  }
325
325
  export declare class ServiceQuotaExceededException extends __BaseException {
326
326
  readonly name: "ServiceQuotaExceededException";
327
327
  readonly $fault: "client";
328
- resourceId?: string;
328
+ resourceId?: string | undefined;
329
329
  resourceType: string | undefined;
330
330
  serviceCode: string | undefined;
331
331
  quotaCode: string | undefined;
@@ -340,28 +340,28 @@ export interface CreateRuleRequest {
340
340
  match: RuleMatch | undefined;
341
341
  priority: number | undefined;
342
342
  action: RuleAction | undefined;
343
- clientToken?: string;
344
- tags?: Record<string, string>;
343
+ clientToken?: string | undefined;
344
+ tags?: Record<string, string> | undefined;
345
345
  }
346
346
  export interface CreateRuleResponse {
347
- arn?: string;
348
- id?: string;
349
- name?: string;
350
- match?: RuleMatch;
351
- priority?: number;
352
- action?: RuleAction;
347
+ arn?: string | undefined;
348
+ id?: string | undefined;
349
+ name?: string | undefined;
350
+ match?: RuleMatch | undefined;
351
+ priority?: number | undefined;
352
+ action?: RuleAction | undefined;
353
353
  }
354
354
  export interface CreateServiceRequest {
355
- clientToken?: string;
355
+ clientToken?: string | undefined;
356
356
  name: string | undefined;
357
- tags?: Record<string, string>;
358
- customDomainName?: string;
359
- certificateArn?: string;
360
- authType?: AuthType;
357
+ tags?: Record<string, string> | undefined;
358
+ customDomainName?: string | undefined;
359
+ certificateArn?: string | undefined;
360
+ authType?: AuthType | undefined;
361
361
  }
362
362
  export interface DnsEntry {
363
- domainName?: string;
364
- hostedZoneId?: string;
363
+ domainName?: string | undefined;
364
+ hostedZoneId?: string | undefined;
365
365
  }
366
366
  export declare const ServiceStatus: {
367
367
  readonly ACTIVE: "ACTIVE";
@@ -372,32 +372,32 @@ export declare const ServiceStatus: {
372
372
  };
373
373
  export type ServiceStatus = (typeof ServiceStatus)[keyof typeof ServiceStatus];
374
374
  export interface CreateServiceResponse {
375
- id?: string;
376
- arn?: string;
377
- name?: string;
378
- customDomainName?: string;
379
- certificateArn?: string;
380
- status?: ServiceStatus;
381
- authType?: AuthType;
382
- dnsEntry?: DnsEntry;
375
+ id?: string | undefined;
376
+ arn?: string | undefined;
377
+ name?: string | undefined;
378
+ customDomainName?: string | undefined;
379
+ certificateArn?: string | undefined;
380
+ status?: ServiceStatus | undefined;
381
+ authType?: AuthType | undefined;
382
+ dnsEntry?: DnsEntry | undefined;
383
383
  }
384
384
  export interface CreateServiceNetworkRequest {
385
- clientToken?: string;
385
+ clientToken?: string | undefined;
386
386
  name: string | undefined;
387
- authType?: AuthType;
388
- tags?: Record<string, string>;
387
+ authType?: AuthType | undefined;
388
+ tags?: Record<string, string> | undefined;
389
389
  }
390
390
  export interface CreateServiceNetworkResponse {
391
- id?: string;
392
- name?: string;
393
- arn?: string;
394
- authType?: AuthType;
391
+ id?: string | undefined;
392
+ name?: string | undefined;
393
+ arn?: string | undefined;
394
+ authType?: AuthType | undefined;
395
395
  }
396
396
  export interface CreateServiceNetworkServiceAssociationRequest {
397
- clientToken?: string;
397
+ clientToken?: string | undefined;
398
398
  serviceIdentifier: string | undefined;
399
399
  serviceNetworkIdentifier: string | undefined;
400
- tags?: Record<string, string>;
400
+ tags?: Record<string, string> | undefined;
401
401
  }
402
402
  export declare const ServiceNetworkServiceAssociationStatus: {
403
403
  readonly ACTIVE: "ACTIVE";
@@ -409,19 +409,19 @@ export declare const ServiceNetworkServiceAssociationStatus: {
409
409
  export type ServiceNetworkServiceAssociationStatus =
410
410
  (typeof ServiceNetworkServiceAssociationStatus)[keyof typeof ServiceNetworkServiceAssociationStatus];
411
411
  export interface CreateServiceNetworkServiceAssociationResponse {
412
- id?: string;
413
- status?: ServiceNetworkServiceAssociationStatus;
414
- arn?: string;
415
- createdBy?: string;
416
- customDomainName?: string;
417
- dnsEntry?: DnsEntry;
412
+ id?: string | undefined;
413
+ status?: ServiceNetworkServiceAssociationStatus | undefined;
414
+ arn?: string | undefined;
415
+ createdBy?: string | undefined;
416
+ customDomainName?: string | undefined;
417
+ dnsEntry?: DnsEntry | undefined;
418
418
  }
419
419
  export interface CreateServiceNetworkVpcAssociationRequest {
420
- clientToken?: string;
420
+ clientToken?: string | undefined;
421
421
  serviceNetworkIdentifier: string | undefined;
422
422
  vpcIdentifier: string | undefined;
423
- securityGroupIds?: string[];
424
- tags?: Record<string, string>;
423
+ securityGroupIds?: string[] | undefined;
424
+ tags?: Record<string, string> | undefined;
425
425
  }
426
426
  export declare const ServiceNetworkVpcAssociationStatus: {
427
427
  readonly ACTIVE: "ACTIVE";
@@ -435,11 +435,11 @@ export declare const ServiceNetworkVpcAssociationStatus: {
435
435
  export type ServiceNetworkVpcAssociationStatus =
436
436
  (typeof ServiceNetworkVpcAssociationStatus)[keyof typeof ServiceNetworkVpcAssociationStatus];
437
437
  export interface CreateServiceNetworkVpcAssociationResponse {
438
- id?: string;
439
- status?: ServiceNetworkVpcAssociationStatus;
440
- arn?: string;
441
- createdBy?: string;
442
- securityGroupIds?: string[];
438
+ id?: string | undefined;
439
+ status?: ServiceNetworkVpcAssociationStatus | undefined;
440
+ arn?: string | undefined;
441
+ createdBy?: string | undefined;
442
+ securityGroupIds?: string[] | undefined;
443
443
  }
444
444
  export type Matcher = Matcher.HttpCodeMember | Matcher.$UnknownMember;
445
445
  export declare namespace Matcher {
@@ -471,16 +471,16 @@ export declare const HealthCheckProtocolVersion: {
471
471
  export type HealthCheckProtocolVersion =
472
472
  (typeof HealthCheckProtocolVersion)[keyof typeof HealthCheckProtocolVersion];
473
473
  export interface HealthCheckConfig {
474
- enabled?: boolean;
475
- protocol?: TargetGroupProtocol;
476
- protocolVersion?: HealthCheckProtocolVersion;
477
- port?: number;
478
- path?: string;
479
- healthCheckIntervalSeconds?: number;
480
- healthCheckTimeoutSeconds?: number;
481
- healthyThresholdCount?: number;
482
- unhealthyThresholdCount?: number;
483
- matcher?: Matcher;
474
+ enabled?: boolean | undefined;
475
+ protocol?: TargetGroupProtocol | undefined;
476
+ protocolVersion?: HealthCheckProtocolVersion | undefined;
477
+ port?: number | undefined;
478
+ path?: string | undefined;
479
+ healthCheckIntervalSeconds?: number | undefined;
480
+ healthCheckTimeoutSeconds?: number | undefined;
481
+ healthyThresholdCount?: number | undefined;
482
+ unhealthyThresholdCount?: number | undefined;
483
+ matcher?: Matcher | undefined;
484
484
  }
485
485
  export declare const IpAddressType: {
486
486
  readonly IPV4: "IPV4";
@@ -501,13 +501,13 @@ export declare const TargetGroupProtocolVersion: {
501
501
  export type TargetGroupProtocolVersion =
502
502
  (typeof TargetGroupProtocolVersion)[keyof typeof TargetGroupProtocolVersion];
503
503
  export interface TargetGroupConfig {
504
- port?: number;
505
- protocol?: TargetGroupProtocol;
506
- protocolVersion?: TargetGroupProtocolVersion;
507
- ipAddressType?: IpAddressType;
508
- vpcIdentifier?: string;
509
- healthCheck?: HealthCheckConfig;
510
- lambdaEventStructureVersion?: LambdaEventStructureVersion;
504
+ port?: number | undefined;
505
+ protocol?: TargetGroupProtocol | undefined;
506
+ protocolVersion?: TargetGroupProtocolVersion | undefined;
507
+ ipAddressType?: IpAddressType | undefined;
508
+ vpcIdentifier?: string | undefined;
509
+ healthCheck?: HealthCheckConfig | undefined;
510
+ lambdaEventStructureVersion?: LambdaEventStructureVersion | undefined;
511
511
  }
512
512
  export declare const TargetGroupType: {
513
513
  readonly ALB: "ALB";
@@ -520,9 +520,9 @@ export type TargetGroupType =
520
520
  export interface CreateTargetGroupRequest {
521
521
  name: string | undefined;
522
522
  type: TargetGroupType | undefined;
523
- config?: TargetGroupConfig;
524
- clientToken?: string;
525
- tags?: Record<string, string>;
523
+ config?: TargetGroupConfig | undefined;
524
+ clientToken?: string | undefined;
525
+ tags?: Record<string, string> | undefined;
526
526
  }
527
527
  export declare const TargetGroupStatus: {
528
528
  readonly ACTIVE: "ACTIVE";
@@ -534,12 +534,12 @@ export declare const TargetGroupStatus: {
534
534
  export type TargetGroupStatus =
535
535
  (typeof TargetGroupStatus)[keyof typeof TargetGroupStatus];
536
536
  export interface CreateTargetGroupResponse {
537
- id?: string;
538
- arn?: string;
539
- name?: string;
540
- type?: TargetGroupType;
541
- config?: TargetGroupConfig;
542
- status?: TargetGroupStatus;
537
+ id?: string | undefined;
538
+ arn?: string | undefined;
539
+ name?: string | undefined;
540
+ type?: TargetGroupType | undefined;
541
+ config?: TargetGroupConfig | undefined;
542
+ status?: TargetGroupStatus | undefined;
543
543
  }
544
544
  export interface DeleteAuthPolicyRequest {
545
545
  resourceIdentifier: string | undefined;
@@ -564,10 +564,10 @@ export interface DeleteServiceRequest {
564
564
  serviceIdentifier: string | undefined;
565
565
  }
566
566
  export interface DeleteServiceResponse {
567
- id?: string;
568
- arn?: string;
569
- name?: string;
570
- status?: ServiceStatus;
567
+ id?: string | undefined;
568
+ arn?: string | undefined;
569
+ name?: string | undefined;
570
+ status?: ServiceStatus | undefined;
571
571
  }
572
572
  export interface DeleteServiceNetworkRequest {
573
573
  serviceNetworkIdentifier: string | undefined;
@@ -577,74 +577,74 @@ export interface DeleteServiceNetworkServiceAssociationRequest {
577
577
  serviceNetworkServiceAssociationIdentifier: string | undefined;
578
578
  }
579
579
  export interface DeleteServiceNetworkServiceAssociationResponse {
580
- id?: string;
581
- status?: ServiceNetworkServiceAssociationStatus;
582
- arn?: string;
580
+ id?: string | undefined;
581
+ status?: ServiceNetworkServiceAssociationStatus | undefined;
582
+ arn?: string | undefined;
583
583
  }
584
584
  export interface DeleteServiceNetworkVpcAssociationRequest {
585
585
  serviceNetworkVpcAssociationIdentifier: string | undefined;
586
586
  }
587
587
  export interface DeleteServiceNetworkVpcAssociationResponse {
588
- id?: string;
589
- status?: ServiceNetworkVpcAssociationStatus;
590
- arn?: string;
588
+ id?: string | undefined;
589
+ status?: ServiceNetworkVpcAssociationStatus | undefined;
590
+ arn?: string | undefined;
591
591
  }
592
592
  export interface DeleteTargetGroupRequest {
593
593
  targetGroupIdentifier: string | undefined;
594
594
  }
595
595
  export interface DeleteTargetGroupResponse {
596
- id?: string;
597
- arn?: string;
598
- status?: TargetGroupStatus;
596
+ id?: string | undefined;
597
+ arn?: string | undefined;
598
+ status?: TargetGroupStatus | undefined;
599
599
  }
600
600
  export interface Target {
601
601
  id: string | undefined;
602
- port?: number;
602
+ port?: number | undefined;
603
603
  }
604
604
  export interface DeregisterTargetsRequest {
605
605
  targetGroupIdentifier: string | undefined;
606
606
  targets: Target[] | undefined;
607
607
  }
608
608
  export interface TargetFailure {
609
- id?: string;
610
- port?: number;
611
- failureCode?: string;
612
- failureMessage?: string;
609
+ id?: string | undefined;
610
+ port?: number | undefined;
611
+ failureCode?: string | undefined;
612
+ failureMessage?: string | undefined;
613
613
  }
614
614
  export interface DeregisterTargetsResponse {
615
- successful?: Target[];
616
- unsuccessful?: TargetFailure[];
615
+ successful?: Target[] | undefined;
616
+ unsuccessful?: TargetFailure[] | undefined;
617
617
  }
618
618
  export interface GetAuthPolicyRequest {
619
619
  resourceIdentifier: string | undefined;
620
620
  }
621
621
  export interface GetAuthPolicyResponse {
622
- policy?: string;
623
- state?: AuthPolicyState;
624
- createdAt?: Date;
625
- lastUpdatedAt?: Date;
622
+ policy?: string | undefined;
623
+ state?: AuthPolicyState | undefined;
624
+ createdAt?: Date | undefined;
625
+ lastUpdatedAt?: Date | undefined;
626
626
  }
627
627
  export interface GetListenerRequest {
628
628
  serviceIdentifier: string | undefined;
629
629
  listenerIdentifier: string | undefined;
630
630
  }
631
631
  export interface GetListenerResponse {
632
- arn?: string;
633
- id?: string;
634
- name?: string;
635
- protocol?: ListenerProtocol;
636
- port?: number;
637
- serviceArn?: string;
638
- serviceId?: string;
639
- defaultAction?: RuleAction;
640
- createdAt?: Date;
641
- lastUpdatedAt?: Date;
632
+ arn?: string | undefined;
633
+ id?: string | undefined;
634
+ name?: string | undefined;
635
+ protocol?: ListenerProtocol | undefined;
636
+ port?: number | undefined;
637
+ serviceArn?: string | undefined;
638
+ serviceId?: string | undefined;
639
+ defaultAction?: RuleAction | undefined;
640
+ createdAt?: Date | undefined;
641
+ lastUpdatedAt?: Date | undefined;
642
642
  }
643
643
  export interface GetResourcePolicyRequest {
644
644
  resourceArn: string | undefined;
645
645
  }
646
646
  export interface GetResourcePolicyResponse {
647
- policy?: string;
647
+ policy?: string | undefined;
648
648
  }
649
649
  export interface GetRuleRequest {
650
650
  serviceIdentifier: string | undefined;
@@ -652,117 +652,117 @@ export interface GetRuleRequest {
652
652
  ruleIdentifier: string | undefined;
653
653
  }
654
654
  export interface GetRuleResponse {
655
- arn?: string;
656
- id?: string;
657
- name?: string;
658
- isDefault?: boolean;
659
- match?: RuleMatch;
660
- priority?: number;
661
- action?: RuleAction;
662
- createdAt?: Date;
663
- lastUpdatedAt?: Date;
655
+ arn?: string | undefined;
656
+ id?: string | undefined;
657
+ name?: string | undefined;
658
+ isDefault?: boolean | undefined;
659
+ match?: RuleMatch | undefined;
660
+ priority?: number | undefined;
661
+ action?: RuleAction | undefined;
662
+ createdAt?: Date | undefined;
663
+ lastUpdatedAt?: Date | undefined;
664
664
  }
665
665
  export interface GetServiceRequest {
666
666
  serviceIdentifier: string | undefined;
667
667
  }
668
668
  export interface GetServiceResponse {
669
- id?: string;
670
- name?: string;
671
- arn?: string;
672
- createdAt?: Date;
673
- lastUpdatedAt?: Date;
674
- dnsEntry?: DnsEntry;
675
- customDomainName?: string;
676
- certificateArn?: string;
677
- status?: ServiceStatus;
678
- authType?: AuthType;
679
- failureCode?: string;
680
- failureMessage?: string;
669
+ id?: string | undefined;
670
+ name?: string | undefined;
671
+ arn?: string | undefined;
672
+ createdAt?: Date | undefined;
673
+ lastUpdatedAt?: Date | undefined;
674
+ dnsEntry?: DnsEntry | undefined;
675
+ customDomainName?: string | undefined;
676
+ certificateArn?: string | undefined;
677
+ status?: ServiceStatus | undefined;
678
+ authType?: AuthType | undefined;
679
+ failureCode?: string | undefined;
680
+ failureMessage?: string | undefined;
681
681
  }
682
682
  export interface GetServiceNetworkRequest {
683
683
  serviceNetworkIdentifier: string | undefined;
684
684
  }
685
685
  export interface GetServiceNetworkResponse {
686
- id?: string;
687
- name?: string;
688
- createdAt?: Date;
689
- lastUpdatedAt?: Date;
690
- arn?: string;
691
- authType?: AuthType;
692
- numberOfAssociatedVPCs?: number;
693
- numberOfAssociatedServices?: number;
686
+ id?: string | undefined;
687
+ name?: string | undefined;
688
+ createdAt?: Date | undefined;
689
+ lastUpdatedAt?: Date | undefined;
690
+ arn?: string | undefined;
691
+ authType?: AuthType | undefined;
692
+ numberOfAssociatedVPCs?: number | undefined;
693
+ numberOfAssociatedServices?: number | undefined;
694
694
  }
695
695
  export interface GetServiceNetworkServiceAssociationRequest {
696
696
  serviceNetworkServiceAssociationIdentifier: string | undefined;
697
697
  }
698
698
  export interface GetServiceNetworkServiceAssociationResponse {
699
- id?: string;
700
- status?: ServiceNetworkServiceAssociationStatus;
701
- arn?: string;
702
- createdBy?: string;
703
- createdAt?: Date;
704
- serviceId?: string;
705
- serviceName?: string;
706
- serviceArn?: string;
707
- serviceNetworkId?: string;
708
- serviceNetworkName?: string;
709
- serviceNetworkArn?: string;
710
- dnsEntry?: DnsEntry;
711
- customDomainName?: string;
712
- failureMessage?: string;
713
- failureCode?: string;
699
+ id?: string | undefined;
700
+ status?: ServiceNetworkServiceAssociationStatus | undefined;
701
+ arn?: string | undefined;
702
+ createdBy?: string | undefined;
703
+ createdAt?: Date | undefined;
704
+ serviceId?: string | undefined;
705
+ serviceName?: string | undefined;
706
+ serviceArn?: string | undefined;
707
+ serviceNetworkId?: string | undefined;
708
+ serviceNetworkName?: string | undefined;
709
+ serviceNetworkArn?: string | undefined;
710
+ dnsEntry?: DnsEntry | undefined;
711
+ customDomainName?: string | undefined;
712
+ failureMessage?: string | undefined;
713
+ failureCode?: string | undefined;
714
714
  }
715
715
  export interface GetServiceNetworkVpcAssociationRequest {
716
716
  serviceNetworkVpcAssociationIdentifier: string | undefined;
717
717
  }
718
718
  export interface GetServiceNetworkVpcAssociationResponse {
719
- id?: string;
720
- status?: ServiceNetworkVpcAssociationStatus;
721
- arn?: string;
722
- createdBy?: string;
723
- createdAt?: Date;
724
- serviceNetworkId?: string;
725
- serviceNetworkName?: string;
726
- serviceNetworkArn?: string;
727
- vpcId?: string;
728
- securityGroupIds?: string[];
729
- failureMessage?: string;
730
- failureCode?: string;
731
- lastUpdatedAt?: Date;
719
+ id?: string | undefined;
720
+ status?: ServiceNetworkVpcAssociationStatus | undefined;
721
+ arn?: string | undefined;
722
+ createdBy?: string | undefined;
723
+ createdAt?: Date | undefined;
724
+ serviceNetworkId?: string | undefined;
725
+ serviceNetworkName?: string | undefined;
726
+ serviceNetworkArn?: string | undefined;
727
+ vpcId?: string | undefined;
728
+ securityGroupIds?: string[] | undefined;
729
+ failureMessage?: string | undefined;
730
+ failureCode?: string | undefined;
731
+ lastUpdatedAt?: Date | undefined;
732
732
  }
733
733
  export interface GetTargetGroupRequest {
734
734
  targetGroupIdentifier: string | undefined;
735
735
  }
736
736
  export interface GetTargetGroupResponse {
737
- id?: string;
738
- arn?: string;
739
- name?: string;
740
- type?: TargetGroupType;
741
- config?: TargetGroupConfig;
742
- createdAt?: Date;
743
- lastUpdatedAt?: Date;
744
- status?: TargetGroupStatus;
745
- serviceArns?: string[];
746
- failureMessage?: string;
747
- failureCode?: string;
737
+ id?: string | undefined;
738
+ arn?: string | undefined;
739
+ name?: string | undefined;
740
+ type?: TargetGroupType | undefined;
741
+ config?: TargetGroupConfig | undefined;
742
+ createdAt?: Date | undefined;
743
+ lastUpdatedAt?: Date | undefined;
744
+ status?: TargetGroupStatus | undefined;
745
+ serviceArns?: string[] | undefined;
746
+ failureMessage?: string | undefined;
747
+ failureCode?: string | undefined;
748
748
  }
749
749
  export interface ListListenersRequest {
750
750
  serviceIdentifier: string | undefined;
751
- maxResults?: number;
752
- nextToken?: string;
751
+ maxResults?: number | undefined;
752
+ nextToken?: string | undefined;
753
753
  }
754
754
  export interface ListenerSummary {
755
- arn?: string;
756
- id?: string;
757
- name?: string;
758
- protocol?: ListenerProtocol;
759
- port?: number;
760
- createdAt?: Date;
761
- lastUpdatedAt?: Date;
755
+ arn?: string | undefined;
756
+ id?: string | undefined;
757
+ name?: string | undefined;
758
+ protocol?: ListenerProtocol | undefined;
759
+ port?: number | undefined;
760
+ createdAt?: Date | undefined;
761
+ lastUpdatedAt?: Date | undefined;
762
762
  }
763
763
  export interface ListListenersResponse {
764
764
  items: ListenerSummary[] | undefined;
765
- nextToken?: string;
765
+ nextToken?: string | undefined;
766
766
  }
767
767
  export interface UpdateListenerRequest {
768
768
  serviceIdentifier: string | undefined;
@@ -770,152 +770,152 @@ export interface UpdateListenerRequest {
770
770
  defaultAction: RuleAction | undefined;
771
771
  }
772
772
  export interface UpdateListenerResponse {
773
- arn?: string;
774
- id?: string;
775
- name?: string;
776
- protocol?: ListenerProtocol;
777
- port?: number;
778
- serviceArn?: string;
779
- serviceId?: string;
780
- defaultAction?: RuleAction;
773
+ arn?: string | undefined;
774
+ id?: string | undefined;
775
+ name?: string | undefined;
776
+ protocol?: ListenerProtocol | undefined;
777
+ port?: number | undefined;
778
+ serviceArn?: string | undefined;
779
+ serviceId?: string | undefined;
780
+ defaultAction?: RuleAction | undefined;
781
781
  }
782
782
  export interface ListRulesRequest {
783
783
  serviceIdentifier: string | undefined;
784
784
  listenerIdentifier: string | undefined;
785
- maxResults?: number;
786
- nextToken?: string;
785
+ maxResults?: number | undefined;
786
+ nextToken?: string | undefined;
787
787
  }
788
788
  export interface RuleSummary {
789
- arn?: string;
790
- id?: string;
791
- name?: string;
792
- isDefault?: boolean;
793
- priority?: number;
794
- createdAt?: Date;
795
- lastUpdatedAt?: Date;
789
+ arn?: string | undefined;
790
+ id?: string | undefined;
791
+ name?: string | undefined;
792
+ isDefault?: boolean | undefined;
793
+ priority?: number | undefined;
794
+ createdAt?: Date | undefined;
795
+ lastUpdatedAt?: Date | undefined;
796
796
  }
797
797
  export interface ListRulesResponse {
798
798
  items: RuleSummary[] | undefined;
799
- nextToken?: string;
799
+ nextToken?: string | undefined;
800
800
  }
801
801
  export interface ListServiceNetworksRequest {
802
- maxResults?: number;
803
- nextToken?: string;
802
+ maxResults?: number | undefined;
803
+ nextToken?: string | undefined;
804
804
  }
805
805
  export interface ServiceNetworkSummary {
806
- id?: string;
807
- name?: string;
808
- arn?: string;
809
- createdAt?: Date;
810
- lastUpdatedAt?: Date;
811
- numberOfAssociatedVPCs?: number;
812
- numberOfAssociatedServices?: number;
806
+ id?: string | undefined;
807
+ name?: string | undefined;
808
+ arn?: string | undefined;
809
+ createdAt?: Date | undefined;
810
+ lastUpdatedAt?: Date | undefined;
811
+ numberOfAssociatedVPCs?: number | undefined;
812
+ numberOfAssociatedServices?: number | undefined;
813
813
  }
814
814
  export interface ListServiceNetworksResponse {
815
815
  items: ServiceNetworkSummary[] | undefined;
816
- nextToken?: string;
816
+ nextToken?: string | undefined;
817
817
  }
818
818
  export interface ListServiceNetworkServiceAssociationsRequest {
819
- serviceNetworkIdentifier?: string;
820
- serviceIdentifier?: string;
821
- maxResults?: number;
822
- nextToken?: string;
819
+ serviceNetworkIdentifier?: string | undefined;
820
+ serviceIdentifier?: string | undefined;
821
+ maxResults?: number | undefined;
822
+ nextToken?: string | undefined;
823
823
  }
824
824
  export interface ServiceNetworkServiceAssociationSummary {
825
- id?: string;
826
- status?: ServiceNetworkServiceAssociationStatus;
827
- arn?: string;
828
- createdBy?: string;
829
- createdAt?: Date;
830
- serviceId?: string;
831
- serviceName?: string;
832
- serviceArn?: string;
833
- serviceNetworkId?: string;
834
- serviceNetworkName?: string;
835
- serviceNetworkArn?: string;
836
- dnsEntry?: DnsEntry;
837
- customDomainName?: string;
825
+ id?: string | undefined;
826
+ status?: ServiceNetworkServiceAssociationStatus | undefined;
827
+ arn?: string | undefined;
828
+ createdBy?: string | undefined;
829
+ createdAt?: Date | undefined;
830
+ serviceId?: string | undefined;
831
+ serviceName?: string | undefined;
832
+ serviceArn?: string | undefined;
833
+ serviceNetworkId?: string | undefined;
834
+ serviceNetworkName?: string | undefined;
835
+ serviceNetworkArn?: string | undefined;
836
+ dnsEntry?: DnsEntry | undefined;
837
+ customDomainName?: string | undefined;
838
838
  }
839
839
  export interface ListServiceNetworkServiceAssociationsResponse {
840
840
  items: ServiceNetworkServiceAssociationSummary[] | undefined;
841
- nextToken?: string;
841
+ nextToken?: string | undefined;
842
842
  }
843
843
  export interface ListServiceNetworkVpcAssociationsRequest {
844
- serviceNetworkIdentifier?: string;
845
- vpcIdentifier?: string;
846
- maxResults?: number;
847
- nextToken?: string;
844
+ serviceNetworkIdentifier?: string | undefined;
845
+ vpcIdentifier?: string | undefined;
846
+ maxResults?: number | undefined;
847
+ nextToken?: string | undefined;
848
848
  }
849
849
  export interface ServiceNetworkVpcAssociationSummary {
850
- id?: string;
851
- arn?: string;
852
- status?: ServiceNetworkVpcAssociationStatus;
853
- createdBy?: string;
854
- createdAt?: Date;
855
- serviceNetworkId?: string;
856
- serviceNetworkName?: string;
857
- serviceNetworkArn?: string;
858
- vpcId?: string;
859
- lastUpdatedAt?: Date;
850
+ id?: string | undefined;
851
+ arn?: string | undefined;
852
+ status?: ServiceNetworkVpcAssociationStatus | undefined;
853
+ createdBy?: string | undefined;
854
+ createdAt?: Date | undefined;
855
+ serviceNetworkId?: string | undefined;
856
+ serviceNetworkName?: string | undefined;
857
+ serviceNetworkArn?: string | undefined;
858
+ vpcId?: string | undefined;
859
+ lastUpdatedAt?: Date | undefined;
860
860
  }
861
861
  export interface ListServiceNetworkVpcAssociationsResponse {
862
862
  items: ServiceNetworkVpcAssociationSummary[] | undefined;
863
- nextToken?: string;
863
+ nextToken?: string | undefined;
864
864
  }
865
865
  export interface ListServicesRequest {
866
- maxResults?: number;
867
- nextToken?: string;
866
+ maxResults?: number | undefined;
867
+ nextToken?: string | undefined;
868
868
  }
869
869
  export interface ServiceSummary {
870
- id?: string;
871
- name?: string;
872
- arn?: string;
873
- createdAt?: Date;
874
- lastUpdatedAt?: Date;
875
- dnsEntry?: DnsEntry;
876
- customDomainName?: string;
877
- status?: ServiceStatus;
870
+ id?: string | undefined;
871
+ name?: string | undefined;
872
+ arn?: string | undefined;
873
+ createdAt?: Date | undefined;
874
+ lastUpdatedAt?: Date | undefined;
875
+ dnsEntry?: DnsEntry | undefined;
876
+ customDomainName?: string | undefined;
877
+ status?: ServiceStatus | undefined;
878
878
  }
879
879
  export interface ListServicesResponse {
880
- items?: ServiceSummary[];
881
- nextToken?: string;
880
+ items?: ServiceSummary[] | undefined;
881
+ nextToken?: string | undefined;
882
882
  }
883
883
  export interface ListTagsForResourceRequest {
884
884
  resourceArn: string | undefined;
885
885
  }
886
886
  export interface ListTagsForResourceResponse {
887
- tags?: Record<string, string>;
887
+ tags?: Record<string, string> | undefined;
888
888
  }
889
889
  export interface ListTargetGroupsRequest {
890
- maxResults?: number;
891
- nextToken?: string;
892
- vpcIdentifier?: string;
893
- targetGroupType?: TargetGroupType;
890
+ maxResults?: number | undefined;
891
+ nextToken?: string | undefined;
892
+ vpcIdentifier?: string | undefined;
893
+ targetGroupType?: TargetGroupType | undefined;
894
894
  }
895
895
  export interface TargetGroupSummary {
896
- id?: string;
897
- arn?: string;
898
- name?: string;
899
- type?: TargetGroupType;
900
- createdAt?: Date;
901
- port?: number;
902
- protocol?: TargetGroupProtocol;
903
- ipAddressType?: IpAddressType;
904
- vpcIdentifier?: string;
905
- lastUpdatedAt?: Date;
906
- status?: TargetGroupStatus;
907
- serviceArns?: string[];
908
- lambdaEventStructureVersion?: LambdaEventStructureVersion;
896
+ id?: string | undefined;
897
+ arn?: string | undefined;
898
+ name?: string | undefined;
899
+ type?: TargetGroupType | undefined;
900
+ createdAt?: Date | undefined;
901
+ port?: number | undefined;
902
+ protocol?: TargetGroupProtocol | undefined;
903
+ ipAddressType?: IpAddressType | undefined;
904
+ vpcIdentifier?: string | undefined;
905
+ lastUpdatedAt?: Date | undefined;
906
+ status?: TargetGroupStatus | undefined;
907
+ serviceArns?: string[] | undefined;
908
+ lambdaEventStructureVersion?: LambdaEventStructureVersion | undefined;
909
909
  }
910
910
  export interface ListTargetGroupsResponse {
911
- items?: TargetGroupSummary[];
912
- nextToken?: string;
911
+ items?: TargetGroupSummary[] | undefined;
912
+ nextToken?: string | undefined;
913
913
  }
914
914
  export interface ListTargetsRequest {
915
915
  targetGroupIdentifier: string | undefined;
916
- maxResults?: number;
917
- nextToken?: string;
918
- targets?: Target[];
916
+ maxResults?: number | undefined;
917
+ nextToken?: string | undefined;
918
+ targets?: Target[] | undefined;
919
919
  }
920
920
  export declare const TargetStatus: {
921
921
  readonly DRAINING: "DRAINING";
@@ -927,22 +927,22 @@ export declare const TargetStatus: {
927
927
  };
928
928
  export type TargetStatus = (typeof TargetStatus)[keyof typeof TargetStatus];
929
929
  export interface TargetSummary {
930
- id?: string;
931
- port?: number;
932
- status?: TargetStatus;
933
- reasonCode?: string;
930
+ id?: string | undefined;
931
+ port?: number | undefined;
932
+ status?: TargetStatus | undefined;
933
+ reasonCode?: string | undefined;
934
934
  }
935
935
  export interface ListTargetsResponse {
936
936
  items: TargetSummary[] | undefined;
937
- nextToken?: string;
937
+ nextToken?: string | undefined;
938
938
  }
939
939
  export interface PutAuthPolicyRequest {
940
940
  resourceIdentifier: string | undefined;
941
941
  policy: string | undefined;
942
942
  }
943
943
  export interface PutAuthPolicyResponse {
944
- policy?: string;
945
- state?: AuthPolicyState;
944
+ policy?: string | undefined;
945
+ state?: AuthPolicyState | undefined;
946
946
  }
947
947
  export interface PutResourcePolicyRequest {
948
948
  resourceArn: string | undefined;
@@ -953,52 +953,52 @@ export interface UpdateRuleRequest {
953
953
  serviceIdentifier: string | undefined;
954
954
  listenerIdentifier: string | undefined;
955
955
  ruleIdentifier: string | undefined;
956
- match?: RuleMatch;
957
- priority?: number;
958
- action?: RuleAction;
956
+ match?: RuleMatch | undefined;
957
+ priority?: number | undefined;
958
+ action?: RuleAction | undefined;
959
959
  }
960
960
  export interface UpdateRuleResponse {
961
- arn?: string;
962
- id?: string;
963
- name?: string;
964
- isDefault?: boolean;
965
- match?: RuleMatch;
966
- priority?: number;
967
- action?: RuleAction;
961
+ arn?: string | undefined;
962
+ id?: string | undefined;
963
+ name?: string | undefined;
964
+ isDefault?: boolean | undefined;
965
+ match?: RuleMatch | undefined;
966
+ priority?: number | undefined;
967
+ action?: RuleAction | undefined;
968
968
  }
969
969
  export interface UpdateServiceRequest {
970
970
  serviceIdentifier: string | undefined;
971
- certificateArn?: string;
972
- authType?: AuthType;
971
+ certificateArn?: string | undefined;
972
+ authType?: AuthType | undefined;
973
973
  }
974
974
  export interface UpdateServiceResponse {
975
- id?: string;
976
- arn?: string;
977
- name?: string;
978
- customDomainName?: string;
979
- certificateArn?: string;
980
- authType?: AuthType;
975
+ id?: string | undefined;
976
+ arn?: string | undefined;
977
+ name?: string | undefined;
978
+ customDomainName?: string | undefined;
979
+ certificateArn?: string | undefined;
980
+ authType?: AuthType | undefined;
981
981
  }
982
982
  export interface UpdateServiceNetworkRequest {
983
983
  serviceNetworkIdentifier: string | undefined;
984
984
  authType: AuthType | undefined;
985
985
  }
986
986
  export interface UpdateServiceNetworkResponse {
987
- id?: string;
988
- name?: string;
989
- arn?: string;
990
- authType?: AuthType;
987
+ id?: string | undefined;
988
+ name?: string | undefined;
989
+ arn?: string | undefined;
990
+ authType?: AuthType | undefined;
991
991
  }
992
992
  export interface UpdateServiceNetworkVpcAssociationRequest {
993
993
  serviceNetworkVpcAssociationIdentifier: string | undefined;
994
994
  securityGroupIds: string[] | undefined;
995
995
  }
996
996
  export interface UpdateServiceNetworkVpcAssociationResponse {
997
- id?: string;
998
- arn?: string;
999
- status?: ServiceNetworkVpcAssociationStatus;
1000
- createdBy?: string;
1001
- securityGroupIds?: string[];
997
+ id?: string | undefined;
998
+ arn?: string | undefined;
999
+ status?: ServiceNetworkVpcAssociationStatus | undefined;
1000
+ createdBy?: string | undefined;
1001
+ securityGroupIds?: string[] | undefined;
1002
1002
  }
1003
1003
  export interface TagResourceRequest {
1004
1004
  resourceArn: string | undefined;
@@ -1010,20 +1010,20 @@ export interface RegisterTargetsRequest {
1010
1010
  targets: Target[] | undefined;
1011
1011
  }
1012
1012
  export interface RegisterTargetsResponse {
1013
- successful?: Target[];
1014
- unsuccessful?: TargetFailure[];
1013
+ successful?: Target[] | undefined;
1014
+ unsuccessful?: TargetFailure[] | undefined;
1015
1015
  }
1016
1016
  export interface UpdateTargetGroupRequest {
1017
1017
  targetGroupIdentifier: string | undefined;
1018
1018
  healthCheck: HealthCheckConfig | undefined;
1019
1019
  }
1020
1020
  export interface UpdateTargetGroupResponse {
1021
- id?: string;
1022
- arn?: string;
1023
- name?: string;
1024
- type?: TargetGroupType;
1025
- config?: TargetGroupConfig;
1026
- status?: TargetGroupStatus;
1021
+ id?: string | undefined;
1022
+ arn?: string | undefined;
1023
+ name?: string | undefined;
1024
+ type?: TargetGroupType | undefined;
1025
+ config?: TargetGroupConfig | undefined;
1026
+ status?: TargetGroupStatus | undefined;
1027
1027
  }
1028
1028
  export interface UntagResourceRequest {
1029
1029
  resourceArn: string | undefined;