@aws-sdk/client-vpc-lattice 3.686.0 → 3.691.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -46,7 +46,7 @@ export interface CreateAccessLogSubscriptionRequest {
46
46
  * If the parameters aren't identical, the retry fails.</p>
47
47
  * @public
48
48
  */
49
- clientToken?: string;
49
+ clientToken?: string | undefined;
50
50
  /**
51
51
  * <p>The ID or Amazon Resource Name (ARN) of the service network or service.</p>
52
52
  * @public
@@ -62,7 +62,7 @@ export interface CreateAccessLogSubscriptionRequest {
62
62
  * <p>The tags for the access log subscription.</p>
63
63
  * @public
64
64
  */
65
- tags?: Record<string, string>;
65
+ tags?: Record<string, string> | undefined;
66
66
  }
67
67
  /**
68
68
  * @public
@@ -106,7 +106,7 @@ export declare class InternalServerException extends __BaseException {
106
106
  * <p>The number of seconds to wait before retrying.</p>
107
107
  * @public
108
108
  */
109
- retryAfterSeconds?: number;
109
+ retryAfterSeconds?: number | undefined;
110
110
  /**
111
111
  * @internal
112
112
  */
@@ -148,17 +148,17 @@ export declare class ThrottlingException extends __BaseException {
148
148
  * <p>The service code.</p>
149
149
  * @public
150
150
  */
151
- serviceCode?: string;
151
+ serviceCode?: string | undefined;
152
152
  /**
153
153
  * <p>The ID of the service quota that was exceeded.</p>
154
154
  * @public
155
155
  */
156
- quotaCode?: string;
156
+ quotaCode?: string | undefined;
157
157
  /**
158
158
  * <p>The number of seconds to wait before retrying.</p>
159
159
  * @public
160
160
  */
161
- retryAfterSeconds?: number;
161
+ retryAfterSeconds?: number | undefined;
162
162
  /**
163
163
  * @internal
164
164
  */
@@ -211,7 +211,7 @@ export declare class ValidationException extends __BaseException {
211
211
  * <p>The fields that failed validation.</p>
212
212
  * @public
213
213
  */
214
- fieldList?: ValidationExceptionField[];
214
+ fieldList?: ValidationExceptionField[] | undefined;
215
215
  /**
216
216
  * @internal
217
217
  */
@@ -297,12 +297,12 @@ export interface ListAccessLogSubscriptionsRequest {
297
297
  * <p>The maximum number of results to return.</p>
298
298
  * @public
299
299
  */
300
- maxResults?: number;
300
+ maxResults?: number | undefined;
301
301
  /**
302
302
  * <p>A pagination token for the next page of results.</p>
303
303
  * @public
304
304
  */
305
- nextToken?: string;
305
+ nextToken?: string | undefined;
306
306
  }
307
307
  /**
308
308
  * <p>Summary information about an access log subscription.</p>
@@ -360,7 +360,7 @@ export interface ListAccessLogSubscriptionsResponse {
360
360
  * <p>A pagination token for the next page of results.</p>
361
361
  * @public
362
362
  */
363
- nextToken?: string;
363
+ nextToken?: string | undefined;
364
364
  }
365
365
  /**
366
366
  * @public
@@ -461,7 +461,7 @@ export interface WeightedTargetGroup {
461
461
  * only one target group specified, then the default value is 100.</p>
462
462
  * @public
463
463
  */
464
- weight?: number;
464
+ weight?: number | undefined;
465
465
  }
466
466
  /**
467
467
  * <p>Describes a forward action. You can use forward actions to route requests to one or more
@@ -601,7 +601,7 @@ export interface HeaderMatch {
601
601
  * <p>Indicates whether the match is case sensitive.</p>
602
602
  * @public
603
603
  */
604
- caseSensitive?: boolean;
604
+ caseSensitive?: boolean | undefined;
605
605
  }
606
606
  /**
607
607
  * <p>Describes a path match type. Each rule can include only one of the following types of
@@ -661,7 +661,7 @@ export interface PathMatch {
661
661
  * <p>Indicates whether the match is case sensitive.</p>
662
662
  * @public
663
663
  */
664
- caseSensitive?: boolean;
664
+ caseSensitive?: boolean | undefined;
665
665
  }
666
666
  /**
667
667
  * <p>Describes criteria that can be applied to incoming requests.</p>
@@ -672,18 +672,18 @@ export interface HttpMatch {
672
672
  * <p>The HTTP method type.</p>
673
673
  * @public
674
674
  */
675
- method?: string;
675
+ method?: string | undefined;
676
676
  /**
677
677
  * <p>The path match.</p>
678
678
  * @public
679
679
  */
680
- pathMatch?: PathMatch;
680
+ pathMatch?: PathMatch | undefined;
681
681
  /**
682
682
  * <p>The header matches. Matches incoming requests with rule based on request header value before
683
683
  * applying rule action.</p>
684
684
  * @public
685
685
  */
686
- headerMatches?: HeaderMatch[];
686
+ headerMatches?: HeaderMatch[] | undefined;
687
687
  }
688
688
  /**
689
689
  * <p>Describes a rule match.</p>
@@ -729,17 +729,17 @@ export interface RuleUpdate {
729
729
  * <p>The rule match.</p>
730
730
  * @public
731
731
  */
732
- match?: RuleMatch;
732
+ match?: RuleMatch | undefined;
733
733
  /**
734
734
  * <p>The rule priority. A listener can't have multiple rules with the same priority.</p>
735
735
  * @public
736
736
  */
737
- priority?: number;
737
+ priority?: number | undefined;
738
738
  /**
739
739
  * <p>The rule action.</p>
740
740
  * @public
741
741
  */
742
- action?: RuleAction;
742
+ action?: RuleAction | undefined;
743
743
  }
744
744
  /**
745
745
  * @public
@@ -770,37 +770,37 @@ export interface RuleUpdateSuccess {
770
770
  * <p>The Amazon Resource Name (ARN) of the listener.</p>
771
771
  * @public
772
772
  */
773
- arn?: string;
773
+ arn?: string | undefined;
774
774
  /**
775
775
  * <p>The ID of the listener.</p>
776
776
  * @public
777
777
  */
778
- id?: string;
778
+ id?: string | undefined;
779
779
  /**
780
780
  * <p>The name of the listener.</p>
781
781
  * @public
782
782
  */
783
- name?: string;
783
+ name?: string | undefined;
784
784
  /**
785
785
  * <p>Indicates whether this is the default rule.</p>
786
786
  * @public
787
787
  */
788
- isDefault?: boolean;
788
+ isDefault?: boolean | undefined;
789
789
  /**
790
790
  * <p>The rule match.</p>
791
791
  * @public
792
792
  */
793
- match?: RuleMatch;
793
+ match?: RuleMatch | undefined;
794
794
  /**
795
795
  * <p>The rule priority.</p>
796
796
  * @public
797
797
  */
798
- priority?: number;
798
+ priority?: number | undefined;
799
799
  /**
800
800
  * <p>The action for the rule.</p>
801
801
  * @public
802
802
  */
803
- action?: RuleAction;
803
+ action?: RuleAction | undefined;
804
804
  }
805
805
  /**
806
806
  * <p>Describes a rule update that failed.</p>
@@ -811,17 +811,17 @@ export interface RuleUpdateFailure {
811
811
  * <p>The ID or Amazon Resource Name (ARN) of the rule.</p>
812
812
  * @public
813
813
  */
814
- ruleIdentifier?: string;
814
+ ruleIdentifier?: string | undefined;
815
815
  /**
816
816
  * <p>The failure code.</p>
817
817
  * @public
818
818
  */
819
- failureCode?: string;
819
+ failureCode?: string | undefined;
820
820
  /**
821
821
  * <p>The failure message.</p>
822
822
  * @public
823
823
  */
824
- failureMessage?: string;
824
+ failureMessage?: string | undefined;
825
825
  }
826
826
  /**
827
827
  * @public
@@ -831,12 +831,12 @@ export interface BatchUpdateRuleResponse {
831
831
  * <p>The rules that were successfully updated.</p>
832
832
  * @public
833
833
  */
834
- successful?: RuleUpdateSuccess[];
834
+ successful?: RuleUpdateSuccess[] | undefined;
835
835
  /**
836
836
  * <p>The rules that the operation couldn't update.</p>
837
837
  * @public
838
838
  */
839
- unsuccessful?: RuleUpdateFailure[];
839
+ unsuccessful?: RuleUpdateFailure[] | undefined;
840
840
  }
841
841
  /**
842
842
  * @public
@@ -885,7 +885,7 @@ export interface CreateListenerRequest {
885
885
  * HTTP, the default is 80. For HTTPS, the default is 443.</p>
886
886
  * @public
887
887
  */
888
- port?: number;
888
+ port?: number | undefined;
889
889
  /**
890
890
  * <p>The action for the default rule. Each listener has a default rule. The default rule is used
891
891
  * if no other rules match.</p>
@@ -899,12 +899,12 @@ export interface CreateListenerRequest {
899
899
  * If the parameters aren't identical, the retry fails.</p>
900
900
  * @public
901
901
  */
902
- clientToken?: string;
902
+ clientToken?: string | undefined;
903
903
  /**
904
904
  * <p>The tags for the listener.</p>
905
905
  * @public
906
906
  */
907
- tags?: Record<string, string>;
907
+ tags?: Record<string, string> | undefined;
908
908
  }
909
909
  /**
910
910
  * @public
@@ -914,42 +914,42 @@ export interface CreateListenerResponse {
914
914
  * <p>The Amazon Resource Name (ARN) of the listener.</p>
915
915
  * @public
916
916
  */
917
- arn?: string;
917
+ arn?: string | undefined;
918
918
  /**
919
919
  * <p>The ID of the listener.</p>
920
920
  * @public
921
921
  */
922
- id?: string;
922
+ id?: string | undefined;
923
923
  /**
924
924
  * <p>The name of the listener.</p>
925
925
  * @public
926
926
  */
927
- name?: string;
927
+ name?: string | undefined;
928
928
  /**
929
929
  * <p>The protocol of the listener.</p>
930
930
  * @public
931
931
  */
932
- protocol?: ListenerProtocol;
932
+ protocol?: ListenerProtocol | undefined;
933
933
  /**
934
934
  * <p>The port number of the listener.</p>
935
935
  * @public
936
936
  */
937
- port?: number;
937
+ port?: number | undefined;
938
938
  /**
939
939
  * <p>The Amazon Resource Name (ARN) of the service.</p>
940
940
  * @public
941
941
  */
942
- serviceArn?: string;
942
+ serviceArn?: string | undefined;
943
943
  /**
944
944
  * <p>The ID of the service.</p>
945
945
  * @public
946
946
  */
947
- serviceId?: string;
947
+ serviceId?: string | undefined;
948
948
  /**
949
949
  * <p>The action for the default rule.</p>
950
950
  * @public
951
951
  */
952
- defaultAction?: RuleAction;
952
+ defaultAction?: RuleAction | undefined;
953
953
  }
954
954
  /**
955
955
  * <p>The request would cause a service quota to be exceeded.</p>
@@ -962,7 +962,7 @@ export declare class ServiceQuotaExceededException extends __BaseException {
962
962
  * <p>The resource ID.</p>
963
963
  * @public
964
964
  */
965
- resourceId?: string;
965
+ resourceId?: string | undefined;
966
966
  /**
967
967
  * <p>The resource type.</p>
968
968
  * @public
@@ -1026,12 +1026,12 @@ export interface CreateRuleRequest {
1026
1026
  * If the parameters aren't identical, the retry fails.</p>
1027
1027
  * @public
1028
1028
  */
1029
- clientToken?: string;
1029
+ clientToken?: string | undefined;
1030
1030
  /**
1031
1031
  * <p>The tags for the rule.</p>
1032
1032
  * @public
1033
1033
  */
1034
- tags?: Record<string, string>;
1034
+ tags?: Record<string, string> | undefined;
1035
1035
  }
1036
1036
  /**
1037
1037
  * @public
@@ -1041,35 +1041,35 @@ export interface CreateRuleResponse {
1041
1041
  * <p>The Amazon Resource Name (ARN) of the rule.</p>
1042
1042
  * @public
1043
1043
  */
1044
- arn?: string;
1044
+ arn?: string | undefined;
1045
1045
  /**
1046
1046
  * <p>The ID of the rule.</p>
1047
1047
  * @public
1048
1048
  */
1049
- id?: string;
1049
+ id?: string | undefined;
1050
1050
  /**
1051
1051
  * <p>The name of the rule.</p>
1052
1052
  * @public
1053
1053
  */
1054
- name?: string;
1054
+ name?: string | undefined;
1055
1055
  /**
1056
1056
  * <p>The rule match. The <code>RuleMatch</code> must be an <code>HttpMatch</code>. This means
1057
1057
  * that the rule should be an exact match on HTTP constraints which are made up of the HTTP method,
1058
1058
  * path, and header.</p>
1059
1059
  * @public
1060
1060
  */
1061
- match?: RuleMatch;
1061
+ match?: RuleMatch | undefined;
1062
1062
  /**
1063
1063
  * <p>The priority assigned to the rule. The lower the priority number the higher the
1064
1064
  * priority.</p>
1065
1065
  * @public
1066
1066
  */
1067
- priority?: number;
1067
+ priority?: number | undefined;
1068
1068
  /**
1069
1069
  * <p>The rule action.</p>
1070
1070
  * @public
1071
1071
  */
1072
- action?: RuleAction;
1072
+ action?: RuleAction | undefined;
1073
1073
  }
1074
1074
  /**
1075
1075
  * @public
@@ -1082,7 +1082,7 @@ export interface CreateServiceRequest {
1082
1082
  * If the parameters aren't identical, the retry fails.</p>
1083
1083
  * @public
1084
1084
  */
1085
- clientToken?: string;
1085
+ clientToken?: string | undefined;
1086
1086
  /**
1087
1087
  * <p>The name of the service. The name must be unique within the account. The valid characters are a-z, 0-9, and hyphens (-). You can't use a
1088
1088
  * hyphen as the first or last character, or immediately after another hyphen.</p>
@@ -1093,17 +1093,17 @@ export interface CreateServiceRequest {
1093
1093
  * <p>The tags for the service.</p>
1094
1094
  * @public
1095
1095
  */
1096
- tags?: Record<string, string>;
1096
+ tags?: Record<string, string> | undefined;
1097
1097
  /**
1098
1098
  * <p>The custom domain name of the service.</p>
1099
1099
  * @public
1100
1100
  */
1101
- customDomainName?: string;
1101
+ customDomainName?: string | undefined;
1102
1102
  /**
1103
1103
  * <p>The Amazon Resource Name (ARN) of the certificate.</p>
1104
1104
  * @public
1105
1105
  */
1106
- certificateArn?: string;
1106
+ certificateArn?: string | undefined;
1107
1107
  /**
1108
1108
  * <p>The type of IAM policy.</p>
1109
1109
  * <ul>
@@ -1118,7 +1118,7 @@ export interface CreateServiceRequest {
1118
1118
  * </ul>
1119
1119
  * @public
1120
1120
  */
1121
- authType?: AuthType;
1121
+ authType?: AuthType | undefined;
1122
1122
  }
1123
1123
  /**
1124
1124
  * <p>Describes the DNS information of a service.</p>
@@ -1129,12 +1129,12 @@ export interface DnsEntry {
1129
1129
  * <p>The domain name of the service.</p>
1130
1130
  * @public
1131
1131
  */
1132
- domainName?: string;
1132
+ domainName?: string | undefined;
1133
1133
  /**
1134
1134
  * <p>The ID of the hosted zone.</p>
1135
1135
  * @public
1136
1136
  */
1137
- hostedZoneId?: string;
1137
+ hostedZoneId?: string | undefined;
1138
1138
  }
1139
1139
  /**
1140
1140
  * @public
@@ -1174,43 +1174,43 @@ export interface CreateServiceResponse {
1174
1174
  * <p>The ID of the service.</p>
1175
1175
  * @public
1176
1176
  */
1177
- id?: string;
1177
+ id?: string | undefined;
1178
1178
  /**
1179
1179
  * <p>The Amazon Resource Name (ARN) of the service.</p>
1180
1180
  * @public
1181
1181
  */
1182
- arn?: string;
1182
+ arn?: string | undefined;
1183
1183
  /**
1184
1184
  * <p>The name of the service.</p>
1185
1185
  * @public
1186
1186
  */
1187
- name?: string;
1187
+ name?: string | undefined;
1188
1188
  /**
1189
1189
  * <p>The custom domain name of the service.</p>
1190
1190
  * @public
1191
1191
  */
1192
- customDomainName?: string;
1192
+ customDomainName?: string | undefined;
1193
1193
  /**
1194
1194
  * <p>The Amazon Resource Name (ARN) of the certificate.</p>
1195
1195
  * @public
1196
1196
  */
1197
- certificateArn?: string;
1197
+ certificateArn?: string | undefined;
1198
1198
  /**
1199
1199
  * <p>The status. If the status is <code>CREATE_FAILED</code>, you must delete and
1200
1200
  * recreate the service.</p>
1201
1201
  * @public
1202
1202
  */
1203
- status?: ServiceStatus;
1203
+ status?: ServiceStatus | undefined;
1204
1204
  /**
1205
1205
  * <p>The type of IAM policy.</p>
1206
1206
  * @public
1207
1207
  */
1208
- authType?: AuthType;
1208
+ authType?: AuthType | undefined;
1209
1209
  /**
1210
1210
  * <p>The public DNS name of the service.</p>
1211
1211
  * @public
1212
1212
  */
1213
- dnsEntry?: DnsEntry;
1213
+ dnsEntry?: DnsEntry | undefined;
1214
1214
  }
1215
1215
  /**
1216
1216
  * @public
@@ -1223,7 +1223,7 @@ export interface CreateServiceNetworkRequest {
1223
1223
  * If the parameters aren't identical, the retry fails.</p>
1224
1224
  * @public
1225
1225
  */
1226
- clientToken?: string;
1226
+ clientToken?: string | undefined;
1227
1227
  /**
1228
1228
  * <p>The name of the service network. The name must be unique to the account. The valid characters are a-z, 0-9, and hyphens (-). You can't use a
1229
1229
  * hyphen as the first or last character, or immediately after another hyphen.</p>
@@ -1244,12 +1244,12 @@ export interface CreateServiceNetworkRequest {
1244
1244
  * </ul>
1245
1245
  * @public
1246
1246
  */
1247
- authType?: AuthType;
1247
+ authType?: AuthType | undefined;
1248
1248
  /**
1249
1249
  * <p>The tags for the service network.</p>
1250
1250
  * @public
1251
1251
  */
1252
- tags?: Record<string, string>;
1252
+ tags?: Record<string, string> | undefined;
1253
1253
  }
1254
1254
  /**
1255
1255
  * @public
@@ -1259,22 +1259,22 @@ export interface CreateServiceNetworkResponse {
1259
1259
  * <p>The ID of the service network.</p>
1260
1260
  * @public
1261
1261
  */
1262
- id?: string;
1262
+ id?: string | undefined;
1263
1263
  /**
1264
1264
  * <p>The name of the service network.</p>
1265
1265
  * @public
1266
1266
  */
1267
- name?: string;
1267
+ name?: string | undefined;
1268
1268
  /**
1269
1269
  * <p>The Amazon Resource Name (ARN) of the service network.</p>
1270
1270
  * @public
1271
1271
  */
1272
- arn?: string;
1272
+ arn?: string | undefined;
1273
1273
  /**
1274
1274
  * <p>The type of IAM policy.</p>
1275
1275
  * @public
1276
1276
  */
1277
- authType?: AuthType;
1277
+ authType?: AuthType | undefined;
1278
1278
  }
1279
1279
  /**
1280
1280
  * @public
@@ -1287,7 +1287,7 @@ export interface CreateServiceNetworkServiceAssociationRequest {
1287
1287
  * If the parameters aren't identical, the retry fails.</p>
1288
1288
  * @public
1289
1289
  */
1290
- clientToken?: string;
1290
+ clientToken?: string | undefined;
1291
1291
  /**
1292
1292
  * <p>The ID or Amazon Resource Name (ARN) of the service.</p>
1293
1293
  * @public
@@ -1303,7 +1303,7 @@ export interface CreateServiceNetworkServiceAssociationRequest {
1303
1303
  * <p>The tags for the association.</p>
1304
1304
  * @public
1305
1305
  */
1306
- tags?: Record<string, string>;
1306
+ tags?: Record<string, string> | undefined;
1307
1307
  }
1308
1308
  /**
1309
1309
  * @public
@@ -1343,32 +1343,32 @@ export interface CreateServiceNetworkServiceAssociationResponse {
1343
1343
  * <p>The ID of the association.</p>
1344
1344
  * @public
1345
1345
  */
1346
- id?: string;
1346
+ id?: string | undefined;
1347
1347
  /**
1348
1348
  * <p>The association status.</p>
1349
1349
  * @public
1350
1350
  */
1351
- status?: ServiceNetworkServiceAssociationStatus;
1351
+ status?: ServiceNetworkServiceAssociationStatus | undefined;
1352
1352
  /**
1353
1353
  * <p>The Amazon Resource Name (ARN) of the association.</p>
1354
1354
  * @public
1355
1355
  */
1356
- arn?: string;
1356
+ arn?: string | undefined;
1357
1357
  /**
1358
1358
  * <p>The account that created the association.</p>
1359
1359
  * @public
1360
1360
  */
1361
- createdBy?: string;
1361
+ createdBy?: string | undefined;
1362
1362
  /**
1363
1363
  * <p>The custom domain name of the service.</p>
1364
1364
  * @public
1365
1365
  */
1366
- customDomainName?: string;
1366
+ customDomainName?: string | undefined;
1367
1367
  /**
1368
1368
  * <p>The DNS name of the service.</p>
1369
1369
  * @public
1370
1370
  */
1371
- dnsEntry?: DnsEntry;
1371
+ dnsEntry?: DnsEntry | undefined;
1372
1372
  }
1373
1373
  /**
1374
1374
  * @public
@@ -1381,7 +1381,7 @@ export interface CreateServiceNetworkVpcAssociationRequest {
1381
1381
  * If the parameters aren't identical, the retry fails.</p>
1382
1382
  * @public
1383
1383
  */
1384
- clientToken?: string;
1384
+ clientToken?: string | undefined;
1385
1385
  /**
1386
1386
  * <p>The ID or Amazon Resource Name (ARN) of the service network. You must use the ARN when the
1387
1387
  * resources specified in the operation are in different accounts.</p>
@@ -1401,12 +1401,12 @@ export interface CreateServiceNetworkVpcAssociationRequest {
1401
1401
  * Guide</i>.</p>
1402
1402
  * @public
1403
1403
  */
1404
- securityGroupIds?: string[];
1404
+ securityGroupIds?: string[] | undefined;
1405
1405
  /**
1406
1406
  * <p>The tags for the association.</p>
1407
1407
  * @public
1408
1408
  */
1409
- tags?: Record<string, string>;
1409
+ tags?: Record<string, string> | undefined;
1410
1410
  }
1411
1411
  /**
1412
1412
  * @public
@@ -1454,27 +1454,27 @@ export interface CreateServiceNetworkVpcAssociationResponse {
1454
1454
  * <p>The ID of the association.</p>
1455
1455
  * @public
1456
1456
  */
1457
- id?: string;
1457
+ id?: string | undefined;
1458
1458
  /**
1459
1459
  * <p>The association status.</p>
1460
1460
  * @public
1461
1461
  */
1462
- status?: ServiceNetworkVpcAssociationStatus;
1462
+ status?: ServiceNetworkVpcAssociationStatus | undefined;
1463
1463
  /**
1464
1464
  * <p>The Amazon Resource Name (ARN) of the association.</p>
1465
1465
  * @public
1466
1466
  */
1467
- arn?: string;
1467
+ arn?: string | undefined;
1468
1468
  /**
1469
1469
  * <p>The account that created the association.</p>
1470
1470
  * @public
1471
1471
  */
1472
- createdBy?: string;
1472
+ createdBy?: string | undefined;
1473
1473
  /**
1474
1474
  * <p>The IDs of the security groups.</p>
1475
1475
  * @public
1476
1476
  */
1477
- securityGroupIds?: string[];
1477
+ securityGroupIds?: string[] | undefined;
1478
1478
  }
1479
1479
  /**
1480
1480
  * <p>Describes the codes to use when checking for a successful response from a target for health
@@ -1557,25 +1557,25 @@ export interface HealthCheckConfig {
1557
1557
  * <p>Indicates whether health checking is enabled.</p>
1558
1558
  * @public
1559
1559
  */
1560
- enabled?: boolean;
1560
+ enabled?: boolean | undefined;
1561
1561
  /**
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
  * @public
1565
1565
  */
1566
- protocol?: TargetGroupProtocol;
1566
+ protocol?: TargetGroupProtocol | undefined;
1567
1567
  /**
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
  * @public
1571
1571
  */
1572
- protocolVersion?: HealthCheckProtocolVersion;
1572
+ protocolVersion?: HealthCheckProtocolVersion | undefined;
1573
1573
  /**
1574
1574
  * <p>The port used when performing health checks on targets. The default setting is the port that
1575
1575
  * a target receives traffic on.</p>
1576
1576
  * @public
1577
1577
  */
1578
- port?: number;
1578
+ port?: number | undefined;
1579
1579
  /**
1580
1580
  * <p>The destination for health checks on the targets. If the protocol version is
1581
1581
  * <code>HTTP/1.1</code> or <code>HTTP/2</code>, specify a valid URI (for example,
@@ -1584,36 +1584,36 @@ export interface HealthCheckConfig {
1584
1584
  * <code>HTTP/2</code> and specify a valid URI.</p>
1585
1585
  * @public
1586
1586
  */
1587
- path?: string;
1587
+ path?: string | undefined;
1588
1588
  /**
1589
1589
  * <p>The approximate amount of time, in seconds, between health checks of an individual target.
1590
1590
  * The range is 5–300 seconds. The default is 30 seconds.</p>
1591
1591
  * @public
1592
1592
  */
1593
- healthCheckIntervalSeconds?: number;
1593
+ healthCheckIntervalSeconds?: number | undefined;
1594
1594
  /**
1595
1595
  * <p>The amount of time, in seconds, to wait before reporting a target as unhealthy. The range is
1596
1596
  * 1–120 seconds. The default is 5 seconds.</p>
1597
1597
  * @public
1598
1598
  */
1599
- healthCheckTimeoutSeconds?: number;
1599
+ healthCheckTimeoutSeconds?: number | undefined;
1600
1600
  /**
1601
1601
  * <p>The number of consecutive successful health checks required before considering an unhealthy
1602
1602
  * target healthy. The range is 2–10. The default is 5.</p>
1603
1603
  * @public
1604
1604
  */
1605
- healthyThresholdCount?: number;
1605
+ healthyThresholdCount?: number | undefined;
1606
1606
  /**
1607
1607
  * <p>The number of consecutive failed health checks required before considering a target
1608
1608
  * unhealthy. The range is 2–10. The default is 2.</p>
1609
1609
  * @public
1610
1610
  */
1611
- unhealthyThresholdCount?: number;
1611
+ unhealthyThresholdCount?: number | undefined;
1612
1612
  /**
1613
1613
  * <p>The codes to use when checking for a successful response from a target.</p>
1614
1614
  * @public
1615
1615
  */
1616
- matcher?: Matcher;
1616
+ matcher?: Matcher | undefined;
1617
1617
  }
1618
1618
  /**
1619
1619
  * @public
@@ -1685,42 +1685,42 @@ export interface TargetGroupConfig {
1685
1685
  * HTTPS, the default is 443. Not supported if the target group type is <code>LAMBDA</code>.</p>
1686
1686
  * @public
1687
1687
  */
1688
- port?: number;
1688
+ port?: number | undefined;
1689
1689
  /**
1690
1690
  * <p>The protocol to use for routing traffic to the targets. The default is the protocol of the target
1691
1691
  * group. Not supported if the target group type is <code>LAMBDA</code>.</p>
1692
1692
  * @public
1693
1693
  */
1694
- protocol?: TargetGroupProtocol;
1694
+ protocol?: TargetGroupProtocol | undefined;
1695
1695
  /**
1696
1696
  * <p>The protocol version. The default is <code>HTTP1</code>.
1697
1697
  * Not supported if the target group type is <code>LAMBDA</code>.</p>
1698
1698
  * @public
1699
1699
  */
1700
- protocolVersion?: TargetGroupProtocolVersion;
1700
+ protocolVersion?: TargetGroupProtocolVersion | undefined;
1701
1701
  /**
1702
1702
  * <p>The type of IP address used for the target group. Supported only if the target group
1703
1703
  * type is <code>IP</code>. The default is <code>IPV4</code>.</p>
1704
1704
  * @public
1705
1705
  */
1706
- ipAddressType?: IpAddressType;
1706
+ ipAddressType?: IpAddressType | undefined;
1707
1707
  /**
1708
1708
  * <p>The ID of the VPC. Not supported if the target group type is <code>LAMBDA</code>.</p>
1709
1709
  * @public
1710
1710
  */
1711
- vpcIdentifier?: string;
1711
+ vpcIdentifier?: string | undefined;
1712
1712
  /**
1713
1713
  * <p>The health check configuration. Not supported if the target group type is
1714
1714
  * <code>LAMBDA</code> or <code>ALB</code>.</p>
1715
1715
  * @public
1716
1716
  */
1717
- healthCheck?: HealthCheckConfig;
1717
+ healthCheck?: HealthCheckConfig | undefined;
1718
1718
  /**
1719
1719
  * <p>The version of the event structure that your Lambda function receives.
1720
1720
  * Supported only if the target group type is <code>LAMBDA</code>. The default is <code>V1</code>.</p>
1721
1721
  * @public
1722
1722
  */
1723
- lambdaEventStructureVersion?: LambdaEventStructureVersion;
1723
+ lambdaEventStructureVersion?: LambdaEventStructureVersion | undefined;
1724
1724
  }
1725
1725
  /**
1726
1726
  * @public
@@ -1767,7 +1767,7 @@ export interface CreateTargetGroupRequest {
1767
1767
  * <p>The target group configuration.</p>
1768
1768
  * @public
1769
1769
  */
1770
- config?: TargetGroupConfig;
1770
+ config?: TargetGroupConfig | undefined;
1771
1771
  /**
1772
1772
  * <p>A unique, case-sensitive identifier that you provide to ensure
1773
1773
  * the idempotency of the request. If you retry a request that completed successfully using
@@ -1775,12 +1775,12 @@ export interface CreateTargetGroupRequest {
1775
1775
  * If the parameters aren't identical, the retry fails.</p>
1776
1776
  * @public
1777
1777
  */
1778
- clientToken?: string;
1778
+ clientToken?: string | undefined;
1779
1779
  /**
1780
1780
  * <p>The tags for the target group.</p>
1781
1781
  * @public
1782
1782
  */
1783
- tags?: Record<string, string>;
1783
+ tags?: Record<string, string> | undefined;
1784
1784
  }
1785
1785
  /**
1786
1786
  * @public
@@ -1820,34 +1820,34 @@ export interface CreateTargetGroupResponse {
1820
1820
  * <p>The ID of the target group.</p>
1821
1821
  * @public
1822
1822
  */
1823
- id?: string;
1823
+ id?: string | undefined;
1824
1824
  /**
1825
1825
  * <p>The Amazon Resource Name (ARN) of the target group.</p>
1826
1826
  * @public
1827
1827
  */
1828
- arn?: string;
1828
+ arn?: string | undefined;
1829
1829
  /**
1830
1830
  * <p>The name of the target group.</p>
1831
1831
  * @public
1832
1832
  */
1833
- name?: string;
1833
+ name?: string | undefined;
1834
1834
  /**
1835
1835
  * <p>The type of target group.</p>
1836
1836
  * @public
1837
1837
  */
1838
- type?: TargetGroupType;
1838
+ type?: TargetGroupType | undefined;
1839
1839
  /**
1840
1840
  * <p>The target group configuration.</p>
1841
1841
  * @public
1842
1842
  */
1843
- config?: TargetGroupConfig;
1843
+ config?: TargetGroupConfig | undefined;
1844
1844
  /**
1845
1845
  * <p>The status. You can retry the operation if the status is <code>CREATE_FAILED</code>.
1846
1846
  * However, if you retry it while the status is <code>CREATE_IN_PROGRESS</code>, there is
1847
1847
  * no change in the status.</p>
1848
1848
  * @public
1849
1849
  */
1850
- status?: TargetGroupStatus;
1850
+ status?: TargetGroupStatus | undefined;
1851
1851
  }
1852
1852
  /**
1853
1853
  * @public
@@ -1942,24 +1942,24 @@ export interface DeleteServiceResponse {
1942
1942
  * <p>The ID of the service.</p>
1943
1943
  * @public
1944
1944
  */
1945
- id?: string;
1945
+ id?: string | undefined;
1946
1946
  /**
1947
1947
  * <p>The Amazon Resource Name (ARN) of the service.</p>
1948
1948
  * @public
1949
1949
  */
1950
- arn?: string;
1950
+ arn?: string | undefined;
1951
1951
  /**
1952
1952
  * <p>The name of the service.</p>
1953
1953
  * @public
1954
1954
  */
1955
- name?: string;
1955
+ name?: string | undefined;
1956
1956
  /**
1957
1957
  * <p>The status. You can retry the operation if the status is <code>DELETE_FAILED</code>.
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
  * @public
1961
1961
  */
1962
- status?: ServiceStatus;
1962
+ status?: ServiceStatus | undefined;
1963
1963
  }
1964
1964
  /**
1965
1965
  * @public
@@ -1994,19 +1994,19 @@ export interface DeleteServiceNetworkServiceAssociationResponse {
1994
1994
  * <p>The ID of the association.</p>
1995
1995
  * @public
1996
1996
  */
1997
- id?: string;
1997
+ id?: string | undefined;
1998
1998
  /**
1999
1999
  * <p>The status. You can retry the operation if the status is <code>DELETE_FAILED</code>.
2000
2000
  * However, if you retry it when the status is <code>DELETE_IN_PROGRESS</code>, there is no
2001
2001
  * change in the status.</p>
2002
2002
  * @public
2003
2003
  */
2004
- status?: ServiceNetworkServiceAssociationStatus;
2004
+ status?: ServiceNetworkServiceAssociationStatus | undefined;
2005
2005
  /**
2006
2006
  * <p>The Amazon Resource Name (ARN) of the association.</p>
2007
2007
  * @public
2008
2008
  */
2009
- arn?: string;
2009
+ arn?: string | undefined;
2010
2010
  }
2011
2011
  /**
2012
2012
  * @public
@@ -2026,19 +2026,19 @@ export interface DeleteServiceNetworkVpcAssociationResponse {
2026
2026
  * <p>The ID of the association.</p>
2027
2027
  * @public
2028
2028
  */
2029
- id?: string;
2029
+ id?: string | undefined;
2030
2030
  /**
2031
2031
  * <p>The status. You can retry the operation if the status is <code>DELETE_FAILED</code>.
2032
2032
  * However, if you retry it while the status is <code>DELETE_IN_PROGRESS</code>, there is no change
2033
2033
  * in the status.</p>
2034
2034
  * @public
2035
2035
  */
2036
- status?: ServiceNetworkVpcAssociationStatus;
2036
+ status?: ServiceNetworkVpcAssociationStatus | undefined;
2037
2037
  /**
2038
2038
  * <p>The Amazon Resource Name (ARN) of the association.</p>
2039
2039
  * @public
2040
2040
  */
2041
- arn?: string;
2041
+ arn?: string | undefined;
2042
2042
  }
2043
2043
  /**
2044
2044
  * @public
@@ -2058,19 +2058,19 @@ export interface DeleteTargetGroupResponse {
2058
2058
  * <p>The ID of the target group.</p>
2059
2059
  * @public
2060
2060
  */
2061
- id?: string;
2061
+ id?: string | undefined;
2062
2062
  /**
2063
2063
  * <p>The Amazon Resource Name (ARN) of the target group.</p>
2064
2064
  * @public
2065
2065
  */
2066
- arn?: string;
2066
+ arn?: string | undefined;
2067
2067
  /**
2068
2068
  * <p>The status. You can retry the operation if the status is <code>DELETE_FAILED</code>.
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
  * @public
2072
2072
  */
2073
- status?: TargetGroupStatus;
2073
+ status?: TargetGroupStatus | undefined;
2074
2074
  }
2075
2075
  /**
2076
2076
  * <p>Describes a target.</p>
@@ -2090,7 +2090,7 @@ export interface Target {
2090
2090
  * HTTPS, the default is 443.</p>
2091
2091
  * @public
2092
2092
  */
2093
- port?: number;
2093
+ port?: number | undefined;
2094
2094
  }
2095
2095
  /**
2096
2096
  * @public
@@ -2119,23 +2119,23 @@ export interface TargetFailure {
2119
2119
  * <code>ALB</code>, this is the ARN of an Application Load Balancer.</p>
2120
2120
  * @public
2121
2121
  */
2122
- id?: string;
2122
+ id?: string | undefined;
2123
2123
  /**
2124
2124
  * <p>The port on which the target is listening. This parameter doesn't apply if the target is a
2125
2125
  * Lambda function.</p>
2126
2126
  * @public
2127
2127
  */
2128
- port?: number;
2128
+ port?: number | undefined;
2129
2129
  /**
2130
2130
  * <p>The failure code.</p>
2131
2131
  * @public
2132
2132
  */
2133
- failureCode?: string;
2133
+ failureCode?: string | undefined;
2134
2134
  /**
2135
2135
  * <p>The failure message.</p>
2136
2136
  * @public
2137
2137
  */
2138
- failureMessage?: string;
2138
+ failureMessage?: string | undefined;
2139
2139
  }
2140
2140
  /**
2141
2141
  * @public
@@ -2145,12 +2145,12 @@ export interface DeregisterTargetsResponse {
2145
2145
  * <p>The targets that were successfully deregistered.</p>
2146
2146
  * @public
2147
2147
  */
2148
- successful?: Target[];
2148
+ successful?: Target[] | undefined;
2149
2149
  /**
2150
2150
  * <p>The targets that the operation couldn't deregister.</p>
2151
2151
  * @public
2152
2152
  */
2153
- unsuccessful?: TargetFailure[];
2153
+ unsuccessful?: TargetFailure[] | undefined;
2154
2154
  }
2155
2155
  /**
2156
2156
  * @public
@@ -2170,7 +2170,7 @@ export interface GetAuthPolicyResponse {
2170
2170
  * <p>The auth policy.</p>
2171
2171
  * @public
2172
2172
  */
2173
- policy?: string;
2173
+ policy?: string | undefined;
2174
2174
  /**
2175
2175
  * <p>The state of the auth policy. The auth policy is only active when the auth type is set to
2176
2176
  * <code>AWS_IAM</code>. If you provide a policy, then authentication and authorization decisions
@@ -2178,18 +2178,18 @@ export interface GetAuthPolicyResponse {
2178
2178
  * then any auth policy that you provide remains inactive. For more information, see <a href="https://docs.aws.amazon.com/vpc-lattice/latest/ug/service-networks.html#create-service-network">Create a service network</a> in the <i>Amazon VPC Lattice User Guide</i>.</p>
2179
2179
  * @public
2180
2180
  */
2181
- state?: AuthPolicyState;
2181
+ state?: AuthPolicyState | undefined;
2182
2182
  /**
2183
2183
  * <p>The date and time that the auth policy was created, specified in ISO-8601 format.</p>
2184
2184
  * @public
2185
2185
  */
2186
- createdAt?: Date;
2186
+ createdAt?: Date | undefined;
2187
2187
  /**
2188
2188
  * <p>The date and time that the auth policy was last updated, specified in ISO-8601
2189
2189
  * format.</p>
2190
2190
  * @public
2191
2191
  */
2192
- lastUpdatedAt?: Date;
2192
+ lastUpdatedAt?: Date | undefined;
2193
2193
  }
2194
2194
  /**
2195
2195
  * @public
@@ -2214,52 +2214,52 @@ export interface GetListenerResponse {
2214
2214
  * <p>The Amazon Resource Name (ARN) of the listener.</p>
2215
2215
  * @public
2216
2216
  */
2217
- arn?: string;
2217
+ arn?: string | undefined;
2218
2218
  /**
2219
2219
  * <p>The ID of the listener.</p>
2220
2220
  * @public
2221
2221
  */
2222
- id?: string;
2222
+ id?: string | undefined;
2223
2223
  /**
2224
2224
  * <p>The name of the listener.</p>
2225
2225
  * @public
2226
2226
  */
2227
- name?: string;
2227
+ name?: string | undefined;
2228
2228
  /**
2229
2229
  * <p>The listener protocol.</p>
2230
2230
  * @public
2231
2231
  */
2232
- protocol?: ListenerProtocol;
2232
+ protocol?: ListenerProtocol | undefined;
2233
2233
  /**
2234
2234
  * <p>The listener port.</p>
2235
2235
  * @public
2236
2236
  */
2237
- port?: number;
2237
+ port?: number | undefined;
2238
2238
  /**
2239
2239
  * <p>The Amazon Resource Name (ARN) of the service.</p>
2240
2240
  * @public
2241
2241
  */
2242
- serviceArn?: string;
2242
+ serviceArn?: string | undefined;
2243
2243
  /**
2244
2244
  * <p>The ID of the service.</p>
2245
2245
  * @public
2246
2246
  */
2247
- serviceId?: string;
2247
+ serviceId?: string | undefined;
2248
2248
  /**
2249
2249
  * <p>The actions for the default listener rule.</p>
2250
2250
  * @public
2251
2251
  */
2252
- defaultAction?: RuleAction;
2252
+ defaultAction?: RuleAction | undefined;
2253
2253
  /**
2254
2254
  * <p>The date and time that the listener was created, specified in ISO-8601 format.</p>
2255
2255
  * @public
2256
2256
  */
2257
- createdAt?: Date;
2257
+ createdAt?: Date | undefined;
2258
2258
  /**
2259
2259
  * <p>The date and time that the listener was last updated, specified in ISO-8601 format.</p>
2260
2260
  * @public
2261
2261
  */
2262
- lastUpdatedAt?: Date;
2262
+ lastUpdatedAt?: Date | undefined;
2263
2263
  }
2264
2264
  /**
2265
2265
  * @public
@@ -2279,7 +2279,7 @@ export interface GetResourcePolicyResponse {
2279
2279
  * <p>An IAM policy.</p>
2280
2280
  * @public
2281
2281
  */
2282
- policy?: string;
2282
+ policy?: string | undefined;
2283
2283
  }
2284
2284
  /**
2285
2285
  * @public
@@ -2309,48 +2309,48 @@ export interface GetRuleResponse {
2309
2309
  * <p>The Amazon Resource Name (ARN) of the listener.</p>
2310
2310
  * @public
2311
2311
  */
2312
- arn?: string;
2312
+ arn?: string | undefined;
2313
2313
  /**
2314
2314
  * <p>The ID of the listener.</p>
2315
2315
  * @public
2316
2316
  */
2317
- id?: string;
2317
+ id?: string | undefined;
2318
2318
  /**
2319
2319
  * <p>The name of the listener.</p>
2320
2320
  * @public
2321
2321
  */
2322
- name?: string;
2322
+ name?: string | undefined;
2323
2323
  /**
2324
2324
  * <p>Indicates whether this is the default rule.</p>
2325
2325
  * @public
2326
2326
  */
2327
- isDefault?: boolean;
2327
+ isDefault?: boolean | undefined;
2328
2328
  /**
2329
2329
  * <p>The rule match.</p>
2330
2330
  * @public
2331
2331
  */
2332
- match?: RuleMatch;
2332
+ match?: RuleMatch | undefined;
2333
2333
  /**
2334
2334
  * <p>The priority level for the specified rule.</p>
2335
2335
  * @public
2336
2336
  */
2337
- priority?: number;
2337
+ priority?: number | undefined;
2338
2338
  /**
2339
2339
  * <p>The action for the default rule.</p>
2340
2340
  * @public
2341
2341
  */
2342
- action?: RuleAction;
2342
+ action?: RuleAction | undefined;
2343
2343
  /**
2344
2344
  * <p>The date and time that the listener rule was created, specified in ISO-8601 format.</p>
2345
2345
  * @public
2346
2346
  */
2347
- createdAt?: Date;
2347
+ createdAt?: Date | undefined;
2348
2348
  /**
2349
2349
  * <p>The date and time that the listener rule was last updated, specified in ISO-8601
2350
2350
  * format.</p>
2351
2351
  * @public
2352
2352
  */
2353
- lastUpdatedAt?: Date;
2353
+ lastUpdatedAt?: Date | undefined;
2354
2354
  }
2355
2355
  /**
2356
2356
  * @public
@@ -2370,62 +2370,62 @@ export interface GetServiceResponse {
2370
2370
  * <p>The ID of the service.</p>
2371
2371
  * @public
2372
2372
  */
2373
- id?: string;
2373
+ id?: string | undefined;
2374
2374
  /**
2375
2375
  * <p>The name of the service.</p>
2376
2376
  * @public
2377
2377
  */
2378
- name?: string;
2378
+ name?: string | undefined;
2379
2379
  /**
2380
2380
  * <p>The Amazon Resource Name (ARN) of the service.</p>
2381
2381
  * @public
2382
2382
  */
2383
- arn?: string;
2383
+ arn?: string | undefined;
2384
2384
  /**
2385
2385
  * <p>The date and time that the service was created, specified in ISO-8601 format.</p>
2386
2386
  * @public
2387
2387
  */
2388
- createdAt?: Date;
2388
+ createdAt?: Date | undefined;
2389
2389
  /**
2390
2390
  * <p>The date and time that the service was last updated, specified in ISO-8601 format.</p>
2391
2391
  * @public
2392
2392
  */
2393
- lastUpdatedAt?: Date;
2393
+ lastUpdatedAt?: Date | undefined;
2394
2394
  /**
2395
2395
  * <p>The DNS name of the service.</p>
2396
2396
  * @public
2397
2397
  */
2398
- dnsEntry?: DnsEntry;
2398
+ dnsEntry?: DnsEntry | undefined;
2399
2399
  /**
2400
2400
  * <p>The custom domain name of the service.</p>
2401
2401
  * @public
2402
2402
  */
2403
- customDomainName?: string;
2403
+ customDomainName?: string | undefined;
2404
2404
  /**
2405
2405
  * <p>The Amazon Resource Name (ARN) of the certificate.</p>
2406
2406
  * @public
2407
2407
  */
2408
- certificateArn?: string;
2408
+ certificateArn?: string | undefined;
2409
2409
  /**
2410
2410
  * <p>The status of the service.</p>
2411
2411
  * @public
2412
2412
  */
2413
- status?: ServiceStatus;
2413
+ status?: ServiceStatus | undefined;
2414
2414
  /**
2415
2415
  * <p>The type of IAM policy.</p>
2416
2416
  * @public
2417
2417
  */
2418
- authType?: AuthType;
2418
+ authType?: AuthType | undefined;
2419
2419
  /**
2420
2420
  * <p>The failure code.</p>
2421
2421
  * @public
2422
2422
  */
2423
- failureCode?: string;
2423
+ failureCode?: string | undefined;
2424
2424
  /**
2425
2425
  * <p>The failure message.</p>
2426
2426
  * @public
2427
2427
  */
2428
- failureMessage?: string;
2428
+ failureMessage?: string | undefined;
2429
2429
  }
2430
2430
  /**
2431
2431
  * @public
@@ -2445,42 +2445,42 @@ export interface GetServiceNetworkResponse {
2445
2445
  * <p>The ID of the service network.</p>
2446
2446
  * @public
2447
2447
  */
2448
- id?: string;
2448
+ id?: string | undefined;
2449
2449
  /**
2450
2450
  * <p>The name of the service network.</p>
2451
2451
  * @public
2452
2452
  */
2453
- name?: string;
2453
+ name?: string | undefined;
2454
2454
  /**
2455
2455
  * <p>The date and time that the service network was created, specified in ISO-8601 format.</p>
2456
2456
  * @public
2457
2457
  */
2458
- createdAt?: Date;
2458
+ createdAt?: Date | undefined;
2459
2459
  /**
2460
2460
  * <p>The date and time of the last update, specified in ISO-8601 format.</p>
2461
2461
  * @public
2462
2462
  */
2463
- lastUpdatedAt?: Date;
2463
+ lastUpdatedAt?: Date | undefined;
2464
2464
  /**
2465
2465
  * <p>The Amazon Resource Name (ARN) of the service network.</p>
2466
2466
  * @public
2467
2467
  */
2468
- arn?: string;
2468
+ arn?: string | undefined;
2469
2469
  /**
2470
2470
  * <p>The type of IAM policy.</p>
2471
2471
  * @public
2472
2472
  */
2473
- authType?: AuthType;
2473
+ authType?: AuthType | undefined;
2474
2474
  /**
2475
2475
  * <p>The number of VPCs associated with the service network.</p>
2476
2476
  * @public
2477
2477
  */
2478
- numberOfAssociatedVPCs?: number;
2478
+ numberOfAssociatedVPCs?: number | undefined;
2479
2479
  /**
2480
2480
  * <p>The number of services associated with the service network.</p>
2481
2481
  * @public
2482
2482
  */
2483
- numberOfAssociatedServices?: number;
2483
+ numberOfAssociatedServices?: number | undefined;
2484
2484
  }
2485
2485
  /**
2486
2486
  * @public
@@ -2500,77 +2500,77 @@ export interface GetServiceNetworkServiceAssociationResponse {
2500
2500
  * <p>The ID of the service network and service association.</p>
2501
2501
  * @public
2502
2502
  */
2503
- id?: string;
2503
+ id?: string | undefined;
2504
2504
  /**
2505
2505
  * <p>The status of the association.</p>
2506
2506
  * @public
2507
2507
  */
2508
- status?: ServiceNetworkServiceAssociationStatus;
2508
+ status?: ServiceNetworkServiceAssociationStatus | undefined;
2509
2509
  /**
2510
2510
  * <p>The Amazon Resource Name (ARN) of the association.</p>
2511
2511
  * @public
2512
2512
  */
2513
- arn?: string;
2513
+ arn?: string | undefined;
2514
2514
  /**
2515
2515
  * <p>The account that created the association.</p>
2516
2516
  * @public
2517
2517
  */
2518
- createdBy?: string;
2518
+ createdBy?: string | undefined;
2519
2519
  /**
2520
2520
  * <p>The date and time that the association was created, specified in ISO-8601 format.</p>
2521
2521
  * @public
2522
2522
  */
2523
- createdAt?: Date;
2523
+ createdAt?: Date | undefined;
2524
2524
  /**
2525
2525
  * <p>The ID of the service.</p>
2526
2526
  * @public
2527
2527
  */
2528
- serviceId?: string;
2528
+ serviceId?: string | undefined;
2529
2529
  /**
2530
2530
  * <p>The name of the service.</p>
2531
2531
  * @public
2532
2532
  */
2533
- serviceName?: string;
2533
+ serviceName?: string | undefined;
2534
2534
  /**
2535
2535
  * <p>The Amazon Resource Name (ARN) of the service.</p>
2536
2536
  * @public
2537
2537
  */
2538
- serviceArn?: string;
2538
+ serviceArn?: string | undefined;
2539
2539
  /**
2540
2540
  * <p>The ID of the service network.</p>
2541
2541
  * @public
2542
2542
  */
2543
- serviceNetworkId?: string;
2543
+ serviceNetworkId?: string | undefined;
2544
2544
  /**
2545
2545
  * <p>The name of the service network.</p>
2546
2546
  * @public
2547
2547
  */
2548
- serviceNetworkName?: string;
2548
+ serviceNetworkName?: string | undefined;
2549
2549
  /**
2550
2550
  * <p>The Amazon Resource Name (ARN) of the service network.</p>
2551
2551
  * @public
2552
2552
  */
2553
- serviceNetworkArn?: string;
2553
+ serviceNetworkArn?: string | undefined;
2554
2554
  /**
2555
2555
  * <p>The DNS name of the service.</p>
2556
2556
  * @public
2557
2557
  */
2558
- dnsEntry?: DnsEntry;
2558
+ dnsEntry?: DnsEntry | undefined;
2559
2559
  /**
2560
2560
  * <p>The custom domain name of the service.</p>
2561
2561
  * @public
2562
2562
  */
2563
- customDomainName?: string;
2563
+ customDomainName?: string | undefined;
2564
2564
  /**
2565
2565
  * <p>The failure message.</p>
2566
2566
  * @public
2567
2567
  */
2568
- failureMessage?: string;
2568
+ failureMessage?: string | undefined;
2569
2569
  /**
2570
2570
  * <p>The failure code.</p>
2571
2571
  * @public
2572
2572
  */
2573
- failureCode?: string;
2573
+ failureCode?: string | undefined;
2574
2574
  }
2575
2575
  /**
2576
2576
  * @public
@@ -2590,68 +2590,68 @@ export interface GetServiceNetworkVpcAssociationResponse {
2590
2590
  * <p>The ID of the specified association between the service network and the VPC.</p>
2591
2591
  * @public
2592
2592
  */
2593
- id?: string;
2593
+ id?: string | undefined;
2594
2594
  /**
2595
2595
  * <p>The status of the association.</p>
2596
2596
  * @public
2597
2597
  */
2598
- status?: ServiceNetworkVpcAssociationStatus;
2598
+ status?: ServiceNetworkVpcAssociationStatus | undefined;
2599
2599
  /**
2600
2600
  * <p>The Amazon Resource Name (ARN) of the association.</p>
2601
2601
  * @public
2602
2602
  */
2603
- arn?: string;
2603
+ arn?: string | undefined;
2604
2604
  /**
2605
2605
  * <p>The account that created the association.</p>
2606
2606
  * @public
2607
2607
  */
2608
- createdBy?: string;
2608
+ createdBy?: string | undefined;
2609
2609
  /**
2610
2610
  * <p>The date and time that the association was created, specified in ISO-8601 format.</p>
2611
2611
  * @public
2612
2612
  */
2613
- createdAt?: Date;
2613
+ createdAt?: Date | undefined;
2614
2614
  /**
2615
2615
  * <p>The ID of the service network.</p>
2616
2616
  * @public
2617
2617
  */
2618
- serviceNetworkId?: string;
2618
+ serviceNetworkId?: string | undefined;
2619
2619
  /**
2620
2620
  * <p>The name of the service network.</p>
2621
2621
  * @public
2622
2622
  */
2623
- serviceNetworkName?: string;
2623
+ serviceNetworkName?: string | undefined;
2624
2624
  /**
2625
2625
  * <p>The Amazon Resource Name (ARN) of the service network.</p>
2626
2626
  * @public
2627
2627
  */
2628
- serviceNetworkArn?: string;
2628
+ serviceNetworkArn?: string | undefined;
2629
2629
  /**
2630
2630
  * <p>The ID of the VPC.</p>
2631
2631
  * @public
2632
2632
  */
2633
- vpcId?: string;
2633
+ vpcId?: string | undefined;
2634
2634
  /**
2635
2635
  * <p>The IDs of the security groups.</p>
2636
2636
  * @public
2637
2637
  */
2638
- securityGroupIds?: string[];
2638
+ securityGroupIds?: string[] | undefined;
2639
2639
  /**
2640
2640
  * <p>The failure message.</p>
2641
2641
  * @public
2642
2642
  */
2643
- failureMessage?: string;
2643
+ failureMessage?: string | undefined;
2644
2644
  /**
2645
2645
  * <p>The failure code.</p>
2646
2646
  * @public
2647
2647
  */
2648
- failureCode?: string;
2648
+ failureCode?: string | undefined;
2649
2649
  /**
2650
2650
  * <p>The date and time that the association was last updated, specified in ISO-8601
2651
2651
  * format.</p>
2652
2652
  * @public
2653
2653
  */
2654
- lastUpdatedAt?: Date;
2654
+ lastUpdatedAt?: Date | undefined;
2655
2655
  }
2656
2656
  /**
2657
2657
  * @public
@@ -2671,58 +2671,58 @@ export interface GetTargetGroupResponse {
2671
2671
  * <p>The ID of the target group.</p>
2672
2672
  * @public
2673
2673
  */
2674
- id?: string;
2674
+ id?: string | undefined;
2675
2675
  /**
2676
2676
  * <p>The Amazon Resource Name (ARN) of the target group.</p>
2677
2677
  * @public
2678
2678
  */
2679
- arn?: string;
2679
+ arn?: string | undefined;
2680
2680
  /**
2681
2681
  * <p>The name of the target group.</p>
2682
2682
  * @public
2683
2683
  */
2684
- name?: string;
2684
+ name?: string | undefined;
2685
2685
  /**
2686
2686
  * <p>The target group type.</p>
2687
2687
  * @public
2688
2688
  */
2689
- type?: TargetGroupType;
2689
+ type?: TargetGroupType | undefined;
2690
2690
  /**
2691
2691
  * <p>The target group configuration.</p>
2692
2692
  * @public
2693
2693
  */
2694
- config?: TargetGroupConfig;
2694
+ config?: TargetGroupConfig | undefined;
2695
2695
  /**
2696
2696
  * <p>The date and time that the target group was created, specified in ISO-8601 format.</p>
2697
2697
  * @public
2698
2698
  */
2699
- createdAt?: Date;
2699
+ createdAt?: Date | undefined;
2700
2700
  /**
2701
2701
  * <p>The date and time that the target group was last updated, specified in ISO-8601
2702
2702
  * format.</p>
2703
2703
  * @public
2704
2704
  */
2705
- lastUpdatedAt?: Date;
2705
+ lastUpdatedAt?: Date | undefined;
2706
2706
  /**
2707
2707
  * <p>The status.</p>
2708
2708
  * @public
2709
2709
  */
2710
- status?: TargetGroupStatus;
2710
+ status?: TargetGroupStatus | undefined;
2711
2711
  /**
2712
2712
  * <p>The Amazon Resource Names (ARNs) of the service.</p>
2713
2713
  * @public
2714
2714
  */
2715
- serviceArns?: string[];
2715
+ serviceArns?: string[] | undefined;
2716
2716
  /**
2717
2717
  * <p>The failure message.</p>
2718
2718
  * @public
2719
2719
  */
2720
- failureMessage?: string;
2720
+ failureMessage?: string | undefined;
2721
2721
  /**
2722
2722
  * <p>The failure code.</p>
2723
2723
  * @public
2724
2724
  */
2725
- failureCode?: string;
2725
+ failureCode?: string | undefined;
2726
2726
  }
2727
2727
  /**
2728
2728
  * @public
@@ -2737,12 +2737,12 @@ export interface ListListenersRequest {
2737
2737
  * <p>The maximum number of results to return.</p>
2738
2738
  * @public
2739
2739
  */
2740
- maxResults?: number;
2740
+ maxResults?: number | undefined;
2741
2741
  /**
2742
2742
  * <p>A pagination token for the next page of results.</p>
2743
2743
  * @public
2744
2744
  */
2745
- nextToken?: string;
2745
+ nextToken?: string | undefined;
2746
2746
  }
2747
2747
  /**
2748
2748
  * <p>Summary information about a listener.</p>
@@ -2753,37 +2753,37 @@ export interface ListenerSummary {
2753
2753
  * <p>The Amazon Resource Name (ARN) of the listener.</p>
2754
2754
  * @public
2755
2755
  */
2756
- arn?: string;
2756
+ arn?: string | undefined;
2757
2757
  /**
2758
2758
  * <p>The ID of the listener.</p>
2759
2759
  * @public
2760
2760
  */
2761
- id?: string;
2761
+ id?: string | undefined;
2762
2762
  /**
2763
2763
  * <p>The name of the listener.</p>
2764
2764
  * @public
2765
2765
  */
2766
- name?: string;
2766
+ name?: string | undefined;
2767
2767
  /**
2768
2768
  * <p>The listener protocol.</p>
2769
2769
  * @public
2770
2770
  */
2771
- protocol?: ListenerProtocol;
2771
+ protocol?: ListenerProtocol | undefined;
2772
2772
  /**
2773
2773
  * <p>The listener port.</p>
2774
2774
  * @public
2775
2775
  */
2776
- port?: number;
2776
+ port?: number | undefined;
2777
2777
  /**
2778
2778
  * <p>The date and time that the listener was created, specified in ISO-8601 format.</p>
2779
2779
  * @public
2780
2780
  */
2781
- createdAt?: Date;
2781
+ createdAt?: Date | undefined;
2782
2782
  /**
2783
2783
  * <p>The date and time that the listener was last updated, specified in ISO-8601 format.</p>
2784
2784
  * @public
2785
2785
  */
2786
- lastUpdatedAt?: Date;
2786
+ lastUpdatedAt?: Date | undefined;
2787
2787
  }
2788
2788
  /**
2789
2789
  * @public
@@ -2798,7 +2798,7 @@ export interface ListListenersResponse {
2798
2798
  * <p>If there are additional results, a pagination token for the next page of results.</p>
2799
2799
  * @public
2800
2800
  */
2801
- nextToken?: string;
2801
+ nextToken?: string | undefined;
2802
2802
  }
2803
2803
  /**
2804
2804
  * @public
@@ -2828,42 +2828,42 @@ export interface UpdateListenerResponse {
2828
2828
  * <p>The Amazon Resource Name (ARN) of the listener.</p>
2829
2829
  * @public
2830
2830
  */
2831
- arn?: string;
2831
+ arn?: string | undefined;
2832
2832
  /**
2833
2833
  * <p>The ID of the listener.</p>
2834
2834
  * @public
2835
2835
  */
2836
- id?: string;
2836
+ id?: string | undefined;
2837
2837
  /**
2838
2838
  * <p>The name of the listener.</p>
2839
2839
  * @public
2840
2840
  */
2841
- name?: string;
2841
+ name?: string | undefined;
2842
2842
  /**
2843
2843
  * <p>The protocol of the listener.</p>
2844
2844
  * @public
2845
2845
  */
2846
- protocol?: ListenerProtocol;
2846
+ protocol?: ListenerProtocol | undefined;
2847
2847
  /**
2848
2848
  * <p>The listener port.</p>
2849
2849
  * @public
2850
2850
  */
2851
- port?: number;
2851
+ port?: number | undefined;
2852
2852
  /**
2853
2853
  * <p>The Amazon Resource Name (ARN) of the service.</p>
2854
2854
  * @public
2855
2855
  */
2856
- serviceArn?: string;
2856
+ serviceArn?: string | undefined;
2857
2857
  /**
2858
2858
  * <p>The ID of the service.</p>
2859
2859
  * @public
2860
2860
  */
2861
- serviceId?: string;
2861
+ serviceId?: string | undefined;
2862
2862
  /**
2863
2863
  * <p>The action for the default rule.</p>
2864
2864
  * @public
2865
2865
  */
2866
- defaultAction?: RuleAction;
2866
+ defaultAction?: RuleAction | undefined;
2867
2867
  }
2868
2868
  /**
2869
2869
  * @public
@@ -2883,12 +2883,12 @@ export interface ListRulesRequest {
2883
2883
  * <p>The maximum number of results to return.</p>
2884
2884
  * @public
2885
2885
  */
2886
- maxResults?: number;
2886
+ maxResults?: number | undefined;
2887
2887
  /**
2888
2888
  * <p>A pagination token for the next page of results.</p>
2889
2889
  * @public
2890
2890
  */
2891
- nextToken?: string;
2891
+ nextToken?: string | undefined;
2892
2892
  }
2893
2893
  /**
2894
2894
  * <p>Summary information about the listener rule.</p>
@@ -2899,38 +2899,38 @@ export interface RuleSummary {
2899
2899
  * <p>The Amazon Resource Name (ARN) of the rule.</p>
2900
2900
  * @public
2901
2901
  */
2902
- arn?: string;
2902
+ arn?: string | undefined;
2903
2903
  /**
2904
2904
  * <p>The ID of the rule.</p>
2905
2905
  * @public
2906
2906
  */
2907
- id?: string;
2907
+ id?: string | undefined;
2908
2908
  /**
2909
2909
  * <p>The name of the rule.</p>
2910
2910
  * @public
2911
2911
  */
2912
- name?: string;
2912
+ name?: string | undefined;
2913
2913
  /**
2914
2914
  * <p>Indicates whether this is the default listener rule.</p>
2915
2915
  * @public
2916
2916
  */
2917
- isDefault?: boolean;
2917
+ isDefault?: boolean | undefined;
2918
2918
  /**
2919
2919
  * <p>The priority of the rule.</p>
2920
2920
  * @public
2921
2921
  */
2922
- priority?: number;
2922
+ priority?: number | undefined;
2923
2923
  /**
2924
2924
  * <p>The date and time that the listener rule was created, specified in ISO-8601 format.</p>
2925
2925
  * @public
2926
2926
  */
2927
- createdAt?: Date;
2927
+ createdAt?: Date | undefined;
2928
2928
  /**
2929
2929
  * <p>The date and time that the listener rule was last updated, specified in ISO-8601
2930
2930
  * format.</p>
2931
2931
  * @public
2932
2932
  */
2933
- lastUpdatedAt?: Date;
2933
+ lastUpdatedAt?: Date | undefined;
2934
2934
  }
2935
2935
  /**
2936
2936
  * @public
@@ -2945,7 +2945,7 @@ export interface ListRulesResponse {
2945
2945
  * <p>If there are additional results, a pagination token for the next page of results.</p>
2946
2946
  * @public
2947
2947
  */
2948
- nextToken?: string;
2948
+ nextToken?: string | undefined;
2949
2949
  }
2950
2950
  /**
2951
2951
  * @public
@@ -2955,12 +2955,12 @@ export interface ListServiceNetworksRequest {
2955
2955
  * <p>The maximum number of results to return.</p>
2956
2956
  * @public
2957
2957
  */
2958
- maxResults?: number;
2958
+ maxResults?: number | undefined;
2959
2959
  /**
2960
2960
  * <p>A pagination token for the next page of results.</p>
2961
2961
  * @public
2962
2962
  */
2963
- nextToken?: string;
2963
+ nextToken?: string | undefined;
2964
2964
  }
2965
2965
  /**
2966
2966
  * <p>Summary information about a service network.</p>
@@ -2971,38 +2971,38 @@ export interface ServiceNetworkSummary {
2971
2971
  * <p>The ID of the service network.</p>
2972
2972
  * @public
2973
2973
  */
2974
- id?: string;
2974
+ id?: string | undefined;
2975
2975
  /**
2976
2976
  * <p>The name of the service network.</p>
2977
2977
  * @public
2978
2978
  */
2979
- name?: string;
2979
+ name?: string | undefined;
2980
2980
  /**
2981
2981
  * <p>The Amazon Resource Name (ARN) of the service network.</p>
2982
2982
  * @public
2983
2983
  */
2984
- arn?: string;
2984
+ arn?: string | undefined;
2985
2985
  /**
2986
2986
  * <p>The date and time that the service network was created, specified in ISO-8601 format.</p>
2987
2987
  * @public
2988
2988
  */
2989
- createdAt?: Date;
2989
+ createdAt?: Date | undefined;
2990
2990
  /**
2991
2991
  * <p>The date and time that the service network was last updated, specified in ISO-8601
2992
2992
  * format.</p>
2993
2993
  * @public
2994
2994
  */
2995
- lastUpdatedAt?: Date;
2995
+ lastUpdatedAt?: Date | undefined;
2996
2996
  /**
2997
2997
  * <p>The number of VPCs associated with the service network.</p>
2998
2998
  * @public
2999
2999
  */
3000
- numberOfAssociatedVPCs?: number;
3000
+ numberOfAssociatedVPCs?: number | undefined;
3001
3001
  /**
3002
3002
  * <p>The number of services associated with the service network.</p>
3003
3003
  * @public
3004
3004
  */
3005
- numberOfAssociatedServices?: number;
3005
+ numberOfAssociatedServices?: number | undefined;
3006
3006
  }
3007
3007
  /**
3008
3008
  * @public
@@ -3017,7 +3017,7 @@ export interface ListServiceNetworksResponse {
3017
3017
  * <p>If there are additional results, a pagination token for the next page of results.</p>
3018
3018
  * @public
3019
3019
  */
3020
- nextToken?: string;
3020
+ nextToken?: string | undefined;
3021
3021
  }
3022
3022
  /**
3023
3023
  * @public
@@ -3027,22 +3027,22 @@ export interface ListServiceNetworkServiceAssociationsRequest {
3027
3027
  * <p>The ID or Amazon Resource Name (ARN) of the service network.</p>
3028
3028
  * @public
3029
3029
  */
3030
- serviceNetworkIdentifier?: string;
3030
+ serviceNetworkIdentifier?: string | undefined;
3031
3031
  /**
3032
3032
  * <p>The ID or Amazon Resource Name (ARN) of the service.</p>
3033
3033
  * @public
3034
3034
  */
3035
- serviceIdentifier?: string;
3035
+ serviceIdentifier?: string | undefined;
3036
3036
  /**
3037
3037
  * <p>The maximum number of results to return.</p>
3038
3038
  * @public
3039
3039
  */
3040
- maxResults?: number;
3040
+ maxResults?: number | undefined;
3041
3041
  /**
3042
3042
  * <p>A pagination token for the next page of results.</p>
3043
3043
  * @public
3044
3044
  */
3045
- nextToken?: string;
3045
+ nextToken?: string | undefined;
3046
3046
  }
3047
3047
  /**
3048
3048
  * <p>Summary information about the association between a service network and a service.</p>
@@ -3053,67 +3053,67 @@ export interface ServiceNetworkServiceAssociationSummary {
3053
3053
  * <p>The ID of the association.</p>
3054
3054
  * @public
3055
3055
  */
3056
- id?: string;
3056
+ id?: string | undefined;
3057
3057
  /**
3058
3058
  * <p>The status. If the deletion fails, try to delete again.</p>
3059
3059
  * @public
3060
3060
  */
3061
- status?: ServiceNetworkServiceAssociationStatus;
3061
+ status?: ServiceNetworkServiceAssociationStatus | undefined;
3062
3062
  /**
3063
3063
  * <p>The Amazon Resource Name (ARN) of the association.</p>
3064
3064
  * @public
3065
3065
  */
3066
- arn?: string;
3066
+ arn?: string | undefined;
3067
3067
  /**
3068
3068
  * <p>The account that created the association.</p>
3069
3069
  * @public
3070
3070
  */
3071
- createdBy?: string;
3071
+ createdBy?: string | undefined;
3072
3072
  /**
3073
3073
  * <p>The date and time that the association was created, specified in ISO-8601 format.</p>
3074
3074
  * @public
3075
3075
  */
3076
- createdAt?: Date;
3076
+ createdAt?: Date | undefined;
3077
3077
  /**
3078
3078
  * <p>The ID of the service.</p>
3079
3079
  * @public
3080
3080
  */
3081
- serviceId?: string;
3081
+ serviceId?: string | undefined;
3082
3082
  /**
3083
3083
  * <p>The name of the service.</p>
3084
3084
  * @public
3085
3085
  */
3086
- serviceName?: string;
3086
+ serviceName?: string | undefined;
3087
3087
  /**
3088
3088
  * <p>The Amazon Resource Name (ARN) of the service.</p>
3089
3089
  * @public
3090
3090
  */
3091
- serviceArn?: string;
3091
+ serviceArn?: string | undefined;
3092
3092
  /**
3093
3093
  * <p>The ID of the service network.</p>
3094
3094
  * @public
3095
3095
  */
3096
- serviceNetworkId?: string;
3096
+ serviceNetworkId?: string | undefined;
3097
3097
  /**
3098
3098
  * <p>The name of the service network.</p>
3099
3099
  * @public
3100
3100
  */
3101
- serviceNetworkName?: string;
3101
+ serviceNetworkName?: string | undefined;
3102
3102
  /**
3103
3103
  * <p>The Amazon Resource Name (ARN) of the service network.</p>
3104
3104
  * @public
3105
3105
  */
3106
- serviceNetworkArn?: string;
3106
+ serviceNetworkArn?: string | undefined;
3107
3107
  /**
3108
3108
  * <p>The DNS information.</p>
3109
3109
  * @public
3110
3110
  */
3111
- dnsEntry?: DnsEntry;
3111
+ dnsEntry?: DnsEntry | undefined;
3112
3112
  /**
3113
3113
  * <p>The custom domain name of the service.</p>
3114
3114
  * @public
3115
3115
  */
3116
- customDomainName?: string;
3116
+ customDomainName?: string | undefined;
3117
3117
  }
3118
3118
  /**
3119
3119
  * @public
@@ -3128,7 +3128,7 @@ export interface ListServiceNetworkServiceAssociationsResponse {
3128
3128
  * <p>If there are additional results, a pagination token for the next page of results.</p>
3129
3129
  * @public
3130
3130
  */
3131
- nextToken?: string;
3131
+ nextToken?: string | undefined;
3132
3132
  }
3133
3133
  /**
3134
3134
  * @public
@@ -3138,22 +3138,22 @@ export interface ListServiceNetworkVpcAssociationsRequest {
3138
3138
  * <p>The ID or Amazon Resource Name (ARN) of the service network.</p>
3139
3139
  * @public
3140
3140
  */
3141
- serviceNetworkIdentifier?: string;
3141
+ serviceNetworkIdentifier?: string | undefined;
3142
3142
  /**
3143
3143
  * <p>The ID or Amazon Resource Name (ARN) of the VPC.</p>
3144
3144
  * @public
3145
3145
  */
3146
- vpcIdentifier?: string;
3146
+ vpcIdentifier?: string | undefined;
3147
3147
  /**
3148
3148
  * <p>The maximum number of results to return.</p>
3149
3149
  * @public
3150
3150
  */
3151
- maxResults?: number;
3151
+ maxResults?: number | undefined;
3152
3152
  /**
3153
3153
  * <p>A pagination token for the next page of results.</p>
3154
3154
  * @public
3155
3155
  */
3156
- nextToken?: string;
3156
+ nextToken?: string | undefined;
3157
3157
  }
3158
3158
  /**
3159
3159
  * <p>Summary information about an association between a service network and a VPC.</p>
@@ -3164,53 +3164,53 @@ export interface ServiceNetworkVpcAssociationSummary {
3164
3164
  * <p>The ID of the association.</p>
3165
3165
  * @public
3166
3166
  */
3167
- id?: string;
3167
+ id?: string | undefined;
3168
3168
  /**
3169
3169
  * <p>The Amazon Resource Name (ARN) of the association.</p>
3170
3170
  * @public
3171
3171
  */
3172
- arn?: string;
3172
+ arn?: string | undefined;
3173
3173
  /**
3174
3174
  * <p>The status.</p>
3175
3175
  * @public
3176
3176
  */
3177
- status?: ServiceNetworkVpcAssociationStatus;
3177
+ status?: ServiceNetworkVpcAssociationStatus | undefined;
3178
3178
  /**
3179
3179
  * <p>The account that created the association.</p>
3180
3180
  * @public
3181
3181
  */
3182
- createdBy?: string;
3182
+ createdBy?: string | undefined;
3183
3183
  /**
3184
3184
  * <p>The date and time that the association was created, specified in ISO-8601 format.</p>
3185
3185
  * @public
3186
3186
  */
3187
- createdAt?: Date;
3187
+ createdAt?: Date | undefined;
3188
3188
  /**
3189
3189
  * <p>The ID of the service network.</p>
3190
3190
  * @public
3191
3191
  */
3192
- serviceNetworkId?: string;
3192
+ serviceNetworkId?: string | undefined;
3193
3193
  /**
3194
3194
  * <p>The name of the service network.</p>
3195
3195
  * @public
3196
3196
  */
3197
- serviceNetworkName?: string;
3197
+ serviceNetworkName?: string | undefined;
3198
3198
  /**
3199
3199
  * <p>The Amazon Resource Name (ARN) of the service network.</p>
3200
3200
  * @public
3201
3201
  */
3202
- serviceNetworkArn?: string;
3202
+ serviceNetworkArn?: string | undefined;
3203
3203
  /**
3204
3204
  * <p>The ID of the VPC.</p>
3205
3205
  * @public
3206
3206
  */
3207
- vpcId?: string;
3207
+ vpcId?: string | undefined;
3208
3208
  /**
3209
3209
  * <p>The date and time that the association was last updated, specified in ISO-8601
3210
3210
  * format.</p>
3211
3211
  * @public
3212
3212
  */
3213
- lastUpdatedAt?: Date;
3213
+ lastUpdatedAt?: Date | undefined;
3214
3214
  }
3215
3215
  /**
3216
3216
  * @public
@@ -3225,7 +3225,7 @@ export interface ListServiceNetworkVpcAssociationsResponse {
3225
3225
  * <p>If there are additional results, a pagination token for the next page of results.</p>
3226
3226
  * @public
3227
3227
  */
3228
- nextToken?: string;
3228
+ nextToken?: string | undefined;
3229
3229
  }
3230
3230
  /**
3231
3231
  * @public
@@ -3235,12 +3235,12 @@ export interface ListServicesRequest {
3235
3235
  * <p>The maximum number of results to return.</p>
3236
3236
  * @public
3237
3237
  */
3238
- maxResults?: number;
3238
+ maxResults?: number | undefined;
3239
3239
  /**
3240
3240
  * <p>A pagination token for the next page of results.</p>
3241
3241
  * @public
3242
3242
  */
3243
- nextToken?: string;
3243
+ nextToken?: string | undefined;
3244
3244
  }
3245
3245
  /**
3246
3246
  * <p>Summary information about a service.</p>
@@ -3251,42 +3251,42 @@ export interface ServiceSummary {
3251
3251
  * <p>The ID of the service.</p>
3252
3252
  * @public
3253
3253
  */
3254
- id?: string;
3254
+ id?: string | undefined;
3255
3255
  /**
3256
3256
  * <p>The name of the service.</p>
3257
3257
  * @public
3258
3258
  */
3259
- name?: string;
3259
+ name?: string | undefined;
3260
3260
  /**
3261
3261
  * <p>The Amazon Resource Name (ARN) of the service.</p>
3262
3262
  * @public
3263
3263
  */
3264
- arn?: string;
3264
+ arn?: string | undefined;
3265
3265
  /**
3266
3266
  * <p>The date and time that the service was created, specified in ISO-8601 format.</p>
3267
3267
  * @public
3268
3268
  */
3269
- createdAt?: Date;
3269
+ createdAt?: Date | undefined;
3270
3270
  /**
3271
3271
  * <p>The date and time that the service was last updated. The format is ISO-8601.</p>
3272
3272
  * @public
3273
3273
  */
3274
- lastUpdatedAt?: Date;
3274
+ lastUpdatedAt?: Date | undefined;
3275
3275
  /**
3276
3276
  * <p>The DNS information.</p>
3277
3277
  * @public
3278
3278
  */
3279
- dnsEntry?: DnsEntry;
3279
+ dnsEntry?: DnsEntry | undefined;
3280
3280
  /**
3281
3281
  * <p>The custom domain name of the service.</p>
3282
3282
  * @public
3283
3283
  */
3284
- customDomainName?: string;
3284
+ customDomainName?: string | undefined;
3285
3285
  /**
3286
3286
  * <p>The status.</p>
3287
3287
  * @public
3288
3288
  */
3289
- status?: ServiceStatus;
3289
+ status?: ServiceStatus | undefined;
3290
3290
  }
3291
3291
  /**
3292
3292
  * @public
@@ -3296,12 +3296,12 @@ export interface ListServicesResponse {
3296
3296
  * <p>Information about the services.</p>
3297
3297
  * @public
3298
3298
  */
3299
- items?: ServiceSummary[];
3299
+ items?: ServiceSummary[] | undefined;
3300
3300
  /**
3301
3301
  * <p>If there are additional results, a pagination token for the next page of results.</p>
3302
3302
  * @public
3303
3303
  */
3304
- nextToken?: string;
3304
+ nextToken?: string | undefined;
3305
3305
  }
3306
3306
  /**
3307
3307
  * @public
@@ -3321,7 +3321,7 @@ export interface ListTagsForResourceResponse {
3321
3321
  * <p>Information about the tags.</p>
3322
3322
  * @public
3323
3323
  */
3324
- tags?: Record<string, string>;
3324
+ tags?: Record<string, string> | undefined;
3325
3325
  }
3326
3326
  /**
3327
3327
  * @public
@@ -3331,22 +3331,22 @@ export interface ListTargetGroupsRequest {
3331
3331
  * <p>The maximum number of results to return.</p>
3332
3332
  * @public
3333
3333
  */
3334
- maxResults?: number;
3334
+ maxResults?: number | undefined;
3335
3335
  /**
3336
3336
  * <p>A pagination token for the next page of results.</p>
3337
3337
  * @public
3338
3338
  */
3339
- nextToken?: string;
3339
+ nextToken?: string | undefined;
3340
3340
  /**
3341
3341
  * <p>The ID or Amazon Resource Name (ARN) of the VPC.</p>
3342
3342
  * @public
3343
3343
  */
3344
- vpcIdentifier?: string;
3344
+ vpcIdentifier?: string | undefined;
3345
3345
  /**
3346
3346
  * <p>The target group type.</p>
3347
3347
  * @public
3348
3348
  */
3349
- targetGroupType?: TargetGroupType;
3349
+ targetGroupType?: TargetGroupType | undefined;
3350
3350
  }
3351
3351
  /**
3352
3352
  * <p>Summary information about a target group.</p>
@@ -3359,71 +3359,71 @@ export interface TargetGroupSummary {
3359
3359
  * <p>The ID of the target group.</p>
3360
3360
  * @public
3361
3361
  */
3362
- id?: string;
3362
+ id?: string | undefined;
3363
3363
  /**
3364
3364
  * <p>The ARN (Amazon Resource Name) of the target group.</p>
3365
3365
  * @public
3366
3366
  */
3367
- arn?: string;
3367
+ arn?: string | undefined;
3368
3368
  /**
3369
3369
  * <p>The name of the target group.</p>
3370
3370
  * @public
3371
3371
  */
3372
- name?: string;
3372
+ name?: string | undefined;
3373
3373
  /**
3374
3374
  * <p>The target group type.</p>
3375
3375
  * @public
3376
3376
  */
3377
- type?: TargetGroupType;
3377
+ type?: TargetGroupType | undefined;
3378
3378
  /**
3379
3379
  * <p>The date and time that the target group was created, specified in ISO-8601 format.</p>
3380
3380
  * @public
3381
3381
  */
3382
- createdAt?: Date;
3382
+ createdAt?: Date | undefined;
3383
3383
  /**
3384
3384
  * <p>The port of the target group.</p>
3385
3385
  * @public
3386
3386
  */
3387
- port?: number;
3387
+ port?: number | undefined;
3388
3388
  /**
3389
3389
  * <p>The protocol of the target group.</p>
3390
3390
  * @public
3391
3391
  */
3392
- protocol?: TargetGroupProtocol;
3392
+ protocol?: TargetGroupProtocol | undefined;
3393
3393
  /**
3394
3394
  * <p>The type of IP address used for the target group. The possible values are <code>IPV4</code>
3395
3395
  * and <code>IPV6</code>. This is an optional parameter. If not specified, the default is
3396
3396
  * <code>IPV4</code>.</p>
3397
3397
  * @public
3398
3398
  */
3399
- ipAddressType?: IpAddressType;
3399
+ ipAddressType?: IpAddressType | undefined;
3400
3400
  /**
3401
3401
  * <p>The ID of the VPC of the target group.</p>
3402
3402
  * @public
3403
3403
  */
3404
- vpcIdentifier?: string;
3404
+ vpcIdentifier?: string | undefined;
3405
3405
  /**
3406
3406
  * <p>The date and time that the target group was last updated, specified in ISO-8601
3407
3407
  * format.</p>
3408
3408
  * @public
3409
3409
  */
3410
- lastUpdatedAt?: Date;
3410
+ lastUpdatedAt?: Date | undefined;
3411
3411
  /**
3412
3412
  * <p>The status.</p>
3413
3413
  * @public
3414
3414
  */
3415
- status?: TargetGroupStatus;
3415
+ status?: TargetGroupStatus | undefined;
3416
3416
  /**
3417
3417
  * <p>The Amazon Resource Names (ARNs) of the service.</p>
3418
3418
  * @public
3419
3419
  */
3420
- serviceArns?: string[];
3420
+ serviceArns?: string[] | undefined;
3421
3421
  /**
3422
3422
  * <p>The version of the event structure that your Lambda function receives.
3423
3423
  * Supported only if the target group type is <code>LAMBDA</code>.</p>
3424
3424
  * @public
3425
3425
  */
3426
- lambdaEventStructureVersion?: LambdaEventStructureVersion;
3426
+ lambdaEventStructureVersion?: LambdaEventStructureVersion | undefined;
3427
3427
  }
3428
3428
  /**
3429
3429
  * @public
@@ -3433,12 +3433,12 @@ export interface ListTargetGroupsResponse {
3433
3433
  * <p>Information about the target groups.</p>
3434
3434
  * @public
3435
3435
  */
3436
- items?: TargetGroupSummary[];
3436
+ items?: TargetGroupSummary[] | undefined;
3437
3437
  /**
3438
3438
  * <p>If there are additional results, a pagination token for the next page of results.</p>
3439
3439
  * @public
3440
3440
  */
3441
- nextToken?: string;
3441
+ nextToken?: string | undefined;
3442
3442
  }
3443
3443
  /**
3444
3444
  * @public
@@ -3453,17 +3453,17 @@ export interface ListTargetsRequest {
3453
3453
  * <p>The maximum number of results to return.</p>
3454
3454
  * @public
3455
3455
  */
3456
- maxResults?: number;
3456
+ maxResults?: number | undefined;
3457
3457
  /**
3458
3458
  * <p>A pagination token for the next page of results.</p>
3459
3459
  * @public
3460
3460
  */
3461
- nextToken?: string;
3461
+ nextToken?: string | undefined;
3462
3462
  /**
3463
3463
  * <p>The targets.</p>
3464
3464
  * @public
3465
3465
  */
3466
- targets?: Target[];
3466
+ targets?: Target[] | undefined;
3467
3467
  }
3468
3468
  /**
3469
3469
  * @public
@@ -3511,12 +3511,12 @@ export interface TargetSummary {
3511
3511
  * <code>ALB</code>, this is the ARN of an Application Load Balancer.</p>
3512
3512
  * @public
3513
3513
  */
3514
- id?: string;
3514
+ id?: string | undefined;
3515
3515
  /**
3516
3516
  * <p>The port on which the target is listening.</p>
3517
3517
  * @public
3518
3518
  */
3519
- port?: number;
3519
+ port?: number | undefined;
3520
3520
  /**
3521
3521
  * <p>The status of the target.</p>
3522
3522
  * <ul>
@@ -3549,12 +3549,12 @@ export interface TargetSummary {
3549
3549
  * </ul>
3550
3550
  * @public
3551
3551
  */
3552
- status?: TargetStatus;
3552
+ status?: TargetStatus | undefined;
3553
3553
  /**
3554
3554
  * <p>The code for why the target status is what it is.</p>
3555
3555
  * @public
3556
3556
  */
3557
- reasonCode?: string;
3557
+ reasonCode?: string | undefined;
3558
3558
  }
3559
3559
  /**
3560
3560
  * @public
@@ -3569,7 +3569,7 @@ export interface ListTargetsResponse {
3569
3569
  * <p>If there are additional results, a pagination token for the next page of results.</p>
3570
3570
  * @public
3571
3571
  */
3572
- nextToken?: string;
3572
+ nextToken?: string | undefined;
3573
3573
  }
3574
3574
  /**
3575
3575
  * @public
@@ -3595,7 +3595,7 @@ export interface PutAuthPolicyResponse {
3595
3595
  * <p>The auth policy. The policy string in JSON must not contain newlines or blank lines.</p>
3596
3596
  * @public
3597
3597
  */
3598
- policy?: string;
3598
+ policy?: string | undefined;
3599
3599
  /**
3600
3600
  * <p>The state of the auth policy. The auth policy is only active when the auth type is set to
3601
3601
  * <code>AWS_IAM</code>. If you provide a policy, then authentication and authorization decisions
@@ -3603,7 +3603,7 @@ export interface PutAuthPolicyResponse {
3603
3603
  * then, any auth policy that you provide remains inactive. For more information, see <a href="https://docs.aws.amazon.com/vpc-lattice/latest/ug/service-networks.html#create-service-network">Create a service network</a> in the <i>Amazon VPC Lattice User Guide</i>.</p>
3604
3604
  * @public
3605
3605
  */
3606
- state?: AuthPolicyState;
3606
+ state?: AuthPolicyState | undefined;
3607
3607
  }
3608
3608
  /**
3609
3609
  * @public
@@ -3650,17 +3650,17 @@ export interface UpdateRuleRequest {
3650
3650
  * <p>The rule match.</p>
3651
3651
  * @public
3652
3652
  */
3653
- match?: RuleMatch;
3653
+ match?: RuleMatch | undefined;
3654
3654
  /**
3655
3655
  * <p>The rule priority. A listener can't have multiple rules with the same priority.</p>
3656
3656
  * @public
3657
3657
  */
3658
- priority?: number;
3658
+ priority?: number | undefined;
3659
3659
  /**
3660
3660
  * <p>Information about the action for the specified listener rule.</p>
3661
3661
  * @public
3662
3662
  */
3663
- action?: RuleAction;
3663
+ action?: RuleAction | undefined;
3664
3664
  }
3665
3665
  /**
3666
3666
  * @public
@@ -3670,37 +3670,37 @@ export interface UpdateRuleResponse {
3670
3670
  * <p>The Amazon Resource Name (ARN) of the listener.</p>
3671
3671
  * @public
3672
3672
  */
3673
- arn?: string;
3673
+ arn?: string | undefined;
3674
3674
  /**
3675
3675
  * <p>The ID of the listener.</p>
3676
3676
  * @public
3677
3677
  */
3678
- id?: string;
3678
+ id?: string | undefined;
3679
3679
  /**
3680
3680
  * <p>The name of the listener.</p>
3681
3681
  * @public
3682
3682
  */
3683
- name?: string;
3683
+ name?: string | undefined;
3684
3684
  /**
3685
3685
  * <p>Indicates whether this is the default rule.</p>
3686
3686
  * @public
3687
3687
  */
3688
- isDefault?: boolean;
3688
+ isDefault?: boolean | undefined;
3689
3689
  /**
3690
3690
  * <p>The rule match.</p>
3691
3691
  * @public
3692
3692
  */
3693
- match?: RuleMatch;
3693
+ match?: RuleMatch | undefined;
3694
3694
  /**
3695
3695
  * <p>The rule priority.</p>
3696
3696
  * @public
3697
3697
  */
3698
- priority?: number;
3698
+ priority?: number | undefined;
3699
3699
  /**
3700
3700
  * <p>Information about the action for the specified listener rule.</p>
3701
3701
  * @public
3702
3702
  */
3703
- action?: RuleAction;
3703
+ action?: RuleAction | undefined;
3704
3704
  }
3705
3705
  /**
3706
3706
  * @public
@@ -3715,7 +3715,7 @@ export interface UpdateServiceRequest {
3715
3715
  * <p>The Amazon Resource Name (ARN) of the certificate.</p>
3716
3716
  * @public
3717
3717
  */
3718
- certificateArn?: string;
3718
+ certificateArn?: string | undefined;
3719
3719
  /**
3720
3720
  * <p>The type of IAM policy.</p>
3721
3721
  * <ul>
@@ -3730,7 +3730,7 @@ export interface UpdateServiceRequest {
3730
3730
  * </ul>
3731
3731
  * @public
3732
3732
  */
3733
- authType?: AuthType;
3733
+ authType?: AuthType | undefined;
3734
3734
  }
3735
3735
  /**
3736
3736
  * @public
@@ -3740,32 +3740,32 @@ export interface UpdateServiceResponse {
3740
3740
  * <p>The ID of the service.</p>
3741
3741
  * @public
3742
3742
  */
3743
- id?: string;
3743
+ id?: string | undefined;
3744
3744
  /**
3745
3745
  * <p>The Amazon Resource Name (ARN) of the service.</p>
3746
3746
  * @public
3747
3747
  */
3748
- arn?: string;
3748
+ arn?: string | undefined;
3749
3749
  /**
3750
3750
  * <p>The name of the service.</p>
3751
3751
  * @public
3752
3752
  */
3753
- name?: string;
3753
+ name?: string | undefined;
3754
3754
  /**
3755
3755
  * <p>The custom domain name of the service.</p>
3756
3756
  * @public
3757
3757
  */
3758
- customDomainName?: string;
3758
+ customDomainName?: string | undefined;
3759
3759
  /**
3760
3760
  * <p>The Amazon Resource Name (ARN) of the certificate.</p>
3761
3761
  * @public
3762
3762
  */
3763
- certificateArn?: string;
3763
+ certificateArn?: string | undefined;
3764
3764
  /**
3765
3765
  * <p>The type of IAM policy.</p>
3766
3766
  * @public
3767
3767
  */
3768
- authType?: AuthType;
3768
+ authType?: AuthType | undefined;
3769
3769
  }
3770
3770
  /**
3771
3771
  * @public
@@ -3800,22 +3800,22 @@ export interface UpdateServiceNetworkResponse {
3800
3800
  * <p>The ID of the service network.</p>
3801
3801
  * @public
3802
3802
  */
3803
- id?: string;
3803
+ id?: string | undefined;
3804
3804
  /**
3805
3805
  * <p>The name of the service network.</p>
3806
3806
  * @public
3807
3807
  */
3808
- name?: string;
3808
+ name?: string | undefined;
3809
3809
  /**
3810
3810
  * <p>The Amazon Resource Name (ARN) of the service network.</p>
3811
3811
  * @public
3812
3812
  */
3813
- arn?: string;
3813
+ arn?: string | undefined;
3814
3814
  /**
3815
3815
  * <p>The type of IAM policy.</p>
3816
3816
  * @public
3817
3817
  */
3818
- authType?: AuthType;
3818
+ authType?: AuthType | undefined;
3819
3819
  }
3820
3820
  /**
3821
3821
  * @public
@@ -3840,29 +3840,29 @@ export interface UpdateServiceNetworkVpcAssociationResponse {
3840
3840
  * <p>The ID of the association.</p>
3841
3841
  * @public
3842
3842
  */
3843
- id?: string;
3843
+ id?: string | undefined;
3844
3844
  /**
3845
3845
  * <p>The Amazon Resource Name (ARN) of the association.</p>
3846
3846
  * @public
3847
3847
  */
3848
- arn?: string;
3848
+ arn?: string | undefined;
3849
3849
  /**
3850
3850
  * <p>The status. You can retry the operation if the status is <code>DELETE_FAILED</code>.
3851
3851
  * However, if you retry it while the status is <code>DELETE_IN_PROGRESS</code>, there is no change
3852
3852
  * in the status.</p>
3853
3853
  * @public
3854
3854
  */
3855
- status?: ServiceNetworkVpcAssociationStatus;
3855
+ status?: ServiceNetworkVpcAssociationStatus | undefined;
3856
3856
  /**
3857
3857
  * <p>The account that created the association.</p>
3858
3858
  * @public
3859
3859
  */
3860
- createdBy?: string;
3860
+ createdBy?: string | undefined;
3861
3861
  /**
3862
3862
  * <p>The IDs of the security groups.</p>
3863
3863
  * @public
3864
3864
  */
3865
- securityGroupIds?: string[];
3865
+ securityGroupIds?: string[] | undefined;
3866
3866
  }
3867
3867
  /**
3868
3868
  * @public
@@ -3907,12 +3907,12 @@ export interface RegisterTargetsResponse {
3907
3907
  * <p>The targets that were successfully registered.</p>
3908
3908
  * @public
3909
3909
  */
3910
- successful?: Target[];
3910
+ successful?: Target[] | undefined;
3911
3911
  /**
3912
3912
  * <p>The targets that were not registered.</p>
3913
3913
  * @public
3914
3914
  */
3915
- unsuccessful?: TargetFailure[];
3915
+ unsuccessful?: TargetFailure[] | undefined;
3916
3916
  }
3917
3917
  /**
3918
3918
  * @public
@@ -3937,32 +3937,32 @@ export interface UpdateTargetGroupResponse {
3937
3937
  * <p>The ID of the target group.</p>
3938
3938
  * @public
3939
3939
  */
3940
- id?: string;
3940
+ id?: string | undefined;
3941
3941
  /**
3942
3942
  * <p>The Amazon Resource Name (ARN) of the target group.</p>
3943
3943
  * @public
3944
3944
  */
3945
- arn?: string;
3945
+ arn?: string | undefined;
3946
3946
  /**
3947
3947
  * <p>The name of the target group.</p>
3948
3948
  * @public
3949
3949
  */
3950
- name?: string;
3950
+ name?: string | undefined;
3951
3951
  /**
3952
3952
  * <p>The target group type.</p>
3953
3953
  * @public
3954
3954
  */
3955
- type?: TargetGroupType;
3955
+ type?: TargetGroupType | undefined;
3956
3956
  /**
3957
3957
  * <p>The target group configuration.</p>
3958
3958
  * @public
3959
3959
  */
3960
- config?: TargetGroupConfig;
3960
+ config?: TargetGroupConfig | undefined;
3961
3961
  /**
3962
3962
  * <p>The status.</p>
3963
3963
  * @public
3964
3964
  */
3965
- status?: TargetGroupStatus;
3965
+ status?: TargetGroupStatus | undefined;
3966
3966
  }
3967
3967
  /**
3968
3968
  * @public