@aws-sdk/client-vpc-lattice 3.428.0 → 3.430.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.
@@ -206,7 +206,7 @@ export declare class ValidationException extends __BaseException {
206
206
  * @public
207
207
  * <p>The reason.</p>
208
208
  */
209
- reason: ValidationExceptionReason | string | undefined;
209
+ reason: ValidationExceptionReason | undefined;
210
210
  /**
211
211
  * @public
212
212
  * <p>The fields that failed validation.</p>
@@ -877,7 +877,7 @@ export interface CreateListenerRequest {
877
877
  * @public
878
878
  * <p>The listener protocol HTTP or HTTPS.</p>
879
879
  */
880
- protocol: ListenerProtocol | string | undefined;
880
+ protocol: ListenerProtocol | undefined;
881
881
  /**
882
882
  * @public
883
883
  * <p>The listener port. You can specify a value from <code>1</code> to <code>65535</code>. For
@@ -930,7 +930,7 @@ export interface CreateListenerResponse {
930
930
  * @public
931
931
  * <p>The protocol of the listener.</p>
932
932
  */
933
- protocol?: ListenerProtocol | string;
933
+ protocol?: ListenerProtocol;
934
934
  /**
935
935
  * @public
936
936
  * <p>The port number of the listener.</p>
@@ -1121,7 +1121,7 @@ export interface CreateServiceRequest {
1121
1121
  * </li>
1122
1122
  * </ul>
1123
1123
  */
1124
- authType?: AuthType | string;
1124
+ authType?: AuthType;
1125
1125
  }
1126
1126
  /**
1127
1127
  * @public
@@ -1203,12 +1203,12 @@ export interface CreateServiceResponse {
1203
1203
  * <p>The status. If the status is <code>CREATE_FAILED</code>, you will have to delete and
1204
1204
  * recreate the service.</p>
1205
1205
  */
1206
- status?: ServiceStatus | string;
1206
+ status?: ServiceStatus;
1207
1207
  /**
1208
1208
  * @public
1209
1209
  * <p>The type of IAM policy.</p>
1210
1210
  */
1211
- authType?: AuthType | string;
1211
+ authType?: AuthType;
1212
1212
  /**
1213
1213
  * @public
1214
1214
  * <p>The public DNS name of the service.</p>
@@ -1247,7 +1247,7 @@ export interface CreateServiceNetworkRequest {
1247
1247
  * </li>
1248
1248
  * </ul>
1249
1249
  */
1250
- authType?: AuthType | string;
1250
+ authType?: AuthType;
1251
1251
  /**
1252
1252
  * @public
1253
1253
  * <p>The tags for the service network.</p>
@@ -1277,7 +1277,7 @@ export interface CreateServiceNetworkResponse {
1277
1277
  * @public
1278
1278
  * <p>The type of IAM policy.</p>
1279
1279
  */
1280
- authType?: AuthType | string;
1280
+ authType?: AuthType;
1281
1281
  }
1282
1282
  /**
1283
1283
  * @public
@@ -1351,7 +1351,7 @@ export interface CreateServiceNetworkServiceAssociationResponse {
1351
1351
  * @public
1352
1352
  * <p>The operation's status.</p>
1353
1353
  */
1354
- status?: ServiceNetworkServiceAssociationStatus | string;
1354
+ status?: ServiceNetworkServiceAssociationStatus;
1355
1355
  /**
1356
1356
  * @public
1357
1357
  * <p>The Amazon Resource Name (ARN) of the association.</p>
@@ -1462,7 +1462,7 @@ export interface CreateServiceNetworkVpcAssociationResponse {
1462
1462
  * @public
1463
1463
  * <p>The operation's status.</p>
1464
1464
  */
1465
- status?: ServiceNetworkVpcAssociationStatus | string;
1465
+ status?: ServiceNetworkVpcAssociationStatus;
1466
1466
  /**
1467
1467
  * @public
1468
1468
  * <p>The Amazon Resource Name (ARN) of the association.</p>
@@ -1562,13 +1562,13 @@ export interface HealthCheckConfig {
1562
1562
  * <p>The protocol used when performing health checks on targets. The possible protocols are
1563
1563
  * <code>HTTP</code> and <code>HTTPS</code>. The default is <code>HTTP</code>.</p>
1564
1564
  */
1565
- protocol?: TargetGroupProtocol | string;
1565
+ protocol?: TargetGroupProtocol;
1566
1566
  /**
1567
1567
  * @public
1568
1568
  * <p>The protocol version used when performing health checks on targets. The possible protocol
1569
1569
  * versions are <code>HTTP1</code> and <code>HTTP2</code>.</p>
1570
1570
  */
1571
- protocolVersion?: HealthCheckProtocolVersion | string;
1571
+ protocolVersion?: HealthCheckProtocolVersion;
1572
1572
  /**
1573
1573
  * @public
1574
1574
  * <p>The port used when performing health checks on targets. The default setting is the port that
@@ -1691,18 +1691,18 @@ export interface TargetGroupConfig {
1691
1691
  * <p>The protocol to use for routing traffic to the targets. Default is the protocol of a target
1692
1692
  * group.</p>
1693
1693
  */
1694
- protocol?: TargetGroupProtocol | string;
1694
+ protocol?: TargetGroupProtocol;
1695
1695
  /**
1696
1696
  * @public
1697
1697
  * <p>The protocol version. Default value is <code>HTTP1</code>.</p>
1698
1698
  */
1699
- protocolVersion?: TargetGroupProtocolVersion | string;
1699
+ protocolVersion?: TargetGroupProtocolVersion;
1700
1700
  /**
1701
1701
  * @public
1702
1702
  * <p>The type of IP address used for the target group. The possible values are <code>ipv4</code> and <code>ipv6</code>.
1703
1703
  * This is an optional parameter. If not specified, the IP address type defaults to <code>ipv4</code>.</p>
1704
1704
  */
1705
- ipAddressType?: IpAddressType | string;
1705
+ ipAddressType?: IpAddressType;
1706
1706
  /**
1707
1707
  * @public
1708
1708
  * <p>The ID of the VPC.</p>
@@ -1717,7 +1717,7 @@ export interface TargetGroupConfig {
1717
1717
  * @public
1718
1718
  * Lambda event structure version
1719
1719
  */
1720
- lambdaEventStructureVersion?: LambdaEventStructureVersion | string;
1720
+ lambdaEventStructureVersion?: LambdaEventStructureVersion;
1721
1721
  }
1722
1722
  /**
1723
1723
  * @public
@@ -1759,7 +1759,7 @@ export interface CreateTargetGroupRequest {
1759
1759
  * @public
1760
1760
  * <p>The type of target group.</p>
1761
1761
  */
1762
- type: TargetGroupType | string | undefined;
1762
+ type: TargetGroupType | undefined;
1763
1763
  /**
1764
1764
  * @public
1765
1765
  * <p>The target group configuration. If <code>type</code> is set to <code>LAMBDA</code>, this
@@ -1833,7 +1833,7 @@ export interface CreateTargetGroupResponse {
1833
1833
  * @public
1834
1834
  * <p>The type of target group.</p>
1835
1835
  */
1836
- type?: TargetGroupType | string;
1836
+ type?: TargetGroupType;
1837
1837
  /**
1838
1838
  * @public
1839
1839
  * <p>The target group configuration. If <code>type</code> is set to <code>LAMBDA</code>, this
@@ -1846,7 +1846,7 @@ export interface CreateTargetGroupResponse {
1846
1846
  * <code>CREATE_FAILED</code>. However, if you retry it while the status is
1847
1847
  * <code>CREATE_IN_PROGRESS</code>, there is no change in the status. </p>
1848
1848
  */
1849
- status?: TargetGroupStatus | string;
1849
+ status?: TargetGroupStatus;
1850
1850
  }
1851
1851
  /**
1852
1852
  * @public
@@ -1958,7 +1958,7 @@ export interface DeleteServiceResponse {
1958
1958
  * However, if you retry it while the status is <code>DELETE_IN_PROGRESS</code>, the status doesn't
1959
1959
  * change.</p>
1960
1960
  */
1961
- status?: ServiceStatus | string;
1961
+ status?: ServiceStatus;
1962
1962
  }
1963
1963
  /**
1964
1964
  * @public
@@ -2000,7 +2000,7 @@ export interface DeleteServiceNetworkServiceAssociationResponse {
2000
2000
  * <code>DELETE_FAILED</code>. However, if you retry it when the status is
2001
2001
  * <code>DELETE_IN_PROGRESS</code>, there is no change in the status.</p>
2002
2002
  */
2003
- status?: ServiceNetworkServiceAssociationStatus | string;
2003
+ status?: ServiceNetworkServiceAssociationStatus;
2004
2004
  /**
2005
2005
  * @public
2006
2006
  * <p>The Amazon Resource Name (ARN) of the association.</p>
@@ -2032,7 +2032,7 @@ export interface DeleteServiceNetworkVpcAssociationResponse {
2032
2032
  * However, if you retry it when the status is <code>DELETE_IN_PROGRESS</code>, there is no change
2033
2033
  * in the status.</p>
2034
2034
  */
2035
- status?: ServiceNetworkVpcAssociationStatus | string;
2035
+ status?: ServiceNetworkVpcAssociationStatus;
2036
2036
  /**
2037
2037
  * @public
2038
2038
  * <p>The Amazon Resource Name (ARN) of the association.</p>
@@ -2069,7 +2069,7 @@ export interface DeleteTargetGroupResponse {
2069
2069
  * However, if you retry it while the status is <code>DELETE_IN_PROGRESS</code>, the status doesn't
2070
2070
  * change.</p>
2071
2071
  */
2072
- status?: TargetGroupStatus | string;
2072
+ status?: TargetGroupStatus;
2073
2073
  }
2074
2074
  /**
2075
2075
  * @public
@@ -2179,7 +2179,7 @@ export interface GetAuthPolicyResponse {
2179
2179
  * information, see <a href="https://docs.aws.amazon.com/vpc-lattice/latest/ug/service-networks.html#create-service-network">Create a service
2180
2180
  * network</a> in the <i>Amazon VPC Lattice User Guide</i>.</p>
2181
2181
  */
2182
- state?: AuthPolicyState | string;
2182
+ state?: AuthPolicyState;
2183
2183
  /**
2184
2184
  * @public
2185
2185
  * <p>The date and time that the auth policy was created, specified in ISO-8601 format.</p>
@@ -2230,7 +2230,7 @@ export interface GetListenerResponse {
2230
2230
  * @public
2231
2231
  * <p>The listener protocol.</p>
2232
2232
  */
2233
- protocol?: ListenerProtocol | string;
2233
+ protocol?: ListenerProtocol;
2234
2234
  /**
2235
2235
  * @public
2236
2236
  * <p>The listener port.</p>
@@ -2411,12 +2411,12 @@ export interface GetServiceResponse {
2411
2411
  * @public
2412
2412
  * <p>The status of the service.</p>
2413
2413
  */
2414
- status?: ServiceStatus | string;
2414
+ status?: ServiceStatus;
2415
2415
  /**
2416
2416
  * @public
2417
2417
  * <p>The type of IAM policy.</p>
2418
2418
  */
2419
- authType?: AuthType | string;
2419
+ authType?: AuthType;
2420
2420
  /**
2421
2421
  * @public
2422
2422
  * <p>The failure code.</p>
@@ -2471,7 +2471,7 @@ export interface GetServiceNetworkResponse {
2471
2471
  * @public
2472
2472
  * <p>The type of IAM policy.</p>
2473
2473
  */
2474
- authType?: AuthType | string;
2474
+ authType?: AuthType;
2475
2475
  /**
2476
2476
  * @public
2477
2477
  * <p>The number of VPCs associated with the service network.</p>
@@ -2506,7 +2506,7 @@ export interface GetServiceNetworkServiceAssociationResponse {
2506
2506
  * @public
2507
2507
  * <p>The status of the association.</p>
2508
2508
  */
2509
- status?: ServiceNetworkServiceAssociationStatus | string;
2509
+ status?: ServiceNetworkServiceAssociationStatus;
2510
2510
  /**
2511
2511
  * @public
2512
2512
  * <p>The Amazon Resource Name (ARN) of the association.</p>
@@ -2596,7 +2596,7 @@ export interface GetServiceNetworkVpcAssociationResponse {
2596
2596
  * @public
2597
2597
  * <p>The status of the association.</p>
2598
2598
  */
2599
- status?: ServiceNetworkVpcAssociationStatus | string;
2599
+ status?: ServiceNetworkVpcAssociationStatus;
2600
2600
  /**
2601
2601
  * @public
2602
2602
  * <p>The Amazon Resource Name (ARN) of the association.</p>
@@ -2687,7 +2687,7 @@ export interface GetTargetGroupResponse {
2687
2687
  * @public
2688
2688
  * <p>The target group type.</p>
2689
2689
  */
2690
- type?: TargetGroupType | string;
2690
+ type?: TargetGroupType;
2691
2691
  /**
2692
2692
  * @public
2693
2693
  * <p>The target group configuration.</p>
@@ -2708,7 +2708,7 @@ export interface GetTargetGroupResponse {
2708
2708
  * @public
2709
2709
  * <p>The status.</p>
2710
2710
  */
2711
- status?: TargetGroupStatus | string;
2711
+ status?: TargetGroupStatus;
2712
2712
  /**
2713
2713
  * @public
2714
2714
  * <p>The Amazon Resource Names (ARNs) of the service.</p>
@@ -2769,7 +2769,7 @@ export interface ListenerSummary {
2769
2769
  * @public
2770
2770
  * <p>The listener protocol.</p>
2771
2771
  */
2772
- protocol?: ListenerProtocol | string;
2772
+ protocol?: ListenerProtocol;
2773
2773
  /**
2774
2774
  * @public
2775
2775
  * <p>The listener port.</p>
@@ -2844,7 +2844,7 @@ export interface UpdateListenerResponse {
2844
2844
  * @public
2845
2845
  * <p>The protocol of the listener.</p>
2846
2846
  */
2847
- protocol?: ListenerProtocol | string;
2847
+ protocol?: ListenerProtocol;
2848
2848
  /**
2849
2849
  * @public
2850
2850
  * <p>The listener port.</p>
@@ -3061,7 +3061,7 @@ export interface ServiceNetworkServiceAssociationSummary {
3061
3061
  * @public
3062
3062
  * <p>The status. If the deletion fails, try to delete again.</p>
3063
3063
  */
3064
- status?: ServiceNetworkServiceAssociationStatus | string;
3064
+ status?: ServiceNetworkServiceAssociationStatus;
3065
3065
  /**
3066
3066
  * @public
3067
3067
  * <p>The Amazon Resource Name (ARN) of the association.</p>
@@ -3177,7 +3177,7 @@ export interface ServiceNetworkVpcAssociationSummary {
3177
3177
  * @public
3178
3178
  * <p>The status.</p>
3179
3179
  */
3180
- status?: ServiceNetworkVpcAssociationStatus | string;
3180
+ status?: ServiceNetworkVpcAssociationStatus;
3181
3181
  /**
3182
3182
  * @public
3183
3183
  * <p>The account that created the association.</p>
@@ -3289,7 +3289,7 @@ export interface ServiceSummary {
3289
3289
  * @public
3290
3290
  * <p>The status.</p>
3291
3291
  */
3292
- status?: ServiceStatus | string;
3292
+ status?: ServiceStatus;
3293
3293
  }
3294
3294
  /**
3295
3295
  * @public
@@ -3349,7 +3349,7 @@ export interface ListTargetGroupsRequest {
3349
3349
  * @public
3350
3350
  * <p>The target group type.</p>
3351
3351
  */
3352
- targetGroupType?: TargetGroupType | string;
3352
+ targetGroupType?: TargetGroupType;
3353
3353
  }
3354
3354
  /**
3355
3355
  * @public
@@ -3375,7 +3375,7 @@ export interface TargetGroupSummary {
3375
3375
  * @public
3376
3376
  * <p>The target group type.</p>
3377
3377
  */
3378
- type?: TargetGroupType | string;
3378
+ type?: TargetGroupType;
3379
3379
  /**
3380
3380
  * @public
3381
3381
  * <p>The date and time that the target group was created, specified in ISO-8601 format.</p>
@@ -3390,13 +3390,13 @@ export interface TargetGroupSummary {
3390
3390
  * @public
3391
3391
  * <p>The protocol of the target group.</p>
3392
3392
  */
3393
- protocol?: TargetGroupProtocol | string;
3393
+ protocol?: TargetGroupProtocol;
3394
3394
  /**
3395
3395
  * @public
3396
3396
  * <p>The type of IP address used for the target group. The possible values are <code>ipv4</code> and <code>ipv6</code>.
3397
3397
  * This is an optional parameter. If not specified, the IP address type defaults to <code>ipv4</code>.</p>
3398
3398
  */
3399
- ipAddressType?: IpAddressType | string;
3399
+ ipAddressType?: IpAddressType;
3400
3400
  /**
3401
3401
  * @public
3402
3402
  * <p>The ID of the VPC of the target group.</p>
@@ -3412,7 +3412,7 @@ export interface TargetGroupSummary {
3412
3412
  * @public
3413
3413
  * <p>The status.</p>
3414
3414
  */
3415
- status?: TargetGroupStatus | string;
3415
+ status?: TargetGroupStatus;
3416
3416
  /**
3417
3417
  * @public
3418
3418
  * <p>The list of Amazon Resource Names (ARNs) of the service.</p>
@@ -3422,7 +3422,7 @@ export interface TargetGroupSummary {
3422
3422
  * @public
3423
3423
  * Lambda event structure version
3424
3424
  */
3425
- lambdaEventStructureVersion?: LambdaEventStructureVersion | string;
3425
+ lambdaEventStructureVersion?: LambdaEventStructureVersion;
3426
3426
  }
3427
3427
  /**
3428
3428
  * @public
@@ -3548,7 +3548,7 @@ export interface TargetSummary {
3548
3548
  * </li>
3549
3549
  * </ul>
3550
3550
  */
3551
- status?: TargetStatus | string;
3551
+ status?: TargetStatus;
3552
3552
  /**
3553
3553
  * @public
3554
3554
  * <p>The code for why the target status is what it is.</p>
@@ -3604,7 +3604,7 @@ export interface PutAuthPolicyResponse {
3604
3604
  * information, see <a href="https://docs.aws.amazon.com/vpc-lattice/latest/ug/service-networks.html#create-service-network">Create a service
3605
3605
  * network</a> in the <i>Amazon VPC Lattice User Guide</i>.</p>
3606
3606
  */
3607
- state?: AuthPolicyState | string;
3607
+ state?: AuthPolicyState;
3608
3608
  }
3609
3609
  /**
3610
3610
  * @public
@@ -3730,7 +3730,7 @@ export interface UpdateServiceRequest {
3730
3730
  * </li>
3731
3731
  * </ul>
3732
3732
  */
3733
- authType?: AuthType | string;
3733
+ authType?: AuthType;
3734
3734
  }
3735
3735
  /**
3736
3736
  * @public
@@ -3765,7 +3765,7 @@ export interface UpdateServiceResponse {
3765
3765
  * @public
3766
3766
  * <p>The type of IAM policy.</p>
3767
3767
  */
3768
- authType?: AuthType | string;
3768
+ authType?: AuthType;
3769
3769
  }
3770
3770
  /**
3771
3771
  * @public
@@ -3790,7 +3790,7 @@ export interface UpdateServiceNetworkRequest {
3790
3790
  * </li>
3791
3791
  * </ul>
3792
3792
  */
3793
- authType: AuthType | string | undefined;
3793
+ authType: AuthType | undefined;
3794
3794
  }
3795
3795
  /**
3796
3796
  * @public
@@ -3815,7 +3815,7 @@ export interface UpdateServiceNetworkResponse {
3815
3815
  * @public
3816
3816
  * <p>The type of IAM policy.</p>
3817
3817
  */
3818
- authType?: AuthType | string;
3818
+ authType?: AuthType;
3819
3819
  }
3820
3820
  /**
3821
3821
  * @public
@@ -3852,7 +3852,7 @@ export interface UpdateServiceNetworkVpcAssociationResponse {
3852
3852
  * However, if you retry it while the status is <code>DELETE_IN_PROGRESS</code>, there is no change
3853
3853
  * in the status.</p>
3854
3854
  */
3855
- status?: ServiceNetworkVpcAssociationStatus | string;
3855
+ status?: ServiceNetworkVpcAssociationStatus;
3856
3856
  /**
3857
3857
  * @public
3858
3858
  * <p>The account that created the association.</p>
@@ -3952,7 +3952,7 @@ export interface UpdateTargetGroupResponse {
3952
3952
  * @public
3953
3953
  * <p>The target group type.</p>
3954
3954
  */
3955
- type?: TargetGroupType | string;
3955
+ type?: TargetGroupType;
3956
3956
  /**
3957
3957
  * @public
3958
3958
  * <p>The target group configuration.</p>
@@ -3962,7 +3962,7 @@ export interface UpdateTargetGroupResponse {
3962
3962
  * @public
3963
3963
  * <p>The status.</p>
3964
3964
  */
3965
- status?: TargetGroupStatus | string;
3965
+ status?: TargetGroupStatus;
3966
3966
  }
3967
3967
  /**
3968
3968
  * @public
@@ -73,7 +73,7 @@ export type ValidationExceptionReason =
73
73
  export declare class ValidationException extends __BaseException {
74
74
  readonly name: "ValidationException";
75
75
  readonly $fault: "client";
76
- reason: ValidationExceptionReason | string | undefined;
76
+ reason: ValidationExceptionReason | undefined;
77
77
  fieldList?: ValidationExceptionField[];
78
78
  constructor(
79
79
  opts: __ExceptionOptionType<ValidationException, __BaseException>
@@ -305,7 +305,7 @@ export type ListenerProtocol =
305
305
  export interface CreateListenerRequest {
306
306
  serviceIdentifier: string | undefined;
307
307
  name: string | undefined;
308
- protocol: ListenerProtocol | string | undefined;
308
+ protocol: ListenerProtocol | undefined;
309
309
  port?: number;
310
310
  defaultAction: RuleAction | undefined;
311
311
  clientToken?: string;
@@ -315,7 +315,7 @@ export interface CreateListenerResponse {
315
315
  arn?: string;
316
316
  id?: string;
317
317
  name?: string;
318
- protocol?: ListenerProtocol | string;
318
+ protocol?: ListenerProtocol;
319
319
  port?: number;
320
320
  serviceArn?: string;
321
321
  serviceId?: string;
@@ -356,7 +356,7 @@ export interface CreateServiceRequest {
356
356
  tags?: Record<string, string>;
357
357
  customDomainName?: string;
358
358
  certificateArn?: string;
359
- authType?: AuthType | string;
359
+ authType?: AuthType;
360
360
  }
361
361
  export interface DnsEntry {
362
362
  domainName?: string;
@@ -376,21 +376,21 @@ export interface CreateServiceResponse {
376
376
  name?: string;
377
377
  customDomainName?: string;
378
378
  certificateArn?: string;
379
- status?: ServiceStatus | string;
380
- authType?: AuthType | string;
379
+ status?: ServiceStatus;
380
+ authType?: AuthType;
381
381
  dnsEntry?: DnsEntry;
382
382
  }
383
383
  export interface CreateServiceNetworkRequest {
384
384
  clientToken?: string;
385
385
  name: string | undefined;
386
- authType?: AuthType | string;
386
+ authType?: AuthType;
387
387
  tags?: Record<string, string>;
388
388
  }
389
389
  export interface CreateServiceNetworkResponse {
390
390
  id?: string;
391
391
  name?: string;
392
392
  arn?: string;
393
- authType?: AuthType | string;
393
+ authType?: AuthType;
394
394
  }
395
395
  export interface CreateServiceNetworkServiceAssociationRequest {
396
396
  clientToken?: string;
@@ -409,7 +409,7 @@ export type ServiceNetworkServiceAssociationStatus =
409
409
  (typeof ServiceNetworkServiceAssociationStatus)[keyof typeof ServiceNetworkServiceAssociationStatus];
410
410
  export interface CreateServiceNetworkServiceAssociationResponse {
411
411
  id?: string;
412
- status?: ServiceNetworkServiceAssociationStatus | string;
412
+ status?: ServiceNetworkServiceAssociationStatus;
413
413
  arn?: string;
414
414
  createdBy?: string;
415
415
  customDomainName?: string;
@@ -435,7 +435,7 @@ export type ServiceNetworkVpcAssociationStatus =
435
435
  (typeof ServiceNetworkVpcAssociationStatus)[keyof typeof ServiceNetworkVpcAssociationStatus];
436
436
  export interface CreateServiceNetworkVpcAssociationResponse {
437
437
  id?: string;
438
- status?: ServiceNetworkVpcAssociationStatus | string;
438
+ status?: ServiceNetworkVpcAssociationStatus;
439
439
  arn?: string;
440
440
  createdBy?: string;
441
441
  securityGroupIds?: string[];
@@ -470,8 +470,8 @@ export type HealthCheckProtocolVersion =
470
470
  (typeof HealthCheckProtocolVersion)[keyof typeof HealthCheckProtocolVersion];
471
471
  export interface HealthCheckConfig {
472
472
  enabled?: boolean;
473
- protocol?: TargetGroupProtocol | string;
474
- protocolVersion?: HealthCheckProtocolVersion | string;
473
+ protocol?: TargetGroupProtocol;
474
+ protocolVersion?: HealthCheckProtocolVersion;
475
475
  port?: number;
476
476
  path?: string;
477
477
  healthCheckIntervalSeconds?: number;
@@ -500,12 +500,12 @@ export type TargetGroupProtocolVersion =
500
500
  (typeof TargetGroupProtocolVersion)[keyof typeof TargetGroupProtocolVersion];
501
501
  export interface TargetGroupConfig {
502
502
  port?: number;
503
- protocol?: TargetGroupProtocol | string;
504
- protocolVersion?: TargetGroupProtocolVersion | string;
505
- ipAddressType?: IpAddressType | string;
503
+ protocol?: TargetGroupProtocol;
504
+ protocolVersion?: TargetGroupProtocolVersion;
505
+ ipAddressType?: IpAddressType;
506
506
  vpcIdentifier?: string;
507
507
  healthCheck?: HealthCheckConfig;
508
- lambdaEventStructureVersion?: LambdaEventStructureVersion | string;
508
+ lambdaEventStructureVersion?: LambdaEventStructureVersion;
509
509
  }
510
510
  export declare const TargetGroupType: {
511
511
  readonly ALB: "ALB";
@@ -517,7 +517,7 @@ export type TargetGroupType =
517
517
  (typeof TargetGroupType)[keyof typeof TargetGroupType];
518
518
  export interface CreateTargetGroupRequest {
519
519
  name: string | undefined;
520
- type: TargetGroupType | string | undefined;
520
+ type: TargetGroupType | undefined;
521
521
  config?: TargetGroupConfig;
522
522
  clientToken?: string;
523
523
  tags?: Record<string, string>;
@@ -535,9 +535,9 @@ export interface CreateTargetGroupResponse {
535
535
  id?: string;
536
536
  arn?: string;
537
537
  name?: string;
538
- type?: TargetGroupType | string;
538
+ type?: TargetGroupType;
539
539
  config?: TargetGroupConfig;
540
- status?: TargetGroupStatus | string;
540
+ status?: TargetGroupStatus;
541
541
  }
542
542
  export interface DeleteAuthPolicyRequest {
543
543
  resourceIdentifier: string | undefined;
@@ -565,7 +565,7 @@ export interface DeleteServiceResponse {
565
565
  id?: string;
566
566
  arn?: string;
567
567
  name?: string;
568
- status?: ServiceStatus | string;
568
+ status?: ServiceStatus;
569
569
  }
570
570
  export interface DeleteServiceNetworkRequest {
571
571
  serviceNetworkIdentifier: string | undefined;
@@ -576,7 +576,7 @@ export interface DeleteServiceNetworkServiceAssociationRequest {
576
576
  }
577
577
  export interface DeleteServiceNetworkServiceAssociationResponse {
578
578
  id?: string;
579
- status?: ServiceNetworkServiceAssociationStatus | string;
579
+ status?: ServiceNetworkServiceAssociationStatus;
580
580
  arn?: string;
581
581
  }
582
582
  export interface DeleteServiceNetworkVpcAssociationRequest {
@@ -584,7 +584,7 @@ export interface DeleteServiceNetworkVpcAssociationRequest {
584
584
  }
585
585
  export interface DeleteServiceNetworkVpcAssociationResponse {
586
586
  id?: string;
587
- status?: ServiceNetworkVpcAssociationStatus | string;
587
+ status?: ServiceNetworkVpcAssociationStatus;
588
588
  arn?: string;
589
589
  }
590
590
  export interface DeleteTargetGroupRequest {
@@ -593,7 +593,7 @@ export interface DeleteTargetGroupRequest {
593
593
  export interface DeleteTargetGroupResponse {
594
594
  id?: string;
595
595
  arn?: string;
596
- status?: TargetGroupStatus | string;
596
+ status?: TargetGroupStatus;
597
597
  }
598
598
  export interface Target {
599
599
  id: string | undefined;
@@ -618,7 +618,7 @@ export interface GetAuthPolicyRequest {
618
618
  }
619
619
  export interface GetAuthPolicyResponse {
620
620
  policy?: string;
621
- state?: AuthPolicyState | string;
621
+ state?: AuthPolicyState;
622
622
  createdAt?: Date;
623
623
  lastUpdatedAt?: Date;
624
624
  }
@@ -630,7 +630,7 @@ export interface GetListenerResponse {
630
630
  arn?: string;
631
631
  id?: string;
632
632
  name?: string;
633
- protocol?: ListenerProtocol | string;
633
+ protocol?: ListenerProtocol;
634
634
  port?: number;
635
635
  serviceArn?: string;
636
636
  serviceId?: string;
@@ -672,8 +672,8 @@ export interface GetServiceResponse {
672
672
  dnsEntry?: DnsEntry;
673
673
  customDomainName?: string;
674
674
  certificateArn?: string;
675
- status?: ServiceStatus | string;
676
- authType?: AuthType | string;
675
+ status?: ServiceStatus;
676
+ authType?: AuthType;
677
677
  failureCode?: string;
678
678
  failureMessage?: string;
679
679
  }
@@ -686,7 +686,7 @@ export interface GetServiceNetworkResponse {
686
686
  createdAt?: Date;
687
687
  lastUpdatedAt?: Date;
688
688
  arn?: string;
689
- authType?: AuthType | string;
689
+ authType?: AuthType;
690
690
  numberOfAssociatedVPCs?: number;
691
691
  numberOfAssociatedServices?: number;
692
692
  }
@@ -695,7 +695,7 @@ export interface GetServiceNetworkServiceAssociationRequest {
695
695
  }
696
696
  export interface GetServiceNetworkServiceAssociationResponse {
697
697
  id?: string;
698
- status?: ServiceNetworkServiceAssociationStatus | string;
698
+ status?: ServiceNetworkServiceAssociationStatus;
699
699
  arn?: string;
700
700
  createdBy?: string;
701
701
  createdAt?: Date;
@@ -715,7 +715,7 @@ export interface GetServiceNetworkVpcAssociationRequest {
715
715
  }
716
716
  export interface GetServiceNetworkVpcAssociationResponse {
717
717
  id?: string;
718
- status?: ServiceNetworkVpcAssociationStatus | string;
718
+ status?: ServiceNetworkVpcAssociationStatus;
719
719
  arn?: string;
720
720
  createdBy?: string;
721
721
  createdAt?: Date;
@@ -735,11 +735,11 @@ export interface GetTargetGroupResponse {
735
735
  id?: string;
736
736
  arn?: string;
737
737
  name?: string;
738
- type?: TargetGroupType | string;
738
+ type?: TargetGroupType;
739
739
  config?: TargetGroupConfig;
740
740
  createdAt?: Date;
741
741
  lastUpdatedAt?: Date;
742
- status?: TargetGroupStatus | string;
742
+ status?: TargetGroupStatus;
743
743
  serviceArns?: string[];
744
744
  failureMessage?: string;
745
745
  failureCode?: string;
@@ -753,7 +753,7 @@ export interface ListenerSummary {
753
753
  arn?: string;
754
754
  id?: string;
755
755
  name?: string;
756
- protocol?: ListenerProtocol | string;
756
+ protocol?: ListenerProtocol;
757
757
  port?: number;
758
758
  createdAt?: Date;
759
759
  lastUpdatedAt?: Date;
@@ -771,7 +771,7 @@ export interface UpdateListenerResponse {
771
771
  arn?: string;
772
772
  id?: string;
773
773
  name?: string;
774
- protocol?: ListenerProtocol | string;
774
+ protocol?: ListenerProtocol;
775
775
  port?: number;
776
776
  serviceArn?: string;
777
777
  serviceId?: string;
@@ -821,7 +821,7 @@ export interface ListServiceNetworkServiceAssociationsRequest {
821
821
  }
822
822
  export interface ServiceNetworkServiceAssociationSummary {
823
823
  id?: string;
824
- status?: ServiceNetworkServiceAssociationStatus | string;
824
+ status?: ServiceNetworkServiceAssociationStatus;
825
825
  arn?: string;
826
826
  createdBy?: string;
827
827
  createdAt?: Date;
@@ -847,7 +847,7 @@ export interface ListServiceNetworkVpcAssociationsRequest {
847
847
  export interface ServiceNetworkVpcAssociationSummary {
848
848
  id?: string;
849
849
  arn?: string;
850
- status?: ServiceNetworkVpcAssociationStatus | string;
850
+ status?: ServiceNetworkVpcAssociationStatus;
851
851
  createdBy?: string;
852
852
  createdAt?: Date;
853
853
  serviceNetworkId?: string;
@@ -872,7 +872,7 @@ export interface ServiceSummary {
872
872
  lastUpdatedAt?: Date;
873
873
  dnsEntry?: DnsEntry;
874
874
  customDomainName?: string;
875
- status?: ServiceStatus | string;
875
+ status?: ServiceStatus;
876
876
  }
877
877
  export interface ListServicesResponse {
878
878
  items?: ServiceSummary[];
@@ -888,22 +888,22 @@ export interface ListTargetGroupsRequest {
888
888
  maxResults?: number;
889
889
  nextToken?: string;
890
890
  vpcIdentifier?: string;
891
- targetGroupType?: TargetGroupType | string;
891
+ targetGroupType?: TargetGroupType;
892
892
  }
893
893
  export interface TargetGroupSummary {
894
894
  id?: string;
895
895
  arn?: string;
896
896
  name?: string;
897
- type?: TargetGroupType | string;
897
+ type?: TargetGroupType;
898
898
  createdAt?: Date;
899
899
  port?: number;
900
- protocol?: TargetGroupProtocol | string;
901
- ipAddressType?: IpAddressType | string;
900
+ protocol?: TargetGroupProtocol;
901
+ ipAddressType?: IpAddressType;
902
902
  vpcIdentifier?: string;
903
903
  lastUpdatedAt?: Date;
904
- status?: TargetGroupStatus | string;
904
+ status?: TargetGroupStatus;
905
905
  serviceArns?: string[];
906
- lambdaEventStructureVersion?: LambdaEventStructureVersion | string;
906
+ lambdaEventStructureVersion?: LambdaEventStructureVersion;
907
907
  }
908
908
  export interface ListTargetGroupsResponse {
909
909
  items?: TargetGroupSummary[];
@@ -927,7 +927,7 @@ export type TargetStatus = (typeof TargetStatus)[keyof typeof TargetStatus];
927
927
  export interface TargetSummary {
928
928
  id?: string;
929
929
  port?: number;
930
- status?: TargetStatus | string;
930
+ status?: TargetStatus;
931
931
  reasonCode?: string;
932
932
  }
933
933
  export interface ListTargetsResponse {
@@ -940,7 +940,7 @@ export interface PutAuthPolicyRequest {
940
940
  }
941
941
  export interface PutAuthPolicyResponse {
942
942
  policy?: string;
943
- state?: AuthPolicyState | string;
943
+ state?: AuthPolicyState;
944
944
  }
945
945
  export interface PutResourcePolicyRequest {
946
946
  resourceArn: string | undefined;
@@ -967,7 +967,7 @@ export interface UpdateRuleResponse {
967
967
  export interface UpdateServiceRequest {
968
968
  serviceIdentifier: string | undefined;
969
969
  certificateArn?: string;
970
- authType?: AuthType | string;
970
+ authType?: AuthType;
971
971
  }
972
972
  export interface UpdateServiceResponse {
973
973
  id?: string;
@@ -975,17 +975,17 @@ export interface UpdateServiceResponse {
975
975
  name?: string;
976
976
  customDomainName?: string;
977
977
  certificateArn?: string;
978
- authType?: AuthType | string;
978
+ authType?: AuthType;
979
979
  }
980
980
  export interface UpdateServiceNetworkRequest {
981
981
  serviceNetworkIdentifier: string | undefined;
982
- authType: AuthType | string | undefined;
982
+ authType: AuthType | undefined;
983
983
  }
984
984
  export interface UpdateServiceNetworkResponse {
985
985
  id?: string;
986
986
  name?: string;
987
987
  arn?: string;
988
- authType?: AuthType | string;
988
+ authType?: AuthType;
989
989
  }
990
990
  export interface UpdateServiceNetworkVpcAssociationRequest {
991
991
  serviceNetworkVpcAssociationIdentifier: string | undefined;
@@ -994,7 +994,7 @@ export interface UpdateServiceNetworkVpcAssociationRequest {
994
994
  export interface UpdateServiceNetworkVpcAssociationResponse {
995
995
  id?: string;
996
996
  arn?: string;
997
- status?: ServiceNetworkVpcAssociationStatus | string;
997
+ status?: ServiceNetworkVpcAssociationStatus;
998
998
  createdBy?: string;
999
999
  securityGroupIds?: string[];
1000
1000
  }
@@ -1019,9 +1019,9 @@ export interface UpdateTargetGroupResponse {
1019
1019
  id?: string;
1020
1020
  arn?: string;
1021
1021
  name?: string;
1022
- type?: TargetGroupType | string;
1022
+ type?: TargetGroupType;
1023
1023
  config?: TargetGroupConfig;
1024
- status?: TargetGroupStatus | string;
1024
+ status?: TargetGroupStatus;
1025
1025
  }
1026
1026
  export interface UntagResourceRequest {
1027
1027
  resourceArn: string | undefined;
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@aws-sdk/client-vpc-lattice",
3
3
  "description": "AWS SDK for JavaScript Vpc Lattice Client for Node.js, Browser and React Native",
4
- "version": "3.428.0",
4
+ "version": "3.430.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",
@@ -21,28 +21,28 @@
21
21
  "dependencies": {
22
22
  "@aws-crypto/sha256-browser": "3.0.0",
23
23
  "@aws-crypto/sha256-js": "3.0.0",
24
- "@aws-sdk/client-sts": "3.428.0",
25
- "@aws-sdk/credential-provider-node": "3.428.0",
26
- "@aws-sdk/middleware-host-header": "3.428.0",
24
+ "@aws-sdk/client-sts": "3.430.0",
25
+ "@aws-sdk/credential-provider-node": "3.430.0",
26
+ "@aws-sdk/middleware-host-header": "3.429.0",
27
27
  "@aws-sdk/middleware-logger": "3.428.0",
28
28
  "@aws-sdk/middleware-recursion-detection": "3.428.0",
29
29
  "@aws-sdk/middleware-signing": "3.428.0",
30
30
  "@aws-sdk/middleware-user-agent": "3.428.0",
31
- "@aws-sdk/region-config-resolver": "3.428.0",
31
+ "@aws-sdk/region-config-resolver": "3.430.0",
32
32
  "@aws-sdk/types": "3.428.0",
33
33
  "@aws-sdk/util-endpoints": "3.428.0",
34
34
  "@aws-sdk/util-user-agent-browser": "3.428.0",
35
- "@aws-sdk/util-user-agent-node": "3.428.0",
36
- "@smithy/config-resolver": "^2.0.14",
35
+ "@aws-sdk/util-user-agent-node": "3.430.0",
36
+ "@smithy/config-resolver": "^2.0.15",
37
37
  "@smithy/fetch-http-handler": "^2.2.3",
38
38
  "@smithy/hash-node": "^2.0.11",
39
39
  "@smithy/invalid-dependency": "^2.0.11",
40
40
  "@smithy/middleware-content-length": "^2.0.13",
41
- "@smithy/middleware-endpoint": "^2.1.0",
42
- "@smithy/middleware-retry": "^2.0.16",
41
+ "@smithy/middleware-endpoint": "^2.1.2",
42
+ "@smithy/middleware-retry": "^2.0.17",
43
43
  "@smithy/middleware-serde": "^2.0.11",
44
44
  "@smithy/middleware-stack": "^2.0.5",
45
- "@smithy/node-config-provider": "^2.1.1",
45
+ "@smithy/node-config-provider": "^2.1.2",
46
46
  "@smithy/node-http-handler": "^2.1.7",
47
47
  "@smithy/protocol-http": "^3.0.7",
48
48
  "@smithy/smithy-client": "^2.1.11",
@@ -52,7 +52,7 @@
52
52
  "@smithy/util-body-length-browser": "^2.0.0",
53
53
  "@smithy/util-body-length-node": "^2.1.0",
54
54
  "@smithy/util-defaults-mode-browser": "^2.0.15",
55
- "@smithy/util-defaults-mode-node": "^2.0.19",
55
+ "@smithy/util-defaults-mode-node": "^2.0.20",
56
56
  "@smithy/util-retry": "^2.0.4",
57
57
  "@smithy/util-utf8": "^2.0.0",
58
58
  "tslib": "^2.5.0",