@aws-sdk/client-vpc-lattice 3.936.0 → 3.940.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.
- package/dist-cjs/index.js +171 -0
- package/dist-es/index.js +1 -0
- package/dist-es/models/enums.js +145 -0
- package/dist-es/models/models_0.js +1 -145
- package/dist-types/index.d.ts +1 -0
- package/dist-types/models/enums.d.ts +585 -0
- package/dist-types/models/errors.d.ts +2 -1
- package/dist-types/models/models_0.d.ts +1 -585
- package/dist-types/ts3.4/index.d.ts +1 -0
- package/dist-types/ts3.4/models/enums.d.ts +190 -0
- package/dist-types/ts3.4/models/errors.d.ts +2 -4
- package/dist-types/ts3.4/models/models_0.d.ts +26 -190
- package/package.json +5 -5
|
@@ -1,21 +1,4 @@
|
|
|
1
|
-
|
|
2
|
-
* @public
|
|
3
|
-
* @enum
|
|
4
|
-
*/
|
|
5
|
-
export declare const ServiceNetworkLogType: {
|
|
6
|
-
/**
|
|
7
|
-
* Indicates logs for Lattice resource configurations.
|
|
8
|
-
*/
|
|
9
|
-
readonly RESOURCE: "RESOURCE";
|
|
10
|
-
/**
|
|
11
|
-
* Indicates logs for Lattice services.
|
|
12
|
-
*/
|
|
13
|
-
readonly SERVICE: "SERVICE";
|
|
14
|
-
};
|
|
15
|
-
/**
|
|
16
|
-
* @public
|
|
17
|
-
*/
|
|
18
|
-
export type ServiceNetworkLogType = (typeof ServiceNetworkLogType)[keyof typeof ServiceNetworkLogType];
|
|
1
|
+
import { AuthPolicyState, AuthType, HealthCheckProtocolVersion, IpAddressType, LambdaEventStructureVersion, ListenerProtocol, PrivateDnsPreference, ProtocolType, ResourceConfigurationIpAddressType, ResourceConfigurationStatus, ResourceConfigurationType, ResourceGatewayIpAddressType, ResourceGatewayStatus, ServiceNetworkLogType, ServiceNetworkResourceAssociationStatus, ServiceNetworkServiceAssociationStatus, ServiceNetworkVpcAssociationStatus, ServiceStatus, TargetGroupProtocol, TargetGroupProtocolVersion, TargetGroupStatus, TargetGroupType, TargetStatus, VerificationStatus } from "./enums";
|
|
19
2
|
/**
|
|
20
3
|
* @public
|
|
21
4
|
*/
|
|
@@ -97,20 +80,6 @@ export interface ValidationExceptionField {
|
|
|
97
80
|
*/
|
|
98
81
|
message: string | undefined;
|
|
99
82
|
}
|
|
100
|
-
/**
|
|
101
|
-
* @public
|
|
102
|
-
* @enum
|
|
103
|
-
*/
|
|
104
|
-
export declare const ValidationExceptionReason: {
|
|
105
|
-
readonly CANNOT_PARSE: "cannotParse";
|
|
106
|
-
readonly FIELD_VALIDATION_FAILED: "fieldValidationFailed";
|
|
107
|
-
readonly OTHER: "other";
|
|
108
|
-
readonly UNKNOWN_OPERATION: "unknownOperation";
|
|
109
|
-
};
|
|
110
|
-
/**
|
|
111
|
-
* @public
|
|
112
|
-
*/
|
|
113
|
-
export type ValidationExceptionReason = (typeof ValidationExceptionReason)[keyof typeof ValidationExceptionReason];
|
|
114
83
|
/**
|
|
115
84
|
* @public
|
|
116
85
|
*/
|
|
@@ -318,30 +287,6 @@ export interface ArnResource {
|
|
|
318
287
|
*/
|
|
319
288
|
arn?: string | undefined;
|
|
320
289
|
}
|
|
321
|
-
/**
|
|
322
|
-
* @public
|
|
323
|
-
* @enum
|
|
324
|
-
*/
|
|
325
|
-
export declare const AuthPolicyState: {
|
|
326
|
-
readonly Active: "Active";
|
|
327
|
-
readonly Inactive: "Inactive";
|
|
328
|
-
};
|
|
329
|
-
/**
|
|
330
|
-
* @public
|
|
331
|
-
*/
|
|
332
|
-
export type AuthPolicyState = (typeof AuthPolicyState)[keyof typeof AuthPolicyState];
|
|
333
|
-
/**
|
|
334
|
-
* @public
|
|
335
|
-
* @enum
|
|
336
|
-
*/
|
|
337
|
-
export declare const AuthType: {
|
|
338
|
-
readonly AWS_IAM: "AWS_IAM";
|
|
339
|
-
readonly NONE: "NONE";
|
|
340
|
-
};
|
|
341
|
-
/**
|
|
342
|
-
* @public
|
|
343
|
-
*/
|
|
344
|
-
export type AuthType = (typeof AuthType)[keyof typeof AuthType];
|
|
345
290
|
/**
|
|
346
291
|
* <p>Describes an action that returns a custom HTTP response.</p>
|
|
347
292
|
* @public
|
|
@@ -743,28 +688,6 @@ export interface BatchUpdateRuleResponse {
|
|
|
743
688
|
*/
|
|
744
689
|
unsuccessful?: RuleUpdateFailure[] | undefined;
|
|
745
690
|
}
|
|
746
|
-
/**
|
|
747
|
-
* @public
|
|
748
|
-
* @enum
|
|
749
|
-
*/
|
|
750
|
-
export declare const ListenerProtocol: {
|
|
751
|
-
/**
|
|
752
|
-
* Indicates HTTP protocol
|
|
753
|
-
*/
|
|
754
|
-
readonly HTTP: "HTTP";
|
|
755
|
-
/**
|
|
756
|
-
* Indicates HTTPS protocol
|
|
757
|
-
*/
|
|
758
|
-
readonly HTTPS: "HTTPS";
|
|
759
|
-
/**
|
|
760
|
-
* Indicates TLS_PASSTHROUGH protocol
|
|
761
|
-
*/
|
|
762
|
-
readonly TLS_PASSTHROUGH: "TLS_PASSTHROUGH";
|
|
763
|
-
};
|
|
764
|
-
/**
|
|
765
|
-
* @public
|
|
766
|
-
*/
|
|
767
|
-
export type ListenerProtocol = (typeof ListenerProtocol)[keyof typeof ListenerProtocol];
|
|
768
691
|
/**
|
|
769
692
|
* @public
|
|
770
693
|
*/
|
|
@@ -850,42 +773,6 @@ export interface CreateListenerResponse {
|
|
|
850
773
|
*/
|
|
851
774
|
defaultAction?: RuleAction | undefined;
|
|
852
775
|
}
|
|
853
|
-
/**
|
|
854
|
-
* @public
|
|
855
|
-
* @enum
|
|
856
|
-
*/
|
|
857
|
-
export declare const ProtocolType: {
|
|
858
|
-
/**
|
|
859
|
-
* Resource Configuration protocol type TCP
|
|
860
|
-
*/
|
|
861
|
-
readonly TCP: "TCP";
|
|
862
|
-
};
|
|
863
|
-
/**
|
|
864
|
-
* @public
|
|
865
|
-
*/
|
|
866
|
-
export type ProtocolType = (typeof ProtocolType)[keyof typeof ProtocolType];
|
|
867
|
-
/**
|
|
868
|
-
* @public
|
|
869
|
-
* @enum
|
|
870
|
-
*/
|
|
871
|
-
export declare const ResourceConfigurationIpAddressType: {
|
|
872
|
-
/**
|
|
873
|
-
* Dualstack ip address type for dns type resource configs
|
|
874
|
-
*/
|
|
875
|
-
readonly DUALSTACK: "DUALSTACK";
|
|
876
|
-
/**
|
|
877
|
-
* Ipv4 ip address type for dns type resource configs
|
|
878
|
-
*/
|
|
879
|
-
readonly IPV4: "IPV4";
|
|
880
|
-
/**
|
|
881
|
-
* IPv6 ip address type for dns type resource configs
|
|
882
|
-
*/
|
|
883
|
-
readonly IPV6: "IPV6";
|
|
884
|
-
};
|
|
885
|
-
/**
|
|
886
|
-
* @public
|
|
887
|
-
*/
|
|
888
|
-
export type ResourceConfigurationIpAddressType = (typeof ResourceConfigurationIpAddressType)[keyof typeof ResourceConfigurationIpAddressType];
|
|
889
776
|
/**
|
|
890
777
|
* <p>The DNS name of the resource.</p>
|
|
891
778
|
* @public
|
|
@@ -972,32 +859,6 @@ export declare namespace ResourceConfigurationDefinition {
|
|
|
972
859
|
_: (name: string, value: any) => T;
|
|
973
860
|
}
|
|
974
861
|
}
|
|
975
|
-
/**
|
|
976
|
-
* @public
|
|
977
|
-
* @enum
|
|
978
|
-
*/
|
|
979
|
-
export declare const ResourceConfigurationType: {
|
|
980
|
-
/**
|
|
981
|
-
* Resource Configuration of type ARN
|
|
982
|
-
*/
|
|
983
|
-
readonly ARN: "ARN";
|
|
984
|
-
/**
|
|
985
|
-
* Resource Configuration of type CHILD
|
|
986
|
-
*/
|
|
987
|
-
readonly CHILD: "CHILD";
|
|
988
|
-
/**
|
|
989
|
-
* Resource Configuration of type GROUP
|
|
990
|
-
*/
|
|
991
|
-
readonly GROUP: "GROUP";
|
|
992
|
-
/**
|
|
993
|
-
* Resource Configuration of type SINGLE
|
|
994
|
-
*/
|
|
995
|
-
readonly SINGLE: "SINGLE";
|
|
996
|
-
};
|
|
997
|
-
/**
|
|
998
|
-
* @public
|
|
999
|
-
*/
|
|
1000
|
-
export type ResourceConfigurationType = (typeof ResourceConfigurationType)[keyof typeof ResourceConfigurationType];
|
|
1001
862
|
/**
|
|
1002
863
|
* @public
|
|
1003
864
|
*/
|
|
@@ -1068,44 +929,6 @@ export interface CreateResourceConfigurationRequest {
|
|
|
1068
929
|
*/
|
|
1069
930
|
tags?: Record<string, string> | undefined;
|
|
1070
931
|
}
|
|
1071
|
-
/**
|
|
1072
|
-
* @public
|
|
1073
|
-
* @enum
|
|
1074
|
-
*/
|
|
1075
|
-
export declare const ResourceConfigurationStatus: {
|
|
1076
|
-
/**
|
|
1077
|
-
* Resource Configuration is active.
|
|
1078
|
-
*/
|
|
1079
|
-
readonly ACTIVE: "ACTIVE";
|
|
1080
|
-
/**
|
|
1081
|
-
* Resource Configuration creation failed
|
|
1082
|
-
*/
|
|
1083
|
-
readonly CREATE_FAILED: "CREATE_FAILED";
|
|
1084
|
-
/**
|
|
1085
|
-
* Resource Configuration creation in progress.
|
|
1086
|
-
*/
|
|
1087
|
-
readonly CREATE_IN_PROGRESS: "CREATE_IN_PROGRESS";
|
|
1088
|
-
/**
|
|
1089
|
-
* Resource Configuration deletion failed.
|
|
1090
|
-
*/
|
|
1091
|
-
readonly DELETE_FAILED: "DELETE_FAILED";
|
|
1092
|
-
/**
|
|
1093
|
-
* Resource Configuration deletion in progress
|
|
1094
|
-
*/
|
|
1095
|
-
readonly DELETE_IN_PROGRESS: "DELETE_IN_PROGRESS";
|
|
1096
|
-
/**
|
|
1097
|
-
* Resource Configuration update failed
|
|
1098
|
-
*/
|
|
1099
|
-
readonly UPDATE_FAILED: "UPDATE_FAILED";
|
|
1100
|
-
/**
|
|
1101
|
-
* Resource Configuration update in progress.
|
|
1102
|
-
*/
|
|
1103
|
-
readonly UPDATE_IN_PROGRESS: "UPDATE_IN_PROGRESS";
|
|
1104
|
-
};
|
|
1105
|
-
/**
|
|
1106
|
-
* @public
|
|
1107
|
-
*/
|
|
1108
|
-
export type ResourceConfigurationStatus = (typeof ResourceConfigurationStatus)[keyof typeof ResourceConfigurationStatus];
|
|
1109
932
|
/**
|
|
1110
933
|
* @public
|
|
1111
934
|
*/
|
|
@@ -1196,28 +1019,6 @@ export interface CreateResourceConfigurationResponse {
|
|
|
1196
1019
|
*/
|
|
1197
1020
|
domainVerificationArn?: string | undefined;
|
|
1198
1021
|
}
|
|
1199
|
-
/**
|
|
1200
|
-
* @public
|
|
1201
|
-
* @enum
|
|
1202
|
-
*/
|
|
1203
|
-
export declare const ResourceGatewayIpAddressType: {
|
|
1204
|
-
/**
|
|
1205
|
-
* Dualstack ip address type for resource gateway
|
|
1206
|
-
*/
|
|
1207
|
-
readonly DUALSTACK: "DUALSTACK";
|
|
1208
|
-
/**
|
|
1209
|
-
* Ipv4 ip address type for resource gateway
|
|
1210
|
-
*/
|
|
1211
|
-
readonly IPV4: "IPV4";
|
|
1212
|
-
/**
|
|
1213
|
-
* IPv6 ip address type for resource gateway
|
|
1214
|
-
*/
|
|
1215
|
-
readonly IPV6: "IPV6";
|
|
1216
|
-
};
|
|
1217
|
-
/**
|
|
1218
|
-
* @public
|
|
1219
|
-
*/
|
|
1220
|
-
export type ResourceGatewayIpAddressType = (typeof ResourceGatewayIpAddressType)[keyof typeof ResourceGatewayIpAddressType];
|
|
1221
1022
|
/**
|
|
1222
1023
|
* @public
|
|
1223
1024
|
*/
|
|
@@ -1263,44 +1064,6 @@ export interface CreateResourceGatewayRequest {
|
|
|
1263
1064
|
*/
|
|
1264
1065
|
tags?: Record<string, string> | undefined;
|
|
1265
1066
|
}
|
|
1266
|
-
/**
|
|
1267
|
-
* @public
|
|
1268
|
-
* @enum
|
|
1269
|
-
*/
|
|
1270
|
-
export declare const ResourceGatewayStatus: {
|
|
1271
|
-
/**
|
|
1272
|
-
* Resource Gateway is active.
|
|
1273
|
-
*/
|
|
1274
|
-
readonly ACTIVE: "ACTIVE";
|
|
1275
|
-
/**
|
|
1276
|
-
* Resource Gateway creation failed
|
|
1277
|
-
*/
|
|
1278
|
-
readonly CREATE_FAILED: "CREATE_FAILED";
|
|
1279
|
-
/**
|
|
1280
|
-
* Resource Gateway creation in progress.
|
|
1281
|
-
*/
|
|
1282
|
-
readonly CREATE_IN_PROGRESS: "CREATE_IN_PROGRESS";
|
|
1283
|
-
/**
|
|
1284
|
-
* Resource Gateway deletion failed.
|
|
1285
|
-
*/
|
|
1286
|
-
readonly DELETE_FAILED: "DELETE_FAILED";
|
|
1287
|
-
/**
|
|
1288
|
-
* Resource Gateway deletion in progress
|
|
1289
|
-
*/
|
|
1290
|
-
readonly DELETE_IN_PROGRESS: "DELETE_IN_PROGRESS";
|
|
1291
|
-
/**
|
|
1292
|
-
* Reosurce Gateway update failed
|
|
1293
|
-
*/
|
|
1294
|
-
readonly UPDATE_FAILED: "UPDATE_FAILED";
|
|
1295
|
-
/**
|
|
1296
|
-
* Resource Gateway update in progress.
|
|
1297
|
-
*/
|
|
1298
|
-
readonly UPDATE_IN_PROGRESS: "UPDATE_IN_PROGRESS";
|
|
1299
|
-
};
|
|
1300
|
-
/**
|
|
1301
|
-
* @public
|
|
1302
|
-
*/
|
|
1303
|
-
export type ResourceGatewayStatus = (typeof ResourceGatewayStatus)[keyof typeof ResourceGatewayStatus];
|
|
1304
1067
|
/**
|
|
1305
1068
|
* @public
|
|
1306
1069
|
*/
|
|
@@ -1482,36 +1245,6 @@ export interface DnsEntry {
|
|
|
1482
1245
|
*/
|
|
1483
1246
|
hostedZoneId?: string | undefined;
|
|
1484
1247
|
}
|
|
1485
|
-
/**
|
|
1486
|
-
* @public
|
|
1487
|
-
* @enum
|
|
1488
|
-
*/
|
|
1489
|
-
export declare const ServiceStatus: {
|
|
1490
|
-
/**
|
|
1491
|
-
* Service is active.
|
|
1492
|
-
*/
|
|
1493
|
-
readonly ACTIVE: "ACTIVE";
|
|
1494
|
-
/**
|
|
1495
|
-
* Service creation failed
|
|
1496
|
-
*/
|
|
1497
|
-
readonly CREATE_FAILED: "CREATE_FAILED";
|
|
1498
|
-
/**
|
|
1499
|
-
* Service creation in progress.
|
|
1500
|
-
*/
|
|
1501
|
-
readonly CREATE_IN_PROGRESS: "CREATE_IN_PROGRESS";
|
|
1502
|
-
/**
|
|
1503
|
-
* Service deletion failed.
|
|
1504
|
-
*/
|
|
1505
|
-
readonly DELETE_FAILED: "DELETE_FAILED";
|
|
1506
|
-
/**
|
|
1507
|
-
* Service deletion in progress
|
|
1508
|
-
*/
|
|
1509
|
-
readonly DELETE_IN_PROGRESS: "DELETE_IN_PROGRESS";
|
|
1510
|
-
};
|
|
1511
|
-
/**
|
|
1512
|
-
* @public
|
|
1513
|
-
*/
|
|
1514
|
-
export type ServiceStatus = (typeof ServiceStatus)[keyof typeof ServiceStatus];
|
|
1515
1248
|
/**
|
|
1516
1249
|
* @public
|
|
1517
1250
|
*/
|
|
@@ -1658,40 +1391,6 @@ export interface CreateServiceNetworkResourceAssociationRequest {
|
|
|
1658
1391
|
*/
|
|
1659
1392
|
tags?: Record<string, string> | undefined;
|
|
1660
1393
|
}
|
|
1661
|
-
/**
|
|
1662
|
-
* @public
|
|
1663
|
-
* @enum
|
|
1664
|
-
*/
|
|
1665
|
-
export declare const ServiceNetworkResourceAssociationStatus: {
|
|
1666
|
-
/**
|
|
1667
|
-
* ServiceNetwork and Service association is active
|
|
1668
|
-
*/
|
|
1669
|
-
readonly ACTIVE: "ACTIVE";
|
|
1670
|
-
/**
|
|
1671
|
-
* ServiceNetwork and Service association creation failed.
|
|
1672
|
-
*/
|
|
1673
|
-
readonly CREATE_FAILED: "CREATE_FAILED";
|
|
1674
|
-
/**
|
|
1675
|
-
* ServiceNetwork and Service association creation in progress
|
|
1676
|
-
*/
|
|
1677
|
-
readonly CREATE_IN_PROGRESS: "CREATE_IN_PROGRESS";
|
|
1678
|
-
/**
|
|
1679
|
-
* ServiceNetwork and Service association deletion failed
|
|
1680
|
-
*/
|
|
1681
|
-
readonly DELETE_FAILED: "DELETE_FAILED";
|
|
1682
|
-
/**
|
|
1683
|
-
* ServiceNetwork and Service association deletion in progress
|
|
1684
|
-
*/
|
|
1685
|
-
readonly DELETE_IN_PROGRESS: "DELETE_IN_PROGRESS";
|
|
1686
|
-
/**
|
|
1687
|
-
* ServiceNetwork and Service association is partial
|
|
1688
|
-
*/
|
|
1689
|
-
readonly PARTIAL: "PARTIAL";
|
|
1690
|
-
};
|
|
1691
|
-
/**
|
|
1692
|
-
* @public
|
|
1693
|
-
*/
|
|
1694
|
-
export type ServiceNetworkResourceAssociationStatus = (typeof ServiceNetworkResourceAssociationStatus)[keyof typeof ServiceNetworkResourceAssociationStatus];
|
|
1695
1394
|
/**
|
|
1696
1395
|
* @public
|
|
1697
1396
|
*/
|
|
@@ -1747,36 +1446,6 @@ export interface CreateServiceNetworkServiceAssociationRequest {
|
|
|
1747
1446
|
*/
|
|
1748
1447
|
tags?: Record<string, string> | undefined;
|
|
1749
1448
|
}
|
|
1750
|
-
/**
|
|
1751
|
-
* @public
|
|
1752
|
-
* @enum
|
|
1753
|
-
*/
|
|
1754
|
-
export declare const ServiceNetworkServiceAssociationStatus: {
|
|
1755
|
-
/**
|
|
1756
|
-
* ServiceNetwork and Service association is active
|
|
1757
|
-
*/
|
|
1758
|
-
readonly ACTIVE: "ACTIVE";
|
|
1759
|
-
/**
|
|
1760
|
-
* ServiceNetwork and Service association creation failed.
|
|
1761
|
-
*/
|
|
1762
|
-
readonly CREATE_FAILED: "CREATE_FAILED";
|
|
1763
|
-
/**
|
|
1764
|
-
* ServiceNetwork and Service association creation in progress
|
|
1765
|
-
*/
|
|
1766
|
-
readonly CREATE_IN_PROGRESS: "CREATE_IN_PROGRESS";
|
|
1767
|
-
/**
|
|
1768
|
-
* ServiceNetwork and Service association deletion failed
|
|
1769
|
-
*/
|
|
1770
|
-
readonly DELETE_FAILED: "DELETE_FAILED";
|
|
1771
|
-
/**
|
|
1772
|
-
* ServiceNetwork and Service association deletion in progress
|
|
1773
|
-
*/
|
|
1774
|
-
readonly DELETE_IN_PROGRESS: "DELETE_IN_PROGRESS";
|
|
1775
|
-
};
|
|
1776
|
-
/**
|
|
1777
|
-
* @public
|
|
1778
|
-
*/
|
|
1779
|
-
export type ServiceNetworkServiceAssociationStatus = (typeof ServiceNetworkServiceAssociationStatus)[keyof typeof ServiceNetworkServiceAssociationStatus];
|
|
1780
1449
|
/**
|
|
1781
1450
|
* @public
|
|
1782
1451
|
*/
|
|
@@ -1812,20 +1481,6 @@ export interface CreateServiceNetworkServiceAssociationResponse {
|
|
|
1812
1481
|
*/
|
|
1813
1482
|
dnsEntry?: DnsEntry | undefined;
|
|
1814
1483
|
}
|
|
1815
|
-
/**
|
|
1816
|
-
* @public
|
|
1817
|
-
* @enum
|
|
1818
|
-
*/
|
|
1819
|
-
export declare const PrivateDnsPreference: {
|
|
1820
|
-
readonly ALL_DOMAINS: "ALL_DOMAINS";
|
|
1821
|
-
readonly SPECIFIED_DOMAINS_ONLY: "SPECIFIED_DOMAINS_ONLY";
|
|
1822
|
-
readonly VERIFIED_DOMAINS_AND_SPECIFIED_DOMAINS: "VERIFIED_DOMAINS_AND_SPECIFIED_DOMAINS";
|
|
1823
|
-
readonly VERIFIED_DOMAINS_ONLY: "VERIFIED_DOMAINS_ONLY";
|
|
1824
|
-
};
|
|
1825
|
-
/**
|
|
1826
|
-
* @public
|
|
1827
|
-
*/
|
|
1828
|
-
export type PrivateDnsPreference = (typeof PrivateDnsPreference)[keyof typeof PrivateDnsPreference];
|
|
1829
1484
|
/**
|
|
1830
1485
|
* <p> The DNS configuration options. </p>
|
|
1831
1486
|
* @public
|
|
@@ -1882,44 +1537,6 @@ export interface CreateServiceNetworkVpcAssociationRequest {
|
|
|
1882
1537
|
*/
|
|
1883
1538
|
dnsOptions?: DnsOptions | undefined;
|
|
1884
1539
|
}
|
|
1885
|
-
/**
|
|
1886
|
-
* @public
|
|
1887
|
-
* @enum
|
|
1888
|
-
*/
|
|
1889
|
-
export declare const ServiceNetworkVpcAssociationStatus: {
|
|
1890
|
-
/**
|
|
1891
|
-
* ServiceNetwork and Vpc association is active
|
|
1892
|
-
*/
|
|
1893
|
-
readonly ACTIVE: "ACTIVE";
|
|
1894
|
-
/**
|
|
1895
|
-
* ServiceNetwork and Vpc association creation failed.
|
|
1896
|
-
*/
|
|
1897
|
-
readonly CREATE_FAILED: "CREATE_FAILED";
|
|
1898
|
-
/**
|
|
1899
|
-
* ServiceNetwork and Vpc association creation in progress
|
|
1900
|
-
*/
|
|
1901
|
-
readonly CREATE_IN_PROGRESS: "CREATE_IN_PROGRESS";
|
|
1902
|
-
/**
|
|
1903
|
-
* ServiceNetwork and Vpc association deletion failed
|
|
1904
|
-
*/
|
|
1905
|
-
readonly DELETE_FAILED: "DELETE_FAILED";
|
|
1906
|
-
/**
|
|
1907
|
-
* ServiceNetwork and Vpc association deletion in progress
|
|
1908
|
-
*/
|
|
1909
|
-
readonly DELETE_IN_PROGRESS: "DELETE_IN_PROGRESS";
|
|
1910
|
-
/**
|
|
1911
|
-
* ServiceNetwork and Vpc association update failed
|
|
1912
|
-
*/
|
|
1913
|
-
readonly UPDATE_FAILED: "UPDATE_FAILED";
|
|
1914
|
-
/**
|
|
1915
|
-
* ServiceNetwork and Vpc association update in progress
|
|
1916
|
-
*/
|
|
1917
|
-
readonly UPDATE_IN_PROGRESS: "UPDATE_IN_PROGRESS";
|
|
1918
|
-
};
|
|
1919
|
-
/**
|
|
1920
|
-
* @public
|
|
1921
|
-
*/
|
|
1922
|
-
export type ServiceNetworkVpcAssociationStatus = (typeof ServiceNetworkVpcAssociationStatus)[keyof typeof ServiceNetworkVpcAssociationStatus];
|
|
1923
1540
|
/**
|
|
1924
1541
|
* @public
|
|
1925
1542
|
*/
|
|
@@ -1993,46 +1610,6 @@ export declare namespace Matcher {
|
|
|
1993
1610
|
_: (name: string, value: any) => T;
|
|
1994
1611
|
}
|
|
1995
1612
|
}
|
|
1996
|
-
/**
|
|
1997
|
-
* @public
|
|
1998
|
-
* @enum
|
|
1999
|
-
*/
|
|
2000
|
-
export declare const TargetGroupProtocol: {
|
|
2001
|
-
/**
|
|
2002
|
-
* Indicates HTTP protocol
|
|
2003
|
-
*/
|
|
2004
|
-
readonly HTTP: "HTTP";
|
|
2005
|
-
/**
|
|
2006
|
-
* Indicates HTTPS protocol
|
|
2007
|
-
*/
|
|
2008
|
-
readonly HTTPS: "HTTPS";
|
|
2009
|
-
/**
|
|
2010
|
-
* Indicates TCP protocol
|
|
2011
|
-
*/
|
|
2012
|
-
readonly TCP: "TCP";
|
|
2013
|
-
};
|
|
2014
|
-
/**
|
|
2015
|
-
* @public
|
|
2016
|
-
*/
|
|
2017
|
-
export type TargetGroupProtocol = (typeof TargetGroupProtocol)[keyof typeof TargetGroupProtocol];
|
|
2018
|
-
/**
|
|
2019
|
-
* @public
|
|
2020
|
-
* @enum
|
|
2021
|
-
*/
|
|
2022
|
-
export declare const HealthCheckProtocolVersion: {
|
|
2023
|
-
/**
|
|
2024
|
-
* Indicates use of HTTP/1.1 to send requests to target
|
|
2025
|
-
*/
|
|
2026
|
-
readonly HTTP1: "HTTP1";
|
|
2027
|
-
/**
|
|
2028
|
-
* Indicates use of HTTP/2 to send requests to target
|
|
2029
|
-
*/
|
|
2030
|
-
readonly HTTP2: "HTTP2";
|
|
2031
|
-
};
|
|
2032
|
-
/**
|
|
2033
|
-
* @public
|
|
2034
|
-
*/
|
|
2035
|
-
export type HealthCheckProtocolVersion = (typeof HealthCheckProtocolVersion)[keyof typeof HealthCheckProtocolVersion];
|
|
2036
1613
|
/**
|
|
2037
1614
|
* <p>Describes the health check configuration of a target group. Health check configurations aren't used for target groups of type <code>LAMBDA</code> or <code>ALB</code>.</p>
|
|
2038
1615
|
* @public
|
|
@@ -2089,64 +1666,6 @@ export interface HealthCheckConfig {
|
|
|
2089
1666
|
*/
|
|
2090
1667
|
matcher?: Matcher | undefined;
|
|
2091
1668
|
}
|
|
2092
|
-
/**
|
|
2093
|
-
* @public
|
|
2094
|
-
* @enum
|
|
2095
|
-
*/
|
|
2096
|
-
export declare const IpAddressType: {
|
|
2097
|
-
/**
|
|
2098
|
-
* Indicates IPv4 address type
|
|
2099
|
-
*/
|
|
2100
|
-
readonly IPV4: "IPV4";
|
|
2101
|
-
/**
|
|
2102
|
-
* Indicates IPv6 address type
|
|
2103
|
-
*/
|
|
2104
|
-
readonly IPV6: "IPV6";
|
|
2105
|
-
};
|
|
2106
|
-
/**
|
|
2107
|
-
* @public
|
|
2108
|
-
*/
|
|
2109
|
-
export type IpAddressType = (typeof IpAddressType)[keyof typeof IpAddressType];
|
|
2110
|
-
/**
|
|
2111
|
-
* @public
|
|
2112
|
-
* @enum
|
|
2113
|
-
*/
|
|
2114
|
-
export declare const LambdaEventStructureVersion: {
|
|
2115
|
-
/**
|
|
2116
|
-
* This is the default lambda event structure version
|
|
2117
|
-
*/
|
|
2118
|
-
readonly V1: "V1";
|
|
2119
|
-
/**
|
|
2120
|
-
* Indicates use of lambda event structure version 2
|
|
2121
|
-
*/
|
|
2122
|
-
readonly V2: "V2";
|
|
2123
|
-
};
|
|
2124
|
-
/**
|
|
2125
|
-
* @public
|
|
2126
|
-
*/
|
|
2127
|
-
export type LambdaEventStructureVersion = (typeof LambdaEventStructureVersion)[keyof typeof LambdaEventStructureVersion];
|
|
2128
|
-
/**
|
|
2129
|
-
* @public
|
|
2130
|
-
* @enum
|
|
2131
|
-
*/
|
|
2132
|
-
export declare const TargetGroupProtocolVersion: {
|
|
2133
|
-
/**
|
|
2134
|
-
* Indicates use of gRPC to send requests to target
|
|
2135
|
-
*/
|
|
2136
|
-
readonly GRPC: "GRPC";
|
|
2137
|
-
/**
|
|
2138
|
-
* Indicates use of HTTP/1.1 to send requests to target
|
|
2139
|
-
*/
|
|
2140
|
-
readonly HTTP1: "HTTP1";
|
|
2141
|
-
/**
|
|
2142
|
-
* Indicates use of HTTP/2 to send requests to target
|
|
2143
|
-
*/
|
|
2144
|
-
readonly HTTP2: "HTTP2";
|
|
2145
|
-
};
|
|
2146
|
-
/**
|
|
2147
|
-
* @public
|
|
2148
|
-
*/
|
|
2149
|
-
export type TargetGroupProtocolVersion = (typeof TargetGroupProtocolVersion)[keyof typeof TargetGroupProtocolVersion];
|
|
2150
1669
|
/**
|
|
2151
1670
|
* <p>Describes the configuration of a target group.</p> <p>For more information, see <a href="https://docs.aws.amazon.com/vpc-lattice/latest/ug/target-groups.html">Target groups</a> in the <i>Amazon VPC Lattice User Guide</i>.</p>
|
|
2152
1671
|
* @public
|
|
@@ -2188,32 +1707,6 @@ export interface TargetGroupConfig {
|
|
|
2188
1707
|
*/
|
|
2189
1708
|
lambdaEventStructureVersion?: LambdaEventStructureVersion | undefined;
|
|
2190
1709
|
}
|
|
2191
|
-
/**
|
|
2192
|
-
* @public
|
|
2193
|
-
* @enum
|
|
2194
|
-
*/
|
|
2195
|
-
export declare const TargetGroupType: {
|
|
2196
|
-
/**
|
|
2197
|
-
* Indicates target in this target group is an ALB
|
|
2198
|
-
*/
|
|
2199
|
-
readonly ALB: "ALB";
|
|
2200
|
-
/**
|
|
2201
|
-
* Indicates targets in this target group are EC2 instances
|
|
2202
|
-
*/
|
|
2203
|
-
readonly INSTANCE: "INSTANCE";
|
|
2204
|
-
/**
|
|
2205
|
-
* Indicates targets in this target group are IP
|
|
2206
|
-
*/
|
|
2207
|
-
readonly IP: "IP";
|
|
2208
|
-
/**
|
|
2209
|
-
* Indicates targets in this target group are Lambda
|
|
2210
|
-
*/
|
|
2211
|
-
readonly LAMBDA: "LAMBDA";
|
|
2212
|
-
};
|
|
2213
|
-
/**
|
|
2214
|
-
* @public
|
|
2215
|
-
*/
|
|
2216
|
-
export type TargetGroupType = (typeof TargetGroupType)[keyof typeof TargetGroupType];
|
|
2217
1710
|
/**
|
|
2218
1711
|
* @public
|
|
2219
1712
|
*/
|
|
@@ -2244,36 +1737,6 @@ export interface CreateTargetGroupRequest {
|
|
|
2244
1737
|
*/
|
|
2245
1738
|
tags?: Record<string, string> | undefined;
|
|
2246
1739
|
}
|
|
2247
|
-
/**
|
|
2248
|
-
* @public
|
|
2249
|
-
* @enum
|
|
2250
|
-
*/
|
|
2251
|
-
export declare const TargetGroupStatus: {
|
|
2252
|
-
/**
|
|
2253
|
-
* TargetGroup is active
|
|
2254
|
-
*/
|
|
2255
|
-
readonly ACTIVE: "ACTIVE";
|
|
2256
|
-
/**
|
|
2257
|
-
* TargetGroup creation failed.
|
|
2258
|
-
*/
|
|
2259
|
-
readonly CREATE_FAILED: "CREATE_FAILED";
|
|
2260
|
-
/**
|
|
2261
|
-
* TargetGroup creation in progress
|
|
2262
|
-
*/
|
|
2263
|
-
readonly CREATE_IN_PROGRESS: "CREATE_IN_PROGRESS";
|
|
2264
|
-
/**
|
|
2265
|
-
* TargetGroup deletion failed
|
|
2266
|
-
*/
|
|
2267
|
-
readonly DELETE_FAILED: "DELETE_FAILED";
|
|
2268
|
-
/**
|
|
2269
|
-
* TargetGroup deletion in progress
|
|
2270
|
-
*/
|
|
2271
|
-
readonly DELETE_IN_PROGRESS: "DELETE_IN_PROGRESS";
|
|
2272
|
-
};
|
|
2273
|
-
/**
|
|
2274
|
-
* @public
|
|
2275
|
-
*/
|
|
2276
|
-
export type TargetGroupStatus = (typeof TargetGroupStatus)[keyof typeof TargetGroupStatus];
|
|
2277
1740
|
/**
|
|
2278
1741
|
* @public
|
|
2279
1742
|
*/
|
|
@@ -2741,19 +2204,6 @@ export interface GetDomainVerificationRequest {
|
|
|
2741
2204
|
*/
|
|
2742
2205
|
domainVerificationIdentifier: string | undefined;
|
|
2743
2206
|
}
|
|
2744
|
-
/**
|
|
2745
|
-
* @public
|
|
2746
|
-
* @enum
|
|
2747
|
-
*/
|
|
2748
|
-
export declare const VerificationStatus: {
|
|
2749
|
-
readonly PENDING: "PENDING";
|
|
2750
|
-
readonly VERIFICATION_TIMED_OUT: "VERIFICATION_TIMED_OUT";
|
|
2751
|
-
readonly VERIFIED: "VERIFIED";
|
|
2752
|
-
};
|
|
2753
|
-
/**
|
|
2754
|
-
* @public
|
|
2755
|
-
*/
|
|
2756
|
-
export type VerificationStatus = (typeof VerificationStatus)[keyof typeof VerificationStatus];
|
|
2757
2207
|
/**
|
|
2758
2208
|
* <p> Configuration for TXT record-based domain verification method. </p>
|
|
2759
2209
|
* @public
|
|
@@ -5078,40 +4528,6 @@ export interface ListTargetsRequest {
|
|
|
5078
4528
|
*/
|
|
5079
4529
|
targets?: Target[] | undefined;
|
|
5080
4530
|
}
|
|
5081
|
-
/**
|
|
5082
|
-
* @public
|
|
5083
|
-
* @enum
|
|
5084
|
-
*/
|
|
5085
|
-
export declare const TargetStatus: {
|
|
5086
|
-
/**
|
|
5087
|
-
* The target is deregistering and connection draining is in process.
|
|
5088
|
-
*/
|
|
5089
|
-
readonly DRAINING: "DRAINING";
|
|
5090
|
-
/**
|
|
5091
|
-
* The target is healthy.
|
|
5092
|
-
*/
|
|
5093
|
-
readonly HEALTHY: "HEALTHY";
|
|
5094
|
-
/**
|
|
5095
|
-
* The initial health check is in progress.
|
|
5096
|
-
*/
|
|
5097
|
-
readonly INITIAL: "INITIAL";
|
|
5098
|
-
/**
|
|
5099
|
-
* Health checks are disabled.
|
|
5100
|
-
*/
|
|
5101
|
-
readonly UNAVAILABLE: "UNAVAILABLE";
|
|
5102
|
-
/**
|
|
5103
|
-
* The target failed the health check.
|
|
5104
|
-
*/
|
|
5105
|
-
readonly UNHEALTHY: "UNHEALTHY";
|
|
5106
|
-
/**
|
|
5107
|
-
* The target group is not used in a listener rule.
|
|
5108
|
-
*/
|
|
5109
|
-
readonly UNUSED: "UNUSED";
|
|
5110
|
-
};
|
|
5111
|
-
/**
|
|
5112
|
-
* @public
|
|
5113
|
-
*/
|
|
5114
|
-
export type TargetStatus = (typeof TargetStatus)[keyof typeof TargetStatus];
|
|
5115
4531
|
/**
|
|
5116
4532
|
* <p>Summary information about a target.</p>
|
|
5117
4533
|
* @public
|
|
@@ -5,6 +5,7 @@ export { RuntimeExtension } from "./runtimeExtensions";
|
|
|
5
5
|
export { VPCLatticeExtensionConfiguration } from "./extensionConfiguration";
|
|
6
6
|
export * from "./commands";
|
|
7
7
|
export * from "./pagination";
|
|
8
|
+
export * from "./models/enums";
|
|
8
9
|
export * from "./models/errors";
|
|
9
10
|
export * from "./models/models_0";
|
|
10
11
|
export { VPCLatticeServiceException } from "./models/VPCLatticeServiceException";
|