@aws-sdk/client-lightsail 3.687.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.
@@ -8,9 +8,9 @@ import { LightsailServiceException as __BaseException } from "./LightsailService
8
8
  export declare class AccessDeniedException extends __BaseException {
9
9
  readonly name: "AccessDeniedException";
10
10
  readonly $fault: "client";
11
- code?: string;
12
- docs?: string;
13
- tip?: string;
11
+ code?: string | undefined;
12
+ docs?: string | undefined;
13
+ tip?: string | undefined;
14
14
  /**
15
15
  * @internal
16
16
  */
@@ -41,20 +41,20 @@ export interface AccessKeyLastUsed {
41
41
  * <p>This value is null if the access key has not been used.</p>
42
42
  * @public
43
43
  */
44
- lastUsedDate?: Date;
44
+ lastUsedDate?: Date | undefined;
45
45
  /**
46
46
  * <p>The Amazon Web Services Region where this access key was most recently used.</p>
47
47
  * <p>This value is <code>N/A</code> if the access key has not been used.</p>
48
48
  * @public
49
49
  */
50
- region?: string;
50
+ region?: string | undefined;
51
51
  /**
52
52
  * <p>The name of the Amazon Web Services service with which this access key was most recently
53
53
  * used.</p>
54
54
  * <p>This value is <code>N/A</code> if the access key has not been used.</p>
55
55
  * @public
56
56
  */
57
- serviceName?: string;
57
+ serviceName?: string | undefined;
58
58
  }
59
59
  /**
60
60
  * @public
@@ -87,26 +87,26 @@ export interface AccessKey {
87
87
  * <p>The ID of the access key.</p>
88
88
  * @public
89
89
  */
90
- accessKeyId?: string;
90
+ accessKeyId?: string | undefined;
91
91
  /**
92
92
  * <p>The secret access key used to sign requests.</p>
93
93
  * <p>You should store the secret access key in a safe location. We recommend that you delete
94
94
  * the access key if the secret access key is compromised.</p>
95
95
  * @public
96
96
  */
97
- secretAccessKey?: string;
97
+ secretAccessKey?: string | undefined;
98
98
  /**
99
99
  * <p>The status of the access key.</p>
100
100
  * <p>A status of <code>Active</code> means that the key is valid, while <code>Inactive</code>
101
101
  * means it is not.</p>
102
102
  * @public
103
103
  */
104
- status?: StatusType;
104
+ status?: StatusType | undefined;
105
105
  /**
106
106
  * <p>The timestamp when the access key was created.</p>
107
107
  * @public
108
108
  */
109
- createdAt?: Date;
109
+ createdAt?: Date | undefined;
110
110
  /**
111
111
  * <p>An object that describes the last time the access key was used.</p>
112
112
  * <note>
@@ -116,7 +116,7 @@ export interface AccessKey {
116
116
  * </note>
117
117
  * @public
118
118
  */
119
- lastUsed?: AccessKeyLastUsed;
119
+ lastUsed?: AccessKeyLastUsed | undefined;
120
120
  }
121
121
  /**
122
122
  * <p>Describes an Amazon Lightsail instance that has access to a Lightsail bucket.</p>
@@ -127,12 +127,12 @@ export interface ResourceReceivingAccess {
127
127
  * <p>The name of the Lightsail instance.</p>
128
128
  * @public
129
129
  */
130
- name?: string;
130
+ name?: string | undefined;
131
131
  /**
132
132
  * <p>The Lightsail resource type (for example, <code>Instance</code>).</p>
133
133
  * @public
134
134
  */
135
- resourceType?: string;
135
+ resourceType?: string | undefined;
136
136
  }
137
137
  /**
138
138
  * @public
@@ -180,7 +180,7 @@ export interface AccessRules {
180
180
  * </ul>
181
181
  * @public
182
182
  */
183
- getObject?: AccessType;
183
+ getObject?: AccessType | undefined;
184
184
  /**
185
185
  * <p>A Boolean value that indicates whether the access control list (ACL) permissions that are
186
186
  * applied to individual objects override the <code>getObject</code> option that is currently
@@ -190,7 +190,7 @@ export interface AccessRules {
190
190
  * using the <code>private</code> ACL.</p>
191
191
  * @public
192
192
  */
193
- allowPublicOverrides?: boolean;
193
+ allowPublicOverrides?: boolean | undefined;
194
194
  }
195
195
  /**
196
196
  * @public
@@ -267,13 +267,13 @@ export interface AccountLevelBpaSync {
267
267
  * </note>
268
268
  * @public
269
269
  */
270
- status?: AccountLevelBpaSyncStatus;
270
+ status?: AccountLevelBpaSyncStatus | undefined;
271
271
  /**
272
272
  * <p>The timestamp of when the account-level BPA configuration was last synchronized. This
273
273
  * value is null when the account-level BPA configuration has not been synchronized.</p>
274
274
  * @public
275
275
  */
276
- lastSyncedAt?: Date;
276
+ lastSyncedAt?: Date | undefined;
277
277
  /**
278
278
  * <p>A message that provides a reason for a <code>Failed</code> or <code>Defaulted</code>
279
279
  * synchronization status.</p>
@@ -314,13 +314,13 @@ export interface AccountLevelBpaSync {
314
314
  * </ul>
315
315
  * @public
316
316
  */
317
- message?: BPAStatusMessage;
317
+ message?: BPAStatusMessage | undefined;
318
318
  /**
319
319
  * <p>A Boolean value that indicates whether account-level block public access is affecting your
320
320
  * Lightsail buckets.</p>
321
321
  * @public
322
322
  */
323
- bpaImpactsLightsail?: boolean;
323
+ bpaImpactsLightsail?: boolean | undefined;
324
324
  }
325
325
  /**
326
326
  * <p>Lightsail throws this exception when an account is still in the setup in progress
@@ -330,9 +330,9 @@ export interface AccountLevelBpaSync {
330
330
  export declare class AccountSetupInProgressException extends __BaseException {
331
331
  readonly name: "AccountSetupInProgressException";
332
332
  readonly $fault: "client";
333
- code?: string;
334
- docs?: string;
335
- tip?: string;
333
+ code?: string | undefined;
334
+ docs?: string | undefined;
335
+ tip?: string | undefined;
336
336
  /**
337
337
  * @internal
338
338
  */
@@ -347,12 +347,12 @@ export interface AddOn {
347
347
  * <p>The name of the add-on.</p>
348
348
  * @public
349
349
  */
350
- name?: string;
350
+ name?: string | undefined;
351
351
  /**
352
352
  * <p>The status of the add-on.</p>
353
353
  * @public
354
354
  */
355
- status?: string;
355
+ status?: string | undefined;
356
356
  /**
357
357
  * <p>The daily time when an automatic snapshot is created.</p>
358
358
  * <p>The time shown is in <code>HH:00</code> format, and in Coordinated Universal Time
@@ -361,7 +361,7 @@ export interface AddOn {
361
361
  * after.</p>
362
362
  * @public
363
363
  */
364
- snapshotTimeOfDay?: string;
364
+ snapshotTimeOfDay?: string | undefined;
365
365
  /**
366
366
  * <p>The next daily time an automatic snapshot will be created.</p>
367
367
  * <p>The time shown is in <code>HH:00</code> format, and in Coordinated Universal Time
@@ -370,7 +370,7 @@ export interface AddOn {
370
370
  * after.</p>
371
371
  * @public
372
372
  */
373
- nextSnapshotTimeOfDay?: string;
373
+ nextSnapshotTimeOfDay?: string | undefined;
374
374
  /**
375
375
  * <p>The trigger threshold of the action.</p>
376
376
  * <important>
@@ -378,7 +378,7 @@ export interface AddOn {
378
378
  * </important>
379
379
  * @public
380
380
  */
381
- threshold?: string;
381
+ threshold?: string | undefined;
382
382
  /**
383
383
  * <p>The amount of idle time in minutes after which your virtual computer will automatically
384
384
  * stop.</p>
@@ -387,7 +387,7 @@ export interface AddOn {
387
387
  * </important>
388
388
  * @public
389
389
  */
390
- duration?: string;
390
+ duration?: string | undefined;
391
391
  }
392
392
  /**
393
393
  * @public
@@ -455,7 +455,7 @@ export interface AutoSnapshotAddOnRequest {
455
455
  * </ul>
456
456
  * @public
457
457
  */
458
- snapshotTimeOfDay?: string;
458
+ snapshotTimeOfDay?: string | undefined;
459
459
  }
460
460
  /**
461
461
  * <p>Describes a request to create or edit the <code>StopInstanceOnIdle</code> add-on.</p>
@@ -469,13 +469,13 @@ export interface StopInstanceOnIdleRequest {
469
469
  * <p>The value to compare with the duration.</p>
470
470
  * @public
471
471
  */
472
- threshold?: string;
472
+ threshold?: string | undefined;
473
473
  /**
474
474
  * <p>The amount of idle time in minutes after which your virtual computer will automatically
475
475
  * stop.</p>
476
476
  * @public
477
477
  */
478
- duration?: string;
478
+ duration?: string | undefined;
479
479
  }
480
480
  /**
481
481
  * <p>Describes a request to enable, modify, or disable an add-on for an Amazon Lightsail
@@ -498,7 +498,7 @@ export interface AddOnRequest {
498
498
  * snapshot add-on.</p>
499
499
  * @public
500
500
  */
501
- autoSnapshotAddOnRequest?: AutoSnapshotAddOnRequest;
501
+ autoSnapshotAddOnRequest?: AutoSnapshotAddOnRequest | undefined;
502
502
  /**
503
503
  * <p>An object that represents additional parameters when enabling or modifying the
504
504
  * <code>StopInstanceOnIdle</code> add-on.</p>
@@ -507,7 +507,7 @@ export interface AddOnRequest {
507
507
  * </important>
508
508
  * @public
509
509
  */
510
- stopInstanceOnIdleRequest?: StopInstanceOnIdleRequest;
510
+ stopInstanceOnIdleRequest?: StopInstanceOnIdleRequest | undefined;
511
511
  }
512
512
  /**
513
513
  * @public
@@ -569,12 +569,12 @@ export interface ResourceLocation {
569
569
  * <p>The Availability Zone. Follows the format <code>us-east-2a</code> (case-sensitive).</p>
570
570
  * @public
571
571
  */
572
- availabilityZone?: string;
572
+ availabilityZone?: string | undefined;
573
573
  /**
574
574
  * <p>The Amazon Web Services Region name.</p>
575
575
  * @public
576
576
  */
577
- regionName?: RegionName;
577
+ regionName?: RegionName | undefined;
578
578
  }
579
579
  /**
580
580
  * @public
@@ -653,19 +653,19 @@ export interface MonitoredResourceInfo {
653
653
  * <p>The Amazon Resource Name (ARN) of the resource being monitored.</p>
654
654
  * @public
655
655
  */
656
- arn?: string;
656
+ arn?: string | undefined;
657
657
  /**
658
658
  * <p>The name of the Lightsail resource being monitored.</p>
659
659
  * @public
660
660
  */
661
- name?: string;
661
+ name?: string | undefined;
662
662
  /**
663
663
  * <p>The Lightsail resource type of the resource being monitored.</p>
664
664
  * <p>Instances, load balancers, and relational databases are the only Lightsail resources
665
665
  * that can currently be monitored by alarms.</p>
666
666
  * @public
667
667
  */
668
- resourceType?: ResourceType;
668
+ resourceType?: ResourceType | undefined;
669
669
  }
670
670
  /**
671
671
  * @public
@@ -757,65 +757,65 @@ export interface Alarm {
757
757
  * <p>The name of the alarm.</p>
758
758
  * @public
759
759
  */
760
- name?: string;
760
+ name?: string | undefined;
761
761
  /**
762
762
  * <p>The Amazon Resource Name (ARN) of the alarm.</p>
763
763
  * @public
764
764
  */
765
- arn?: string;
765
+ arn?: string | undefined;
766
766
  /**
767
767
  * <p>The timestamp when the alarm was created.</p>
768
768
  * @public
769
769
  */
770
- createdAt?: Date;
770
+ createdAt?: Date | undefined;
771
771
  /**
772
772
  * <p>An object that lists information about the location of the alarm.</p>
773
773
  * @public
774
774
  */
775
- location?: ResourceLocation;
775
+ location?: ResourceLocation | undefined;
776
776
  /**
777
777
  * <p>The Lightsail resource type of the alarm.</p>
778
778
  * @public
779
779
  */
780
- resourceType?: ResourceType;
780
+ resourceType?: ResourceType | undefined;
781
781
  /**
782
782
  * <p>The support code. Include this code in your email to support when you have questions about
783
783
  * your Lightsail alarm. This code enables our support team to look up your Lightsail
784
784
  * information more easily.</p>
785
785
  * @public
786
786
  */
787
- supportCode?: string;
787
+ supportCode?: string | undefined;
788
788
  /**
789
789
  * <p>An object that lists information about the resource monitored by the alarm.</p>
790
790
  * @public
791
791
  */
792
- monitoredResourceInfo?: MonitoredResourceInfo;
792
+ monitoredResourceInfo?: MonitoredResourceInfo | undefined;
793
793
  /**
794
794
  * <p>The arithmetic operation used when comparing the specified statistic and threshold.</p>
795
795
  * @public
796
796
  */
797
- comparisonOperator?: ComparisonOperator;
797
+ comparisonOperator?: ComparisonOperator | undefined;
798
798
  /**
799
799
  * <p>The number of periods over which data is compared to the specified threshold.</p>
800
800
  * @public
801
801
  */
802
- evaluationPeriods?: number;
802
+ evaluationPeriods?: number | undefined;
803
803
  /**
804
804
  * <p>The period, in seconds, over which the statistic is applied.</p>
805
805
  * @public
806
806
  */
807
- period?: number;
807
+ period?: number | undefined;
808
808
  /**
809
809
  * <p>The value against which the specified statistic is compared.</p>
810
810
  * @public
811
811
  */
812
- threshold?: number;
812
+ threshold?: number | undefined;
813
813
  /**
814
814
  * <p>The number of data points that must not within the specified threshold to trigger the
815
815
  * alarm.</p>
816
816
  * @public
817
817
  */
818
- datapointsToAlarm?: number;
818
+ datapointsToAlarm?: number | undefined;
819
819
  /**
820
820
  * <p>Specifies how the alarm handles missing data points.</p>
821
821
  * <p>An alarm can treat missing data in the following ways:</p>
@@ -843,7 +843,7 @@ export interface Alarm {
843
843
  * </ul>
844
844
  * @public
845
845
  */
846
- treatMissingData?: TreatMissingData;
846
+ treatMissingData?: TreatMissingData | undefined;
847
847
  /**
848
848
  * <p>The statistic for the metric associated with the alarm.</p>
849
849
  * <p>The following statistics are available:</p>
@@ -878,12 +878,12 @@ export interface Alarm {
878
878
  * </ul>
879
879
  * @public
880
880
  */
881
- statistic?: MetricStatistic;
881
+ statistic?: MetricStatistic | undefined;
882
882
  /**
883
883
  * <p>The name of the metric associated with the alarm.</p>
884
884
  * @public
885
885
  */
886
- metricName?: MetricName;
886
+ metricName?: MetricName | undefined;
887
887
  /**
888
888
  * <p>The current state of the alarm.</p>
889
889
  * <p>An alarm has the following possible states:</p>
@@ -905,28 +905,28 @@ export interface Alarm {
905
905
  * </ul>
906
906
  * @public
907
907
  */
908
- state?: AlarmState;
908
+ state?: AlarmState | undefined;
909
909
  /**
910
910
  * <p>The unit of the metric associated with the alarm.</p>
911
911
  * @public
912
912
  */
913
- unit?: MetricUnit;
913
+ unit?: MetricUnit | undefined;
914
914
  /**
915
915
  * <p>The contact protocols for the alarm, such as <code>Email</code>, <code>SMS</code> (text
916
916
  * messaging), or both.</p>
917
917
  * @public
918
918
  */
919
- contactProtocols?: ContactProtocol[];
919
+ contactProtocols?: ContactProtocol[] | undefined;
920
920
  /**
921
921
  * <p>The alarm states that trigger a notification.</p>
922
922
  * @public
923
923
  */
924
- notificationTriggers?: AlarmState[];
924
+ notificationTriggers?: AlarmState[] | undefined;
925
925
  /**
926
926
  * <p>Indicates whether the alarm is enabled.</p>
927
927
  * @public
928
928
  */
929
- notificationEnabled?: boolean;
929
+ notificationEnabled?: boolean | undefined;
930
930
  }
931
931
  /**
932
932
  * @public
@@ -1055,62 +1055,62 @@ export interface Operation {
1055
1055
  * <p>The ID of the operation.</p>
1056
1056
  * @public
1057
1057
  */
1058
- id?: string;
1058
+ id?: string | undefined;
1059
1059
  /**
1060
1060
  * <p>The resource name.</p>
1061
1061
  * @public
1062
1062
  */
1063
- resourceName?: string;
1063
+ resourceName?: string | undefined;
1064
1064
  /**
1065
1065
  * <p>The resource type. </p>
1066
1066
  * @public
1067
1067
  */
1068
- resourceType?: ResourceType;
1068
+ resourceType?: ResourceType | undefined;
1069
1069
  /**
1070
1070
  * <p>The timestamp when the operation was initialized (<code>1479816991.349</code>).</p>
1071
1071
  * @public
1072
1072
  */
1073
- createdAt?: Date;
1073
+ createdAt?: Date | undefined;
1074
1074
  /**
1075
1075
  * <p>The Amazon Web Services Region and Availability Zone.</p>
1076
1076
  * @public
1077
1077
  */
1078
- location?: ResourceLocation;
1078
+ location?: ResourceLocation | undefined;
1079
1079
  /**
1080
1080
  * <p>A Boolean value indicating whether the operation is terminal.</p>
1081
1081
  * @public
1082
1082
  */
1083
- isTerminal?: boolean;
1083
+ isTerminal?: boolean | undefined;
1084
1084
  /**
1085
1085
  * <p>Details about the operation (<code>Debian-1GB-Ohio-1</code>).</p>
1086
1086
  * @public
1087
1087
  */
1088
- operationDetails?: string;
1088
+ operationDetails?: string | undefined;
1089
1089
  /**
1090
1090
  * <p>The type of operation. </p>
1091
1091
  * @public
1092
1092
  */
1093
- operationType?: OperationType;
1093
+ operationType?: OperationType | undefined;
1094
1094
  /**
1095
1095
  * <p>The status of the operation. </p>
1096
1096
  * @public
1097
1097
  */
1098
- status?: OperationStatus;
1098
+ status?: OperationStatus | undefined;
1099
1099
  /**
1100
1100
  * <p>The timestamp when the status was changed (<code>1479816991.349</code>).</p>
1101
1101
  * @public
1102
1102
  */
1103
- statusChangedAt?: Date;
1103
+ statusChangedAt?: Date | undefined;
1104
1104
  /**
1105
1105
  * <p>The error code.</p>
1106
1106
  * @public
1107
1107
  */
1108
- errorCode?: string;
1108
+ errorCode?: string | undefined;
1109
1109
  /**
1110
1110
  * <p>The error details.</p>
1111
1111
  * @public
1112
1112
  */
1113
- errorDetails?: string;
1113
+ errorDetails?: string | undefined;
1114
1114
  }
1115
1115
  /**
1116
1116
  * @public
@@ -1121,7 +1121,7 @@ export interface AllocateStaticIpResult {
1121
1121
  * request, the timestamp of the request, and the resources affected by the request.</p>
1122
1122
  * @public
1123
1123
  */
1124
- operations?: Operation[];
1124
+ operations?: Operation[] | undefined;
1125
1125
  }
1126
1126
  /**
1127
1127
  * <p>Lightsail throws this exception when user input does not conform to the validation rules
@@ -1137,9 +1137,9 @@ export interface AllocateStaticIpResult {
1137
1137
  export declare class InvalidInputException extends __BaseException {
1138
1138
  readonly name: "InvalidInputException";
1139
1139
  readonly $fault: "client";
1140
- code?: string;
1141
- docs?: string;
1142
- tip?: string;
1140
+ code?: string | undefined;
1141
+ docs?: string | undefined;
1142
+ tip?: string | undefined;
1143
1143
  /**
1144
1144
  * @internal
1145
1145
  */
@@ -1152,9 +1152,9 @@ export declare class InvalidInputException extends __BaseException {
1152
1152
  export declare class NotFoundException extends __BaseException {
1153
1153
  readonly name: "NotFoundException";
1154
1154
  readonly $fault: "client";
1155
- code?: string;
1156
- docs?: string;
1157
- tip?: string;
1155
+ code?: string | undefined;
1156
+ docs?: string | undefined;
1157
+ tip?: string | undefined;
1158
1158
  /**
1159
1159
  * @internal
1160
1160
  */
@@ -1167,9 +1167,9 @@ export declare class NotFoundException extends __BaseException {
1167
1167
  export declare class OperationFailureException extends __BaseException {
1168
1168
  readonly name: "OperationFailureException";
1169
1169
  readonly $fault: "client";
1170
- code?: string;
1171
- docs?: string;
1172
- tip?: string;
1170
+ code?: string | undefined;
1171
+ docs?: string | undefined;
1172
+ tip?: string | undefined;
1173
1173
  /**
1174
1174
  * @internal
1175
1175
  */
@@ -1182,9 +1182,9 @@ export declare class OperationFailureException extends __BaseException {
1182
1182
  export declare class ServiceException extends __BaseException {
1183
1183
  readonly name: "ServiceException";
1184
1184
  readonly $fault: "server";
1185
- code?: string;
1186
- docs?: string;
1187
- tip?: string;
1185
+ code?: string | undefined;
1186
+ docs?: string | undefined;
1187
+ tip?: string | undefined;
1188
1188
  /**
1189
1189
  * @internal
1190
1190
  */
@@ -1197,9 +1197,9 @@ export declare class ServiceException extends __BaseException {
1197
1197
  export declare class UnauthenticatedException extends __BaseException {
1198
1198
  readonly name: "UnauthenticatedException";
1199
1199
  readonly $fault: "client";
1200
- code?: string;
1201
- docs?: string;
1202
- tip?: string;
1200
+ code?: string | undefined;
1201
+ docs?: string | undefined;
1202
+ tip?: string | undefined;
1203
1203
  /**
1204
1204
  * @internal
1205
1205
  */
@@ -1253,7 +1253,7 @@ export interface AttachCertificateToDistributionResult {
1253
1253
  * timestamp of the request, and the resources affected by the request.</p>
1254
1254
  * @public
1255
1255
  */
1256
- operation?: Operation;
1256
+ operation?: Operation | undefined;
1257
1257
  }
1258
1258
  /**
1259
1259
  * @public
@@ -1282,7 +1282,7 @@ export interface AttachDiskRequest {
1282
1282
  * </important>
1283
1283
  * @public
1284
1284
  */
1285
- autoMounting?: boolean;
1285
+ autoMounting?: boolean | undefined;
1286
1286
  }
1287
1287
  /**
1288
1288
  * @public
@@ -1293,7 +1293,7 @@ export interface AttachDiskResult {
1293
1293
  * request, the timestamp of the request, and the resources affected by the request.</p>
1294
1294
  * @public
1295
1295
  */
1296
- operations?: Operation[];
1296
+ operations?: Operation[] | undefined;
1297
1297
  }
1298
1298
  /**
1299
1299
  * <p>Describes a block storage disk that is attached to an instance, and is included in an
@@ -1305,12 +1305,12 @@ export interface AttachedDisk {
1305
1305
  * <p>The path of the disk (<code>/dev/xvdf</code>).</p>
1306
1306
  * @public
1307
1307
  */
1308
- path?: string;
1308
+ path?: string | undefined;
1309
1309
  /**
1310
1310
  * <p>The size of the disk in GB.</p>
1311
1311
  * @public
1312
1312
  */
1313
- sizeInGb?: number;
1313
+ sizeInGb?: number | undefined;
1314
1314
  }
1315
1315
  /**
1316
1316
  * <p>Describes a block storage disk mapping.</p>
@@ -1322,12 +1322,12 @@ export interface DiskMap {
1322
1322
  * <code>/dev/sdh</code>).</p>
1323
1323
  * @public
1324
1324
  */
1325
- originalDiskPath?: string;
1325
+ originalDiskPath?: string | undefined;
1326
1326
  /**
1327
1327
  * <p>The new disk name (<code>my-new-disk</code>).</p>
1328
1328
  * @public
1329
1329
  */
1330
- newDiskName?: string;
1330
+ newDiskName?: string | undefined;
1331
1331
  }
1332
1332
  /**
1333
1333
  * @public
@@ -1359,7 +1359,7 @@ export interface AttachInstancesToLoadBalancerResult {
1359
1359
  * request, the timestamp of the request, and the resources affected by the request.</p>
1360
1360
  * @public
1361
1361
  */
1362
- operations?: Operation[];
1362
+ operations?: Operation[] | undefined;
1363
1363
  }
1364
1364
  /**
1365
1365
  * @public
@@ -1388,7 +1388,7 @@ export interface AttachLoadBalancerTlsCertificateResult {
1388
1388
  * the certificate and use it for another purpose.</p>
1389
1389
  * @public
1390
1390
  */
1391
- operations?: Operation[];
1391
+ operations?: Operation[] | undefined;
1392
1392
  }
1393
1393
  /**
1394
1394
  * @public
@@ -1414,7 +1414,7 @@ export interface AttachStaticIpResult {
1414
1414
  * request, the timestamp of the request, and the resources affected by the request.</p>
1415
1415
  * @public
1416
1416
  */
1417
- operations?: Operation[];
1417
+ operations?: Operation[] | undefined;
1418
1418
  }
1419
1419
  /**
1420
1420
  * @public
@@ -1453,23 +1453,23 @@ export interface AutoSnapshotDetails {
1453
1453
  * <p>The date of the automatic snapshot in <code>YYYY-MM-DD</code> format.</p>
1454
1454
  * @public
1455
1455
  */
1456
- date?: string;
1456
+ date?: string | undefined;
1457
1457
  /**
1458
1458
  * <p>The timestamp when the automatic snapshot was created.</p>
1459
1459
  * @public
1460
1460
  */
1461
- createdAt?: Date;
1461
+ createdAt?: Date | undefined;
1462
1462
  /**
1463
1463
  * <p>The status of the automatic snapshot.</p>
1464
1464
  * @public
1465
1465
  */
1466
- status?: AutoSnapshotStatus;
1466
+ status?: AutoSnapshotStatus | undefined;
1467
1467
  /**
1468
1468
  * <p>An array of objects that describe the block storage disks attached to the instance when
1469
1469
  * the automatic snapshot was created.</p>
1470
1470
  * @public
1471
1471
  */
1472
- fromAttachedDisks?: AttachedDisk[];
1472
+ fromAttachedDisks?: AttachedDisk[] | undefined;
1473
1473
  }
1474
1474
  /**
1475
1475
  * <p>Describes an Availability Zone. This is returned only as part of a <code>GetRegions</code>
@@ -1482,12 +1482,12 @@ export interface AvailabilityZone {
1482
1482
  * (case-sensitive).</p>
1483
1483
  * @public
1484
1484
  */
1485
- zoneName?: string;
1485
+ zoneName?: string | undefined;
1486
1486
  /**
1487
1487
  * <p>The state of the Availability Zone.</p>
1488
1488
  * @public
1489
1489
  */
1490
- state?: string;
1490
+ state?: string | undefined;
1491
1491
  }
1492
1492
  /**
1493
1493
  * @public
@@ -1535,27 +1535,27 @@ export interface Blueprint {
1535
1535
  * <code>app_lamp_x_x</code>).</p>
1536
1536
  * @public
1537
1537
  */
1538
- blueprintId?: string;
1538
+ blueprintId?: string | undefined;
1539
1539
  /**
1540
1540
  * <p>The friendly name of the blueprint (<code>Amazon Linux</code>).</p>
1541
1541
  * @public
1542
1542
  */
1543
- name?: string;
1543
+ name?: string | undefined;
1544
1544
  /**
1545
1545
  * <p>The group name of the blueprint (<code>amazon-linux</code>).</p>
1546
1546
  * @public
1547
1547
  */
1548
- group?: string;
1548
+ group?: string | undefined;
1549
1549
  /**
1550
1550
  * <p>The type of the blueprint (<code>os</code> or <code>app</code>).</p>
1551
1551
  * @public
1552
1552
  */
1553
- type?: BlueprintType;
1553
+ type?: BlueprintType | undefined;
1554
1554
  /**
1555
1555
  * <p>The description of the blueprint.</p>
1556
1556
  * @public
1557
1557
  */
1558
- description?: string;
1558
+ description?: string | undefined;
1559
1559
  /**
1560
1560
  * <p>A Boolean value indicating whether the blueprint is active. Inactive blueprints are listed
1561
1561
  * to support customers with existing instances but are not necessarily available for launch of
@@ -1563,7 +1563,7 @@ export interface Blueprint {
1563
1563
  * system updates or new application releases.</p>
1564
1564
  * @public
1565
1565
  */
1566
- isActive?: boolean;
1566
+ isActive?: boolean | undefined;
1567
1567
  /**
1568
1568
  * <p>The minimum bundle power required to run this blueprint. For example, you need a bundle
1569
1569
  * with a power value of 500 or more to create an instance that uses a blueprint with a minimum
@@ -1571,34 +1571,34 @@ export interface Blueprint {
1571
1571
  * </p>
1572
1572
  * @public
1573
1573
  */
1574
- minPower?: number;
1574
+ minPower?: number | undefined;
1575
1575
  /**
1576
1576
  * <p>The version number of the operating system, application, or stack (
1577
1577
  * <code>2016.03.0</code>).</p>
1578
1578
  * @public
1579
1579
  */
1580
- version?: string;
1580
+ version?: string | undefined;
1581
1581
  /**
1582
1582
  * <p>The version code.</p>
1583
1583
  * @public
1584
1584
  */
1585
- versionCode?: string;
1585
+ versionCode?: string | undefined;
1586
1586
  /**
1587
1587
  * <p>The product URL to learn more about the image or blueprint.</p>
1588
1588
  * @public
1589
1589
  */
1590
- productUrl?: string;
1590
+ productUrl?: string | undefined;
1591
1591
  /**
1592
1592
  * <p>The end-user license agreement URL for the image or blueprint.</p>
1593
1593
  * @public
1594
1594
  */
1595
- licenseUrl?: string;
1595
+ licenseUrl?: string | undefined;
1596
1596
  /**
1597
1597
  * <p>The operating system platform (either Linux/Unix-based or Windows Server-based) of the
1598
1598
  * blueprint.</p>
1599
1599
  * @public
1600
1600
  */
1601
- platform?: InstancePlatform;
1601
+ platform?: InstancePlatform | undefined;
1602
1602
  /**
1603
1603
  * <p>Virtual computer blueprints that are supported by Lightsail for Research.</p>
1604
1604
  * <important>
@@ -1606,7 +1606,7 @@ export interface Blueprint {
1606
1606
  * </important>
1607
1607
  * @public
1608
1608
  */
1609
- appCategory?: AppCategory;
1609
+ appCategory?: AppCategory | undefined;
1610
1610
  }
1611
1611
  /**
1612
1612
  * <p>Describes the access log configuration for a bucket in the Amazon Lightsail object storage
@@ -1632,7 +1632,7 @@ export interface BucketAccessLogConfig {
1632
1632
  * </note>
1633
1633
  * @public
1634
1634
  */
1635
- destination?: string;
1635
+ destination?: string | undefined;
1636
1636
  /**
1637
1637
  * <p>The optional object prefix for the bucket access log.</p>
1638
1638
  * <p>The prefix is an optional addition to the object key that organizes your access log files
@@ -1645,7 +1645,7 @@ export interface BucketAccessLogConfig {
1645
1645
  * </note>
1646
1646
  * @public
1647
1647
  */
1648
- prefix?: string;
1648
+ prefix?: string | undefined;
1649
1649
  }
1650
1650
  /**
1651
1651
  * <p>Describes the state of an Amazon Lightsail bucket.</p>
@@ -1668,12 +1668,12 @@ export interface BucketState {
1668
1668
  * </ul>
1669
1669
  * @public
1670
1670
  */
1671
- code?: string;
1671
+ code?: string | undefined;
1672
1672
  /**
1673
1673
  * <p>A message that describes the state of the bucket.</p>
1674
1674
  * @public
1675
1675
  */
1676
- message?: string;
1676
+ message?: string | undefined;
1677
1677
  }
1678
1678
  /**
1679
1679
  * <p>Describes a tag key and optional value assigned to an Amazon Lightsail resource.</p>
@@ -1687,14 +1687,14 @@ export interface Tag {
1687
1687
  * following characters: + - = . _ : / @</p>
1688
1688
  * @public
1689
1689
  */
1690
- key?: string;
1690
+ key?: string | undefined;
1691
1691
  /**
1692
1692
  * <p>The value of the tag.</p>
1693
1693
  * <p>Constraints: Tag values accept a maximum of 256 letters, numbers, spaces in UTF-8, or the
1694
1694
  * following characters: + - = . _ : / @</p>
1695
1695
  * @public
1696
1696
  */
1697
- value?: string;
1697
+ value?: string | undefined;
1698
1698
  }
1699
1699
  /**
1700
1700
  * <p>Describes an Amazon Lightsail bucket.</p>
@@ -1705,17 +1705,17 @@ export interface Bucket {
1705
1705
  * <p>The Lightsail resource type of the bucket.</p>
1706
1706
  * @public
1707
1707
  */
1708
- resourceType?: string;
1708
+ resourceType?: string | undefined;
1709
1709
  /**
1710
1710
  * <p>An object that describes the access rules of the bucket.</p>
1711
1711
  * @public
1712
1712
  */
1713
- accessRules?: AccessRules;
1713
+ accessRules?: AccessRules | undefined;
1714
1714
  /**
1715
1715
  * <p>The Amazon Resource Name (ARN) of the bucket.</p>
1716
1716
  * @public
1717
1717
  */
1718
- arn?: string;
1718
+ arn?: string | undefined;
1719
1719
  /**
1720
1720
  * <p>The ID of the bundle currently applied to the bucket.</p>
1721
1721
  * <p>A bucket bundle specifies the monthly cost, storage space, and data transfer quota for a
@@ -1724,41 +1724,41 @@ export interface Bucket {
1724
1724
  * bundle of a bucket.</p>
1725
1725
  * @public
1726
1726
  */
1727
- bundleId?: string;
1727
+ bundleId?: string | undefined;
1728
1728
  /**
1729
1729
  * <p>The timestamp when the distribution was created.</p>
1730
1730
  * @public
1731
1731
  */
1732
- createdAt?: Date;
1732
+ createdAt?: Date | undefined;
1733
1733
  /**
1734
1734
  * <p>The URL of the bucket.</p>
1735
1735
  * @public
1736
1736
  */
1737
- url?: string;
1737
+ url?: string | undefined;
1738
1738
  /**
1739
1739
  * <p>An object that describes the location of the bucket, such as the Amazon Web Services Region
1740
1740
  * and Availability Zone.</p>
1741
1741
  * @public
1742
1742
  */
1743
- location?: ResourceLocation;
1743
+ location?: ResourceLocation | undefined;
1744
1744
  /**
1745
1745
  * <p>The name of the bucket.</p>
1746
1746
  * @public
1747
1747
  */
1748
- name?: string;
1748
+ name?: string | undefined;
1749
1749
  /**
1750
1750
  * <p>The support code for a bucket. Include this code in your email to support when you have
1751
1751
  * questions about a Lightsail bucket. This code enables our support team to look up your
1752
1752
  * Lightsail information more easily.</p>
1753
1753
  * @public
1754
1754
  */
1755
- supportCode?: string;
1755
+ supportCode?: string | undefined;
1756
1756
  /**
1757
1757
  * <p>The tag keys and optional values for the bucket. For more information, see <a href="https://lightsail.aws.amazon.com/ls/docs/en/articles/amazon-lightsail-tags">Tags in
1758
1758
  * Amazon Lightsail</a> in the <i>Amazon Lightsail Developer Guide</i>.</p>
1759
1759
  * @public
1760
1760
  */
1761
- tags?: Tag[];
1761
+ tags?: Tag[] | undefined;
1762
1762
  /**
1763
1763
  * <p>Indicates whether object versioning is enabled for the bucket.</p>
1764
1764
  * <p>The following options can be configured:</p>
@@ -1779,7 +1779,7 @@ export interface Bucket {
1779
1779
  * </ul>
1780
1780
  * @public
1781
1781
  */
1782
- objectVersioning?: string;
1782
+ objectVersioning?: string | undefined;
1783
1783
  /**
1784
1784
  * <p>Indicates whether the bundle that is currently applied to a bucket can be changed to
1785
1785
  * another bundle.</p>
@@ -1789,13 +1789,13 @@ export interface Bucket {
1789
1789
  * bucket's bundle.</p>
1790
1790
  * @public
1791
1791
  */
1792
- ableToUpdateBundle?: boolean;
1792
+ ableToUpdateBundle?: boolean | undefined;
1793
1793
  /**
1794
1794
  * <p>An array of strings that specify the Amazon Web Services account IDs that have read-only
1795
1795
  * access to the bucket.</p>
1796
1796
  * @public
1797
1797
  */
1798
- readonlyAccessAccounts?: string[];
1798
+ readonlyAccessAccounts?: string[] | undefined;
1799
1799
  /**
1800
1800
  * <p>An array of objects that describe Lightsail instances that have access to the
1801
1801
  * bucket.</p>
@@ -1803,17 +1803,17 @@ export interface Bucket {
1803
1803
  * action to update the instances that have access to a bucket.</p>
1804
1804
  * @public
1805
1805
  */
1806
- resourcesReceivingAccess?: ResourceReceivingAccess[];
1806
+ resourcesReceivingAccess?: ResourceReceivingAccess[] | undefined;
1807
1807
  /**
1808
1808
  * <p>An object that describes the state of the bucket.</p>
1809
1809
  * @public
1810
1810
  */
1811
- state?: BucketState;
1811
+ state?: BucketState | undefined;
1812
1812
  /**
1813
1813
  * <p>An object that describes the access log configuration for the bucket.</p>
1814
1814
  * @public
1815
1815
  */
1816
- accessLogConfig?: BucketAccessLogConfig;
1816
+ accessLogConfig?: BucketAccessLogConfig | undefined;
1817
1817
  }
1818
1818
  /**
1819
1819
  * <p>Describes the specifications of a bundle that can be applied to an Amazon Lightsail
@@ -1827,32 +1827,32 @@ export interface BucketBundle {
1827
1827
  * <p>The ID of the bundle.</p>
1828
1828
  * @public
1829
1829
  */
1830
- bundleId?: string;
1830
+ bundleId?: string | undefined;
1831
1831
  /**
1832
1832
  * <p>The name of the bundle.</p>
1833
1833
  * @public
1834
1834
  */
1835
- name?: string;
1835
+ name?: string | undefined;
1836
1836
  /**
1837
1837
  * <p>The monthly price of the bundle, in US dollars.</p>
1838
1838
  * @public
1839
1839
  */
1840
- price?: number;
1840
+ price?: number | undefined;
1841
1841
  /**
1842
1842
  * <p>The storage size of the bundle, in GB.</p>
1843
1843
  * @public
1844
1844
  */
1845
- storagePerMonthInGb?: number;
1845
+ storagePerMonthInGb?: number | undefined;
1846
1846
  /**
1847
1847
  * <p>The monthly network transfer quota of the bundle.</p>
1848
1848
  * @public
1849
1849
  */
1850
- transferPerMonthInGb?: number;
1850
+ transferPerMonthInGb?: number | undefined;
1851
1851
  /**
1852
1852
  * <p>Indicates whether the bundle is active. Use for a new or existing bucket.</p>
1853
1853
  * @public
1854
1854
  */
1855
- isActive?: boolean;
1855
+ isActive?: boolean | undefined;
1856
1856
  }
1857
1857
  /**
1858
1858
  * @public
@@ -1876,37 +1876,37 @@ export interface Bundle {
1876
1876
  * <p>The price in US dollars (<code>5.0</code>) of the bundle.</p>
1877
1877
  * @public
1878
1878
  */
1879
- price?: number;
1879
+ price?: number | undefined;
1880
1880
  /**
1881
1881
  * <p>The number of vCPUs included in the bundle (<code>2</code>).</p>
1882
1882
  * @public
1883
1883
  */
1884
- cpuCount?: number;
1884
+ cpuCount?: number | undefined;
1885
1885
  /**
1886
1886
  * <p>The size of the SSD (<code>30</code>).</p>
1887
1887
  * @public
1888
1888
  */
1889
- diskSizeInGb?: number;
1889
+ diskSizeInGb?: number | undefined;
1890
1890
  /**
1891
1891
  * <p>The bundle ID (<code>micro_x_x</code>).</p>
1892
1892
  * @public
1893
1893
  */
1894
- bundleId?: string;
1894
+ bundleId?: string | undefined;
1895
1895
  /**
1896
1896
  * <p>The instance type (<code>micro</code>).</p>
1897
1897
  * @public
1898
1898
  */
1899
- instanceType?: string;
1899
+ instanceType?: string | undefined;
1900
1900
  /**
1901
1901
  * <p>A Boolean value indicating whether the bundle is active.</p>
1902
1902
  * @public
1903
1903
  */
1904
- isActive?: boolean;
1904
+ isActive?: boolean | undefined;
1905
1905
  /**
1906
1906
  * <p>A friendly name for the bundle (<code>Micro</code>).</p>
1907
1907
  * @public
1908
1908
  */
1909
- name?: string;
1909
+ name?: string | undefined;
1910
1910
  /**
1911
1911
  * <p>A numeric value that represents the power of the bundle (<code>500</code>). You can use
1912
1912
  * the bundle's power value in conjunction with a blueprint's minimum power value to determine
@@ -1915,17 +1915,17 @@ export interface Bundle {
1915
1915
  * 500.</p>
1916
1916
  * @public
1917
1917
  */
1918
- power?: number;
1918
+ power?: number | undefined;
1919
1919
  /**
1920
1920
  * <p>The amount of RAM in GB (<code>2.0</code>).</p>
1921
1921
  * @public
1922
1922
  */
1923
- ramSizeInGb?: number;
1923
+ ramSizeInGb?: number | undefined;
1924
1924
  /**
1925
1925
  * <p>The data transfer rate per month in GB (<code>2000</code>).</p>
1926
1926
  * @public
1927
1927
  */
1928
- transferPerMonthInGb?: number;
1928
+ transferPerMonthInGb?: number | undefined;
1929
1929
  /**
1930
1930
  * <p>The operating system platform (Linux/Unix-based or Windows Server-based) that the bundle
1931
1931
  * supports. You can only launch a <code>WINDOWS</code> bundle on a blueprint that supports the
@@ -1933,7 +1933,7 @@ export interface Bundle {
1933
1933
  * <code>LINUX_UNIX</code> bundle.</p>
1934
1934
  * @public
1935
1935
  */
1936
- supportedPlatforms?: InstancePlatform[];
1936
+ supportedPlatforms?: InstancePlatform[] | undefined;
1937
1937
  /**
1938
1938
  * <p>Virtual computer blueprints that are supported by a Lightsail for Research bundle.</p>
1939
1939
  * <important>
@@ -1941,13 +1941,13 @@ export interface Bundle {
1941
1941
  * </important>
1942
1942
  * @public
1943
1943
  */
1944
- supportedAppCategories?: AppCategory[];
1944
+ supportedAppCategories?: AppCategory[] | undefined;
1945
1945
  /**
1946
1946
  * <p>An integer that indicates the public ipv4 address count included in the bundle, the value
1947
1947
  * is either 0 or 1.</p>
1948
1948
  * @public
1949
1949
  */
1950
- publicIpv4AddressCount?: number;
1950
+ publicIpv4AddressCount?: number | undefined;
1951
1951
  }
1952
1952
  /**
1953
1953
  * <p>Describes the default cache behavior of an Amazon Lightsail content delivery network (CDN)
@@ -1983,7 +1983,7 @@ export interface CacheBehavior {
1983
1983
  * </ul>
1984
1984
  * @public
1985
1985
  */
1986
- behavior?: BehaviorEnum;
1986
+ behavior?: BehaviorEnum | undefined;
1987
1987
  }
1988
1988
  /**
1989
1989
  * <p>Describes the per-path cache behavior of an Amazon Lightsail content delivery network (CDN)
@@ -2045,7 +2045,7 @@ export interface CacheBehaviorPerPath {
2045
2045
  * </ul>
2046
2046
  * @public
2047
2047
  */
2048
- path?: string;
2048
+ path?: string | undefined;
2049
2049
  /**
2050
2050
  * <p>The cache behavior for the specified path.</p>
2051
2051
  * <p>You can specify one of the following per-path cache behaviors:</p>
@@ -2067,7 +2067,7 @@ export interface CacheBehaviorPerPath {
2067
2067
  * </ul>
2068
2068
  * @public
2069
2069
  */
2070
- behavior?: BehaviorEnum;
2070
+ behavior?: BehaviorEnum | undefined;
2071
2071
  }
2072
2072
  /**
2073
2073
  * @public
@@ -2097,12 +2097,12 @@ export interface CookieObject {
2097
2097
  * specified in the <code>cookiesAllowList</code> parameter.</p>
2098
2098
  * @public
2099
2099
  */
2100
- option?: ForwardValues;
2100
+ option?: ForwardValues | undefined;
2101
2101
  /**
2102
2102
  * <p>The specific cookies to forward to your distribution's origin.</p>
2103
2103
  * @public
2104
2104
  */
2105
- cookiesAllowList?: string[];
2105
+ cookiesAllowList?: string[] | undefined;
2106
2106
  }
2107
2107
  /**
2108
2108
  * @public
@@ -2171,12 +2171,12 @@ export interface HeaderObject {
2171
2171
  * </ul>
2172
2172
  * @public
2173
2173
  */
2174
- option?: ForwardValues;
2174
+ option?: ForwardValues | undefined;
2175
2175
  /**
2176
2176
  * <p>The specific headers to forward to your distribution's origin.</p>
2177
2177
  * @public
2178
2178
  */
2179
- headersAllowList?: HeaderEnum[];
2179
+ headersAllowList?: HeaderEnum[] | undefined;
2180
2180
  }
2181
2181
  /**
2182
2182
  * <p>Describes the query string parameters that an Amazon Lightsail content delivery network
@@ -2191,7 +2191,7 @@ export interface QueryStringObject {
2191
2191
  * <p>Indicates whether the distribution forwards and caches based on query strings.</p>
2192
2192
  * @public
2193
2193
  */
2194
- option?: boolean;
2194
+ option?: boolean | undefined;
2195
2195
  /**
2196
2196
  * <p>The specific query strings that the distribution forwards to the origin.</p>
2197
2197
  * <p>Your distribution will cache content based on the specified query strings.</p>
@@ -2200,7 +2200,7 @@ export interface QueryStringObject {
2200
2200
  * parameter.</p>
2201
2201
  * @public
2202
2202
  */
2203
- queryStringsAllowList?: string[];
2203
+ queryStringsAllowList?: string[] | undefined;
2204
2204
  }
2205
2205
  /**
2206
2206
  * <p>Describes the cache settings of an Amazon Lightsail content delivery network (CDN)
@@ -2222,7 +2222,7 @@ export interface CacheSettings {
2222
2222
  * </note>
2223
2223
  * @public
2224
2224
  */
2225
- defaultTTL?: number;
2225
+ defaultTTL?: number | undefined;
2226
2226
  /**
2227
2227
  * <p>The minimum amount of time that objects stay in the distribution's cache before the
2228
2228
  * distribution forwards another request to the origin to determine whether the object has been
@@ -2231,7 +2231,7 @@ export interface CacheSettings {
2231
2231
  * distribution is configured to forward all headers to the origin.</p>
2232
2232
  * @public
2233
2233
  */
2234
- minimumTTL?: number;
2234
+ minimumTTL?: number | undefined;
2235
2235
  /**
2236
2236
  * <p>The maximum amount of time that objects stay in the distribution's cache before the
2237
2237
  * distribution forwards another request to the origin to determine whether the object has been
@@ -2241,7 +2241,7 @@ export interface CacheSettings {
2241
2241
  * <code>Expires</code> to objects.</p>
2242
2242
  * @public
2243
2243
  */
2244
- maximumTTL?: number;
2244
+ maximumTTL?: number | undefined;
2245
2245
  /**
2246
2246
  * <p>The HTTP methods that are processed and forwarded to the distribution's origin.</p>
2247
2247
  * <p>You can specify the following options:</p>
@@ -2268,7 +2268,7 @@ export interface CacheSettings {
2268
2268
  * not want users to have permission to delete objects from your origin.</p>
2269
2269
  * @public
2270
2270
  */
2271
- allowedHTTPMethods?: string;
2271
+ allowedHTTPMethods?: string | undefined;
2272
2272
  /**
2273
2273
  * <p>The HTTP method responses that are cached by your distribution.</p>
2274
2274
  * <p>You can specify the following options:</p>
@@ -2286,25 +2286,25 @@ export interface CacheSettings {
2286
2286
  * </ul>
2287
2287
  * @public
2288
2288
  */
2289
- cachedHTTPMethods?: string;
2289
+ cachedHTTPMethods?: string | undefined;
2290
2290
  /**
2291
2291
  * <p>An object that describes the cookies that are forwarded to the origin. Your content is
2292
2292
  * cached based on the cookies that are forwarded.</p>
2293
2293
  * @public
2294
2294
  */
2295
- forwardedCookies?: CookieObject;
2295
+ forwardedCookies?: CookieObject | undefined;
2296
2296
  /**
2297
2297
  * <p>An object that describes the headers that are forwarded to the origin. Your content is
2298
2298
  * cached based on the headers that are forwarded.</p>
2299
2299
  * @public
2300
2300
  */
2301
- forwardedHeaders?: HeaderObject;
2301
+ forwardedHeaders?: HeaderObject | undefined;
2302
2302
  /**
2303
2303
  * <p>An object that describes the query strings that are forwarded to the origin. Your content
2304
2304
  * is cached based on the query strings that are forwarded.</p>
2305
2305
  * @public
2306
2306
  */
2307
- forwardedQueryStrings?: QueryStringObject;
2307
+ forwardedQueryStrings?: QueryStringObject | undefined;
2308
2308
  }
2309
2309
  /**
2310
2310
  * @public
@@ -2354,12 +2354,12 @@ export interface DnsRecordCreationState {
2354
2354
  * </ul>
2355
2355
  * @public
2356
2356
  */
2357
- code?: DnsRecordCreationStateCode;
2357
+ code?: DnsRecordCreationStateCode | undefined;
2358
2358
  /**
2359
2359
  * <p>The message that describes the reason for the status code.</p>
2360
2360
  * @public
2361
2361
  */
2362
- message?: string;
2362
+ message?: string | undefined;
2363
2363
  }
2364
2364
  /**
2365
2365
  * <p>Describes the domain name system (DNS) records to add to your domain's DNS to validate it
@@ -2371,17 +2371,17 @@ export interface ResourceRecord {
2371
2371
  * <p>The name of the record.</p>
2372
2372
  * @public
2373
2373
  */
2374
- name?: string;
2374
+ name?: string | undefined;
2375
2375
  /**
2376
2376
  * <p>The DNS record type.</p>
2377
2377
  * @public
2378
2378
  */
2379
- type?: string;
2379
+ type?: string | undefined;
2380
2380
  /**
2381
2381
  * <p>The value for the DNS record.</p>
2382
2382
  * @public
2383
2383
  */
2384
- value?: string;
2384
+ value?: string | undefined;
2385
2385
  }
2386
2386
  /**
2387
2387
  * @public
@@ -2407,25 +2407,25 @@ export interface DomainValidationRecord {
2407
2407
  * <code>example.com</code> or <code>www.example.com</code>.</p>
2408
2408
  * @public
2409
2409
  */
2410
- domainName?: string;
2410
+ domainName?: string | undefined;
2411
2411
  /**
2412
2412
  * <p>An object that describes the DNS records to add to your domain's DNS to validate it for
2413
2413
  * the certificate.</p>
2414
2414
  * @public
2415
2415
  */
2416
- resourceRecord?: ResourceRecord;
2416
+ resourceRecord?: ResourceRecord | undefined;
2417
2417
  /**
2418
2418
  * <p>An object that describes the state of the canonical name (CNAME) records that are
2419
2419
  * automatically added by Lightsail to the DNS of the domain to validate domain
2420
2420
  * ownership.</p>
2421
2421
  * @public
2422
2422
  */
2423
- dnsRecordCreationState?: DnsRecordCreationState;
2423
+ dnsRecordCreationState?: DnsRecordCreationState | undefined;
2424
2424
  /**
2425
2425
  * <p>The validation status of the record.</p>
2426
2426
  * @public
2427
2427
  */
2428
- validationStatus?: CertificateDomainValidationStatus;
2428
+ validationStatus?: CertificateDomainValidationStatus | undefined;
2429
2429
  }
2430
2430
  /**
2431
2431
  * @public
@@ -2450,7 +2450,7 @@ export interface RenewalSummary {
2450
2450
  * <p>An array of objects that describe the domain validation records of the certificate.</p>
2451
2451
  * @public
2452
2452
  */
2453
- domainValidationRecords?: DomainValidationRecord[];
2453
+ domainValidationRecords?: DomainValidationRecord[] | undefined;
2454
2454
  /**
2455
2455
  * <p>The renewal status of the certificate.</p>
2456
2456
  * <p>The following renewal status are possible:</p>
@@ -2493,17 +2493,17 @@ export interface RenewalSummary {
2493
2493
  * </ul>
2494
2494
  * @public
2495
2495
  */
2496
- renewalStatus?: RenewalStatus;
2496
+ renewalStatus?: RenewalStatus | undefined;
2497
2497
  /**
2498
2498
  * <p>The reason for the renewal status of the certificate.</p>
2499
2499
  * @public
2500
2500
  */
2501
- renewalStatusReason?: string;
2501
+ renewalStatusReason?: string | undefined;
2502
2502
  /**
2503
2503
  * <p>The timestamp when the certificate was last updated.</p>
2504
2504
  * @public
2505
2505
  */
2506
- updatedAt?: Date;
2506
+ updatedAt?: Date | undefined;
2507
2507
  }
2508
2508
  /**
2509
2509
  * @public
@@ -2536,38 +2536,38 @@ export interface Certificate {
2536
2536
  * <p>The Amazon Resource Name (ARN) of the certificate.</p>
2537
2537
  * @public
2538
2538
  */
2539
- arn?: string;
2539
+ arn?: string | undefined;
2540
2540
  /**
2541
2541
  * <p>The name of the certificate (<code>my-certificate</code>).</p>
2542
2542
  * @public
2543
2543
  */
2544
- name?: string;
2544
+ name?: string | undefined;
2545
2545
  /**
2546
2546
  * <p>The domain name of the certificate.</p>
2547
2547
  * @public
2548
2548
  */
2549
- domainName?: string;
2549
+ domainName?: string | undefined;
2550
2550
  /**
2551
2551
  * <p>The validation status of the certificate.</p>
2552
2552
  * @public
2553
2553
  */
2554
- status?: CertificateStatus;
2554
+ status?: CertificateStatus | undefined;
2555
2555
  /**
2556
2556
  * <p>The serial number of the certificate.</p>
2557
2557
  * @public
2558
2558
  */
2559
- serialNumber?: string;
2559
+ serialNumber?: string | undefined;
2560
2560
  /**
2561
2561
  * <p>An array of strings that specify the alternate domains (<code>example2.com</code>) and
2562
2562
  * subdomains (<code>blog.example.com</code>) of the certificate.</p>
2563
2563
  * @public
2564
2564
  */
2565
- subjectAlternativeNames?: string[];
2565
+ subjectAlternativeNames?: string[] | undefined;
2566
2566
  /**
2567
2567
  * <p>An array of objects that describe the domain validation records of the certificate.</p>
2568
2568
  * @public
2569
2569
  */
2570
- domainValidationRecords?: DomainValidationRecord[];
2570
+ domainValidationRecords?: DomainValidationRecord[] | undefined;
2571
2571
  /**
2572
2572
  * <p>The validation failure reason, if any, of the certificate.</p>
2573
2573
  * <p>The following failure reasons are possible:</p>
@@ -2634,79 +2634,79 @@ export interface Certificate {
2634
2634
  * </ul>
2635
2635
  * @public
2636
2636
  */
2637
- requestFailureReason?: string;
2637
+ requestFailureReason?: string | undefined;
2638
2638
  /**
2639
2639
  * <p>The number of Lightsail resources that the certificate is attached to.</p>
2640
2640
  * @public
2641
2641
  */
2642
- inUseResourceCount?: number;
2642
+ inUseResourceCount?: number | undefined;
2643
2643
  /**
2644
2644
  * <p>The algorithm used to generate the key pair (the public and private key) of the
2645
2645
  * certificate.</p>
2646
2646
  * @public
2647
2647
  */
2648
- keyAlgorithm?: string;
2648
+ keyAlgorithm?: string | undefined;
2649
2649
  /**
2650
2650
  * <p>The timestamp when the certificate was created.</p>
2651
2651
  * @public
2652
2652
  */
2653
- createdAt?: Date;
2653
+ createdAt?: Date | undefined;
2654
2654
  /**
2655
2655
  * <p>The timestamp when the certificate was issued.</p>
2656
2656
  * @public
2657
2657
  */
2658
- issuedAt?: Date;
2658
+ issuedAt?: Date | undefined;
2659
2659
  /**
2660
2660
  * <p>The certificate authority that issued the certificate.</p>
2661
2661
  * @public
2662
2662
  */
2663
- issuerCA?: string;
2663
+ issuerCA?: string | undefined;
2664
2664
  /**
2665
2665
  * <p>The timestamp when the certificate is first valid.</p>
2666
2666
  * @public
2667
2667
  */
2668
- notBefore?: Date;
2668
+ notBefore?: Date | undefined;
2669
2669
  /**
2670
2670
  * <p>The timestamp when the certificate expires.</p>
2671
2671
  * @public
2672
2672
  */
2673
- notAfter?: Date;
2673
+ notAfter?: Date | undefined;
2674
2674
  /**
2675
2675
  * <p>The renewal eligibility of the certificate.</p>
2676
2676
  * @public
2677
2677
  */
2678
- eligibleToRenew?: string;
2678
+ eligibleToRenew?: string | undefined;
2679
2679
  /**
2680
2680
  * <p>An object that describes the status of the certificate renewal managed by
2681
2681
  * Lightsail.</p>
2682
2682
  * @public
2683
2683
  */
2684
- renewalSummary?: RenewalSummary;
2684
+ renewalSummary?: RenewalSummary | undefined;
2685
2685
  /**
2686
2686
  * <p>The timestamp when the certificate was revoked. This value is present only when the
2687
2687
  * certificate status is <code>REVOKED</code>.</p>
2688
2688
  * @public
2689
2689
  */
2690
- revokedAt?: Date;
2690
+ revokedAt?: Date | undefined;
2691
2691
  /**
2692
2692
  * <p>The reason the certificate was revoked. This value is present only when the certificate
2693
2693
  * status is <code>REVOKED</code>.</p>
2694
2694
  * @public
2695
2695
  */
2696
- revocationReason?: string;
2696
+ revocationReason?: string | undefined;
2697
2697
  /**
2698
2698
  * <p>The tag keys and optional values for the resource. For more information about tags in
2699
2699
  * Lightsail, see the <a href="https://lightsail.aws.amazon.com/ls/docs/en_us/articles/amazon-lightsail-tags">Amazon Lightsail Developer Guide</a>.</p>
2700
2700
  * @public
2701
2701
  */
2702
- tags?: Tag[];
2702
+ tags?: Tag[] | undefined;
2703
2703
  /**
2704
2704
  * <p>The support code. Include this code in your email to support when you have questions about
2705
2705
  * your Lightsail certificate. This code enables our support team to look up your Lightsail
2706
2706
  * information more easily.</p>
2707
2707
  * @public
2708
2708
  */
2709
- supportCode?: string;
2709
+ supportCode?: string | undefined;
2710
2710
  }
2711
2711
  /**
2712
2712
  * @public
@@ -2728,28 +2728,28 @@ export interface CertificateSummary {
2728
2728
  * <p>The Amazon Resource Name (ARN) of the certificate.</p>
2729
2729
  * @public
2730
2730
  */
2731
- certificateArn?: string;
2731
+ certificateArn?: string | undefined;
2732
2732
  /**
2733
2733
  * <p>The name of the certificate.</p>
2734
2734
  * @public
2735
2735
  */
2736
- certificateName?: string;
2736
+ certificateName?: string | undefined;
2737
2737
  /**
2738
2738
  * <p>The domain name of the certificate.</p>
2739
2739
  * @public
2740
2740
  */
2741
- domainName?: string;
2741
+ domainName?: string | undefined;
2742
2742
  /**
2743
2743
  * <p>An object that describes a certificate in detail.</p>
2744
2744
  * @public
2745
2745
  */
2746
- certificateDetail?: Certificate;
2746
+ certificateDetail?: Certificate | undefined;
2747
2747
  /**
2748
2748
  * <p>The tag keys and optional values for the resource. For more information about tags in
2749
2749
  * Lightsail, see the <a href="https://lightsail.aws.amazon.com/ls/docs/en_us/articles/amazon-lightsail-tags">Amazon Lightsail Developer Guide</a>.</p>
2750
2750
  * @public
2751
2751
  */
2752
- tags?: Tag[];
2752
+ tags?: Tag[] | undefined;
2753
2753
  }
2754
2754
  /**
2755
2755
  * @public
@@ -2794,7 +2794,7 @@ export interface PortInfo {
2794
2794
  * </ul>
2795
2795
  * @public
2796
2796
  */
2797
- fromPort?: number;
2797
+ fromPort?: number | undefined;
2798
2798
  /**
2799
2799
  * <p>The last port in a range of open ports on an instance.</p>
2800
2800
  * <p>Allowed ports:</p>
@@ -2817,7 +2817,7 @@ export interface PortInfo {
2817
2817
  * </ul>
2818
2818
  * @public
2819
2819
  */
2820
- toPort?: number;
2820
+ toPort?: number | undefined;
2821
2821
  /**
2822
2822
  * <p>The IP protocol name.</p>
2823
2823
  * <p>The name can be one of the following:</p>
@@ -2863,7 +2863,7 @@ export interface PortInfo {
2863
2863
  * </ul>
2864
2864
  * @public
2865
2865
  */
2866
- protocol?: NetworkProtocol;
2866
+ protocol?: NetworkProtocol | undefined;
2867
2867
  /**
2868
2868
  * <p>The IPv4 address, or range of IPv4 addresses (in CIDR notation) that are allowed to
2869
2869
  * connect to an instance through the ports, and the protocol.</p>
@@ -2886,7 +2886,7 @@ export interface PortInfo {
2886
2886
  * Inter-Domain Routing</a> on <i>Wikipedia</i>.</p>
2887
2887
  * @public
2888
2888
  */
2889
- cidrs?: string[];
2889
+ cidrs?: string[] | undefined;
2890
2890
  /**
2891
2891
  * <p>The IPv6 address, or range of IPv6 addresses (in CIDR notation) that are allowed to
2892
2892
  * connect to an instance through the ports, and the protocol. Only devices with an IPv6 address
@@ -2899,7 +2899,7 @@ export interface PortInfo {
2899
2899
  * Inter-Domain Routing</a> on <i>Wikipedia</i>.</p>
2900
2900
  * @public
2901
2901
  */
2902
- ipv6Cidrs?: string[];
2902
+ ipv6Cidrs?: string[] | undefined;
2903
2903
  /**
2904
2904
  * <p>An alias that defines access for a preconfigured range of IP addresses.</p>
2905
2905
  * <p>The only alias currently supported is <code>lightsail-connect</code>, which allows IP
@@ -2907,7 +2907,7 @@ export interface PortInfo {
2907
2907
  * instance.</p>
2908
2908
  * @public
2909
2909
  */
2910
- cidrListAliases?: string[];
2910
+ cidrListAliases?: string[] | undefined;
2911
2911
  }
2912
2912
  /**
2913
2913
  * @public
@@ -2933,7 +2933,7 @@ export interface CloseInstancePublicPortsResult {
2933
2933
  * timestamp of the request, and the resources affected by the request.</p>
2934
2934
  * @public
2935
2935
  */
2936
- operation?: Operation;
2936
+ operation?: Operation | undefined;
2937
2937
  }
2938
2938
  /**
2939
2939
  * <p>Describes the destination of a record.</p>
@@ -2944,12 +2944,12 @@ export interface DestinationInfo {
2944
2944
  * <p>The ID of the resource created at the destination.</p>
2945
2945
  * @public
2946
2946
  */
2947
- id?: string;
2947
+ id?: string | undefined;
2948
2948
  /**
2949
2949
  * <p>The destination service of the record.</p>
2950
2950
  * @public
2951
2951
  */
2952
- service?: string;
2952
+ service?: string | undefined;
2953
2953
  }
2954
2954
  /**
2955
2955
  * @public
@@ -2972,17 +2972,17 @@ export interface CloudFormationStackRecordSourceInfo {
2972
2972
  * <p>The Lightsail resource type (<code>ExportSnapshotRecord</code>).</p>
2973
2973
  * @public
2974
2974
  */
2975
- resourceType?: CloudFormationStackRecordSourceType;
2975
+ resourceType?: CloudFormationStackRecordSourceType | undefined;
2976
2976
  /**
2977
2977
  * <p>The name of the record.</p>
2978
2978
  * @public
2979
2979
  */
2980
- name?: string;
2980
+ name?: string | undefined;
2981
2981
  /**
2982
2982
  * <p>The Amazon Resource Name (ARN) of the export snapshot record.</p>
2983
2983
  * @public
2984
2984
  */
2985
- arn?: string;
2985
+ arn?: string | undefined;
2986
2986
  }
2987
2987
  /**
2988
2988
  * @public
@@ -3010,44 +3010,44 @@ export interface CloudFormationStackRecord {
3010
3010
  * <code>CloudFormationStackRecord</code> followed by a GUID.</p>
3011
3011
  * @public
3012
3012
  */
3013
- name?: string;
3013
+ name?: string | undefined;
3014
3014
  /**
3015
3015
  * <p>The Amazon Resource Name (ARN) of the CloudFormation stack record.</p>
3016
3016
  * @public
3017
3017
  */
3018
- arn?: string;
3018
+ arn?: string | undefined;
3019
3019
  /**
3020
3020
  * <p>The date when the CloudFormation stack record was created.</p>
3021
3021
  * @public
3022
3022
  */
3023
- createdAt?: Date;
3023
+ createdAt?: Date | undefined;
3024
3024
  /**
3025
3025
  * <p>A list of objects describing the Availability Zone and Amazon Web Services Region of the
3026
3026
  * CloudFormation stack record.</p>
3027
3027
  * @public
3028
3028
  */
3029
- location?: ResourceLocation;
3029
+ location?: ResourceLocation | undefined;
3030
3030
  /**
3031
3031
  * <p>The Lightsail resource type (<code>CloudFormationStackRecord</code>).</p>
3032
3032
  * @public
3033
3033
  */
3034
- resourceType?: ResourceType;
3034
+ resourceType?: ResourceType | undefined;
3035
3035
  /**
3036
3036
  * <p>The current state of the CloudFormation stack record.</p>
3037
3037
  * @public
3038
3038
  */
3039
- state?: RecordState;
3039
+ state?: RecordState | undefined;
3040
3040
  /**
3041
3041
  * <p>A list of objects describing the source of the CloudFormation stack record.</p>
3042
3042
  * @public
3043
3043
  */
3044
- sourceInfo?: CloudFormationStackRecordSourceInfo[];
3044
+ sourceInfo?: CloudFormationStackRecordSourceInfo[] | undefined;
3045
3045
  /**
3046
3046
  * <p>A list of objects describing the destination service, which is AWS CloudFormation, and the Amazon
3047
3047
  * Resource Name (ARN) of the AWS CloudFormation stack.</p>
3048
3048
  * @public
3049
3049
  */
3050
- destinationInfo?: DestinationInfo;
3050
+ destinationInfo?: DestinationInfo | undefined;
3051
3051
  }
3052
3052
  /**
3053
3053
  * @public
@@ -3073,7 +3073,7 @@ export interface ContactMethod {
3073
3073
  * number.</p>
3074
3074
  * @public
3075
3075
  */
3076
- contactEndpoint?: string;
3076
+ contactEndpoint?: string | undefined;
3077
3077
  /**
3078
3078
  * <p>The current status of the contact method.</p>
3079
3079
  * <p>A contact method has the following possible status:</p>
@@ -3095,44 +3095,44 @@ export interface ContactMethod {
3095
3095
  * </ul>
3096
3096
  * @public
3097
3097
  */
3098
- status?: ContactMethodStatus;
3098
+ status?: ContactMethodStatus | undefined;
3099
3099
  /**
3100
3100
  * <p>The protocol of the contact method, such as email or SMS (text messaging).</p>
3101
3101
  * @public
3102
3102
  */
3103
- protocol?: ContactProtocol;
3103
+ protocol?: ContactProtocol | undefined;
3104
3104
  /**
3105
3105
  * <p>The name of the contact method.</p>
3106
3106
  * @public
3107
3107
  */
3108
- name?: string;
3108
+ name?: string | undefined;
3109
3109
  /**
3110
3110
  * <p>The Amazon Resource Name (ARN) of the contact method.</p>
3111
3111
  * @public
3112
3112
  */
3113
- arn?: string;
3113
+ arn?: string | undefined;
3114
3114
  /**
3115
3115
  * <p>The timestamp when the contact method was created.</p>
3116
3116
  * @public
3117
3117
  */
3118
- createdAt?: Date;
3118
+ createdAt?: Date | undefined;
3119
3119
  /**
3120
3120
  * <p>An object that describes the location of the contact method, such as the Amazon Web Services Region and Availability Zone.</p>
3121
3121
  * @public
3122
3122
  */
3123
- location?: ResourceLocation;
3123
+ location?: ResourceLocation | undefined;
3124
3124
  /**
3125
3125
  * <p>The Lightsail resource type of the contact method.</p>
3126
3126
  * @public
3127
3127
  */
3128
- resourceType?: ResourceType;
3128
+ resourceType?: ResourceType | undefined;
3129
3129
  /**
3130
3130
  * <p>The support code. Include this code in your email to support when you have questions about
3131
3131
  * your Lightsail contact method. This code enables our support team to look up your
3132
3132
  * Lightsail information more easily.</p>
3133
3133
  * @public
3134
3134
  */
3135
- supportCode?: string;
3135
+ supportCode?: string | undefined;
3136
3136
  }
3137
3137
  /**
3138
3138
  * @public
@@ -3180,22 +3180,22 @@ export interface Container {
3180
3180
  * For example, <code>nginx:latest</code> or <code>nginx</code>.</p>
3181
3181
  * @public
3182
3182
  */
3183
- image?: string;
3183
+ image?: string | undefined;
3184
3184
  /**
3185
3185
  * <p>The launch command for the container.</p>
3186
3186
  * @public
3187
3187
  */
3188
- command?: string[];
3188
+ command?: string[] | undefined;
3189
3189
  /**
3190
3190
  * <p>The environment variables of the container.</p>
3191
3191
  * @public
3192
3192
  */
3193
- environment?: Record<string, string>;
3193
+ environment?: Record<string, string> | undefined;
3194
3194
  /**
3195
3195
  * <p>The open firewall ports of the container.</p>
3196
3196
  * @public
3197
3197
  */
3198
- ports?: Record<string, ContainerServiceProtocol>;
3198
+ ports?: Record<string, ContainerServiceProtocol> | undefined;
3199
3199
  }
3200
3200
  /**
3201
3201
  * <p>Describes a container image that is registered to an Amazon Lightsail container
@@ -3207,17 +3207,17 @@ export interface ContainerImage {
3207
3207
  * <p>The name of the container image.</p>
3208
3208
  * @public
3209
3209
  */
3210
- image?: string;
3210
+ image?: string | undefined;
3211
3211
  /**
3212
3212
  * <p>The digest of the container image.</p>
3213
3213
  * @public
3214
3214
  */
3215
- digest?: string;
3215
+ digest?: string | undefined;
3216
3216
  /**
3217
3217
  * <p>The timestamp when the container image was created.</p>
3218
3218
  * @public
3219
3219
  */
3220
- createdAt?: Date;
3220
+ createdAt?: Date | undefined;
3221
3221
  }
3222
3222
  /**
3223
3223
  * <p>Describes the health check configuration of an Amazon Lightsail container service.</p>
@@ -3229,31 +3229,31 @@ export interface ContainerServiceHealthCheckConfig {
3229
3229
  * the <code>Healthy</code> state. The default value is <code>2</code>.</p>
3230
3230
  * @public
3231
3231
  */
3232
- healthyThreshold?: number;
3232
+ healthyThreshold?: number | undefined;
3233
3233
  /**
3234
3234
  * <p>The number of consecutive health check failures required before moving the container to
3235
3235
  * the <code>Unhealthy</code> state. The default value is <code>2</code>.</p>
3236
3236
  * @public
3237
3237
  */
3238
- unhealthyThreshold?: number;
3238
+ unhealthyThreshold?: number | undefined;
3239
3239
  /**
3240
3240
  * <p>The amount of time, in seconds, during which no response means a failed health check. You
3241
3241
  * can specify between 2 and 60 seconds. The default value is <code>2</code>.</p>
3242
3242
  * @public
3243
3243
  */
3244
- timeoutSeconds?: number;
3244
+ timeoutSeconds?: number | undefined;
3245
3245
  /**
3246
3246
  * <p>The approximate interval, in seconds, between health checks of an individual container.
3247
3247
  * You can specify between 5 and 300 seconds. The default value is <code>5</code>.</p>
3248
3248
  * @public
3249
3249
  */
3250
- intervalSeconds?: number;
3250
+ intervalSeconds?: number | undefined;
3251
3251
  /**
3252
3252
  * <p>The path on the container on which to perform the health check. The default value is
3253
3253
  * <code>/</code>.</p>
3254
3254
  * @public
3255
3255
  */
3256
- path?: string;
3256
+ path?: string | undefined;
3257
3257
  /**
3258
3258
  * <p>The HTTP codes to use when checking for a successful response from a container. You can
3259
3259
  * specify values between <code>200</code> and <code>499</code>. You can specify multiple values
@@ -3261,7 +3261,7 @@ export interface ContainerServiceHealthCheckConfig {
3261
3261
  * <code>200-299</code>).</p>
3262
3262
  * @public
3263
3263
  */
3264
- successCodes?: string;
3264
+ successCodes?: string | undefined;
3265
3265
  }
3266
3266
  /**
3267
3267
  * <p>Describes the public endpoint configuration of a deployment of an Amazon Lightsail
@@ -3274,17 +3274,17 @@ export interface ContainerServiceEndpoint {
3274
3274
  * to.</p>
3275
3275
  * @public
3276
3276
  */
3277
- containerName?: string;
3277
+ containerName?: string | undefined;
3278
3278
  /**
3279
3279
  * <p>The port of the specified container to which traffic is forwarded to.</p>
3280
3280
  * @public
3281
3281
  */
3282
- containerPort?: number;
3282
+ containerPort?: number | undefined;
3283
3283
  /**
3284
3284
  * <p>An object that describes the health check configuration of the container.</p>
3285
3285
  * @public
3286
3286
  */
3287
- healthCheck?: ContainerServiceHealthCheckConfig;
3287
+ healthCheck?: ContainerServiceHealthCheckConfig | undefined;
3288
3288
  }
3289
3289
  /**
3290
3290
  * @public
@@ -3312,7 +3312,7 @@ export interface ContainerServiceDeployment {
3312
3312
  * <p>The version number of the deployment.</p>
3313
3313
  * @public
3314
3314
  */
3315
- version?: number;
3315
+ version?: number | undefined;
3316
3316
  /**
3317
3317
  * <p>The state of the deployment.</p>
3318
3318
  * <p>A deployment can be in one of the following states:</p>
@@ -3341,22 +3341,22 @@ export interface ContainerServiceDeployment {
3341
3341
  * </ul>
3342
3342
  * @public
3343
3343
  */
3344
- state?: ContainerServiceDeploymentState;
3344
+ state?: ContainerServiceDeploymentState | undefined;
3345
3345
  /**
3346
3346
  * <p>An object that describes the configuration for the containers of the deployment.</p>
3347
3347
  * @public
3348
3348
  */
3349
- containers?: Record<string, Container>;
3349
+ containers?: Record<string, Container> | undefined;
3350
3350
  /**
3351
3351
  * <p>An object that describes the endpoint of the deployment.</p>
3352
3352
  * @public
3353
3353
  */
3354
- publicEndpoint?: ContainerServiceEndpoint;
3354
+ publicEndpoint?: ContainerServiceEndpoint | undefined;
3355
3355
  /**
3356
3356
  * <p>The timestamp when the deployment was created.</p>
3357
3357
  * @public
3358
3358
  */
3359
- createdAt?: Date;
3359
+ createdAt?: Date | undefined;
3360
3360
  }
3361
3361
  /**
3362
3362
  * @public
@@ -3389,12 +3389,12 @@ export interface ContainerServiceECRImagePullerRole {
3389
3389
  * <p>A Boolean value that indicates whether the role is activated.</p>
3390
3390
  * @public
3391
3391
  */
3392
- isActive?: boolean;
3392
+ isActive?: boolean | undefined;
3393
3393
  /**
3394
3394
  * <p>The Amazon Resource Name (ARN) of the role, if it is activated.</p>
3395
3395
  * @public
3396
3396
  */
3397
- principalArn?: string;
3397
+ principalArn?: string | undefined;
3398
3398
  }
3399
3399
  /**
3400
3400
  * <p>Describes the configuration for an Amazon Lightsail container service to
@@ -3410,7 +3410,7 @@ export interface PrivateRegistryAccess {
3410
3410
  * listed.</p>
3411
3411
  * @public
3412
3412
  */
3413
- ecrImagePullerRole?: ContainerServiceECRImagePullerRole;
3413
+ ecrImagePullerRole?: ContainerServiceECRImagePullerRole | undefined;
3414
3414
  }
3415
3415
  /**
3416
3416
  * @public
@@ -3517,7 +3517,7 @@ export interface ContainerServiceStateDetail {
3517
3517
  * </ul>
3518
3518
  * @public
3519
3519
  */
3520
- code?: ContainerServiceStateDetailCode;
3520
+ code?: ContainerServiceStateDetailCode | undefined;
3521
3521
  /**
3522
3522
  * <p>A message that provides more information for the state code.</p>
3523
3523
  * <note>
@@ -3526,7 +3526,7 @@ export interface ContainerServiceStateDetail {
3526
3526
  * </note>
3527
3527
  * @public
3528
3528
  */
3529
- message?: string;
3529
+ message?: string | undefined;
3530
3530
  }
3531
3531
  /**
3532
3532
  * <p>Describes an Amazon Lightsail container service.</p>
@@ -3537,45 +3537,45 @@ export interface ContainerService {
3537
3537
  * <p>The name of the container service.</p>
3538
3538
  * @public
3539
3539
  */
3540
- containerServiceName?: string;
3540
+ containerServiceName?: string | undefined;
3541
3541
  /**
3542
3542
  * <p>The Amazon Resource Name (ARN) of the container service.</p>
3543
3543
  * @public
3544
3544
  */
3545
- arn?: string;
3545
+ arn?: string | undefined;
3546
3546
  /**
3547
3547
  * <p>The timestamp when the container service was created.</p>
3548
3548
  * @public
3549
3549
  */
3550
- createdAt?: Date;
3550
+ createdAt?: Date | undefined;
3551
3551
  /**
3552
3552
  * <p>An object that describes the location of the container service, such as the Amazon Web Services Region and Availability Zone.</p>
3553
3553
  * @public
3554
3554
  */
3555
- location?: ResourceLocation;
3555
+ location?: ResourceLocation | undefined;
3556
3556
  /**
3557
3557
  * <p>The Lightsail resource type of the container service.</p>
3558
3558
  * @public
3559
3559
  */
3560
- resourceType?: ResourceType;
3560
+ resourceType?: ResourceType | undefined;
3561
3561
  /**
3562
3562
  * <p>The tag keys and optional values for the resource. For more information about tags in
3563
3563
  * Lightsail, see the <a href="https://lightsail.aws.amazon.com/ls/docs/en_us/articles/amazon-lightsail-tags">Amazon Lightsail Developer Guide</a>.</p>
3564
3564
  * @public
3565
3565
  */
3566
- tags?: Tag[];
3566
+ tags?: Tag[] | undefined;
3567
3567
  /**
3568
3568
  * <p>The power specification of the container service.</p>
3569
3569
  * <p>The power specifies the amount of RAM, the number of vCPUs, and the base price of the
3570
3570
  * container service.</p>
3571
3571
  * @public
3572
3572
  */
3573
- power?: ContainerServicePowerName;
3573
+ power?: ContainerServicePowerName | undefined;
3574
3574
  /**
3575
3575
  * <p>The ID of the power of the container service.</p>
3576
3576
  * @public
3577
3577
  */
3578
- powerId?: string;
3578
+ powerId?: string | undefined;
3579
3579
  /**
3580
3580
  * <p>The current state of the container service.</p>
3581
3581
  * <p>The following container service states are possible:</p>
@@ -3616,7 +3616,7 @@ export interface ContainerService {
3616
3616
  * </ul>
3617
3617
  * @public
3618
3618
  */
3619
- state?: ContainerServiceState;
3619
+ state?: ContainerServiceState | undefined;
3620
3620
  /**
3621
3621
  * <p>An object that describes the current state of the container service.</p>
3622
3622
  * <note>
@@ -3625,44 +3625,44 @@ export interface ContainerService {
3625
3625
  * </note>
3626
3626
  * @public
3627
3627
  */
3628
- stateDetail?: ContainerServiceStateDetail;
3628
+ stateDetail?: ContainerServiceStateDetail | undefined;
3629
3629
  /**
3630
3630
  * <p>The scale specification of the container service.</p>
3631
3631
  * <p>The scale specifies the allocated compute nodes of the container service.</p>
3632
3632
  * @public
3633
3633
  */
3634
- scale?: number;
3634
+ scale?: number | undefined;
3635
3635
  /**
3636
3636
  * <p>An object that describes the current container deployment of the container service.</p>
3637
3637
  * @public
3638
3638
  */
3639
- currentDeployment?: ContainerServiceDeployment;
3639
+ currentDeployment?: ContainerServiceDeployment | undefined;
3640
3640
  /**
3641
3641
  * <p>An object that describes the next deployment of the container service.</p>
3642
3642
  * <p>This value is <code>null</code> when there is no deployment in a <code>pending</code>
3643
3643
  * state.</p>
3644
3644
  * @public
3645
3645
  */
3646
- nextDeployment?: ContainerServiceDeployment;
3646
+ nextDeployment?: ContainerServiceDeployment | undefined;
3647
3647
  /**
3648
3648
  * <p>A Boolean value indicating whether the container service is disabled.</p>
3649
3649
  * @public
3650
3650
  */
3651
- isDisabled?: boolean;
3651
+ isDisabled?: boolean | undefined;
3652
3652
  /**
3653
3653
  * <p>The principal ARN of the container service.</p>
3654
3654
  * <p>The principal ARN can be used to create a trust relationship between your standard Amazon Web Services account and your Lightsail container service. This allows you to give your
3655
3655
  * service permission to access resources in your standard Amazon Web Services account.</p>
3656
3656
  * @public
3657
3657
  */
3658
- principalArn?: string;
3658
+ principalArn?: string | undefined;
3659
3659
  /**
3660
3660
  * <p>The private domain name of the container service.</p>
3661
3661
  * <p>The private domain name is accessible only by other resources within the default virtual
3662
3662
  * private cloud (VPC) of your Lightsail account.</p>
3663
3663
  * @public
3664
3664
  */
3665
- privateDomainName?: string;
3665
+ privateDomainName?: string | undefined;
3666
3666
  /**
3667
3667
  * <p>The public domain name of the container service, such as <code>example.com</code> and
3668
3668
  * <code>www.example.com</code>.</p>
@@ -3681,14 +3681,14 @@ export interface ContainerService {
3681
3681
  * service.</p>
3682
3682
  * @public
3683
3683
  */
3684
- publicDomainNames?: Record<string, string[]>;
3684
+ publicDomainNames?: Record<string, string[]> | undefined;
3685
3685
  /**
3686
3686
  * <p>The publicly accessible URL of the container service.</p>
3687
3687
  * <p>If no public endpoint is specified in the <code>currentDeployment</code>, this URL returns
3688
3688
  * a 404 response.</p>
3689
3689
  * @public
3690
3690
  */
3691
- url?: string;
3691
+ url?: string | undefined;
3692
3692
  /**
3693
3693
  * <p>An object that describes the configuration for the container service to access private
3694
3694
  * container image repositories, such as Amazon Elastic Container Registry (Amazon ECR) private
@@ -3696,7 +3696,7 @@ export interface ContainerService {
3696
3696
  * <p>For more information, see <a href="https://lightsail.aws.amazon.com/ls/docs/en_us/articles/amazon-lightsail-container-service-ecr-private-repo-access">Configuring access to an Amazon ECR private repository for an Amazon Lightsail container service</a> in the <i>Amazon Lightsail Developer Guide</i>.</p>
3697
3697
  * @public
3698
3698
  */
3699
- privateRegistryAccess?: PrivateRegistryAccess;
3699
+ privateRegistryAccess?: PrivateRegistryAccess | undefined;
3700
3700
  }
3701
3701
  /**
3702
3702
  * <p>Describes the settings of a public endpoint for an Amazon Lightsail container
@@ -3718,7 +3718,7 @@ export interface EndpointRequest {
3718
3718
  * <p>An object that describes the health check configuration of the container.</p>
3719
3719
  * @public
3720
3720
  */
3721
- healthCheck?: ContainerServiceHealthCheckConfig;
3721
+ healthCheck?: ContainerServiceHealthCheckConfig | undefined;
3722
3722
  }
3723
3723
  /**
3724
3724
  * <p>Describes a container deployment configuration of an Amazon Lightsail container
@@ -3732,12 +3732,12 @@ export interface ContainerServiceDeploymentRequest {
3732
3732
  * <p>An object that describes the configuration for the containers of the deployment.</p>
3733
3733
  * @public
3734
3734
  */
3735
- containers?: Record<string, Container>;
3735
+ containers?: Record<string, Container> | undefined;
3736
3736
  /**
3737
3737
  * <p>An object that describes the endpoint of the deployment.</p>
3738
3738
  * @public
3739
3739
  */
3740
- publicEndpoint?: EndpointRequest;
3740
+ publicEndpoint?: EndpointRequest | undefined;
3741
3741
  }
3742
3742
  /**
3743
3743
  * <p>Describes a request to activate or deactivate the role that you can use to grant an
@@ -3754,7 +3754,7 @@ export interface ContainerServiceECRImagePullerRoleRequest {
3754
3754
  * <p>A Boolean value that indicates whether to activate the role.</p>
3755
3755
  * @public
3756
3756
  */
3757
- isActive?: boolean;
3757
+ isActive?: boolean | undefined;
3758
3758
  }
3759
3759
  /**
3760
3760
  * <p>Describes the log events of a container of an Amazon Lightsail container service.</p>
@@ -3765,12 +3765,12 @@ export interface ContainerServiceLogEvent {
3765
3765
  * <p>The timestamp when the container service log event was created.</p>
3766
3766
  * @public
3767
3767
  */
3768
- createdAt?: Date;
3768
+ createdAt?: Date | undefined;
3769
3769
  /**
3770
3770
  * <p>The message of the container service log event.</p>
3771
3771
  * @public
3772
3772
  */
3773
- message?: string;
3773
+ message?: string | undefined;
3774
3774
  }
3775
3775
  /**
3776
3776
  * @public
@@ -3796,33 +3796,33 @@ export interface ContainerServicePower {
3796
3796
  * <p>The ID of the power (<code>nano-1</code>).</p>
3797
3797
  * @public
3798
3798
  */
3799
- powerId?: string;
3799
+ powerId?: string | undefined;
3800
3800
  /**
3801
3801
  * <p>The monthly price of the power in USD.</p>
3802
3802
  * @public
3803
3803
  */
3804
- price?: number;
3804
+ price?: number | undefined;
3805
3805
  /**
3806
3806
  * <p>The number of vCPUs included in the power.</p>
3807
3807
  * @public
3808
3808
  */
3809
- cpuCount?: number;
3809
+ cpuCount?: number | undefined;
3810
3810
  /**
3811
3811
  * <p>The amount of RAM (in GB) of the power.</p>
3812
3812
  * @public
3813
3813
  */
3814
- ramSizeInGb?: number;
3814
+ ramSizeInGb?: number | undefined;
3815
3815
  /**
3816
3816
  * <p>The friendly name of the power (<code>nano</code>).</p>
3817
3817
  * @public
3818
3818
  */
3819
- name?: string;
3819
+ name?: string | undefined;
3820
3820
  /**
3821
3821
  * <p>A Boolean value indicating whether the power is active and can be specified for container
3822
3822
  * services.</p>
3823
3823
  * @public
3824
3824
  */
3825
- isActive?: boolean;
3825
+ isActive?: boolean | undefined;
3826
3826
  }
3827
3827
  /**
3828
3828
  * <p>Describes the sign-in credentials for the container image registry of an Amazon Lightsail
@@ -3835,13 +3835,13 @@ export interface ContainerServiceRegistryLogin {
3835
3835
  * image registry of a Lightsail account.</p>
3836
3836
  * @public
3837
3837
  */
3838
- username?: string;
3838
+ username?: string | undefined;
3839
3839
  /**
3840
3840
  * <p>The container service registry password to use to push container images to the container
3841
3841
  * image registry of a Lightsail account</p>
3842
3842
  * @public
3843
3843
  */
3844
- password?: string;
3844
+ password?: string | undefined;
3845
3845
  /**
3846
3846
  * <p>The timestamp of when the container image registry sign-in credentials expire.</p>
3847
3847
  * <p>The log in credentials expire 12 hours after they are created, at which point you will
@@ -3849,13 +3849,13 @@ export interface ContainerServiceRegistryLogin {
3849
3849
  * <code>CreateContainerServiceRegistryLogin</code> action.</p>
3850
3850
  * @public
3851
3851
  */
3852
- expiresAt?: Date;
3852
+ expiresAt?: Date | undefined;
3853
3853
  /**
3854
3854
  * <p>The address to use to push container images to the container image registry of a
3855
3855
  * Lightsail account.</p>
3856
3856
  * @public
3857
3857
  */
3858
- registry?: string;
3858
+ registry?: string | undefined;
3859
3859
  }
3860
3860
  /**
3861
3861
  * @public
@@ -3865,7 +3865,7 @@ export interface ContainerServicesListResult {
3865
3865
  * <p>An array of objects that describe one or more container services.</p>
3866
3866
  * @public
3867
3867
  */
3868
- containerServices?: ContainerService[];
3868
+ containerServices?: ContainerService[] | undefined;
3869
3869
  }
3870
3870
  /**
3871
3871
  * @public
@@ -3882,7 +3882,7 @@ export interface CopySnapshotRequest {
3882
3882
  * </ul>
3883
3883
  * @public
3884
3884
  */
3885
- sourceSnapshotName?: string;
3885
+ sourceSnapshotName?: string | undefined;
3886
3886
  /**
3887
3887
  * <p>The name of the source instance or disk from which the source automatic snapshot was
3888
3888
  * created.</p>
@@ -3895,7 +3895,7 @@ export interface CopySnapshotRequest {
3895
3895
  * </ul>
3896
3896
  * @public
3897
3897
  */
3898
- sourceResourceName?: string;
3898
+ sourceResourceName?: string | undefined;
3899
3899
  /**
3900
3900
  * <p>The date of the source automatic snapshot to copy. Use the <code>get auto snapshots</code>
3901
3901
  * operation to identify the dates of the available automatic snapshots.</p>
@@ -3916,7 +3916,7 @@ export interface CopySnapshotRequest {
3916
3916
  * </ul>
3917
3917
  * @public
3918
3918
  */
3919
- restoreDate?: string;
3919
+ restoreDate?: string | undefined;
3920
3920
  /**
3921
3921
  * <p>A Boolean value to indicate whether to use the latest available automatic snapshot of the
3922
3922
  * specified source instance or disk.</p>
@@ -3934,7 +3934,7 @@ export interface CopySnapshotRequest {
3934
3934
  * </ul>
3935
3935
  * @public
3936
3936
  */
3937
- useLatestRestorableAutoSnapshot?: boolean;
3937
+ useLatestRestorableAutoSnapshot?: boolean | undefined;
3938
3938
  /**
3939
3939
  * <p>The name of the new manual snapshot to be created as a copy.</p>
3940
3940
  * @public
@@ -3956,7 +3956,7 @@ export interface CopySnapshotResult {
3956
3956
  * request, the timestamp of the request, and the resources affected by the request.</p>
3957
3957
  * @public
3958
3958
  */
3959
- operations?: Operation[];
3959
+ operations?: Operation[] | undefined;
3960
3960
  }
3961
3961
  /**
3962
3962
  * @public
@@ -4000,14 +4000,14 @@ export interface TimePeriod {
4000
4000
  * than the current date to avoid a validation error.</p>
4001
4001
  * @public
4002
4002
  */
4003
- start?: Date;
4003
+ start?: Date | undefined;
4004
4004
  /**
4005
4005
  * <p>The end of the time period. The end date is exclusive. For example, if <code>end</code> is
4006
4006
  * <code>2017-05-01</code>, Lightsail for Research retrieves cost and usage data from the start date up to, but
4007
4007
  * not including, <code>2017-05-01</code>.</p>
4008
4008
  * @public
4009
4009
  */
4010
- end?: Date;
4010
+ end?: Date | undefined;
4011
4011
  }
4012
4012
  /**
4013
4013
  * <p>An estimate that's associated with a time period. </p>
@@ -4018,29 +4018,29 @@ export interface EstimateByTime {
4018
4018
  * <p>The amount of cost or usage that's measured for the cost estimate.</p>
4019
4019
  * @public
4020
4020
  */
4021
- usageCost?: number;
4021
+ usageCost?: number | undefined;
4022
4022
  /**
4023
4023
  * <p>The unit of measurement that's used for the cost estimate.</p>
4024
4024
  * @public
4025
4025
  */
4026
- pricingUnit?: PricingUnit;
4026
+ pricingUnit?: PricingUnit | undefined;
4027
4027
  /**
4028
4028
  * <p>The number of pricing units used to calculate the total number of hours. For example, 1
4029
4029
  * unit equals 1 hour.</p>
4030
4030
  * @public
4031
4031
  */
4032
- unit?: number;
4032
+ unit?: number | undefined;
4033
4033
  /**
4034
4034
  * <p>The currency of the estimate in USD.</p>
4035
4035
  * @public
4036
4036
  */
4037
- currency?: Currency;
4037
+ currency?: Currency | undefined;
4038
4038
  /**
4039
4039
  * <p>The period of time, in days, that an estimate covers. The period has a start date and an
4040
4040
  * end date. The start date must come before the end date.</p>
4041
4041
  * @public
4042
4042
  */
4043
- timePeriod?: TimePeriod;
4043
+ timePeriod?: TimePeriod | undefined;
4044
4044
  }
4045
4045
  /**
4046
4046
  * <p>Describes the estimated cost for resources in your Lightsail for Research account.</p>
@@ -4052,12 +4052,12 @@ export interface CostEstimate {
4052
4052
  * transfer.</p>
4053
4053
  * @public
4054
4054
  */
4055
- usageType?: string;
4055
+ usageType?: string | undefined;
4056
4056
  /**
4057
4057
  * <p>The cost estimate result that's associated with a time period.</p>
4058
4058
  * @public
4059
4059
  */
4060
- resultsByTime?: EstimateByTime[];
4060
+ resultsByTime?: EstimateByTime[] | undefined;
4061
4061
  }
4062
4062
  /**
4063
4063
  * @public
@@ -4087,7 +4087,7 @@ export interface CreateBucketRequest {
4087
4087
  * created.</p>
4088
4088
  * @public
4089
4089
  */
4090
- tags?: Tag[];
4090
+ tags?: Tag[] | undefined;
4091
4091
  /**
4092
4092
  * <p>A Boolean value that indicates whether to enable versioning of objects in the
4093
4093
  * bucket.</p>
@@ -4095,7 +4095,7 @@ export interface CreateBucketRequest {
4095
4095
  * <i>Amazon Lightsail Developer Guide</i>.</p>
4096
4096
  * @public
4097
4097
  */
4098
- enableObjectVersioning?: boolean;
4098
+ enableObjectVersioning?: boolean | undefined;
4099
4099
  }
4100
4100
  /**
4101
4101
  * @public
@@ -4105,13 +4105,13 @@ export interface CreateBucketResult {
4105
4105
  * <p>An object that describes the bucket that is created.</p>
4106
4106
  * @public
4107
4107
  */
4108
- bucket?: Bucket;
4108
+ bucket?: Bucket | undefined;
4109
4109
  /**
4110
4110
  * <p>An array of objects that describe the result of the action, such as the status of the
4111
4111
  * request, the timestamp of the request, and the resources affected by the request.</p>
4112
4112
  * @public
4113
4113
  */
4114
- operations?: Operation[];
4114
+ operations?: Operation[] | undefined;
4115
4115
  }
4116
4116
  /**
4117
4117
  * @public
@@ -4131,13 +4131,13 @@ export interface CreateBucketAccessKeyResult {
4131
4131
  * <p>An object that describes the access key that is created.</p>
4132
4132
  * @public
4133
4133
  */
4134
- accessKey?: AccessKey;
4134
+ accessKey?: AccessKey | undefined;
4135
4135
  /**
4136
4136
  * <p>An array of objects that describe the result of the action, such as the status of the
4137
4137
  * request, the timestamp of the request, and the resources affected by the request.</p>
4138
4138
  * @public
4139
4139
  */
4140
- operations?: Operation[];
4140
+ operations?: Operation[] | undefined;
4141
4141
  }
4142
4142
  /**
4143
4143
  * @public
@@ -4161,13 +4161,13 @@ export interface CreateCertificateRequest {
4161
4161
  * <p>Wildcard domain entries (<code>*.example.com</code>) are not supported.</p>
4162
4162
  * @public
4163
4163
  */
4164
- subjectAlternativeNames?: string[];
4164
+ subjectAlternativeNames?: string[] | undefined;
4165
4165
  /**
4166
4166
  * <p>The tag keys and optional values to add to the certificate during create.</p>
4167
4167
  * <p>Use the <code>TagResource</code> action to tag a resource after it's created.</p>
4168
4168
  * @public
4169
4169
  */
4170
- tags?: Tag[];
4170
+ tags?: Tag[] | undefined;
4171
4171
  }
4172
4172
  /**
4173
4173
  * @public
@@ -4177,13 +4177,13 @@ export interface CreateCertificateResult {
4177
4177
  * <p>An object that describes the certificate created.</p>
4178
4178
  * @public
4179
4179
  */
4180
- certificate?: CertificateSummary;
4180
+ certificate?: CertificateSummary | undefined;
4181
4181
  /**
4182
4182
  * <p>An array of objects that describe the result of the action, such as the status of the
4183
4183
  * request, the timestamp of the request, and the resources affected by the request.</p>
4184
4184
  * @public
4185
4185
  */
4186
- operations?: Operation[];
4186
+ operations?: Operation[] | undefined;
4187
4187
  }
4188
4188
  /**
4189
4189
  * @public
@@ -4268,7 +4268,7 @@ export interface InstanceEntry {
4268
4268
  * </note>
4269
4269
  * @public
4270
4270
  */
4271
- userData?: string;
4271
+ userData?: string | undefined;
4272
4272
  /**
4273
4273
  * <p>The Availability Zone for the new Amazon EC2 instance.</p>
4274
4274
  * @public
@@ -4296,7 +4296,7 @@ export interface CreateCloudFormationStackResult {
4296
4296
  * request, the timestamp of the request, and the resources affected by the request.</p>
4297
4297
  * @public
4298
4298
  */
4299
- operations?: Operation[];
4299
+ operations?: Operation[] | undefined;
4300
4300
  }
4301
4301
  /**
4302
4302
  * @public
@@ -4355,7 +4355,7 @@ export interface CreateContactMethodResult {
4355
4355
  * request, the timestamp of the request, and the resources affected by the request.</p>
4356
4356
  * @public
4357
4357
  */
4358
- operations?: Operation[];
4358
+ operations?: Operation[] | undefined;
4359
4359
  }
4360
4360
  /**
4361
4361
  * <p>Describes a request to configure an Amazon Lightsail container service to
@@ -4370,7 +4370,7 @@ export interface PrivateRegistryAccessRequest {
4370
4370
  * (Amazon ECR) private repositories.</p>
4371
4371
  * @public
4372
4372
  */
4373
- ecrImagePullerRole?: ContainerServiceECRImagePullerRoleRequest;
4373
+ ecrImagePullerRole?: ContainerServiceECRImagePullerRoleRequest | undefined;
4374
4374
  }
4375
4375
  /**
4376
4376
  * @public
@@ -4433,7 +4433,7 @@ export interface CreateContainerServiceRequest {
4433
4433
  * <p>For more information about tags in Lightsail, see the <a href="https://lightsail.aws.amazon.com/ls/docs/en_us/articles/amazon-lightsail-tags">Amazon Lightsail Developer Guide</a>.</p>
4434
4434
  * @public
4435
4435
  */
4436
- tags?: Tag[];
4436
+ tags?: Tag[] | undefined;
4437
4437
  /**
4438
4438
  * <p>The public domain names to use with the container service, such as
4439
4439
  * <code>example.com</code> and <code>www.example.com</code>.</p>
@@ -4451,7 +4451,7 @@ export interface CreateContainerServiceRequest {
4451
4451
  * later on this page.</p>
4452
4452
  * @public
4453
4453
  */
4454
- publicDomainNames?: Record<string, string[]>;
4454
+ publicDomainNames?: Record<string, string[]> | undefined;
4455
4455
  /**
4456
4456
  * <p>An object that describes a deployment for the container service.</p>
4457
4457
  * <p>A deployment specifies the containers that will be launched on the container service and
@@ -4461,7 +4461,7 @@ export interface CreateContainerServiceRequest {
4461
4461
  * configuration.</p>
4462
4462
  * @public
4463
4463
  */
4464
- deployment?: ContainerServiceDeploymentRequest;
4464
+ deployment?: ContainerServiceDeploymentRequest | undefined;
4465
4465
  /**
4466
4466
  * <p>An object to describe the configuration for the container service to access private
4467
4467
  * container image repositories, such as Amazon Elastic Container Registry (Amazon ECR) private
@@ -4469,7 +4469,7 @@ export interface CreateContainerServiceRequest {
4469
4469
  * <p>For more information, see <a href="https://lightsail.aws.amazon.com/ls/docs/en_us/articles/amazon-lightsail-container-service-ecr-private-repo-access">Configuring access to an Amazon ECR private repository for an Amazon Lightsail container service</a> in the <i>Amazon Lightsail Developer Guide</i>.</p>
4470
4470
  * @public
4471
4471
  */
4472
- privateRegistryAccess?: PrivateRegistryAccessRequest;
4472
+ privateRegistryAccess?: PrivateRegistryAccessRequest | undefined;
4473
4473
  }
4474
4474
  /**
4475
4475
  * @public
@@ -4479,7 +4479,7 @@ export interface CreateContainerServiceResult {
4479
4479
  * <p>An object that describes a container service.</p>
4480
4480
  * @public
4481
4481
  */
4482
- containerService?: ContainerService;
4482
+ containerService?: ContainerService | undefined;
4483
4483
  }
4484
4484
  /**
4485
4485
  * @public
@@ -4495,13 +4495,13 @@ export interface CreateContainerServiceDeploymentRequest {
4495
4495
  * container service.</p>
4496
4496
  * @public
4497
4497
  */
4498
- containers?: Record<string, Container>;
4498
+ containers?: Record<string, Container> | undefined;
4499
4499
  /**
4500
4500
  * <p>An object that describes the settings of the public endpoint for the container
4501
4501
  * service.</p>
4502
4502
  * @public
4503
4503
  */
4504
- publicEndpoint?: EndpointRequest;
4504
+ publicEndpoint?: EndpointRequest | undefined;
4505
4505
  }
4506
4506
  /**
4507
4507
  * @public
@@ -4511,7 +4511,7 @@ export interface CreateContainerServiceDeploymentResult {
4511
4511
  * <p>An object that describes a container service.</p>
4512
4512
  * @public
4513
4513
  */
4514
- containerService?: ContainerService;
4514
+ containerService?: ContainerService | undefined;
4515
4515
  }
4516
4516
  /**
4517
4517
  * @public
@@ -4527,7 +4527,7 @@ export interface CreateContainerServiceRegistryLoginResult {
4527
4527
  * Lightsail account.</p>
4528
4528
  * @public
4529
4529
  */
4530
- registryLogin?: ContainerServiceRegistryLogin;
4530
+ registryLogin?: ContainerServiceRegistryLogin | undefined;
4531
4531
  }
4532
4532
  /**
4533
4533
  * @public
@@ -4557,12 +4557,12 @@ export interface CreateDiskRequest {
4557
4557
  * <p>Use the <code>TagResource</code> action to tag a resource after it's created.</p>
4558
4558
  * @public
4559
4559
  */
4560
- tags?: Tag[];
4560
+ tags?: Tag[] | undefined;
4561
4561
  /**
4562
4562
  * <p>An array of objects that represent the add-ons to enable for the new disk.</p>
4563
4563
  * @public
4564
4564
  */
4565
- addOns?: AddOnRequest[];
4565
+ addOns?: AddOnRequest[] | undefined;
4566
4566
  }
4567
4567
  /**
4568
4568
  * @public
@@ -4573,7 +4573,7 @@ export interface CreateDiskResult {
4573
4573
  * request, the timestamp of the request, and the resources affected by the request.</p>
4574
4574
  * @public
4575
4575
  */
4576
- operations?: Operation[];
4576
+ operations?: Operation[] | undefined;
4577
4577
  }
4578
4578
  /**
4579
4579
  * @public
@@ -4597,7 +4597,7 @@ export interface CreateDiskFromSnapshotRequest {
4597
4597
  * </ul>
4598
4598
  * @public
4599
4599
  */
4600
- diskSnapshotName?: string;
4600
+ diskSnapshotName?: string | undefined;
4601
4601
  /**
4602
4602
  * <p>The Availability Zone where you want to create the disk (<code>us-east-2a</code>). Choose
4603
4603
  * the same Availability Zone as the Lightsail instance where you want to create the
@@ -4617,12 +4617,12 @@ export interface CreateDiskFromSnapshotRequest {
4617
4617
  * <p>Use the <code>TagResource</code> action to tag a resource after it's created.</p>
4618
4618
  * @public
4619
4619
  */
4620
- tags?: Tag[];
4620
+ tags?: Tag[] | undefined;
4621
4621
  /**
4622
4622
  * <p>An array of objects that represent the add-ons to enable for the new disk.</p>
4623
4623
  * @public
4624
4624
  */
4625
- addOns?: AddOnRequest[];
4625
+ addOns?: AddOnRequest[] | undefined;
4626
4626
  /**
4627
4627
  * <p>The name of the source disk from which the source automatic snapshot was created.</p>
4628
4628
  * <p>Constraints:</p>
@@ -4639,7 +4639,7 @@ export interface CreateDiskFromSnapshotRequest {
4639
4639
  * </ul>
4640
4640
  * @public
4641
4641
  */
4642
- sourceDiskName?: string;
4642
+ sourceDiskName?: string | undefined;
4643
4643
  /**
4644
4644
  * <p>The date of the automatic snapshot to use for the new disk. Use the <code>get auto
4645
4645
  * snapshots</code> operation to identify the dates of the available automatic
@@ -4661,7 +4661,7 @@ export interface CreateDiskFromSnapshotRequest {
4661
4661
  * </ul>
4662
4662
  * @public
4663
4663
  */
4664
- restoreDate?: string;
4664
+ restoreDate?: string | undefined;
4665
4665
  /**
4666
4666
  * <p>A Boolean value to indicate whether to use the latest available automatic snapshot.</p>
4667
4667
  * <p>Constraints:</p>
@@ -4678,7 +4678,7 @@ export interface CreateDiskFromSnapshotRequest {
4678
4678
  * </ul>
4679
4679
  * @public
4680
4680
  */
4681
- useLatestRestorableAutoSnapshot?: boolean;
4681
+ useLatestRestorableAutoSnapshot?: boolean | undefined;
4682
4682
  }
4683
4683
  /**
4684
4684
  * @public
@@ -4689,7 +4689,7 @@ export interface CreateDiskFromSnapshotResult {
4689
4689
  * request, the timestamp of the request, and the resources affected by the request.</p>
4690
4690
  * @public
4691
4691
  */
4692
- operations?: Operation[];
4692
+ operations?: Operation[] | undefined;
4693
4693
  }
4694
4694
  /**
4695
4695
  * @public
@@ -4704,7 +4704,7 @@ export interface CreateDiskSnapshotRequest {
4704
4704
  * </note>
4705
4705
  * @public
4706
4706
  */
4707
- diskName?: string;
4707
+ diskName?: string | undefined;
4708
4708
  /**
4709
4709
  * <p>The name of the destination disk snapshot (<code>my-disk-snapshot</code>) based on the
4710
4710
  * source disk.</p>
@@ -4721,13 +4721,13 @@ export interface CreateDiskSnapshotRequest {
4721
4721
  * </note>
4722
4722
  * @public
4723
4723
  */
4724
- instanceName?: string;
4724
+ instanceName?: string | undefined;
4725
4725
  /**
4726
4726
  * <p>The tag keys and optional values to add to the resource during create.</p>
4727
4727
  * <p>Use the <code>TagResource</code> action to tag a resource after it's created.</p>
4728
4728
  * @public
4729
4729
  */
4730
- tags?: Tag[];
4730
+ tags?: Tag[] | undefined;
4731
4731
  }
4732
4732
  /**
4733
4733
  * @public
@@ -4738,7 +4738,7 @@ export interface CreateDiskSnapshotResult {
4738
4738
  * request, the timestamp of the request, and the resources affected by the request.</p>
4739
4739
  * @public
4740
4740
  */
4741
- operations?: Operation[];
4741
+ operations?: Operation[] | undefined;
4742
4742
  }
4743
4743
  /**
4744
4744
  * @public
@@ -4778,25 +4778,25 @@ export interface InputOrigin {
4778
4778
  * <p>The name of the origin resource.</p>
4779
4779
  * @public
4780
4780
  */
4781
- name?: string;
4781
+ name?: string | undefined;
4782
4782
  /**
4783
4783
  * <p>The AWS Region name of the origin resource.</p>
4784
4784
  * @public
4785
4785
  */
4786
- regionName?: RegionName;
4786
+ regionName?: RegionName | undefined;
4787
4787
  /**
4788
4788
  * <p>The protocol that your Amazon Lightsail distribution uses when establishing a connection
4789
4789
  * with your origin to pull content.</p>
4790
4790
  * @public
4791
4791
  */
4792
- protocolPolicy?: OriginProtocolPolicyEnum;
4792
+ protocolPolicy?: OriginProtocolPolicyEnum | undefined;
4793
4793
  /**
4794
4794
  * <p>The amount of time, in seconds, that the distribution waits for a response after
4795
4795
  * forwarding a request to the origin. The minimum timeout is 1 second, the maximum is 60
4796
4796
  * seconds, and the default (if you don't specify otherwise) is 30 seconds.</p>
4797
4797
  * @public
4798
4798
  */
4799
- responseTimeout?: number;
4799
+ responseTimeout?: number | undefined;
4800
4800
  }
4801
4801
  /**
4802
4802
  * @public
@@ -4837,12 +4837,12 @@ export interface CreateDistributionRequest {
4837
4837
  * <p>An object that describes the cache behavior settings for the distribution.</p>
4838
4838
  * @public
4839
4839
  */
4840
- cacheBehaviorSettings?: CacheSettings;
4840
+ cacheBehaviorSettings?: CacheSettings | undefined;
4841
4841
  /**
4842
4842
  * <p>An array of objects that describe the per-path cache behavior for the distribution.</p>
4843
4843
  * @public
4844
4844
  */
4845
- cacheBehaviors?: CacheBehaviorPerPath[];
4845
+ cacheBehaviors?: CacheBehaviorPerPath[] | undefined;
4846
4846
  /**
4847
4847
  * <p>The bundle ID to use for the distribution.</p>
4848
4848
  * <p>A distribution bundle describes the specifications of your distribution, such as the
@@ -4859,25 +4859,25 @@ export interface CreateDistributionRequest {
4859
4859
  * <p>The default value is <code>dualstack</code>.</p>
4860
4860
  * @public
4861
4861
  */
4862
- ipAddressType?: IpAddressType;
4862
+ ipAddressType?: IpAddressType | undefined;
4863
4863
  /**
4864
4864
  * <p>The tag keys and optional values to add to the distribution during create.</p>
4865
4865
  * <p>Use the <code>TagResource</code> action to tag a resource after it's created.</p>
4866
4866
  * @public
4867
4867
  */
4868
- tags?: Tag[];
4868
+ tags?: Tag[] | undefined;
4869
4869
  /**
4870
4870
  * <p>The name of the SSL/TLS certificate that you want to attach to the distribution.</p>
4871
4871
  * <p>Use the <a href="https://docs.aws.amazon.com/lightsail/2016-11-28/api-reference/API_GetCertificates.html">GetCertificates</a>
4872
4872
  * action to get a list of certificate names that you can specify.</p>
4873
4873
  * @public
4874
4874
  */
4875
- certificateName?: string;
4875
+ certificateName?: string | undefined;
4876
4876
  /**
4877
4877
  * <p>The minimum TLS protocol version for the SSL/TLS certificate.</p>
4878
4878
  * @public
4879
4879
  */
4880
- viewerMinimumTlsProtocolVersion?: ViewerMinimumTlsProtocolVersionEnum;
4880
+ viewerMinimumTlsProtocolVersion?: ViewerMinimumTlsProtocolVersionEnum | undefined;
4881
4881
  }
4882
4882
  /**
4883
4883
  * <p>Describes the origin resource of an Amazon Lightsail content delivery network (CDN)
@@ -4892,30 +4892,30 @@ export interface Origin {
4892
4892
  * <p>The name of the origin resource.</p>
4893
4893
  * @public
4894
4894
  */
4895
- name?: string;
4895
+ name?: string | undefined;
4896
4896
  /**
4897
4897
  * <p>The resource type of the origin resource (<i>Instance</i>).</p>
4898
4898
  * @public
4899
4899
  */
4900
- resourceType?: ResourceType;
4900
+ resourceType?: ResourceType | undefined;
4901
4901
  /**
4902
4902
  * <p>The AWS Region name of the origin resource.</p>
4903
4903
  * @public
4904
4904
  */
4905
- regionName?: RegionName;
4905
+ regionName?: RegionName | undefined;
4906
4906
  /**
4907
4907
  * <p>The protocol that your Amazon Lightsail distribution uses when establishing a connection
4908
4908
  * with your origin to pull content.</p>
4909
4909
  * @public
4910
4910
  */
4911
- protocolPolicy?: OriginProtocolPolicyEnum;
4911
+ protocolPolicy?: OriginProtocolPolicyEnum | undefined;
4912
4912
  /**
4913
4913
  * <p>The amount of time, in seconds, that the distribution waits for a response after
4914
4914
  * forwarding a request to the origin. The minimum timeout is 1 second, the maximum is 60
4915
4915
  * seconds, and the default (if you don't specify otherwise) is 30 seconds.</p>
4916
4916
  * @public
4917
4917
  */
4918
- responseTimeout?: number;
4918
+ responseTimeout?: number | undefined;
4919
4919
  }
4920
4920
  /**
4921
4921
  * <p>Describes an Amazon Lightsail content delivery network (CDN) distribution.</p>
@@ -4926,24 +4926,24 @@ export interface LightsailDistribution {
4926
4926
  * <p>The name of the distribution.</p>
4927
4927
  * @public
4928
4928
  */
4929
- name?: string;
4929
+ name?: string | undefined;
4930
4930
  /**
4931
4931
  * <p>The Amazon Resource Name (ARN) of the distribution.</p>
4932
4932
  * @public
4933
4933
  */
4934
- arn?: string;
4934
+ arn?: string | undefined;
4935
4935
  /**
4936
4936
  * <p>The support code. Include this code in your email to support when you have questions about
4937
4937
  * your Lightsail distribution. This code enables our support team to look up your Lightsail
4938
4938
  * information more easily.</p>
4939
4939
  * @public
4940
4940
  */
4941
- supportCode?: string;
4941
+ supportCode?: string | undefined;
4942
4942
  /**
4943
4943
  * <p>The timestamp when the distribution was created.</p>
4944
4944
  * @public
4945
4945
  */
4946
- createdAt?: Date;
4946
+ createdAt?: Date | undefined;
4947
4947
  /**
4948
4948
  * <p>An object that describes the location of the distribution, such as the Amazon Web Services
4949
4949
  * Region and Availability Zone.</p>
@@ -4954,69 +4954,69 @@ export interface LightsailDistribution {
4954
4954
  * </note>
4955
4955
  * @public
4956
4956
  */
4957
- location?: ResourceLocation;
4957
+ location?: ResourceLocation | undefined;
4958
4958
  /**
4959
4959
  * <p>The Lightsail resource type (<code>Distribution</code>).</p>
4960
4960
  * @public
4961
4961
  */
4962
- resourceType?: ResourceType;
4962
+ resourceType?: ResourceType | undefined;
4963
4963
  /**
4964
4964
  * <p>The alternate domain names of the distribution.</p>
4965
4965
  * @public
4966
4966
  */
4967
- alternativeDomainNames?: string[];
4967
+ alternativeDomainNames?: string[] | undefined;
4968
4968
  /**
4969
4969
  * <p>The status of the distribution.</p>
4970
4970
  * @public
4971
4971
  */
4972
- status?: string;
4972
+ status?: string | undefined;
4973
4973
  /**
4974
4974
  * <p>Indicates whether the distribution is enabled.</p>
4975
4975
  * @public
4976
4976
  */
4977
- isEnabled?: boolean;
4977
+ isEnabled?: boolean | undefined;
4978
4978
  /**
4979
4979
  * <p>The domain name of the distribution.</p>
4980
4980
  * @public
4981
4981
  */
4982
- domainName?: string;
4982
+ domainName?: string | undefined;
4983
4983
  /**
4984
4984
  * <p>The ID of the bundle currently applied to the distribution.</p>
4985
4985
  * @public
4986
4986
  */
4987
- bundleId?: string;
4987
+ bundleId?: string | undefined;
4988
4988
  /**
4989
4989
  * <p>The name of the SSL/TLS certificate attached to the distribution, if any.</p>
4990
4990
  * @public
4991
4991
  */
4992
- certificateName?: string;
4992
+ certificateName?: string | undefined;
4993
4993
  /**
4994
4994
  * <p>An object that describes the origin resource of the distribution, such as a Lightsail
4995
4995
  * instance, bucket, or load balancer.</p>
4996
4996
  * <p>The distribution pulls, caches, and serves content from the origin.</p>
4997
4997
  * @public
4998
4998
  */
4999
- origin?: Origin;
4999
+ origin?: Origin | undefined;
5000
5000
  /**
5001
5001
  * <p>The public DNS of the origin.</p>
5002
5002
  * @public
5003
5003
  */
5004
- originPublicDNS?: string;
5004
+ originPublicDNS?: string | undefined;
5005
5005
  /**
5006
5006
  * <p>An object that describes the default cache behavior of the distribution.</p>
5007
5007
  * @public
5008
5008
  */
5009
- defaultCacheBehavior?: CacheBehavior;
5009
+ defaultCacheBehavior?: CacheBehavior | undefined;
5010
5010
  /**
5011
5011
  * <p>An object that describes the cache behavior settings of the distribution.</p>
5012
5012
  * @public
5013
5013
  */
5014
- cacheBehaviorSettings?: CacheSettings;
5014
+ cacheBehaviorSettings?: CacheSettings | undefined;
5015
5015
  /**
5016
5016
  * <p>An array of objects that describe the per-path cache behavior of the distribution.</p>
5017
5017
  * @public
5018
5018
  */
5019
- cacheBehaviors?: CacheBehaviorPerPath[];
5019
+ cacheBehaviors?: CacheBehaviorPerPath[] | undefined;
5020
5020
  /**
5021
5021
  * <p>Indicates whether the bundle that is currently applied to your distribution, specified
5022
5022
  * using the <code>distributionName</code> parameter, can be changed to another bundle.</p>
@@ -5024,26 +5024,26 @@ export interface LightsailDistribution {
5024
5024
  * bundle.</p>
5025
5025
  * @public
5026
5026
  */
5027
- ableToUpdateBundle?: boolean;
5027
+ ableToUpdateBundle?: boolean | undefined;
5028
5028
  /**
5029
5029
  * <p>The IP address type of the distribution.</p>
5030
5030
  * <p>The possible values are <code>ipv4</code> for IPv4 only, and <code>dualstack</code> for
5031
5031
  * IPv4 and IPv6.</p>
5032
5032
  * @public
5033
5033
  */
5034
- ipAddressType?: IpAddressType;
5034
+ ipAddressType?: IpAddressType | undefined;
5035
5035
  /**
5036
5036
  * <p>The tag keys and optional values for the resource. For more information about tags in
5037
5037
  * Lightsail, see the <a href="https://lightsail.aws.amazon.com/ls/docs/en_us/articles/amazon-lightsail-tags">Amazon Lightsail Developer Guide</a>.</p>
5038
5038
  * @public
5039
5039
  */
5040
- tags?: Tag[];
5040
+ tags?: Tag[] | undefined;
5041
5041
  /**
5042
5042
  * <p>The minimum TLS protocol version that the distribution can use to communicate with
5043
5043
  * viewers.</p>
5044
5044
  * @public
5045
5045
  */
5046
- viewerMinimumTlsProtocolVersion?: string;
5046
+ viewerMinimumTlsProtocolVersion?: string | undefined;
5047
5047
  }
5048
5048
  /**
5049
5049
  * @public
@@ -5053,13 +5053,13 @@ export interface CreateDistributionResult {
5053
5053
  * <p>An object that describes the distribution created.</p>
5054
5054
  * @public
5055
5055
  */
5056
- distribution?: LightsailDistribution;
5056
+ distribution?: LightsailDistribution | undefined;
5057
5057
  /**
5058
5058
  * <p>An array of objects that describe the result of the action, such as the status of the
5059
5059
  * request, the timestamp of the request, and the resources affected by the request.</p>
5060
5060
  * @public
5061
5061
  */
5062
- operation?: Operation;
5062
+ operation?: Operation | undefined;
5063
5063
  }
5064
5064
  /**
5065
5065
  * @public
@@ -5075,7 +5075,7 @@ export interface CreateDomainRequest {
5075
5075
  * <p>Use the <code>TagResource</code> action to tag a resource after it's created.</p>
5076
5076
  * @public
5077
5077
  */
5078
- tags?: Tag[];
5078
+ tags?: Tag[] | undefined;
5079
5079
  }
5080
5080
  /**
5081
5081
  * @public
@@ -5086,7 +5086,7 @@ export interface CreateDomainResult {
5086
5086
  * request, the timestamp of the request, and the resources affected by the request.</p>
5087
5087
  * @public
5088
5088
  */
5089
- operation?: Operation;
5089
+ operation?: Operation | undefined;
5090
5090
  }
5091
5091
  /**
5092
5092
  * <p>Describes a domain recordset entry.</p>
@@ -5097,12 +5097,12 @@ export interface DomainEntry {
5097
5097
  * <p>The ID of the domain recordset entry.</p>
5098
5098
  * @public
5099
5099
  */
5100
- id?: string;
5100
+ id?: string | undefined;
5101
5101
  /**
5102
5102
  * <p>The name of the domain.</p>
5103
5103
  * @public
5104
5104
  */
5105
- name?: string;
5105
+ name?: string | undefined;
5106
5106
  /**
5107
5107
  * <p>The target IP address (<code>192.0.2.0</code>), or AWS name server
5108
5108
  * (<code>ns-111.awsdns-22.com.</code>).</p>
@@ -5115,7 +5115,7 @@ export interface DomainEntry {
5115
5115
  * Lightsail load balancer, distribution, or container service.</p>
5116
5116
  * @public
5117
5117
  */
5118
- target?: string;
5118
+ target?: string | undefined;
5119
5119
  /**
5120
5120
  * <p>When <code>true</code>, specifies whether the domain entry is an alias used by the Lightsail load balancer, Lightsail container service, Lightsail content delivery network (CDN) distribution, or another Amazon Web Services
5121
5121
  * resource. You can include an alias (A type) record in your request, which points to the DNS
@@ -5123,7 +5123,7 @@ export interface DomainEntry {
5123
5123
  * resource and routes traffic to that resource.</p>
5124
5124
  * @public
5125
5125
  */
5126
- isAlias?: boolean;
5126
+ isAlias?: boolean | undefined;
5127
5127
  /**
5128
5128
  * <p>The type of domain entry, such as address for IPv4 (A), address for IPv6 (AAAA), canonical
5129
5129
  * name (CNAME), mail exchanger (MX), name server (NS), start of authority (SOA), service locator
@@ -5173,7 +5173,7 @@ export interface DomainEntry {
5173
5173
  * </ul>
5174
5174
  * @public
5175
5175
  */
5176
- type?: string;
5176
+ type?: string | undefined;
5177
5177
  /**
5178
5178
  * @deprecated
5179
5179
  *
@@ -5184,7 +5184,7 @@ export interface DomainEntry {
5184
5184
  * </note>
5185
5185
  * @public
5186
5186
  */
5187
- options?: Record<string, string>;
5187
+ options?: Record<string, string> | undefined;
5188
5188
  }
5189
5189
  /**
5190
5190
  * @public
@@ -5211,7 +5211,7 @@ export interface CreateDomainEntryResult {
5211
5211
  * request, the timestamp of the request, and the resources affected by the request.</p>
5212
5212
  * @public
5213
5213
  */
5214
- operation?: Operation;
5214
+ operation?: Operation | undefined;
5215
5215
  }
5216
5216
  /**
5217
5217
  * @public
@@ -5233,18 +5233,18 @@ export interface Session {
5233
5233
  * <p>The session name.</p>
5234
5234
  * @public
5235
5235
  */
5236
- name?: string;
5236
+ name?: string | undefined;
5237
5237
  /**
5238
5238
  * <p>The session URL.</p>
5239
5239
  * @public
5240
5240
  */
5241
- url?: string;
5241
+ url?: string | undefined;
5242
5242
  /**
5243
5243
  * <p>When true, this Boolean value indicates the primary session for the specified
5244
5244
  * resource.</p>
5245
5245
  * @public
5246
5246
  */
5247
- isPrimary?: boolean;
5247
+ isPrimary?: boolean | undefined;
5248
5248
  }
5249
5249
  /**
5250
5250
  * @public
@@ -5274,27 +5274,27 @@ export interface CreateGUISessionAccessDetailsResult {
5274
5274
  * <p>The resource name.</p>
5275
5275
  * @public
5276
5276
  */
5277
- resourceName?: string;
5277
+ resourceName?: string | undefined;
5278
5278
  /**
5279
5279
  * <p>The status of the operation.</p>
5280
5280
  * @public
5281
5281
  */
5282
- status?: Status;
5282
+ status?: Status | undefined;
5283
5283
  /**
5284
5284
  * <p>The percentage of completion for the operation.</p>
5285
5285
  * @public
5286
5286
  */
5287
- percentageComplete?: number;
5287
+ percentageComplete?: number | undefined;
5288
5288
  /**
5289
5289
  * <p>The reason the operation failed.</p>
5290
5290
  * @public
5291
5291
  */
5292
- failureReason?: string;
5292
+ failureReason?: string | undefined;
5293
5293
  /**
5294
5294
  * <p>Returns information about the specified NICE DCV GUI session.</p>
5295
5295
  * @public
5296
5296
  */
5297
- sessions?: Session[];
5297
+ sessions?: Session[] | undefined;
5298
5298
  }
5299
5299
  /**
5300
5300
  * @public
@@ -5327,7 +5327,7 @@ export interface CreateInstancesRequest {
5327
5327
  * </note>
5328
5328
  * @public
5329
5329
  */
5330
- customImageName?: string;
5330
+ customImageName?: string | undefined;
5331
5331
  /**
5332
5332
  * <p>The ID for a virtual private server image (<code>app_wordpress_x_x</code> or
5333
5333
  * <code>app_lamp_x_x</code>). Use the <code>get blueprints</code> operation to return a list
@@ -5358,23 +5358,23 @@ export interface CreateInstancesRequest {
5358
5358
  * </note>
5359
5359
  * @public
5360
5360
  */
5361
- userData?: string;
5361
+ userData?: string | undefined;
5362
5362
  /**
5363
5363
  * <p>The name of your key pair.</p>
5364
5364
  * @public
5365
5365
  */
5366
- keyPairName?: string;
5366
+ keyPairName?: string | undefined;
5367
5367
  /**
5368
5368
  * <p>The tag keys and optional values to add to the resource during create.</p>
5369
5369
  * <p>Use the <code>TagResource</code> action to tag a resource after it's created.</p>
5370
5370
  * @public
5371
5371
  */
5372
- tags?: Tag[];
5372
+ tags?: Tag[] | undefined;
5373
5373
  /**
5374
5374
  * <p>An array of objects representing the add-ons to enable for the new instance.</p>
5375
5375
  * @public
5376
5376
  */
5377
- addOns?: AddOnRequest[];
5377
+ addOns?: AddOnRequest[] | undefined;
5378
5378
  /**
5379
5379
  * <p>The IP address type for the instance.</p>
5380
5380
  * <p>The possible values are <code>ipv4</code> for IPv4 only, <code>ipv6</code> for IPv6 only,
@@ -5382,7 +5382,7 @@ export interface CreateInstancesRequest {
5382
5382
  * <p>The default value is <code>dualstack</code>.</p>
5383
5383
  * @public
5384
5384
  */
5385
- ipAddressType?: IpAddressType;
5385
+ ipAddressType?: IpAddressType | undefined;
5386
5386
  }
5387
5387
  /**
5388
5388
  * @public
@@ -5393,7 +5393,7 @@ export interface CreateInstancesResult {
5393
5393
  * request, the timestamp of the request, and the resources affected by the request.</p>
5394
5394
  * @public
5395
5395
  */
5396
- operations?: Operation[];
5396
+ operations?: Operation[] | undefined;
5397
5397
  }
5398
5398
  /**
5399
5399
  * @public
@@ -5408,7 +5408,7 @@ export interface CreateInstancesFromSnapshotRequest {
5408
5408
  * <p>An object containing information about one or more disk mappings.</p>
5409
5409
  * @public
5410
5410
  */
5411
- attachedDiskMapping?: Record<string, DiskMap[]>;
5411
+ attachedDiskMapping?: Record<string, DiskMap[]> | undefined;
5412
5412
  /**
5413
5413
  * <p>The Availability Zone where you want to create your instances. Use the following
5414
5414
  * formatting: <code>us-east-2a</code> (case sensitive). You can get a list of Availability Zones
@@ -5431,7 +5431,7 @@ export interface CreateInstancesFromSnapshotRequest {
5431
5431
  * </ul>
5432
5432
  * @public
5433
5433
  */
5434
- instanceSnapshotName?: string;
5434
+ instanceSnapshotName?: string | undefined;
5435
5435
  /**
5436
5436
  * <p>The bundle of specification information for your virtual private server (or
5437
5437
  * <i>instance</i>), including the pricing plan (<code>micro_x_x</code>).</p>
@@ -5449,23 +5449,23 @@ export interface CreateInstancesFromSnapshotRequest {
5449
5449
  * </note>
5450
5450
  * @public
5451
5451
  */
5452
- userData?: string;
5452
+ userData?: string | undefined;
5453
5453
  /**
5454
5454
  * <p>The name for your key pair.</p>
5455
5455
  * @public
5456
5456
  */
5457
- keyPairName?: string;
5457
+ keyPairName?: string | undefined;
5458
5458
  /**
5459
5459
  * <p>The tag keys and optional values to add to the resource during create.</p>
5460
5460
  * <p>Use the <code>TagResource</code> action to tag a resource after it's created.</p>
5461
5461
  * @public
5462
5462
  */
5463
- tags?: Tag[];
5463
+ tags?: Tag[] | undefined;
5464
5464
  /**
5465
5465
  * <p>An array of objects representing the add-ons to enable for the new instance.</p>
5466
5466
  * @public
5467
5467
  */
5468
- addOns?: AddOnRequest[];
5468
+ addOns?: AddOnRequest[] | undefined;
5469
5469
  /**
5470
5470
  * <p>The IP address type for the instance.</p>
5471
5471
  * <p>The possible values are <code>ipv4</code> for IPv4 only, <code>ipv6</code> for IPv6 only,
@@ -5473,7 +5473,7 @@ export interface CreateInstancesFromSnapshotRequest {
5473
5473
  * <p>The default value is <code>dualstack</code>.</p>
5474
5474
  * @public
5475
5475
  */
5476
- ipAddressType?: IpAddressType;
5476
+ ipAddressType?: IpAddressType | undefined;
5477
5477
  /**
5478
5478
  * <p>The name of the source instance from which the source automatic snapshot was
5479
5479
  * created.</p>
@@ -5491,7 +5491,7 @@ export interface CreateInstancesFromSnapshotRequest {
5491
5491
  * </ul>
5492
5492
  * @public
5493
5493
  */
5494
- sourceInstanceName?: string;
5494
+ sourceInstanceName?: string | undefined;
5495
5495
  /**
5496
5496
  * <p>The date of the automatic snapshot to use for the new instance. Use the <code>get auto
5497
5497
  * snapshots</code> operation to identify the dates of the available automatic
@@ -5513,7 +5513,7 @@ export interface CreateInstancesFromSnapshotRequest {
5513
5513
  * </ul>
5514
5514
  * @public
5515
5515
  */
5516
- restoreDate?: string;
5516
+ restoreDate?: string | undefined;
5517
5517
  /**
5518
5518
  * <p>A Boolean value to indicate whether to use the latest available automatic snapshot.</p>
5519
5519
  * <p>Constraints:</p>
@@ -5530,7 +5530,7 @@ export interface CreateInstancesFromSnapshotRequest {
5530
5530
  * </ul>
5531
5531
  * @public
5532
5532
  */
5533
- useLatestRestorableAutoSnapshot?: boolean;
5533
+ useLatestRestorableAutoSnapshot?: boolean | undefined;
5534
5534
  }
5535
5535
  /**
5536
5536
  * @public
@@ -5541,7 +5541,7 @@ export interface CreateInstancesFromSnapshotResult {
5541
5541
  * request, the timestamp of the request, and the resources affected by the request.</p>
5542
5542
  * @public
5543
5543
  */
5544
- operations?: Operation[];
5544
+ operations?: Operation[] | undefined;
5545
5545
  }
5546
5546
  /**
5547
5547
  * @public
@@ -5562,7 +5562,7 @@ export interface CreateInstanceSnapshotRequest {
5562
5562
  * <p>Use the <code>TagResource</code> action to tag a resource after it's created.</p>
5563
5563
  * @public
5564
5564
  */
5565
- tags?: Tag[];
5565
+ tags?: Tag[] | undefined;
5566
5566
  }
5567
5567
  /**
5568
5568
  * @public
@@ -5573,7 +5573,7 @@ export interface CreateInstanceSnapshotResult {
5573
5573
  * request, the timestamp of the request, and the resources affected by the request.</p>
5574
5574
  * @public
5575
5575
  */
5576
- operations?: Operation[];
5576
+ operations?: Operation[] | undefined;
5577
5577
  }
5578
5578
  /**
5579
5579
  * @public
@@ -5589,7 +5589,7 @@ export interface CreateKeyPairRequest {
5589
5589
  * <p>Use the <code>TagResource</code> action to tag a resource after it's created.</p>
5590
5590
  * @public
5591
5591
  */
5592
- tags?: Tag[];
5592
+ tags?: Tag[] | undefined;
5593
5593
  }
5594
5594
  /**
5595
5595
  * <p>Describes an SSH key pair.</p>
@@ -5600,46 +5600,46 @@ export interface KeyPair {
5600
5600
  * <p>The friendly name of the SSH key pair.</p>
5601
5601
  * @public
5602
5602
  */
5603
- name?: string;
5603
+ name?: string | undefined;
5604
5604
  /**
5605
5605
  * <p>The Amazon Resource Name (ARN) of the key pair
5606
5606
  * (<code>arn:aws:lightsail:us-east-2:123456789101:KeyPair/05859e3d-331d-48ba-9034-12345EXAMPLE</code>).</p>
5607
5607
  * @public
5608
5608
  */
5609
- arn?: string;
5609
+ arn?: string | undefined;
5610
5610
  /**
5611
5611
  * <p>The support code. Include this code in your email to support when you have questions about
5612
5612
  * an instance or another resource in Lightsail. This code enables our support team to look up
5613
5613
  * your Lightsail information more easily.</p>
5614
5614
  * @public
5615
5615
  */
5616
- supportCode?: string;
5616
+ supportCode?: string | undefined;
5617
5617
  /**
5618
5618
  * <p>The timestamp when the key pair was created (<code>1479816991.349</code>).</p>
5619
5619
  * @public
5620
5620
  */
5621
- createdAt?: Date;
5621
+ createdAt?: Date | undefined;
5622
5622
  /**
5623
5623
  * <p>The region name and Availability Zone where the key pair was created.</p>
5624
5624
  * @public
5625
5625
  */
5626
- location?: ResourceLocation;
5626
+ location?: ResourceLocation | undefined;
5627
5627
  /**
5628
5628
  * <p>The resource type (usually <code>KeyPair</code>).</p>
5629
5629
  * @public
5630
5630
  */
5631
- resourceType?: ResourceType;
5631
+ resourceType?: ResourceType | undefined;
5632
5632
  /**
5633
5633
  * <p>The tag keys and optional values for the resource. For more information about tags in
5634
5634
  * Lightsail, see the <a href="https://lightsail.aws.amazon.com/ls/docs/en_us/articles/amazon-lightsail-tags">Amazon Lightsail Developer Guide</a>.</p>
5635
5635
  * @public
5636
5636
  */
5637
- tags?: Tag[];
5637
+ tags?: Tag[] | undefined;
5638
5638
  /**
5639
5639
  * <p>The RSA fingerprint of the key pair.</p>
5640
5640
  * @public
5641
5641
  */
5642
- fingerprint?: string;
5642
+ fingerprint?: string | undefined;
5643
5643
  }
5644
5644
  /**
5645
5645
  * @public
@@ -5650,23 +5650,23 @@ export interface CreateKeyPairResult {
5650
5650
  * created.</p>
5651
5651
  * @public
5652
5652
  */
5653
- keyPair?: KeyPair;
5653
+ keyPair?: KeyPair | undefined;
5654
5654
  /**
5655
5655
  * <p>A base64-encoded public key of the <code>ssh-rsa</code> type.</p>
5656
5656
  * @public
5657
5657
  */
5658
- publicKeyBase64?: string;
5658
+ publicKeyBase64?: string | undefined;
5659
5659
  /**
5660
5660
  * <p>A base64-encoded RSA private key.</p>
5661
5661
  * @public
5662
5662
  */
5663
- privateKeyBase64?: string;
5663
+ privateKeyBase64?: string | undefined;
5664
5664
  /**
5665
5665
  * <p>An array of objects that describe the result of the action, such as the status of the
5666
5666
  * request, the timestamp of the request, and the resources affected by the request.</p>
5667
5667
  * @public
5668
5668
  */
5669
- operation?: Operation;
5669
+ operation?: Operation | undefined;
5670
5670
  }
5671
5671
  /**
5672
5672
  * @public
@@ -5689,14 +5689,14 @@ export interface CreateLoadBalancerRequest {
5689
5689
  * if your home page loads slowly or has a lot of media or scripting on it.</p>
5690
5690
  * @public
5691
5691
  */
5692
- healthCheckPath?: string;
5692
+ healthCheckPath?: string | undefined;
5693
5693
  /**
5694
5694
  * <p>The name of the SSL/TLS certificate.</p>
5695
5695
  * <p>If you specify <code>certificateName</code>, then <code>certificateDomainName</code> is
5696
5696
  * required (and vice-versa).</p>
5697
5697
  * @public
5698
5698
  */
5699
- certificateName?: string;
5699
+ certificateName?: string | undefined;
5700
5700
  /**
5701
5701
  * <p>The domain name with which your certificate is associated
5702
5702
  * (<code>example.com</code>).</p>
@@ -5704,20 +5704,20 @@ export interface CreateLoadBalancerRequest {
5704
5704
  * required (and vice-versa).</p>
5705
5705
  * @public
5706
5706
  */
5707
- certificateDomainName?: string;
5707
+ certificateDomainName?: string | undefined;
5708
5708
  /**
5709
5709
  * <p>The optional alternative domains and subdomains to use with your SSL/TLS certificate
5710
5710
  * (<code>www.example.com</code>, <code>example.com</code>, <code>m.example.com</code>,
5711
5711
  * <code>blog.example.com</code>).</p>
5712
5712
  * @public
5713
5713
  */
5714
- certificateAlternativeNames?: string[];
5714
+ certificateAlternativeNames?: string[] | undefined;
5715
5715
  /**
5716
5716
  * <p>The tag keys and optional values to add to the resource during create.</p>
5717
5717
  * <p>Use the <code>TagResource</code> action to tag a resource after it's created.</p>
5718
5718
  * @public
5719
5719
  */
5720
- tags?: Tag[];
5720
+ tags?: Tag[] | undefined;
5721
5721
  /**
5722
5722
  * <p>The IP address type for the load balancer.</p>
5723
5723
  * <p>The possible values are <code>ipv4</code> for IPv4 only, <code>ipv6</code> for IPv6 only,
@@ -5725,7 +5725,7 @@ export interface CreateLoadBalancerRequest {
5725
5725
  * <p>The default value is <code>dualstack</code>.</p>
5726
5726
  * @public
5727
5727
  */
5728
- ipAddressType?: IpAddressType;
5728
+ ipAddressType?: IpAddressType | undefined;
5729
5729
  /**
5730
5730
  * <p>The name of the TLS policy to apply to the load balancer.</p>
5731
5731
  * <p>Use the <a href="https://docs.aws.amazon.com/lightsail/2016-11-28/api-reference/API_GetLoadBalancerTlsPolicies.html">GetLoadBalancerTlsPolicies</a> action to get a list of TLS policy names that you can
@@ -5734,7 +5734,7 @@ export interface CreateLoadBalancerRequest {
5734
5734
  * balancers</a> in the <i>Amazon Lightsail Developer Guide</i>.</p>
5735
5735
  * @public
5736
5736
  */
5737
- tlsPolicyName?: string;
5737
+ tlsPolicyName?: string | undefined;
5738
5738
  }
5739
5739
  /**
5740
5740
  * @public
@@ -5745,7 +5745,7 @@ export interface CreateLoadBalancerResult {
5745
5745
  * request, the timestamp of the request, and the resources affected by the request.</p>
5746
5746
  * @public
5747
5747
  */
5748
- operations?: Operation[];
5748
+ operations?: Operation[] | undefined;
5749
5749
  }
5750
5750
  /**
5751
5751
  * @public
@@ -5777,13 +5777,13 @@ export interface CreateLoadBalancerTlsCertificateRequest {
5777
5777
  * (<code>*.example.com</code>).</p>
5778
5778
  * @public
5779
5779
  */
5780
- certificateAlternativeNames?: string[];
5780
+ certificateAlternativeNames?: string[] | undefined;
5781
5781
  /**
5782
5782
  * <p>The tag keys and optional values to add to the resource during create.</p>
5783
5783
  * <p>Use the <code>TagResource</code> action to tag a resource after it's created.</p>
5784
5784
  * @public
5785
5785
  */
5786
- tags?: Tag[];
5786
+ tags?: Tag[] | undefined;
5787
5787
  }
5788
5788
  /**
5789
5789
  * @public
@@ -5794,7 +5794,7 @@ export interface CreateLoadBalancerTlsCertificateResult {
5794
5794
  * request, the timestamp of the request, and the resources affected by the request.</p>
5795
5795
  * @public
5796
5796
  */
5797
- operations?: Operation[];
5797
+ operations?: Operation[] | undefined;
5798
5798
  }
5799
5799
  /**
5800
5800
  * @public
@@ -5822,7 +5822,7 @@ export interface CreateRelationalDatabaseRequest {
5822
5822
  * your request.</p>
5823
5823
  * @public
5824
5824
  */
5825
- availabilityZone?: string;
5825
+ availabilityZone?: string | undefined;
5826
5826
  /**
5827
5827
  * <p>The blueprint ID for your new database. A blueprint describes the major engine version of
5828
5828
  * a database.</p>
@@ -5948,7 +5948,7 @@ export interface CreateRelationalDatabaseRequest {
5948
5948
  * <p>Constraints: Must contain from 8 to 128 characters.</p>
5949
5949
  * @public
5950
5950
  */
5951
- masterUserPassword?: string;
5951
+ masterUserPassword?: string | undefined;
5952
5952
  /**
5953
5953
  * <p>The daily time range during which automated backups are created for your new database if
5954
5954
  * automated backups are enabled.</p>
@@ -5974,7 +5974,7 @@ export interface CreateRelationalDatabaseRequest {
5974
5974
  * </ul>
5975
5975
  * @public
5976
5976
  */
5977
- preferredBackupWindow?: string;
5977
+ preferredBackupWindow?: string | undefined;
5978
5978
  /**
5979
5979
  * <p>The weekly time range during which system maintenance can occur on your new
5980
5980
  * database.</p>
@@ -6001,7 +6001,7 @@ export interface CreateRelationalDatabaseRequest {
6001
6001
  * </ul>
6002
6002
  * @public
6003
6003
  */
6004
- preferredMaintenanceWindow?: string;
6004
+ preferredMaintenanceWindow?: string | undefined;
6005
6005
  /**
6006
6006
  * <p>Specifies the accessibility options for your new database. A value of <code>true</code>
6007
6007
  * specifies a database that is available to resources outside of your Lightsail account. A
@@ -6009,13 +6009,13 @@ export interface CreateRelationalDatabaseRequest {
6009
6009
  * resources in the same region as your database.</p>
6010
6010
  * @public
6011
6011
  */
6012
- publiclyAccessible?: boolean;
6012
+ publiclyAccessible?: boolean | undefined;
6013
6013
  /**
6014
6014
  * <p>The tag keys and optional values to add to the resource during create.</p>
6015
6015
  * <p>Use the <code>TagResource</code> action to tag a resource after it's created.</p>
6016
6016
  * @public
6017
6017
  */
6018
- tags?: Tag[];
6018
+ tags?: Tag[] | undefined;
6019
6019
  }
6020
6020
  /**
6021
6021
  * @public
@@ -6026,7 +6026,7 @@ export interface CreateRelationalDatabaseResult {
6026
6026
  * request, the timestamp of the request, and the resources affected by the request.</p>
6027
6027
  * @public
6028
6028
  */
6029
- operations?: Operation[];
6029
+ operations?: Operation[] | undefined;
6030
6030
  }
6031
6031
  /**
6032
6032
  * @public
@@ -6054,7 +6054,7 @@ export interface CreateRelationalDatabaseFromSnapshotRequest {
6054
6054
  * your request.</p>
6055
6055
  * @public
6056
6056
  */
6057
- availabilityZone?: string;
6057
+ availabilityZone?: string | undefined;
6058
6058
  /**
6059
6059
  * <p>Specifies the accessibility options for your new database. A value of <code>true</code>
6060
6060
  * specifies a database that is available to resources outside of your Lightsail account. A
@@ -6062,12 +6062,12 @@ export interface CreateRelationalDatabaseFromSnapshotRequest {
6062
6062
  * resources in the same region as your database.</p>
6063
6063
  * @public
6064
6064
  */
6065
- publiclyAccessible?: boolean;
6065
+ publiclyAccessible?: boolean | undefined;
6066
6066
  /**
6067
6067
  * <p>The name of the database snapshot from which to create your new database.</p>
6068
6068
  * @public
6069
6069
  */
6070
- relationalDatabaseSnapshotName?: string;
6070
+ relationalDatabaseSnapshotName?: string | undefined;
6071
6071
  /**
6072
6072
  * <p>The bundle ID for your new database. A bundle describes the performance specifications for
6073
6073
  * your database.</p>
@@ -6077,12 +6077,12 @@ export interface CreateRelationalDatabaseFromSnapshotRequest {
6077
6077
  * than the bundle of the source database.</p>
6078
6078
  * @public
6079
6079
  */
6080
- relationalDatabaseBundleId?: string;
6080
+ relationalDatabaseBundleId?: string | undefined;
6081
6081
  /**
6082
6082
  * <p>The name of the source database.</p>
6083
6083
  * @public
6084
6084
  */
6085
- sourceRelationalDatabaseName?: string;
6085
+ sourceRelationalDatabaseName?: string | undefined;
6086
6086
  /**
6087
6087
  * <p>The date and time to restore your database from.</p>
6088
6088
  * <p>Constraints:</p>
@@ -6105,7 +6105,7 @@ export interface CreateRelationalDatabaseFromSnapshotRequest {
6105
6105
  * </ul>
6106
6106
  * @public
6107
6107
  */
6108
- restoreTime?: Date;
6108
+ restoreTime?: Date | undefined;
6109
6109
  /**
6110
6110
  * <p>Specifies whether your database is restored from the latest backup time. A value of
6111
6111
  * <code>true</code> restores from the latest backup time. </p>
@@ -6115,13 +6115,13 @@ export interface CreateRelationalDatabaseFromSnapshotRequest {
6115
6115
  * provided.</p>
6116
6116
  * @public
6117
6117
  */
6118
- useLatestRestorableTime?: boolean;
6118
+ useLatestRestorableTime?: boolean | undefined;
6119
6119
  /**
6120
6120
  * <p>The tag keys and optional values to add to the resource during create.</p>
6121
6121
  * <p>Use the <code>TagResource</code> action to tag a resource after it's created.</p>
6122
6122
  * @public
6123
6123
  */
6124
- tags?: Tag[];
6124
+ tags?: Tag[] | undefined;
6125
6125
  }
6126
6126
  /**
6127
6127
  * @public
@@ -6132,7 +6132,7 @@ export interface CreateRelationalDatabaseFromSnapshotResult {
6132
6132
  * request, the timestamp of the request, and the resources affected by the request.</p>
6133
6133
  * @public
6134
6134
  */
6135
- operations?: Operation[];
6135
+ operations?: Operation[] | undefined;
6136
6136
  }
6137
6137
  /**
6138
6138
  * @public
@@ -6162,7 +6162,7 @@ export interface CreateRelationalDatabaseSnapshotRequest {
6162
6162
  * <p>Use the <code>TagResource</code> action to tag a resource after it's created.</p>
6163
6163
  * @public
6164
6164
  */
6165
- tags?: Tag[];
6165
+ tags?: Tag[] | undefined;
6166
6166
  }
6167
6167
  /**
6168
6168
  * @public
@@ -6173,7 +6173,7 @@ export interface CreateRelationalDatabaseSnapshotResult {
6173
6173
  * request, the timestamp of the request, and the resources affected by the request.</p>
6174
6174
  * @public
6175
6175
  */
6176
- operations?: Operation[];
6176
+ operations?: Operation[] | undefined;
6177
6177
  }
6178
6178
  /**
6179
6179
  * @public
@@ -6194,7 +6194,7 @@ export interface DeleteAlarmResult {
6194
6194
  * request, the timestamp of the request, and the resources affected by the request.</p>
6195
6195
  * @public
6196
6196
  */
6197
- operations?: Operation[];
6197
+ operations?: Operation[] | undefined;
6198
6198
  }
6199
6199
  /**
6200
6200
  * @public
@@ -6223,7 +6223,7 @@ export interface DeleteAutoSnapshotResult {
6223
6223
  * request, the timestamp of the request, and the resources affected by the request.</p>
6224
6224
  * @public
6225
6225
  */
6226
- operations?: Operation[];
6226
+ operations?: Operation[] | undefined;
6227
6227
  }
6228
6228
  /**
6229
6229
  * @public
@@ -6259,7 +6259,7 @@ export interface DeleteBucketRequest {
6259
6259
  * </important>
6260
6260
  * @public
6261
6261
  */
6262
- forceDelete?: boolean;
6262
+ forceDelete?: boolean | undefined;
6263
6263
  }
6264
6264
  /**
6265
6265
  * @public
@@ -6270,7 +6270,7 @@ export interface DeleteBucketResult {
6270
6270
  * request, the timestamp of the request, and the resources affected by the request.</p>
6271
6271
  * @public
6272
6272
  */
6273
- operations?: Operation[];
6273
+ operations?: Operation[] | undefined;
6274
6274
  }
6275
6275
  /**
6276
6276
  * @public
@@ -6298,7 +6298,7 @@ export interface DeleteBucketAccessKeyResult {
6298
6298
  * request, the timestamp of the request, and the resources affected by the request.</p>
6299
6299
  * @public
6300
6300
  */
6301
- operations?: Operation[];
6301
+ operations?: Operation[] | undefined;
6302
6302
  }
6303
6303
  /**
6304
6304
  * @public
@@ -6321,7 +6321,7 @@ export interface DeleteCertificateResult {
6321
6321
  * request, the timestamp of the request, and the resources affected by the request.</p>
6322
6322
  * @public
6323
6323
  */
6324
- operations?: Operation[];
6324
+ operations?: Operation[] | undefined;
6325
6325
  }
6326
6326
  /**
6327
6327
  * @public
@@ -6348,7 +6348,7 @@ export interface DeleteContactMethodResult {
6348
6348
  * request, the timestamp of the request, and the resources affected by the request.</p>
6349
6349
  * @public
6350
6350
  */
6351
- operations?: Operation[];
6351
+ operations?: Operation[] | undefined;
6352
6352
  }
6353
6353
  /**
6354
6354
  * @public
@@ -6407,7 +6407,7 @@ export interface DeleteDiskRequest {
6407
6407
  * <p>A Boolean value to indicate whether to delete all add-ons for the disk.</p>
6408
6408
  * @public
6409
6409
  */
6410
- forceDeleteAddOns?: boolean;
6410
+ forceDeleteAddOns?: boolean | undefined;
6411
6411
  }
6412
6412
  /**
6413
6413
  * @public
@@ -6418,7 +6418,7 @@ export interface DeleteDiskResult {
6418
6418
  * request, the timestamp of the request, and the resources affected by the request.</p>
6419
6419
  * @public
6420
6420
  */
6421
- operations?: Operation[];
6421
+ operations?: Operation[] | undefined;
6422
6422
  }
6423
6423
  /**
6424
6424
  * @public
@@ -6439,7 +6439,7 @@ export interface DeleteDiskSnapshotResult {
6439
6439
  * request, the timestamp of the request, and the resources affected by the request.</p>
6440
6440
  * @public
6441
6441
  */
6442
- operations?: Operation[];
6442
+ operations?: Operation[] | undefined;
6443
6443
  }
6444
6444
  /**
6445
6445
  * @public
@@ -6451,7 +6451,7 @@ export interface DeleteDistributionRequest {
6451
6451
  * can specify.</p>
6452
6452
  * @public
6453
6453
  */
6454
- distributionName?: string;
6454
+ distributionName?: string | undefined;
6455
6455
  }
6456
6456
  /**
6457
6457
  * @public
@@ -6462,7 +6462,7 @@ export interface DeleteDistributionResult {
6462
6462
  * timestamp of the request, and the resources affected by the request.</p>
6463
6463
  * @public
6464
6464
  */
6465
- operation?: Operation;
6465
+ operation?: Operation | undefined;
6466
6466
  }
6467
6467
  /**
6468
6468
  * @public
@@ -6483,7 +6483,7 @@ export interface DeleteDomainResult {
6483
6483
  * request, the timestamp of the request, and the resources affected by the request.</p>
6484
6484
  * @public
6485
6485
  */
6486
- operation?: Operation;
6486
+ operation?: Operation | undefined;
6487
6487
  }
6488
6488
  /**
6489
6489
  * @public
@@ -6509,7 +6509,7 @@ export interface DeleteDomainEntryResult {
6509
6509
  * request, the timestamp of the request, and the resources affected by the request.</p>
6510
6510
  * @public
6511
6511
  */
6512
- operation?: Operation;
6512
+ operation?: Operation | undefined;
6513
6513
  }
6514
6514
  /**
6515
6515
  * @public
@@ -6524,7 +6524,7 @@ export interface DeleteInstanceRequest {
6524
6524
  * <p>A Boolean value to indicate whether to delete all add-ons for the instance.</p>
6525
6525
  * @public
6526
6526
  */
6527
- forceDeleteAddOns?: boolean;
6527
+ forceDeleteAddOns?: boolean | undefined;
6528
6528
  }
6529
6529
  /**
6530
6530
  * @public
@@ -6535,7 +6535,7 @@ export interface DeleteInstanceResult {
6535
6535
  * request, the timestamp of the request, and the resources affected by the request.</p>
6536
6536
  * @public
6537
6537
  */
6538
- operations?: Operation[];
6538
+ operations?: Operation[] | undefined;
6539
6539
  }
6540
6540
  /**
6541
6541
  * @public
@@ -6556,7 +6556,7 @@ export interface DeleteInstanceSnapshotResult {
6556
6556
  * request, the timestamp of the request, and the resources affected by the request.</p>
6557
6557
  * @public
6558
6558
  */
6559
- operations?: Operation[];
6559
+ operations?: Operation[] | undefined;
6560
6560
  }
6561
6561
  /**
6562
6562
  * @public
@@ -6575,7 +6575,7 @@ export interface DeleteKeyPairRequest {
6575
6575
  * </note>
6576
6576
  * @public
6577
6577
  */
6578
- expectedFingerprint?: string;
6578
+ expectedFingerprint?: string | undefined;
6579
6579
  }
6580
6580
  /**
6581
6581
  * @public
@@ -6586,7 +6586,7 @@ export interface DeleteKeyPairResult {
6586
6586
  * request, the timestamp of the request, and the resources affected by the request.</p>
6587
6587
  * @public
6588
6588
  */
6589
- operation?: Operation;
6589
+ operation?: Operation | undefined;
6590
6590
  }
6591
6591
  /**
6592
6592
  * @public
@@ -6607,7 +6607,7 @@ export interface DeleteKnownHostKeysResult {
6607
6607
  * request, the timestamp of the request, and the resources affected by the request.</p>
6608
6608
  * @public
6609
6609
  */
6610
- operations?: Operation[];
6610
+ operations?: Operation[] | undefined;
6611
6611
  }
6612
6612
  /**
6613
6613
  * @public
@@ -6628,7 +6628,7 @@ export interface DeleteLoadBalancerResult {
6628
6628
  * request, the timestamp of the request, and the resources affected by the request.</p>
6629
6629
  * @public
6630
6630
  */
6631
- operations?: Operation[];
6631
+ operations?: Operation[] | undefined;
6632
6632
  }
6633
6633
  /**
6634
6634
  * @public
@@ -6651,7 +6651,7 @@ export interface DeleteLoadBalancerTlsCertificateRequest {
6651
6651
  * is in use by an instance attached to the load balancer.</p>
6652
6652
  * @public
6653
6653
  */
6654
- force?: boolean;
6654
+ force?: boolean | undefined;
6655
6655
  }
6656
6656
  /**
6657
6657
  * @public
@@ -6662,7 +6662,7 @@ export interface DeleteLoadBalancerTlsCertificateResult {
6662
6662
  * request, the timestamp of the request, and the resources affected by the request.</p>
6663
6663
  * @public
6664
6664
  */
6665
- operations?: Operation[];
6665
+ operations?: Operation[] | undefined;
6666
6666
  }
6667
6667
  /**
6668
6668
  * @public
@@ -6683,7 +6683,7 @@ export interface DeleteRelationalDatabaseRequest {
6683
6683
  * </p>
6684
6684
  * @public
6685
6685
  */
6686
- skipFinalSnapshot?: boolean;
6686
+ skipFinalSnapshot?: boolean | undefined;
6687
6687
  /**
6688
6688
  * <p>The name of the database snapshot created if <code>skip final snapshot</code> is
6689
6689
  * <code>false</code>, which is the default value for that parameter.</p>
@@ -6702,7 +6702,7 @@ export interface DeleteRelationalDatabaseRequest {
6702
6702
  * </ul>
6703
6703
  * @public
6704
6704
  */
6705
- finalRelationalDatabaseSnapshotName?: string;
6705
+ finalRelationalDatabaseSnapshotName?: string | undefined;
6706
6706
  }
6707
6707
  /**
6708
6708
  * @public
@@ -6713,7 +6713,7 @@ export interface DeleteRelationalDatabaseResult {
6713
6713
  * request, the timestamp of the request, and the resources affected by the request.</p>
6714
6714
  * @public
6715
6715
  */
6716
- operations?: Operation[];
6716
+ operations?: Operation[] | undefined;
6717
6717
  }
6718
6718
  /**
6719
6719
  * @public
@@ -6734,7 +6734,7 @@ export interface DeleteRelationalDatabaseSnapshotResult {
6734
6734
  * request, the timestamp of the request, and the resources affected by the request.</p>
6735
6735
  * @public
6736
6736
  */
6737
- operations?: Operation[];
6737
+ operations?: Operation[] | undefined;
6738
6738
  }
6739
6739
  /**
6740
6740
  * @public
@@ -6757,7 +6757,7 @@ export interface DetachCertificateFromDistributionResult {
6757
6757
  * timestamp of the request, and the resources affected by the request.</p>
6758
6758
  * @public
6759
6759
  */
6760
- operation?: Operation;
6760
+ operation?: Operation | undefined;
6761
6761
  }
6762
6762
  /**
6763
6763
  * @public
@@ -6779,7 +6779,7 @@ export interface DetachDiskResult {
6779
6779
  * request, the timestamp of the request, and the resources affected by the request.</p>
6780
6780
  * @public
6781
6781
  */
6782
- operations?: Operation[];
6782
+ operations?: Operation[] | undefined;
6783
6783
  }
6784
6784
  /**
6785
6785
  * @public
@@ -6806,7 +6806,7 @@ export interface DetachInstancesFromLoadBalancerResult {
6806
6806
  * request, the timestamp of the request, and the resources affected by the request.</p>
6807
6807
  * @public
6808
6808
  */
6809
- operations?: Operation[];
6809
+ operations?: Operation[] | undefined;
6810
6810
  }
6811
6811
  /**
6812
6812
  * @public
@@ -6827,7 +6827,7 @@ export interface DetachStaticIpResult {
6827
6827
  * request, the timestamp of the request, and the resources affected by the request.</p>
6828
6828
  * @public
6829
6829
  */
6830
- operations?: Operation[];
6830
+ operations?: Operation[] | undefined;
6831
6831
  }
6832
6832
  /**
6833
6833
  * @public
@@ -6853,7 +6853,7 @@ export interface DisableAddOnResult {
6853
6853
  * request, the timestamp of the request, and the resources affected by the request.</p>
6854
6854
  * @public
6855
6855
  */
6856
- operations?: Operation[];
6856
+ operations?: Operation[] | undefined;
6857
6857
  }
6858
6858
  /**
6859
6859
  * @public
@@ -6879,81 +6879,81 @@ export interface Disk {
6879
6879
  * <p>The unique name of the disk.</p>
6880
6880
  * @public
6881
6881
  */
6882
- name?: string;
6882
+ name?: string | undefined;
6883
6883
  /**
6884
6884
  * <p>The Amazon Resource Name (ARN) of the disk.</p>
6885
6885
  * @public
6886
6886
  */
6887
- arn?: string;
6887
+ arn?: string | undefined;
6888
6888
  /**
6889
6889
  * <p>The support code. Include this code in your email to support when you have questions about
6890
6890
  * an instance or another resource in Lightsail. This code enables our support team to look up
6891
6891
  * your Lightsail information more easily.</p>
6892
6892
  * @public
6893
6893
  */
6894
- supportCode?: string;
6894
+ supportCode?: string | undefined;
6895
6895
  /**
6896
6896
  * <p>The date when the disk was created.</p>
6897
6897
  * @public
6898
6898
  */
6899
- createdAt?: Date;
6899
+ createdAt?: Date | undefined;
6900
6900
  /**
6901
6901
  * <p>The AWS Region and Availability Zone where the disk is located.</p>
6902
6902
  * @public
6903
6903
  */
6904
- location?: ResourceLocation;
6904
+ location?: ResourceLocation | undefined;
6905
6905
  /**
6906
6906
  * <p>The Lightsail resource type (<code>Disk</code>).</p>
6907
6907
  * @public
6908
6908
  */
6909
- resourceType?: ResourceType;
6909
+ resourceType?: ResourceType | undefined;
6910
6910
  /**
6911
6911
  * <p>The tag keys and optional values for the resource. For more information about tags in
6912
6912
  * Lightsail, see the <a href="https://lightsail.aws.amazon.com/ls/docs/en_us/articles/amazon-lightsail-tags">Amazon Lightsail Developer Guide</a>.</p>
6913
6913
  * @public
6914
6914
  */
6915
- tags?: Tag[];
6915
+ tags?: Tag[] | undefined;
6916
6916
  /**
6917
6917
  * <p>An array of objects representing the add-ons enabled on the disk.</p>
6918
6918
  * @public
6919
6919
  */
6920
- addOns?: AddOn[];
6920
+ addOns?: AddOn[] | undefined;
6921
6921
  /**
6922
6922
  * <p>The size of the disk in GB.</p>
6923
6923
  * @public
6924
6924
  */
6925
- sizeInGb?: number;
6925
+ sizeInGb?: number | undefined;
6926
6926
  /**
6927
6927
  * <p>A Boolean value indicating whether this disk is a system disk (has an operating system
6928
6928
  * loaded on it).</p>
6929
6929
  * @public
6930
6930
  */
6931
- isSystemDisk?: boolean;
6931
+ isSystemDisk?: boolean | undefined;
6932
6932
  /**
6933
6933
  * <p>The input/output operations per second (IOPS) of the disk.</p>
6934
6934
  * @public
6935
6935
  */
6936
- iops?: number;
6936
+ iops?: number | undefined;
6937
6937
  /**
6938
6938
  * <p>The disk path.</p>
6939
6939
  * @public
6940
6940
  */
6941
- path?: string;
6941
+ path?: string | undefined;
6942
6942
  /**
6943
6943
  * <p>Describes the status of the disk.</p>
6944
6944
  * @public
6945
6945
  */
6946
- state?: DiskState;
6946
+ state?: DiskState | undefined;
6947
6947
  /**
6948
6948
  * <p>The resources to which the disk is attached.</p>
6949
6949
  * @public
6950
6950
  */
6951
- attachedTo?: string;
6951
+ attachedTo?: string | undefined;
6952
6952
  /**
6953
6953
  * <p>A Boolean value indicating whether the disk is attached.</p>
6954
6954
  * @public
6955
6955
  */
6956
- isAttached?: boolean;
6956
+ isAttached?: boolean | undefined;
6957
6957
  /**
6958
6958
  * @deprecated
6959
6959
  *
@@ -6965,7 +6965,7 @@ export interface Disk {
6965
6965
  * </note>
6966
6966
  * @public
6967
6967
  */
6968
- attachmentState?: string;
6968
+ attachmentState?: string | undefined;
6969
6969
  /**
6970
6970
  * @deprecated
6971
6971
  *
@@ -6976,7 +6976,7 @@ export interface Disk {
6976
6976
  * </note>
6977
6977
  * @public
6978
6978
  */
6979
- gbInUse?: number;
6979
+ gbInUse?: number | undefined;
6980
6980
  /**
6981
6981
  * <p>The status of automatically mounting a storage disk to a virtual computer.</p>
6982
6982
  * <important>
@@ -6984,7 +6984,7 @@ export interface Disk {
6984
6984
  * </important>
6985
6985
  * @public
6986
6986
  */
6987
- autoMountStatus?: AutoMountStatus;
6987
+ autoMountStatus?: AutoMountStatus | undefined;
6988
6988
  }
6989
6989
  /**
6990
6990
  * <p>Describes a disk.</p>
@@ -6995,23 +6995,23 @@ export interface DiskInfo {
6995
6995
  * <p>The disk name.</p>
6996
6996
  * @public
6997
6997
  */
6998
- name?: string;
6998
+ name?: string | undefined;
6999
6999
  /**
7000
7000
  * <p>The disk path.</p>
7001
7001
  * @public
7002
7002
  */
7003
- path?: string;
7003
+ path?: string | undefined;
7004
7004
  /**
7005
7005
  * <p>The size of the disk in GB (<code>32</code>).</p>
7006
7006
  * @public
7007
7007
  */
7008
- sizeInGb?: number;
7008
+ sizeInGb?: number | undefined;
7009
7009
  /**
7010
7010
  * <p>A Boolean value indicating whether this disk is a system disk (has an operating system
7011
7011
  * loaded on it).</p>
7012
7012
  * @public
7013
7013
  */
7014
- isSystemDisk?: boolean;
7014
+ isSystemDisk?: boolean | undefined;
7015
7015
  }
7016
7016
  /**
7017
7017
  * @public
@@ -7036,84 +7036,84 @@ export interface DiskSnapshot {
7036
7036
  * <p>The name of the disk snapshot (<code>my-disk-snapshot</code>).</p>
7037
7037
  * @public
7038
7038
  */
7039
- name?: string;
7039
+ name?: string | undefined;
7040
7040
  /**
7041
7041
  * <p>The Amazon Resource Name (ARN) of the disk snapshot.</p>
7042
7042
  * @public
7043
7043
  */
7044
- arn?: string;
7044
+ arn?: string | undefined;
7045
7045
  /**
7046
7046
  * <p>The support code. Include this code in your email to support when you have questions about
7047
7047
  * an instance or another resource in Lightsail. This code enables our support team to look up
7048
7048
  * your Lightsail information more easily.</p>
7049
7049
  * @public
7050
7050
  */
7051
- supportCode?: string;
7051
+ supportCode?: string | undefined;
7052
7052
  /**
7053
7053
  * <p>The date when the disk snapshot was created.</p>
7054
7054
  * @public
7055
7055
  */
7056
- createdAt?: Date;
7056
+ createdAt?: Date | undefined;
7057
7057
  /**
7058
7058
  * <p>The AWS Region and Availability Zone where the disk snapshot was created.</p>
7059
7059
  * @public
7060
7060
  */
7061
- location?: ResourceLocation;
7061
+ location?: ResourceLocation | undefined;
7062
7062
  /**
7063
7063
  * <p>The Lightsail resource type (<code>DiskSnapshot</code>).</p>
7064
7064
  * @public
7065
7065
  */
7066
- resourceType?: ResourceType;
7066
+ resourceType?: ResourceType | undefined;
7067
7067
  /**
7068
7068
  * <p>The tag keys and optional values for the resource. For more information about tags in
7069
7069
  * Lightsail, see the <a href="https://lightsail.aws.amazon.com/ls/docs/en_us/articles/amazon-lightsail-tags">Amazon Lightsail Developer Guide</a>.</p>
7070
7070
  * @public
7071
7071
  */
7072
- tags?: Tag[];
7072
+ tags?: Tag[] | undefined;
7073
7073
  /**
7074
7074
  * <p>The size of the disk in GB.</p>
7075
7075
  * @public
7076
7076
  */
7077
- sizeInGb?: number;
7077
+ sizeInGb?: number | undefined;
7078
7078
  /**
7079
7079
  * <p>The status of the disk snapshot operation.</p>
7080
7080
  * @public
7081
7081
  */
7082
- state?: DiskSnapshotState;
7082
+ state?: DiskSnapshotState | undefined;
7083
7083
  /**
7084
7084
  * <p>The progress of the snapshot.</p>
7085
7085
  * @public
7086
7086
  */
7087
- progress?: string;
7087
+ progress?: string | undefined;
7088
7088
  /**
7089
7089
  * <p>The unique name of the source disk from which the disk snapshot was created.</p>
7090
7090
  * @public
7091
7091
  */
7092
- fromDiskName?: string;
7092
+ fromDiskName?: string | undefined;
7093
7093
  /**
7094
7094
  * <p>The Amazon Resource Name (ARN) of the source disk from which the disk snapshot was
7095
7095
  * created.</p>
7096
7096
  * @public
7097
7097
  */
7098
- fromDiskArn?: string;
7098
+ fromDiskArn?: string | undefined;
7099
7099
  /**
7100
7100
  * <p>The unique name of the source instance from which the disk (system volume) snapshot was
7101
7101
  * created.</p>
7102
7102
  * @public
7103
7103
  */
7104
- fromInstanceName?: string;
7104
+ fromInstanceName?: string | undefined;
7105
7105
  /**
7106
7106
  * <p>The Amazon Resource Name (ARN) of the source instance from which the disk (system volume)
7107
7107
  * snapshot was created.</p>
7108
7108
  * @public
7109
7109
  */
7110
- fromInstanceArn?: string;
7110
+ fromInstanceArn?: string | undefined;
7111
7111
  /**
7112
7112
  * <p>A Boolean value indicating whether the snapshot was created from an automatic
7113
7113
  * snapshot.</p>
7114
7114
  * @public
7115
7115
  */
7116
- isFromAutoSnapshot?: boolean;
7116
+ isFromAutoSnapshot?: boolean | undefined;
7117
7117
  }
7118
7118
  /**
7119
7119
  * <p>Describes a disk snapshot.</p>
@@ -7124,7 +7124,7 @@ export interface DiskSnapshotInfo {
7124
7124
  * <p>The size of the disk in GB (<code>32</code>).</p>
7125
7125
  * @public
7126
7126
  */
7127
- sizeInGb?: number;
7127
+ sizeInGb?: number | undefined;
7128
7128
  }
7129
7129
  /**
7130
7130
  * <p>Describes the specifications of a distribution bundle.</p>
@@ -7135,28 +7135,28 @@ export interface DistributionBundle {
7135
7135
  * <p>The ID of the bundle.</p>
7136
7136
  * @public
7137
7137
  */
7138
- bundleId?: string;
7138
+ bundleId?: string | undefined;
7139
7139
  /**
7140
7140
  * <p>The name of the distribution bundle.</p>
7141
7141
  * @public
7142
7142
  */
7143
- name?: string;
7143
+ name?: string | undefined;
7144
7144
  /**
7145
7145
  * <p>The monthly price, in US dollars, of the bundle.</p>
7146
7146
  * @public
7147
7147
  */
7148
- price?: number;
7148
+ price?: number | undefined;
7149
7149
  /**
7150
7150
  * <p>The monthly network transfer quota of the bundle.</p>
7151
7151
  * @public
7152
7152
  */
7153
- transferPerMonthInGb?: number;
7153
+ transferPerMonthInGb?: number | undefined;
7154
7154
  /**
7155
7155
  * <p>Indicates whether the bundle is active, and can be specified for a new or existing
7156
7156
  * distribution.</p>
7157
7157
  * @public
7158
7158
  */
7159
- isActive?: boolean;
7159
+ isActive?: boolean | undefined;
7160
7160
  }
7161
7161
  /**
7162
7162
  * @public
@@ -7219,12 +7219,12 @@ export interface NameServersUpdateState {
7219
7219
  * </ul>
7220
7220
  * @public
7221
7221
  */
7222
- code?: NameServersUpdateStateCode;
7222
+ code?: NameServersUpdateStateCode | undefined;
7223
7223
  /**
7224
7224
  * <p>The message that describes the reason for the status code.</p>
7225
7225
  * @public
7226
7226
  */
7227
- message?: string;
7227
+ message?: string | undefined;
7228
7228
  }
7229
7229
  /**
7230
7230
  * @public
@@ -7269,12 +7269,12 @@ export interface R53HostedZoneDeletionState {
7269
7269
  * </ul>
7270
7270
  * @public
7271
7271
  */
7272
- code?: R53HostedZoneDeletionStateCode;
7272
+ code?: R53HostedZoneDeletionStateCode | undefined;
7273
7273
  /**
7274
7274
  * <p>The message that describes the reason for the status code.</p>
7275
7275
  * @public
7276
7276
  */
7277
- message?: string;
7277
+ message?: string | undefined;
7278
7278
  }
7279
7279
  /**
7280
7280
  * <p>Describes the delegation state of an Amazon Route 53 registered domain to Amazon Lightsail.</p>
@@ -7310,13 +7310,13 @@ export interface RegisteredDomainDelegationInfo {
7310
7310
  * to the Route 53 domain by Lightsail.</p>
7311
7311
  * @public
7312
7312
  */
7313
- nameServersUpdateState?: NameServersUpdateState;
7313
+ nameServersUpdateState?: NameServersUpdateState | undefined;
7314
7314
  /**
7315
7315
  * <p>Describes the deletion state of an Amazon Route 53 hosted zone for a domain that is
7316
7316
  * being automatically delegated to an Amazon Lightsail DNS zone.</p>
7317
7317
  * @public
7318
7318
  */
7319
- r53HostedZoneDeletionState?: R53HostedZoneDeletionState;
7319
+ r53HostedZoneDeletionState?: R53HostedZoneDeletionState | undefined;
7320
7320
  }
7321
7321
  /**
7322
7322
  * <p>Describes a domain where you are storing recordsets.</p>
@@ -7327,52 +7327,52 @@ export interface Domain {
7327
7327
  * <p>The name of the domain.</p>
7328
7328
  * @public
7329
7329
  */
7330
- name?: string;
7330
+ name?: string | undefined;
7331
7331
  /**
7332
7332
  * <p>The Amazon Resource Name (ARN) of the domain recordset
7333
7333
  * (<code>arn:aws:lightsail:global:123456789101:Domain/824cede0-abc7-4f84-8dbc-12345EXAMPLE</code>).</p>
7334
7334
  * @public
7335
7335
  */
7336
- arn?: string;
7336
+ arn?: string | undefined;
7337
7337
  /**
7338
7338
  * <p>The support code. Include this code in your email to support when you have questions about
7339
7339
  * an instance or another resource in Lightsail. This code enables our support team to look up
7340
7340
  * your Lightsail information more easily.</p>
7341
7341
  * @public
7342
7342
  */
7343
- supportCode?: string;
7343
+ supportCode?: string | undefined;
7344
7344
  /**
7345
7345
  * <p>The date when the domain recordset was created.</p>
7346
7346
  * @public
7347
7347
  */
7348
- createdAt?: Date;
7348
+ createdAt?: Date | undefined;
7349
7349
  /**
7350
7350
  * <p>The AWS Region and Availability Zones where the domain recordset was created.</p>
7351
7351
  * @public
7352
7352
  */
7353
- location?: ResourceLocation;
7353
+ location?: ResourceLocation | undefined;
7354
7354
  /**
7355
7355
  * <p>The resource type. </p>
7356
7356
  * @public
7357
7357
  */
7358
- resourceType?: ResourceType;
7358
+ resourceType?: ResourceType | undefined;
7359
7359
  /**
7360
7360
  * <p>The tag keys and optional values for the resource. For more information about tags in
7361
7361
  * Lightsail, see the <a href="https://lightsail.aws.amazon.com/ls/docs/en_us/articles/amazon-lightsail-tags">Amazon Lightsail Developer Guide</a>.</p>
7362
7362
  * @public
7363
7363
  */
7364
- tags?: Tag[];
7364
+ tags?: Tag[] | undefined;
7365
7365
  /**
7366
7366
  * <p>An array of key-value pairs containing information about the domain entries.</p>
7367
7367
  * @public
7368
7368
  */
7369
- domainEntries?: DomainEntry[];
7369
+ domainEntries?: DomainEntry[] | undefined;
7370
7370
  /**
7371
7371
  * <p>An object that describes the state of the Route 53 domain delegation to a
7372
7372
  * Lightsail DNS zone.</p>
7373
7373
  * @public
7374
7374
  */
7375
- registeredDomainDelegationInfo?: RegisteredDomainDelegationInfo;
7375
+ registeredDomainDelegationInfo?: RegisteredDomainDelegationInfo | undefined;
7376
7376
  }
7377
7377
  /**
7378
7378
  * @public
@@ -7387,17 +7387,17 @@ export interface DownloadDefaultKeyPairResult {
7387
7387
  * <p>A base64-encoded public key of the <code>ssh-rsa</code> type.</p>
7388
7388
  * @public
7389
7389
  */
7390
- publicKeyBase64?: string;
7390
+ publicKeyBase64?: string | undefined;
7391
7391
  /**
7392
7392
  * <p>A base64-encoded RSA private key.</p>
7393
7393
  * @public
7394
7394
  */
7395
- privateKeyBase64?: string;
7395
+ privateKeyBase64?: string | undefined;
7396
7396
  /**
7397
7397
  * <p>The timestamp when the default key pair was created.</p>
7398
7398
  * @public
7399
7399
  */
7400
- createdAt?: Date;
7400
+ createdAt?: Date | undefined;
7401
7401
  }
7402
7402
  /**
7403
7403
  * @public
@@ -7423,7 +7423,7 @@ export interface EnableAddOnResult {
7423
7423
  * request, the timestamp of the request, and the resources affected by the request.</p>
7424
7424
  * @public
7425
7425
  */
7426
- operations?: Operation[];
7426
+ operations?: Operation[] | undefined;
7427
7427
  }
7428
7428
  /**
7429
7429
  * @public
@@ -7444,7 +7444,7 @@ export interface ExportSnapshotResult {
7444
7444
  * request, the timestamp of the request, and the resources affected by the request.</p>
7445
7445
  * @public
7446
7446
  */
7447
- operations?: Operation[];
7447
+ operations?: Operation[] | undefined;
7448
7448
  }
7449
7449
  /**
7450
7450
  * <p>Describes an instance snapshot.</p>
@@ -7455,17 +7455,17 @@ export interface InstanceSnapshotInfo {
7455
7455
  * <p>The bundle ID from which the source instance was created (<code>micro_x_x</code>).</p>
7456
7456
  * @public
7457
7457
  */
7458
- fromBundleId?: string;
7458
+ fromBundleId?: string | undefined;
7459
7459
  /**
7460
7460
  * <p>The blueprint ID from which the source instance (<code>amazon_linux_2023</code>).</p>
7461
7461
  * @public
7462
7462
  */
7463
- fromBlueprintId?: string;
7463
+ fromBlueprintId?: string | undefined;
7464
7464
  /**
7465
7465
  * <p>A list of objects describing the disks that were attached to the source instance.</p>
7466
7466
  * @public
7467
7467
  */
7468
- fromDiskInfo?: DiskInfo[];
7468
+ fromDiskInfo?: DiskInfo[] | undefined;
7469
7469
  }
7470
7470
  /**
7471
7471
  * @public
@@ -7489,42 +7489,42 @@ export interface ExportSnapshotRecordSourceInfo {
7489
7489
  * <code>DiskSnapshot</code>).</p>
7490
7490
  * @public
7491
7491
  */
7492
- resourceType?: ExportSnapshotRecordSourceType;
7492
+ resourceType?: ExportSnapshotRecordSourceType | undefined;
7493
7493
  /**
7494
7494
  * <p>The date when the source instance or disk snapshot was created.</p>
7495
7495
  * @public
7496
7496
  */
7497
- createdAt?: Date;
7497
+ createdAt?: Date | undefined;
7498
7498
  /**
7499
7499
  * <p>The name of the source instance or disk snapshot.</p>
7500
7500
  * @public
7501
7501
  */
7502
- name?: string;
7502
+ name?: string | undefined;
7503
7503
  /**
7504
7504
  * <p>The Amazon Resource Name (ARN) of the source instance or disk snapshot.</p>
7505
7505
  * @public
7506
7506
  */
7507
- arn?: string;
7507
+ arn?: string | undefined;
7508
7508
  /**
7509
7509
  * <p>The name of the snapshot's source instance or disk.</p>
7510
7510
  * @public
7511
7511
  */
7512
- fromResourceName?: string;
7512
+ fromResourceName?: string | undefined;
7513
7513
  /**
7514
7514
  * <p>The Amazon Resource Name (ARN) of the snapshot's source instance or disk.</p>
7515
7515
  * @public
7516
7516
  */
7517
- fromResourceArn?: string;
7517
+ fromResourceArn?: string | undefined;
7518
7518
  /**
7519
7519
  * <p>A list of objects describing an instance snapshot.</p>
7520
7520
  * @public
7521
7521
  */
7522
- instanceSnapshotInfo?: InstanceSnapshotInfo;
7522
+ instanceSnapshotInfo?: InstanceSnapshotInfo | undefined;
7523
7523
  /**
7524
7524
  * <p>A list of objects describing a disk snapshot.</p>
7525
7525
  * @public
7526
7526
  */
7527
- diskSnapshotInfo?: DiskSnapshotInfo;
7527
+ diskSnapshotInfo?: DiskSnapshotInfo | undefined;
7528
7528
  }
7529
7529
  /**
7530
7530
  * <p>Describes an export snapshot record.</p>
@@ -7535,42 +7535,42 @@ export interface ExportSnapshotRecord {
7535
7535
  * <p>The export snapshot record name.</p>
7536
7536
  * @public
7537
7537
  */
7538
- name?: string;
7538
+ name?: string | undefined;
7539
7539
  /**
7540
7540
  * <p>The Amazon Resource Name (ARN) of the export snapshot record.</p>
7541
7541
  * @public
7542
7542
  */
7543
- arn?: string;
7543
+ arn?: string | undefined;
7544
7544
  /**
7545
7545
  * <p>The date when the export snapshot record was created.</p>
7546
7546
  * @public
7547
7547
  */
7548
- createdAt?: Date;
7548
+ createdAt?: Date | undefined;
7549
7549
  /**
7550
7550
  * <p>The AWS Region and Availability Zone where the export snapshot record is located.</p>
7551
7551
  * @public
7552
7552
  */
7553
- location?: ResourceLocation;
7553
+ location?: ResourceLocation | undefined;
7554
7554
  /**
7555
7555
  * <p>The Lightsail resource type (<code>ExportSnapshotRecord</code>).</p>
7556
7556
  * @public
7557
7557
  */
7558
- resourceType?: ResourceType;
7558
+ resourceType?: ResourceType | undefined;
7559
7559
  /**
7560
7560
  * <p>The state of the export snapshot record.</p>
7561
7561
  * @public
7562
7562
  */
7563
- state?: RecordState;
7563
+ state?: RecordState | undefined;
7564
7564
  /**
7565
7565
  * <p>A list of objects describing the source of the export snapshot record.</p>
7566
7566
  * @public
7567
7567
  */
7568
- sourceInfo?: ExportSnapshotRecordSourceInfo;
7568
+ sourceInfo?: ExportSnapshotRecordSourceInfo | undefined;
7569
7569
  /**
7570
7570
  * <p>A list of objects describing the destination of the export snapshot record.</p>
7571
7571
  * @public
7572
7572
  */
7573
- destinationInfo?: DestinationInfo;
7573
+ destinationInfo?: DestinationInfo | undefined;
7574
7574
  }
7575
7575
  /**
7576
7576
  * @public
@@ -7583,7 +7583,7 @@ export interface GetActiveNamesRequest {
7583
7583
  * page token in a subsequent request.</p>
7584
7584
  * @public
7585
7585
  */
7586
- pageToken?: string;
7586
+ pageToken?: string | undefined;
7587
7587
  }
7588
7588
  /**
7589
7589
  * @public
@@ -7593,7 +7593,7 @@ export interface GetActiveNamesResult {
7593
7593
  * <p>The list of active names returned by the get active names request.</p>
7594
7594
  * @public
7595
7595
  */
7596
- activeNames?: string[];
7596
+ activeNames?: string[] | undefined;
7597
7597
  /**
7598
7598
  * <p>The token to advance to the next page of results from your request.</p>
7599
7599
  * <p>A next page token is not returned if there are no more results to display.</p>
@@ -7601,7 +7601,7 @@ export interface GetActiveNamesResult {
7601
7601
  * specify the next page token using the <code>pageToken</code> parameter.</p>
7602
7602
  * @public
7603
7603
  */
7604
- nextPageToken?: string;
7604
+ nextPageToken?: string | undefined;
7605
7605
  }
7606
7606
  /**
7607
7607
  * @public
@@ -7612,7 +7612,7 @@ export interface GetAlarmsRequest {
7612
7612
  * <p>Specify an alarm name to return information about a specific alarm.</p>
7613
7613
  * @public
7614
7614
  */
7615
- alarmName?: string;
7615
+ alarmName?: string | undefined;
7616
7616
  /**
7617
7617
  * <p>The token to advance to the next page of results from your request.</p>
7618
7618
  * <p>To get a page token, perform an initial <code>GetAlarms</code> request. If your results
@@ -7620,14 +7620,14 @@ export interface GetAlarmsRequest {
7620
7620
  * token in a subsequent request.</p>
7621
7621
  * @public
7622
7622
  */
7623
- pageToken?: string;
7623
+ pageToken?: string | undefined;
7624
7624
  /**
7625
7625
  * <p>The name of the Lightsail resource being monitored by the alarm.</p>
7626
7626
  * <p>Specify a monitored resource name to return information about all alarms for a specific
7627
7627
  * resource.</p>
7628
7628
  * @public
7629
7629
  */
7630
- monitoredResourceName?: string;
7630
+ monitoredResourceName?: string | undefined;
7631
7631
  }
7632
7632
  /**
7633
7633
  * @public
@@ -7637,7 +7637,7 @@ export interface GetAlarmsResult {
7637
7637
  * <p>An array of objects that describe the alarms.</p>
7638
7638
  * @public
7639
7639
  */
7640
- alarms?: Alarm[];
7640
+ alarms?: Alarm[] | undefined;
7641
7641
  /**
7642
7642
  * <p>The token to advance to the next page of results from your request.</p>
7643
7643
  * <p>A next page token is not returned if there are no more results to display.</p>
@@ -7645,7 +7645,7 @@ export interface GetAlarmsResult {
7645
7645
  * specify the next page token using the <code>pageToken</code> parameter.</p>
7646
7646
  * @public
7647
7647
  */
7648
- nextPageToken?: string;
7648
+ nextPageToken?: string | undefined;
7649
7649
  }
7650
7650
  /**
7651
7651
  * @public
@@ -7666,19 +7666,19 @@ export interface GetAutoSnapshotsResult {
7666
7666
  * <p>The name of the source instance or disk for the automatic snapshots.</p>
7667
7667
  * @public
7668
7668
  */
7669
- resourceName?: string;
7669
+ resourceName?: string | undefined;
7670
7670
  /**
7671
7671
  * <p>The resource type of the automatic snapshot. The possible values are
7672
7672
  * <code>Instance</code>, and <code>Disk</code>.</p>
7673
7673
  * @public
7674
7674
  */
7675
- resourceType?: ResourceType;
7675
+ resourceType?: ResourceType | undefined;
7676
7676
  /**
7677
7677
  * <p>An array of objects that describe the automatic snapshots that are available for the
7678
7678
  * specified source instance or disk.</p>
7679
7679
  * @public
7680
7680
  */
7681
- autoSnapshots?: AutoSnapshotDetails[];
7681
+ autoSnapshots?: AutoSnapshotDetails[] | undefined;
7682
7682
  }
7683
7683
  /**
7684
7684
  * @public
@@ -7689,7 +7689,7 @@ export interface GetBlueprintsRequest {
7689
7689
  * response of your request.</p>
7690
7690
  * @public
7691
7691
  */
7692
- includeInactive?: boolean;
7692
+ includeInactive?: boolean | undefined;
7693
7693
  /**
7694
7694
  * <p>The token to advance to the next page of results from your request.</p>
7695
7695
  * <p>To get a page token, perform an initial <code>GetBlueprints</code> request. If your
@@ -7697,7 +7697,7 @@ export interface GetBlueprintsRequest {
7697
7697
  * page token in a subsequent request.</p>
7698
7698
  * @public
7699
7699
  */
7700
- pageToken?: string;
7700
+ pageToken?: string | undefined;
7701
7701
  /**
7702
7702
  * <p>Returns a list of blueprints that are specific to Lightsail for Research.</p>
7703
7703
  * <important>
@@ -7705,7 +7705,7 @@ export interface GetBlueprintsRequest {
7705
7705
  * </important>
7706
7706
  * @public
7707
7707
  */
7708
- appCategory?: AppCategory;
7708
+ appCategory?: AppCategory | undefined;
7709
7709
  }
7710
7710
  /**
7711
7711
  * @public
@@ -7716,7 +7716,7 @@ export interface GetBlueprintsResult {
7716
7716
  * blueprints.</p>
7717
7717
  * @public
7718
7718
  */
7719
- blueprints?: Blueprint[];
7719
+ blueprints?: Blueprint[] | undefined;
7720
7720
  /**
7721
7721
  * <p>The token to advance to the next page of results from your request.</p>
7722
7722
  * <p>A next page token is not returned if there are no more results to display.</p>
@@ -7724,7 +7724,7 @@ export interface GetBlueprintsResult {
7724
7724
  * specify the next page token using the <code>pageToken</code> parameter.</p>
7725
7725
  * @public
7726
7726
  */
7727
- nextPageToken?: string;
7727
+ nextPageToken?: string | undefined;
7728
7728
  }
7729
7729
  /**
7730
7730
  * @public
@@ -7744,7 +7744,7 @@ export interface GetBucketAccessKeysResult {
7744
7744
  * <p>An object that describes the access keys for the specified bucket.</p>
7745
7745
  * @public
7746
7746
  */
7747
- accessKeys?: AccessKey[];
7747
+ accessKeys?: AccessKey[] | undefined;
7748
7748
  }
7749
7749
  /**
7750
7750
  * @public
@@ -7755,7 +7755,7 @@ export interface GetBucketBundlesRequest {
7755
7755
  * response of your request.</p>
7756
7756
  * @public
7757
7757
  */
7758
- includeInactive?: boolean;
7758
+ includeInactive?: boolean | undefined;
7759
7759
  }
7760
7760
  /**
7761
7761
  * @public
@@ -7765,7 +7765,7 @@ export interface GetBucketBundlesResult {
7765
7765
  * <p>An object that describes bucket bundles.</p>
7766
7766
  * @public
7767
7767
  */
7768
- bundles?: BucketBundle[];
7768
+ bundles?: BucketBundle[] | undefined;
7769
7769
  }
7770
7770
  /**
7771
7771
  * @public
@@ -7882,37 +7882,37 @@ export interface MetricDatapoint {
7882
7882
  * <p>The average.</p>
7883
7883
  * @public
7884
7884
  */
7885
- average?: number;
7885
+ average?: number | undefined;
7886
7886
  /**
7887
7887
  * <p>The maximum.</p>
7888
7888
  * @public
7889
7889
  */
7890
- maximum?: number;
7890
+ maximum?: number | undefined;
7891
7891
  /**
7892
7892
  * <p>The minimum.</p>
7893
7893
  * @public
7894
7894
  */
7895
- minimum?: number;
7895
+ minimum?: number | undefined;
7896
7896
  /**
7897
7897
  * <p>The sample count.</p>
7898
7898
  * @public
7899
7899
  */
7900
- sampleCount?: number;
7900
+ sampleCount?: number | undefined;
7901
7901
  /**
7902
7902
  * <p>The sum.</p>
7903
7903
  * @public
7904
7904
  */
7905
- sum?: number;
7905
+ sum?: number | undefined;
7906
7906
  /**
7907
7907
  * <p>The timestamp (<code>1479816991.349</code>).</p>
7908
7908
  * @public
7909
7909
  */
7910
- timestamp?: Date;
7910
+ timestamp?: Date | undefined;
7911
7911
  /**
7912
7912
  * <p>The unit. </p>
7913
7913
  * @public
7914
7914
  */
7915
- unit?: MetricUnit;
7915
+ unit?: MetricUnit | undefined;
7916
7916
  }
7917
7917
  /**
7918
7918
  * @public
@@ -7922,12 +7922,12 @@ export interface GetBucketMetricDataResult {
7922
7922
  * <p>The name of the metric returned.</p>
7923
7923
  * @public
7924
7924
  */
7925
- metricName?: BucketMetricName;
7925
+ metricName?: BucketMetricName | undefined;
7926
7926
  /**
7927
7927
  * <p>An array of objects that describe the metric data returned.</p>
7928
7928
  * @public
7929
7929
  */
7930
- metricData?: MetricDatapoint[];
7930
+ metricData?: MetricDatapoint[] | undefined;
7931
7931
  }
7932
7932
  /**
7933
7933
  * @public
@@ -7939,7 +7939,7 @@ export interface GetBucketsRequest {
7939
7939
  * where the request is made.</p>
7940
7940
  * @public
7941
7941
  */
7942
- bucketName?: string;
7942
+ bucketName?: string | undefined;
7943
7943
  /**
7944
7944
  * <p>The token to advance to the next page of results from your request.</p>
7945
7945
  * <p>To get a page token, perform an initial <code>GetBuckets</code> request. If your results
@@ -7947,14 +7947,14 @@ export interface GetBucketsRequest {
7947
7947
  * token in a subsequent request.</p>
7948
7948
  * @public
7949
7949
  */
7950
- pageToken?: string;
7950
+ pageToken?: string | undefined;
7951
7951
  /**
7952
7952
  * <p>A Boolean value that indicates whether to include Lightsail instances that were given
7953
7953
  * access to the bucket using the <a href="https://docs.aws.amazon.com/lightsail/2016-11-28/api-reference/API_SetResourceAccessForBucket.html">SetResourceAccessForBucket</a>
7954
7954
  * action.</p>
7955
7955
  * @public
7956
7956
  */
7957
- includeConnectedResources?: boolean;
7957
+ includeConnectedResources?: boolean | undefined;
7958
7958
  }
7959
7959
  /**
7960
7960
  * @public
@@ -7964,7 +7964,7 @@ export interface GetBucketsResult {
7964
7964
  * <p>An array of objects that describe buckets.</p>
7965
7965
  * @public
7966
7966
  */
7967
- buckets?: Bucket[];
7967
+ buckets?: Bucket[] | undefined;
7968
7968
  /**
7969
7969
  * <p>The token to advance to the next page of results from your request.</p>
7970
7970
  * <p>A next page token is not returned if there are no more results to display.</p>
@@ -7972,14 +7972,14 @@ export interface GetBucketsResult {
7972
7972
  * specify the next page token using the <code>pageToken</code> parameter.</p>
7973
7973
  * @public
7974
7974
  */
7975
- nextPageToken?: string;
7975
+ nextPageToken?: string | undefined;
7976
7976
  /**
7977
7977
  * <p>An object that describes the synchronization status of the Amazon S3 account-level
7978
7978
  * block public access feature for your Lightsail buckets.</p>
7979
7979
  * <p>For more information about this feature and how it affects Lightsail buckets, see <a href="https://lightsail.aws.amazon.com/ls/docs/en_us/articles/amazon-lightsail-block-public-access-for-buckets">Block public access for buckets in Amazon Lightsail</a>.</p>
7980
7980
  * @public
7981
7981
  */
7982
- accountLevelBpaSync?: AccountLevelBpaSync;
7982
+ accountLevelBpaSync?: AccountLevelBpaSync | undefined;
7983
7983
  }
7984
7984
  /**
7985
7985
  * @public
@@ -7990,7 +7990,7 @@ export interface GetBundlesRequest {
7990
7990
  * response of your request.</p>
7991
7991
  * @public
7992
7992
  */
7993
- includeInactive?: boolean;
7993
+ includeInactive?: boolean | undefined;
7994
7994
  /**
7995
7995
  * <p>The token to advance to the next page of results from your request.</p>
7996
7996
  * <p>To get a page token, perform an initial <code>GetBundles</code> request. If your results
@@ -7998,7 +7998,7 @@ export interface GetBundlesRequest {
7998
7998
  * token in a subsequent request.</p>
7999
7999
  * @public
8000
8000
  */
8001
- pageToken?: string;
8001
+ pageToken?: string | undefined;
8002
8002
  /**
8003
8003
  * <p>Returns a list of bundles that are specific to Lightsail for Research.</p>
8004
8004
  * <important>
@@ -8006,7 +8006,7 @@ export interface GetBundlesRequest {
8006
8006
  * </important>
8007
8007
  * @public
8008
8008
  */
8009
- appCategory?: AppCategory;
8009
+ appCategory?: AppCategory | undefined;
8010
8010
  }
8011
8011
  /**
8012
8012
  * @public
@@ -8016,7 +8016,7 @@ export interface GetBundlesResult {
8016
8016
  * <p>An array of key-value pairs that contains information about the available bundles.</p>
8017
8017
  * @public
8018
8018
  */
8019
- bundles?: Bundle[];
8019
+ bundles?: Bundle[] | undefined;
8020
8020
  /**
8021
8021
  * <p>The token to advance to the next page of results from your request.</p>
8022
8022
  * <p>A next page token is not returned if there are no more results to display.</p>
@@ -8024,7 +8024,7 @@ export interface GetBundlesResult {
8024
8024
  * specify the next page token using the <code>pageToken</code> parameter.</p>
8025
8025
  * @public
8026
8026
  */
8027
- nextPageToken?: string;
8027
+ nextPageToken?: string | undefined;
8028
8028
  }
8029
8029
  /**
8030
8030
  * @public
@@ -8038,7 +8038,7 @@ export interface GetCertificatesRequest {
8038
8038
  * Region where the request is made, regardless of their current status.</p>
8039
8039
  * @public
8040
8040
  */
8041
- certificateStatuses?: CertificateStatus[];
8041
+ certificateStatuses?: CertificateStatus[] | undefined;
8042
8042
  /**
8043
8043
  * <p>Indicates whether to include detailed information about the certificates in the
8044
8044
  * response.</p>
@@ -8046,14 +8046,14 @@ export interface GetCertificatesRequest {
8046
8046
  * (ARNs), domain names, and tags.</p>
8047
8047
  * @public
8048
8048
  */
8049
- includeCertificateDetails?: boolean;
8049
+ includeCertificateDetails?: boolean | undefined;
8050
8050
  /**
8051
8051
  * <p>The name for the certificate for which to return information.</p>
8052
8052
  * <p>When omitted, the response includes all of your certificates in the Amazon Web Services
8053
8053
  * Region where the request is made.</p>
8054
8054
  * @public
8055
8055
  */
8056
- certificateName?: string;
8056
+ certificateName?: string | undefined;
8057
8057
  /**
8058
8058
  * <p>The token to advance to the next page of results from your request.</p>
8059
8059
  * <p>To get a page token, perform an initial <code>GetCertificates</code> request. If your
@@ -8061,7 +8061,7 @@ export interface GetCertificatesRequest {
8061
8061
  * page token in a subsequent request.</p>
8062
8062
  * @public
8063
8063
  */
8064
- pageToken?: string;
8064
+ pageToken?: string | undefined;
8065
8065
  }
8066
8066
  /**
8067
8067
  * @public
@@ -8071,14 +8071,14 @@ export interface GetCertificatesResult {
8071
8071
  * <p>An object that describes certificates.</p>
8072
8072
  * @public
8073
8073
  */
8074
- certificates?: CertificateSummary[];
8074
+ certificates?: CertificateSummary[] | undefined;
8075
8075
  /**
8076
8076
  * <p>If <code>NextPageToken</code> is returned there are more results available. The value of
8077
8077
  * <code>NextPageToken</code> is a unique pagination token for each page. Make the call again
8078
8078
  * using the returned token to retrieve the next page. Keep all other arguments unchanged.</p>
8079
8079
  * @public
8080
8080
  */
8081
- nextPageToken?: string;
8081
+ nextPageToken?: string | undefined;
8082
8082
  }
8083
8083
  /**
8084
8084
  * @public
@@ -8091,7 +8091,7 @@ export interface GetCloudFormationStackRecordsRequest {
8091
8091
  * as the page token in a subsequent request.</p>
8092
8092
  * @public
8093
8093
  */
8094
- pageToken?: string;
8094
+ pageToken?: string | undefined;
8095
8095
  }
8096
8096
  /**
8097
8097
  * @public
@@ -8101,7 +8101,7 @@ export interface GetCloudFormationStackRecordsResult {
8101
8101
  * <p>A list of objects describing the CloudFormation stack records.</p>
8102
8102
  * @public
8103
8103
  */
8104
- cloudFormationStackRecords?: CloudFormationStackRecord[];
8104
+ cloudFormationStackRecords?: CloudFormationStackRecord[] | undefined;
8105
8105
  /**
8106
8106
  * <p>The token to advance to the next page of results from your request.</p>
8107
8107
  * <p>A next page token is not returned if there are no more results to display.</p>
@@ -8110,7 +8110,7 @@ export interface GetCloudFormationStackRecordsResult {
8110
8110
  * <code>pageToken</code> parameter.</p>
8111
8111
  * @public
8112
8112
  */
8113
- nextPageToken?: string;
8113
+ nextPageToken?: string | undefined;
8114
8114
  }
8115
8115
  /**
8116
8116
  * @public
@@ -8123,7 +8123,7 @@ export interface GetContactMethodsRequest {
8123
8123
  * protocol.</p>
8124
8124
  * @public
8125
8125
  */
8126
- protocols?: ContactProtocol[];
8126
+ protocols?: ContactProtocol[] | undefined;
8127
8127
  }
8128
8128
  /**
8129
8129
  * @public
@@ -8133,7 +8133,7 @@ export interface GetContactMethodsResult {
8133
8133
  * <p>An array of objects that describe the contact methods.</p>
8134
8134
  * @public
8135
8135
  */
8136
- contactMethods?: ContactMethod[];
8136
+ contactMethods?: ContactMethod[] | undefined;
8137
8137
  }
8138
8138
  /**
8139
8139
  * @public
@@ -8149,7 +8149,7 @@ export interface GetContainerAPIMetadataResult {
8149
8149
  * Control (lightsailctl) plugin.</p>
8150
8150
  * @public
8151
8151
  */
8152
- metadata?: Record<string, string>[];
8152
+ metadata?: Record<string, string>[] | undefined;
8153
8153
  }
8154
8154
  /**
8155
8155
  * @public
@@ -8170,7 +8170,7 @@ export interface GetContainerImagesResult {
8170
8170
  * service.</p>
8171
8171
  * @public
8172
8172
  */
8173
- containerImages?: ContainerImage[];
8173
+ containerImages?: ContainerImage[] | undefined;
8174
8174
  }
8175
8175
  /**
8176
8176
  * @public
@@ -8203,7 +8203,7 @@ export interface GetContainerLogRequest {
8203
8203
  * <p>You can convert a human-friendly time to Unix time format using a converter like <a href="https://www.epochconverter.com/">Epoch converter</a>.</p>
8204
8204
  * @public
8205
8205
  */
8206
- startTime?: Date;
8206
+ startTime?: Date | undefined;
8207
8207
  /**
8208
8208
  * <p>The end of the time interval for which to get log data.</p>
8209
8209
  * <p>Constraints:</p>
@@ -8220,7 +8220,7 @@ export interface GetContainerLogRequest {
8220
8220
  * <p>You can convert a human-friendly time to Unix time format using a converter like <a href="https://www.epochconverter.com/">Epoch converter</a>.</p>
8221
8221
  * @public
8222
8222
  */
8223
- endTime?: Date;
8223
+ endTime?: Date | undefined;
8224
8224
  /**
8225
8225
  * <p>The pattern to use to filter the returned log events to a specific term.</p>
8226
8226
  * <p>The following are a few examples of filter patterns that you can specify:</p>
@@ -8249,7 +8249,7 @@ export interface GetContainerLogRequest {
8249
8249
  * </ul>
8250
8250
  * @public
8251
8251
  */
8252
- filterPattern?: string;
8252
+ filterPattern?: string | undefined;
8253
8253
  /**
8254
8254
  * <p>The token to advance to the next page of results from your request.</p>
8255
8255
  * <p>To get a page token, perform an initial <code>GetContainerLog</code> request. If your
@@ -8257,7 +8257,7 @@ export interface GetContainerLogRequest {
8257
8257
  * page token in a subsequent request.</p>
8258
8258
  * @public
8259
8259
  */
8260
- pageToken?: string;
8260
+ pageToken?: string | undefined;
8261
8261
  }
8262
8262
  /**
8263
8263
  * @public
@@ -8267,7 +8267,7 @@ export interface GetContainerLogResult {
8267
8267
  * <p>An array of objects that describe the log events of a container.</p>
8268
8268
  * @public
8269
8269
  */
8270
- logEvents?: ContainerServiceLogEvent[];
8270
+ logEvents?: ContainerServiceLogEvent[] | undefined;
8271
8271
  /**
8272
8272
  * <p>The token to advance to the next page of results from your request.</p>
8273
8273
  * <p>A next page token is not returned if there are no more results to display.</p>
@@ -8275,7 +8275,7 @@ export interface GetContainerLogResult {
8275
8275
  * specify the next page token using the <code>pageToken</code> parameter.</p>
8276
8276
  * @public
8277
8277
  */
8278
- nextPageToken?: string;
8278
+ nextPageToken?: string | undefined;
8279
8279
  }
8280
8280
  /**
8281
8281
  * @public
@@ -8295,7 +8295,7 @@ export interface GetContainerServiceDeploymentsResult {
8295
8295
  * <p>An array of objects that describe deployments for a container service.</p>
8296
8296
  * @public
8297
8297
  */
8298
- deployments?: ContainerServiceDeployment[];
8298
+ deployments?: ContainerServiceDeployment[] | undefined;
8299
8299
  }
8300
8300
  /**
8301
8301
  * @public
@@ -8395,12 +8395,12 @@ export interface GetContainerServiceMetricDataResult {
8395
8395
  * <p>The name of the metric returned. </p>
8396
8396
  * @public
8397
8397
  */
8398
- metricName?: ContainerServiceMetricName;
8398
+ metricName?: ContainerServiceMetricName | undefined;
8399
8399
  /**
8400
8400
  * <p>An array of objects that describe the metric data returned.</p>
8401
8401
  * @public
8402
8402
  */
8403
- metricData?: MetricDatapoint[];
8403
+ metricData?: MetricDatapoint[] | undefined;
8404
8404
  }
8405
8405
  /**
8406
8406
  * @public