@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
package/dist-cjs/index.js
CHANGED
|
@@ -3832,6 +3832,152 @@ const paginateListTargetGroups = core.createPaginator(VPCLatticeClient, ListTarg
|
|
|
3832
3832
|
|
|
3833
3833
|
const paginateListTargets = core.createPaginator(VPCLatticeClient, ListTargetsCommand, "nextToken", "nextToken", "maxResults");
|
|
3834
3834
|
|
|
3835
|
+
const ServiceNetworkLogType = {
|
|
3836
|
+
RESOURCE: "RESOURCE",
|
|
3837
|
+
SERVICE: "SERVICE",
|
|
3838
|
+
};
|
|
3839
|
+
const ValidationExceptionReason = {
|
|
3840
|
+
CANNOT_PARSE: "cannotParse",
|
|
3841
|
+
FIELD_VALIDATION_FAILED: "fieldValidationFailed",
|
|
3842
|
+
OTHER: "other",
|
|
3843
|
+
UNKNOWN_OPERATION: "unknownOperation",
|
|
3844
|
+
};
|
|
3845
|
+
const AuthPolicyState = {
|
|
3846
|
+
Active: "Active",
|
|
3847
|
+
Inactive: "Inactive",
|
|
3848
|
+
};
|
|
3849
|
+
const AuthType = {
|
|
3850
|
+
AWS_IAM: "AWS_IAM",
|
|
3851
|
+
NONE: "NONE",
|
|
3852
|
+
};
|
|
3853
|
+
const ListenerProtocol = {
|
|
3854
|
+
HTTP: "HTTP",
|
|
3855
|
+
HTTPS: "HTTPS",
|
|
3856
|
+
TLS_PASSTHROUGH: "TLS_PASSTHROUGH",
|
|
3857
|
+
};
|
|
3858
|
+
const ProtocolType = {
|
|
3859
|
+
TCP: "TCP",
|
|
3860
|
+
};
|
|
3861
|
+
const ResourceConfigurationIpAddressType = {
|
|
3862
|
+
DUALSTACK: "DUALSTACK",
|
|
3863
|
+
IPV4: "IPV4",
|
|
3864
|
+
IPV6: "IPV6",
|
|
3865
|
+
};
|
|
3866
|
+
const ResourceConfigurationType = {
|
|
3867
|
+
ARN: "ARN",
|
|
3868
|
+
CHILD: "CHILD",
|
|
3869
|
+
GROUP: "GROUP",
|
|
3870
|
+
SINGLE: "SINGLE",
|
|
3871
|
+
};
|
|
3872
|
+
const ResourceConfigurationStatus = {
|
|
3873
|
+
ACTIVE: "ACTIVE",
|
|
3874
|
+
CREATE_FAILED: "CREATE_FAILED",
|
|
3875
|
+
CREATE_IN_PROGRESS: "CREATE_IN_PROGRESS",
|
|
3876
|
+
DELETE_FAILED: "DELETE_FAILED",
|
|
3877
|
+
DELETE_IN_PROGRESS: "DELETE_IN_PROGRESS",
|
|
3878
|
+
UPDATE_FAILED: "UPDATE_FAILED",
|
|
3879
|
+
UPDATE_IN_PROGRESS: "UPDATE_IN_PROGRESS",
|
|
3880
|
+
};
|
|
3881
|
+
const ResourceGatewayIpAddressType = {
|
|
3882
|
+
DUALSTACK: "DUALSTACK",
|
|
3883
|
+
IPV4: "IPV4",
|
|
3884
|
+
IPV6: "IPV6",
|
|
3885
|
+
};
|
|
3886
|
+
const ResourceGatewayStatus = {
|
|
3887
|
+
ACTIVE: "ACTIVE",
|
|
3888
|
+
CREATE_FAILED: "CREATE_FAILED",
|
|
3889
|
+
CREATE_IN_PROGRESS: "CREATE_IN_PROGRESS",
|
|
3890
|
+
DELETE_FAILED: "DELETE_FAILED",
|
|
3891
|
+
DELETE_IN_PROGRESS: "DELETE_IN_PROGRESS",
|
|
3892
|
+
UPDATE_FAILED: "UPDATE_FAILED",
|
|
3893
|
+
UPDATE_IN_PROGRESS: "UPDATE_IN_PROGRESS",
|
|
3894
|
+
};
|
|
3895
|
+
const ServiceStatus = {
|
|
3896
|
+
ACTIVE: "ACTIVE",
|
|
3897
|
+
CREATE_FAILED: "CREATE_FAILED",
|
|
3898
|
+
CREATE_IN_PROGRESS: "CREATE_IN_PROGRESS",
|
|
3899
|
+
DELETE_FAILED: "DELETE_FAILED",
|
|
3900
|
+
DELETE_IN_PROGRESS: "DELETE_IN_PROGRESS",
|
|
3901
|
+
};
|
|
3902
|
+
const ServiceNetworkResourceAssociationStatus = {
|
|
3903
|
+
ACTIVE: "ACTIVE",
|
|
3904
|
+
CREATE_FAILED: "CREATE_FAILED",
|
|
3905
|
+
CREATE_IN_PROGRESS: "CREATE_IN_PROGRESS",
|
|
3906
|
+
DELETE_FAILED: "DELETE_FAILED",
|
|
3907
|
+
DELETE_IN_PROGRESS: "DELETE_IN_PROGRESS",
|
|
3908
|
+
PARTIAL: "PARTIAL",
|
|
3909
|
+
};
|
|
3910
|
+
const ServiceNetworkServiceAssociationStatus = {
|
|
3911
|
+
ACTIVE: "ACTIVE",
|
|
3912
|
+
CREATE_FAILED: "CREATE_FAILED",
|
|
3913
|
+
CREATE_IN_PROGRESS: "CREATE_IN_PROGRESS",
|
|
3914
|
+
DELETE_FAILED: "DELETE_FAILED",
|
|
3915
|
+
DELETE_IN_PROGRESS: "DELETE_IN_PROGRESS",
|
|
3916
|
+
};
|
|
3917
|
+
const PrivateDnsPreference = {
|
|
3918
|
+
ALL_DOMAINS: "ALL_DOMAINS",
|
|
3919
|
+
SPECIFIED_DOMAINS_ONLY: "SPECIFIED_DOMAINS_ONLY",
|
|
3920
|
+
VERIFIED_DOMAINS_AND_SPECIFIED_DOMAINS: "VERIFIED_DOMAINS_AND_SPECIFIED_DOMAINS",
|
|
3921
|
+
VERIFIED_DOMAINS_ONLY: "VERIFIED_DOMAINS_ONLY",
|
|
3922
|
+
};
|
|
3923
|
+
const ServiceNetworkVpcAssociationStatus = {
|
|
3924
|
+
ACTIVE: "ACTIVE",
|
|
3925
|
+
CREATE_FAILED: "CREATE_FAILED",
|
|
3926
|
+
CREATE_IN_PROGRESS: "CREATE_IN_PROGRESS",
|
|
3927
|
+
DELETE_FAILED: "DELETE_FAILED",
|
|
3928
|
+
DELETE_IN_PROGRESS: "DELETE_IN_PROGRESS",
|
|
3929
|
+
UPDATE_FAILED: "UPDATE_FAILED",
|
|
3930
|
+
UPDATE_IN_PROGRESS: "UPDATE_IN_PROGRESS",
|
|
3931
|
+
};
|
|
3932
|
+
const TargetGroupProtocol = {
|
|
3933
|
+
HTTP: "HTTP",
|
|
3934
|
+
HTTPS: "HTTPS",
|
|
3935
|
+
TCP: "TCP",
|
|
3936
|
+
};
|
|
3937
|
+
const HealthCheckProtocolVersion = {
|
|
3938
|
+
HTTP1: "HTTP1",
|
|
3939
|
+
HTTP2: "HTTP2",
|
|
3940
|
+
};
|
|
3941
|
+
const IpAddressType = {
|
|
3942
|
+
IPV4: "IPV4",
|
|
3943
|
+
IPV6: "IPV6",
|
|
3944
|
+
};
|
|
3945
|
+
const LambdaEventStructureVersion = {
|
|
3946
|
+
V1: "V1",
|
|
3947
|
+
V2: "V2",
|
|
3948
|
+
};
|
|
3949
|
+
const TargetGroupProtocolVersion = {
|
|
3950
|
+
GRPC: "GRPC",
|
|
3951
|
+
HTTP1: "HTTP1",
|
|
3952
|
+
HTTP2: "HTTP2",
|
|
3953
|
+
};
|
|
3954
|
+
const TargetGroupType = {
|
|
3955
|
+
ALB: "ALB",
|
|
3956
|
+
INSTANCE: "INSTANCE",
|
|
3957
|
+
IP: "IP",
|
|
3958
|
+
LAMBDA: "LAMBDA",
|
|
3959
|
+
};
|
|
3960
|
+
const TargetGroupStatus = {
|
|
3961
|
+
ACTIVE: "ACTIVE",
|
|
3962
|
+
CREATE_FAILED: "CREATE_FAILED",
|
|
3963
|
+
CREATE_IN_PROGRESS: "CREATE_IN_PROGRESS",
|
|
3964
|
+
DELETE_FAILED: "DELETE_FAILED",
|
|
3965
|
+
DELETE_IN_PROGRESS: "DELETE_IN_PROGRESS",
|
|
3966
|
+
};
|
|
3967
|
+
const VerificationStatus = {
|
|
3968
|
+
PENDING: "PENDING",
|
|
3969
|
+
VERIFICATION_TIMED_OUT: "VERIFICATION_TIMED_OUT",
|
|
3970
|
+
VERIFIED: "VERIFIED",
|
|
3971
|
+
};
|
|
3972
|
+
const TargetStatus = {
|
|
3973
|
+
DRAINING: "DRAINING",
|
|
3974
|
+
HEALTHY: "HEALTHY",
|
|
3975
|
+
INITIAL: "INITIAL",
|
|
3976
|
+
UNAVAILABLE: "UNAVAILABLE",
|
|
3977
|
+
UNHEALTHY: "UNHEALTHY",
|
|
3978
|
+
UNUSED: "UNUSED",
|
|
3979
|
+
};
|
|
3980
|
+
|
|
3835
3981
|
Object.defineProperty(exports, "$Command", {
|
|
3836
3982
|
enumerable: true,
|
|
3837
3983
|
get: function () { return smithyClient.Command; }
|
|
@@ -3841,6 +3987,8 @@ Object.defineProperty(exports, "__Client", {
|
|
|
3841
3987
|
get: function () { return smithyClient.Client; }
|
|
3842
3988
|
});
|
|
3843
3989
|
exports.AccessDeniedException = AccessDeniedException$1;
|
|
3990
|
+
exports.AuthPolicyState = AuthPolicyState;
|
|
3991
|
+
exports.AuthType = AuthType;
|
|
3844
3992
|
exports.BatchUpdateRuleCommand = BatchUpdateRuleCommand;
|
|
3845
3993
|
exports.ConflictException = ConflictException$1;
|
|
3846
3994
|
exports.CreateAccessLogSubscriptionCommand = CreateAccessLogSubscriptionCommand;
|
|
@@ -3884,7 +4032,10 @@ exports.GetServiceNetworkResourceAssociationCommand = GetServiceNetworkResourceA
|
|
|
3884
4032
|
exports.GetServiceNetworkServiceAssociationCommand = GetServiceNetworkServiceAssociationCommand;
|
|
3885
4033
|
exports.GetServiceNetworkVpcAssociationCommand = GetServiceNetworkVpcAssociationCommand;
|
|
3886
4034
|
exports.GetTargetGroupCommand = GetTargetGroupCommand;
|
|
4035
|
+
exports.HealthCheckProtocolVersion = HealthCheckProtocolVersion;
|
|
3887
4036
|
exports.InternalServerException = InternalServerException$1;
|
|
4037
|
+
exports.IpAddressType = IpAddressType;
|
|
4038
|
+
exports.LambdaEventStructureVersion = LambdaEventStructureVersion;
|
|
3888
4039
|
exports.ListAccessLogSubscriptionsCommand = ListAccessLogSubscriptionsCommand;
|
|
3889
4040
|
exports.ListDomainVerificationsCommand = ListDomainVerificationsCommand;
|
|
3890
4041
|
exports.ListListenersCommand = ListListenersCommand;
|
|
@@ -3901,13 +4052,31 @@ exports.ListServicesCommand = ListServicesCommand;
|
|
|
3901
4052
|
exports.ListTagsForResourceCommand = ListTagsForResourceCommand;
|
|
3902
4053
|
exports.ListTargetGroupsCommand = ListTargetGroupsCommand;
|
|
3903
4054
|
exports.ListTargetsCommand = ListTargetsCommand;
|
|
4055
|
+
exports.ListenerProtocol = ListenerProtocol;
|
|
4056
|
+
exports.PrivateDnsPreference = PrivateDnsPreference;
|
|
4057
|
+
exports.ProtocolType = ProtocolType;
|
|
3904
4058
|
exports.PutAuthPolicyCommand = PutAuthPolicyCommand;
|
|
3905
4059
|
exports.PutResourcePolicyCommand = PutResourcePolicyCommand;
|
|
3906
4060
|
exports.RegisterTargetsCommand = RegisterTargetsCommand;
|
|
4061
|
+
exports.ResourceConfigurationIpAddressType = ResourceConfigurationIpAddressType;
|
|
4062
|
+
exports.ResourceConfigurationStatus = ResourceConfigurationStatus;
|
|
4063
|
+
exports.ResourceConfigurationType = ResourceConfigurationType;
|
|
4064
|
+
exports.ResourceGatewayIpAddressType = ResourceGatewayIpAddressType;
|
|
4065
|
+
exports.ResourceGatewayStatus = ResourceGatewayStatus;
|
|
3907
4066
|
exports.ResourceNotFoundException = ResourceNotFoundException$1;
|
|
4067
|
+
exports.ServiceNetworkLogType = ServiceNetworkLogType;
|
|
4068
|
+
exports.ServiceNetworkResourceAssociationStatus = ServiceNetworkResourceAssociationStatus;
|
|
4069
|
+
exports.ServiceNetworkServiceAssociationStatus = ServiceNetworkServiceAssociationStatus;
|
|
4070
|
+
exports.ServiceNetworkVpcAssociationStatus = ServiceNetworkVpcAssociationStatus;
|
|
3908
4071
|
exports.ServiceQuotaExceededException = ServiceQuotaExceededException$1;
|
|
4072
|
+
exports.ServiceStatus = ServiceStatus;
|
|
3909
4073
|
exports.StartDomainVerificationCommand = StartDomainVerificationCommand;
|
|
3910
4074
|
exports.TagResourceCommand = TagResourceCommand;
|
|
4075
|
+
exports.TargetGroupProtocol = TargetGroupProtocol;
|
|
4076
|
+
exports.TargetGroupProtocolVersion = TargetGroupProtocolVersion;
|
|
4077
|
+
exports.TargetGroupStatus = TargetGroupStatus;
|
|
4078
|
+
exports.TargetGroupType = TargetGroupType;
|
|
4079
|
+
exports.TargetStatus = TargetStatus;
|
|
3911
4080
|
exports.ThrottlingException = ThrottlingException$1;
|
|
3912
4081
|
exports.UntagResourceCommand = UntagResourceCommand;
|
|
3913
4082
|
exports.UpdateAccessLogSubscriptionCommand = UpdateAccessLogSubscriptionCommand;
|
|
@@ -3923,6 +4092,8 @@ exports.VPCLattice = VPCLattice;
|
|
|
3923
4092
|
exports.VPCLatticeClient = VPCLatticeClient;
|
|
3924
4093
|
exports.VPCLatticeServiceException = VPCLatticeServiceException$1;
|
|
3925
4094
|
exports.ValidationException = ValidationException$1;
|
|
4095
|
+
exports.ValidationExceptionReason = ValidationExceptionReason;
|
|
4096
|
+
exports.VerificationStatus = VerificationStatus;
|
|
3926
4097
|
exports.paginateListAccessLogSubscriptions = paginateListAccessLogSubscriptions;
|
|
3927
4098
|
exports.paginateListDomainVerifications = paginateListDomainVerifications;
|
|
3928
4099
|
exports.paginateListListeners = paginateListListeners;
|
package/dist-es/index.js
CHANGED
|
@@ -2,5 +2,6 @@ export * from "./VPCLatticeClient";
|
|
|
2
2
|
export * from "./VPCLattice";
|
|
3
3
|
export * from "./commands";
|
|
4
4
|
export * from "./pagination";
|
|
5
|
+
export * from "./models/enums";
|
|
5
6
|
export * from "./models/errors";
|
|
6
7
|
export { VPCLatticeServiceException } from "./models/VPCLatticeServiceException";
|
|
@@ -0,0 +1,145 @@
|
|
|
1
|
+
export const ServiceNetworkLogType = {
|
|
2
|
+
RESOURCE: "RESOURCE",
|
|
3
|
+
SERVICE: "SERVICE",
|
|
4
|
+
};
|
|
5
|
+
export const ValidationExceptionReason = {
|
|
6
|
+
CANNOT_PARSE: "cannotParse",
|
|
7
|
+
FIELD_VALIDATION_FAILED: "fieldValidationFailed",
|
|
8
|
+
OTHER: "other",
|
|
9
|
+
UNKNOWN_OPERATION: "unknownOperation",
|
|
10
|
+
};
|
|
11
|
+
export const AuthPolicyState = {
|
|
12
|
+
Active: "Active",
|
|
13
|
+
Inactive: "Inactive",
|
|
14
|
+
};
|
|
15
|
+
export const AuthType = {
|
|
16
|
+
AWS_IAM: "AWS_IAM",
|
|
17
|
+
NONE: "NONE",
|
|
18
|
+
};
|
|
19
|
+
export const ListenerProtocol = {
|
|
20
|
+
HTTP: "HTTP",
|
|
21
|
+
HTTPS: "HTTPS",
|
|
22
|
+
TLS_PASSTHROUGH: "TLS_PASSTHROUGH",
|
|
23
|
+
};
|
|
24
|
+
export const ProtocolType = {
|
|
25
|
+
TCP: "TCP",
|
|
26
|
+
};
|
|
27
|
+
export const ResourceConfigurationIpAddressType = {
|
|
28
|
+
DUALSTACK: "DUALSTACK",
|
|
29
|
+
IPV4: "IPV4",
|
|
30
|
+
IPV6: "IPV6",
|
|
31
|
+
};
|
|
32
|
+
export const ResourceConfigurationType = {
|
|
33
|
+
ARN: "ARN",
|
|
34
|
+
CHILD: "CHILD",
|
|
35
|
+
GROUP: "GROUP",
|
|
36
|
+
SINGLE: "SINGLE",
|
|
37
|
+
};
|
|
38
|
+
export const ResourceConfigurationStatus = {
|
|
39
|
+
ACTIVE: "ACTIVE",
|
|
40
|
+
CREATE_FAILED: "CREATE_FAILED",
|
|
41
|
+
CREATE_IN_PROGRESS: "CREATE_IN_PROGRESS",
|
|
42
|
+
DELETE_FAILED: "DELETE_FAILED",
|
|
43
|
+
DELETE_IN_PROGRESS: "DELETE_IN_PROGRESS",
|
|
44
|
+
UPDATE_FAILED: "UPDATE_FAILED",
|
|
45
|
+
UPDATE_IN_PROGRESS: "UPDATE_IN_PROGRESS",
|
|
46
|
+
};
|
|
47
|
+
export const ResourceGatewayIpAddressType = {
|
|
48
|
+
DUALSTACK: "DUALSTACK",
|
|
49
|
+
IPV4: "IPV4",
|
|
50
|
+
IPV6: "IPV6",
|
|
51
|
+
};
|
|
52
|
+
export const ResourceGatewayStatus = {
|
|
53
|
+
ACTIVE: "ACTIVE",
|
|
54
|
+
CREATE_FAILED: "CREATE_FAILED",
|
|
55
|
+
CREATE_IN_PROGRESS: "CREATE_IN_PROGRESS",
|
|
56
|
+
DELETE_FAILED: "DELETE_FAILED",
|
|
57
|
+
DELETE_IN_PROGRESS: "DELETE_IN_PROGRESS",
|
|
58
|
+
UPDATE_FAILED: "UPDATE_FAILED",
|
|
59
|
+
UPDATE_IN_PROGRESS: "UPDATE_IN_PROGRESS",
|
|
60
|
+
};
|
|
61
|
+
export const ServiceStatus = {
|
|
62
|
+
ACTIVE: "ACTIVE",
|
|
63
|
+
CREATE_FAILED: "CREATE_FAILED",
|
|
64
|
+
CREATE_IN_PROGRESS: "CREATE_IN_PROGRESS",
|
|
65
|
+
DELETE_FAILED: "DELETE_FAILED",
|
|
66
|
+
DELETE_IN_PROGRESS: "DELETE_IN_PROGRESS",
|
|
67
|
+
};
|
|
68
|
+
export const ServiceNetworkResourceAssociationStatus = {
|
|
69
|
+
ACTIVE: "ACTIVE",
|
|
70
|
+
CREATE_FAILED: "CREATE_FAILED",
|
|
71
|
+
CREATE_IN_PROGRESS: "CREATE_IN_PROGRESS",
|
|
72
|
+
DELETE_FAILED: "DELETE_FAILED",
|
|
73
|
+
DELETE_IN_PROGRESS: "DELETE_IN_PROGRESS",
|
|
74
|
+
PARTIAL: "PARTIAL",
|
|
75
|
+
};
|
|
76
|
+
export const ServiceNetworkServiceAssociationStatus = {
|
|
77
|
+
ACTIVE: "ACTIVE",
|
|
78
|
+
CREATE_FAILED: "CREATE_FAILED",
|
|
79
|
+
CREATE_IN_PROGRESS: "CREATE_IN_PROGRESS",
|
|
80
|
+
DELETE_FAILED: "DELETE_FAILED",
|
|
81
|
+
DELETE_IN_PROGRESS: "DELETE_IN_PROGRESS",
|
|
82
|
+
};
|
|
83
|
+
export const PrivateDnsPreference = {
|
|
84
|
+
ALL_DOMAINS: "ALL_DOMAINS",
|
|
85
|
+
SPECIFIED_DOMAINS_ONLY: "SPECIFIED_DOMAINS_ONLY",
|
|
86
|
+
VERIFIED_DOMAINS_AND_SPECIFIED_DOMAINS: "VERIFIED_DOMAINS_AND_SPECIFIED_DOMAINS",
|
|
87
|
+
VERIFIED_DOMAINS_ONLY: "VERIFIED_DOMAINS_ONLY",
|
|
88
|
+
};
|
|
89
|
+
export const ServiceNetworkVpcAssociationStatus = {
|
|
90
|
+
ACTIVE: "ACTIVE",
|
|
91
|
+
CREATE_FAILED: "CREATE_FAILED",
|
|
92
|
+
CREATE_IN_PROGRESS: "CREATE_IN_PROGRESS",
|
|
93
|
+
DELETE_FAILED: "DELETE_FAILED",
|
|
94
|
+
DELETE_IN_PROGRESS: "DELETE_IN_PROGRESS",
|
|
95
|
+
UPDATE_FAILED: "UPDATE_FAILED",
|
|
96
|
+
UPDATE_IN_PROGRESS: "UPDATE_IN_PROGRESS",
|
|
97
|
+
};
|
|
98
|
+
export const TargetGroupProtocol = {
|
|
99
|
+
HTTP: "HTTP",
|
|
100
|
+
HTTPS: "HTTPS",
|
|
101
|
+
TCP: "TCP",
|
|
102
|
+
};
|
|
103
|
+
export const HealthCheckProtocolVersion = {
|
|
104
|
+
HTTP1: "HTTP1",
|
|
105
|
+
HTTP2: "HTTP2",
|
|
106
|
+
};
|
|
107
|
+
export const IpAddressType = {
|
|
108
|
+
IPV4: "IPV4",
|
|
109
|
+
IPV6: "IPV6",
|
|
110
|
+
};
|
|
111
|
+
export const LambdaEventStructureVersion = {
|
|
112
|
+
V1: "V1",
|
|
113
|
+
V2: "V2",
|
|
114
|
+
};
|
|
115
|
+
export const TargetGroupProtocolVersion = {
|
|
116
|
+
GRPC: "GRPC",
|
|
117
|
+
HTTP1: "HTTP1",
|
|
118
|
+
HTTP2: "HTTP2",
|
|
119
|
+
};
|
|
120
|
+
export const TargetGroupType = {
|
|
121
|
+
ALB: "ALB",
|
|
122
|
+
INSTANCE: "INSTANCE",
|
|
123
|
+
IP: "IP",
|
|
124
|
+
LAMBDA: "LAMBDA",
|
|
125
|
+
};
|
|
126
|
+
export const TargetGroupStatus = {
|
|
127
|
+
ACTIVE: "ACTIVE",
|
|
128
|
+
CREATE_FAILED: "CREATE_FAILED",
|
|
129
|
+
CREATE_IN_PROGRESS: "CREATE_IN_PROGRESS",
|
|
130
|
+
DELETE_FAILED: "DELETE_FAILED",
|
|
131
|
+
DELETE_IN_PROGRESS: "DELETE_IN_PROGRESS",
|
|
132
|
+
};
|
|
133
|
+
export const VerificationStatus = {
|
|
134
|
+
PENDING: "PENDING",
|
|
135
|
+
VERIFICATION_TIMED_OUT: "VERIFICATION_TIMED_OUT",
|
|
136
|
+
VERIFIED: "VERIFIED",
|
|
137
|
+
};
|
|
138
|
+
export const TargetStatus = {
|
|
139
|
+
DRAINING: "DRAINING",
|
|
140
|
+
HEALTHY: "HEALTHY",
|
|
141
|
+
INITIAL: "INITIAL",
|
|
142
|
+
UNAVAILABLE: "UNAVAILABLE",
|
|
143
|
+
UNHEALTHY: "UNHEALTHY",
|
|
144
|
+
UNUSED: "UNUSED",
|
|
145
|
+
};
|
|
@@ -1,145 +1 @@
|
|
|
1
|
-
export
|
|
2
|
-
RESOURCE: "RESOURCE",
|
|
3
|
-
SERVICE: "SERVICE",
|
|
4
|
-
};
|
|
5
|
-
export const ValidationExceptionReason = {
|
|
6
|
-
CANNOT_PARSE: "cannotParse",
|
|
7
|
-
FIELD_VALIDATION_FAILED: "fieldValidationFailed",
|
|
8
|
-
OTHER: "other",
|
|
9
|
-
UNKNOWN_OPERATION: "unknownOperation",
|
|
10
|
-
};
|
|
11
|
-
export const AuthPolicyState = {
|
|
12
|
-
Active: "Active",
|
|
13
|
-
Inactive: "Inactive",
|
|
14
|
-
};
|
|
15
|
-
export const AuthType = {
|
|
16
|
-
AWS_IAM: "AWS_IAM",
|
|
17
|
-
NONE: "NONE",
|
|
18
|
-
};
|
|
19
|
-
export const ListenerProtocol = {
|
|
20
|
-
HTTP: "HTTP",
|
|
21
|
-
HTTPS: "HTTPS",
|
|
22
|
-
TLS_PASSTHROUGH: "TLS_PASSTHROUGH",
|
|
23
|
-
};
|
|
24
|
-
export const ProtocolType = {
|
|
25
|
-
TCP: "TCP",
|
|
26
|
-
};
|
|
27
|
-
export const ResourceConfigurationIpAddressType = {
|
|
28
|
-
DUALSTACK: "DUALSTACK",
|
|
29
|
-
IPV4: "IPV4",
|
|
30
|
-
IPV6: "IPV6",
|
|
31
|
-
};
|
|
32
|
-
export const ResourceConfigurationType = {
|
|
33
|
-
ARN: "ARN",
|
|
34
|
-
CHILD: "CHILD",
|
|
35
|
-
GROUP: "GROUP",
|
|
36
|
-
SINGLE: "SINGLE",
|
|
37
|
-
};
|
|
38
|
-
export const ResourceConfigurationStatus = {
|
|
39
|
-
ACTIVE: "ACTIVE",
|
|
40
|
-
CREATE_FAILED: "CREATE_FAILED",
|
|
41
|
-
CREATE_IN_PROGRESS: "CREATE_IN_PROGRESS",
|
|
42
|
-
DELETE_FAILED: "DELETE_FAILED",
|
|
43
|
-
DELETE_IN_PROGRESS: "DELETE_IN_PROGRESS",
|
|
44
|
-
UPDATE_FAILED: "UPDATE_FAILED",
|
|
45
|
-
UPDATE_IN_PROGRESS: "UPDATE_IN_PROGRESS",
|
|
46
|
-
};
|
|
47
|
-
export const ResourceGatewayIpAddressType = {
|
|
48
|
-
DUALSTACK: "DUALSTACK",
|
|
49
|
-
IPV4: "IPV4",
|
|
50
|
-
IPV6: "IPV6",
|
|
51
|
-
};
|
|
52
|
-
export const ResourceGatewayStatus = {
|
|
53
|
-
ACTIVE: "ACTIVE",
|
|
54
|
-
CREATE_FAILED: "CREATE_FAILED",
|
|
55
|
-
CREATE_IN_PROGRESS: "CREATE_IN_PROGRESS",
|
|
56
|
-
DELETE_FAILED: "DELETE_FAILED",
|
|
57
|
-
DELETE_IN_PROGRESS: "DELETE_IN_PROGRESS",
|
|
58
|
-
UPDATE_FAILED: "UPDATE_FAILED",
|
|
59
|
-
UPDATE_IN_PROGRESS: "UPDATE_IN_PROGRESS",
|
|
60
|
-
};
|
|
61
|
-
export const ServiceStatus = {
|
|
62
|
-
ACTIVE: "ACTIVE",
|
|
63
|
-
CREATE_FAILED: "CREATE_FAILED",
|
|
64
|
-
CREATE_IN_PROGRESS: "CREATE_IN_PROGRESS",
|
|
65
|
-
DELETE_FAILED: "DELETE_FAILED",
|
|
66
|
-
DELETE_IN_PROGRESS: "DELETE_IN_PROGRESS",
|
|
67
|
-
};
|
|
68
|
-
export const ServiceNetworkResourceAssociationStatus = {
|
|
69
|
-
ACTIVE: "ACTIVE",
|
|
70
|
-
CREATE_FAILED: "CREATE_FAILED",
|
|
71
|
-
CREATE_IN_PROGRESS: "CREATE_IN_PROGRESS",
|
|
72
|
-
DELETE_FAILED: "DELETE_FAILED",
|
|
73
|
-
DELETE_IN_PROGRESS: "DELETE_IN_PROGRESS",
|
|
74
|
-
PARTIAL: "PARTIAL",
|
|
75
|
-
};
|
|
76
|
-
export const ServiceNetworkServiceAssociationStatus = {
|
|
77
|
-
ACTIVE: "ACTIVE",
|
|
78
|
-
CREATE_FAILED: "CREATE_FAILED",
|
|
79
|
-
CREATE_IN_PROGRESS: "CREATE_IN_PROGRESS",
|
|
80
|
-
DELETE_FAILED: "DELETE_FAILED",
|
|
81
|
-
DELETE_IN_PROGRESS: "DELETE_IN_PROGRESS",
|
|
82
|
-
};
|
|
83
|
-
export const PrivateDnsPreference = {
|
|
84
|
-
ALL_DOMAINS: "ALL_DOMAINS",
|
|
85
|
-
SPECIFIED_DOMAINS_ONLY: "SPECIFIED_DOMAINS_ONLY",
|
|
86
|
-
VERIFIED_DOMAINS_AND_SPECIFIED_DOMAINS: "VERIFIED_DOMAINS_AND_SPECIFIED_DOMAINS",
|
|
87
|
-
VERIFIED_DOMAINS_ONLY: "VERIFIED_DOMAINS_ONLY",
|
|
88
|
-
};
|
|
89
|
-
export const ServiceNetworkVpcAssociationStatus = {
|
|
90
|
-
ACTIVE: "ACTIVE",
|
|
91
|
-
CREATE_FAILED: "CREATE_FAILED",
|
|
92
|
-
CREATE_IN_PROGRESS: "CREATE_IN_PROGRESS",
|
|
93
|
-
DELETE_FAILED: "DELETE_FAILED",
|
|
94
|
-
DELETE_IN_PROGRESS: "DELETE_IN_PROGRESS",
|
|
95
|
-
UPDATE_FAILED: "UPDATE_FAILED",
|
|
96
|
-
UPDATE_IN_PROGRESS: "UPDATE_IN_PROGRESS",
|
|
97
|
-
};
|
|
98
|
-
export const TargetGroupProtocol = {
|
|
99
|
-
HTTP: "HTTP",
|
|
100
|
-
HTTPS: "HTTPS",
|
|
101
|
-
TCP: "TCP",
|
|
102
|
-
};
|
|
103
|
-
export const HealthCheckProtocolVersion = {
|
|
104
|
-
HTTP1: "HTTP1",
|
|
105
|
-
HTTP2: "HTTP2",
|
|
106
|
-
};
|
|
107
|
-
export const IpAddressType = {
|
|
108
|
-
IPV4: "IPV4",
|
|
109
|
-
IPV6: "IPV6",
|
|
110
|
-
};
|
|
111
|
-
export const LambdaEventStructureVersion = {
|
|
112
|
-
V1: "V1",
|
|
113
|
-
V2: "V2",
|
|
114
|
-
};
|
|
115
|
-
export const TargetGroupProtocolVersion = {
|
|
116
|
-
GRPC: "GRPC",
|
|
117
|
-
HTTP1: "HTTP1",
|
|
118
|
-
HTTP2: "HTTP2",
|
|
119
|
-
};
|
|
120
|
-
export const TargetGroupType = {
|
|
121
|
-
ALB: "ALB",
|
|
122
|
-
INSTANCE: "INSTANCE",
|
|
123
|
-
IP: "IP",
|
|
124
|
-
LAMBDA: "LAMBDA",
|
|
125
|
-
};
|
|
126
|
-
export const TargetGroupStatus = {
|
|
127
|
-
ACTIVE: "ACTIVE",
|
|
128
|
-
CREATE_FAILED: "CREATE_FAILED",
|
|
129
|
-
CREATE_IN_PROGRESS: "CREATE_IN_PROGRESS",
|
|
130
|
-
DELETE_FAILED: "DELETE_FAILED",
|
|
131
|
-
DELETE_IN_PROGRESS: "DELETE_IN_PROGRESS",
|
|
132
|
-
};
|
|
133
|
-
export const VerificationStatus = {
|
|
134
|
-
PENDING: "PENDING",
|
|
135
|
-
VERIFICATION_TIMED_OUT: "VERIFICATION_TIMED_OUT",
|
|
136
|
-
VERIFIED: "VERIFIED",
|
|
137
|
-
};
|
|
138
|
-
export const TargetStatus = {
|
|
139
|
-
DRAINING: "DRAINING",
|
|
140
|
-
HEALTHY: "HEALTHY",
|
|
141
|
-
INITIAL: "INITIAL",
|
|
142
|
-
UNAVAILABLE: "UNAVAILABLE",
|
|
143
|
-
UNHEALTHY: "UNHEALTHY",
|
|
144
|
-
UNUSED: "UNUSED",
|
|
145
|
-
};
|
|
1
|
+
export {};
|
package/dist-types/index.d.ts
CHANGED
|
@@ -10,6 +10,7 @@ export type { RuntimeExtension } from "./runtimeExtensions";
|
|
|
10
10
|
export type { VPCLatticeExtensionConfiguration } from "./extensionConfiguration";
|
|
11
11
|
export * from "./commands";
|
|
12
12
|
export * from "./pagination";
|
|
13
|
+
export * from "./models/enums";
|
|
13
14
|
export * from "./models/errors";
|
|
14
15
|
export type * from "./models/models_0";
|
|
15
16
|
export { VPCLatticeServiceException } from "./models/VPCLatticeServiceException";
|