@aws-sdk/client-securityhub 3.687.0 → 3.692.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,15 +8,15 @@ export interface AcceptAdministratorInvitationResponse {}
8
8
  export declare class InternalException extends __BaseException {
9
9
  readonly name: "InternalException";
10
10
  readonly $fault: "server";
11
- Message?: string;
12
- Code?: string;
11
+ Message?: string | undefined;
12
+ Code?: string | undefined;
13
13
  constructor(opts: __ExceptionOptionType<InternalException, __BaseException>);
14
14
  }
15
15
  export declare class InvalidAccessException extends __BaseException {
16
16
  readonly name: "InvalidAccessException";
17
17
  readonly $fault: "client";
18
- Message?: string;
19
- Code?: string;
18
+ Message?: string | undefined;
19
+ Code?: string | undefined;
20
20
  constructor(
21
21
  opts: __ExceptionOptionType<InvalidAccessException, __BaseException>
22
22
  );
@@ -24,8 +24,8 @@ export declare class InvalidAccessException extends __BaseException {
24
24
  export declare class InvalidInputException extends __BaseException {
25
25
  readonly name: "InvalidInputException";
26
26
  readonly $fault: "client";
27
- Message?: string;
28
- Code?: string;
27
+ Message?: string | undefined;
28
+ Code?: string | undefined;
29
29
  constructor(
30
30
  opts: __ExceptionOptionType<InvalidInputException, __BaseException>
31
31
  );
@@ -33,8 +33,8 @@ export declare class InvalidInputException extends __BaseException {
33
33
  export declare class LimitExceededException extends __BaseException {
34
34
  readonly name: "LimitExceededException";
35
35
  readonly $fault: "client";
36
- Message?: string;
37
- Code?: string;
36
+ Message?: string | undefined;
37
+ Code?: string | undefined;
38
38
  constructor(
39
39
  opts: __ExceptionOptionType<LimitExceededException, __BaseException>
40
40
  );
@@ -42,8 +42,8 @@ export declare class LimitExceededException extends __BaseException {
42
42
  export declare class ResourceNotFoundException extends __BaseException {
43
43
  readonly name: "ResourceNotFoundException";
44
44
  readonly $fault: "client";
45
- Message?: string;
46
- Code?: string;
45
+ Message?: string | undefined;
46
+ Code?: string | undefined;
47
47
  constructor(
48
48
  opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>
49
49
  );
@@ -56,92 +56,92 @@ export interface AcceptInvitationResponse {}
56
56
  export declare class AccessDeniedException extends __BaseException {
57
57
  readonly name: "AccessDeniedException";
58
58
  readonly $fault: "client";
59
- Message?: string;
60
- Code?: string;
59
+ Message?: string | undefined;
60
+ Code?: string | undefined;
61
61
  constructor(
62
62
  opts: __ExceptionOptionType<AccessDeniedException, __BaseException>
63
63
  );
64
64
  }
65
65
  export interface AccountDetails {
66
66
  AccountId: string | undefined;
67
- Email?: string;
67
+ Email?: string | undefined;
68
68
  }
69
69
  export interface AwsApiCallActionDomainDetails {
70
- Domain?: string;
70
+ Domain?: string | undefined;
71
71
  }
72
72
  export interface City {
73
- CityName?: string;
73
+ CityName?: string | undefined;
74
74
  }
75
75
  export interface Country {
76
- CountryCode?: string;
77
- CountryName?: string;
76
+ CountryCode?: string | undefined;
77
+ CountryName?: string | undefined;
78
78
  }
79
79
  export interface GeoLocation {
80
- Lon?: number;
81
- Lat?: number;
80
+ Lon?: number | undefined;
81
+ Lat?: number | undefined;
82
82
  }
83
83
  export interface IpOrganizationDetails {
84
- Asn?: number;
85
- AsnOrg?: string;
86
- Isp?: string;
87
- Org?: string;
84
+ Asn?: number | undefined;
85
+ AsnOrg?: string | undefined;
86
+ Isp?: string | undefined;
87
+ Org?: string | undefined;
88
88
  }
89
89
  export interface ActionRemoteIpDetails {
90
- IpAddressV4?: string;
91
- Organization?: IpOrganizationDetails;
92
- Country?: Country;
93
- City?: City;
94
- GeoLocation?: GeoLocation;
90
+ IpAddressV4?: string | undefined;
91
+ Organization?: IpOrganizationDetails | undefined;
92
+ Country?: Country | undefined;
93
+ City?: City | undefined;
94
+ GeoLocation?: GeoLocation | undefined;
95
95
  }
96
96
  export interface AwsApiCallAction {
97
- Api?: string;
98
- ServiceName?: string;
99
- CallerType?: string;
100
- RemoteIpDetails?: ActionRemoteIpDetails;
101
- DomainDetails?: AwsApiCallActionDomainDetails;
102
- AffectedResources?: Record<string, string>;
103
- FirstSeen?: string;
104
- LastSeen?: string;
97
+ Api?: string | undefined;
98
+ ServiceName?: string | undefined;
99
+ CallerType?: string | undefined;
100
+ RemoteIpDetails?: ActionRemoteIpDetails | undefined;
101
+ DomainDetails?: AwsApiCallActionDomainDetails | undefined;
102
+ AffectedResources?: Record<string, string> | undefined;
103
+ FirstSeen?: string | undefined;
104
+ LastSeen?: string | undefined;
105
105
  }
106
106
  export interface DnsRequestAction {
107
- Domain?: string;
108
- Protocol?: string;
109
- Blocked?: boolean;
107
+ Domain?: string | undefined;
108
+ Protocol?: string | undefined;
109
+ Blocked?: boolean | undefined;
110
110
  }
111
111
  export interface ActionLocalPortDetails {
112
- Port?: number;
113
- PortName?: string;
112
+ Port?: number | undefined;
113
+ PortName?: string | undefined;
114
114
  }
115
115
  export interface ActionRemotePortDetails {
116
- Port?: number;
117
- PortName?: string;
116
+ Port?: number | undefined;
117
+ PortName?: string | undefined;
118
118
  }
119
119
  export interface NetworkConnectionAction {
120
- ConnectionDirection?: string;
121
- RemoteIpDetails?: ActionRemoteIpDetails;
122
- RemotePortDetails?: ActionRemotePortDetails;
123
- LocalPortDetails?: ActionLocalPortDetails;
124
- Protocol?: string;
125
- Blocked?: boolean;
120
+ ConnectionDirection?: string | undefined;
121
+ RemoteIpDetails?: ActionRemoteIpDetails | undefined;
122
+ RemotePortDetails?: ActionRemotePortDetails | undefined;
123
+ LocalPortDetails?: ActionLocalPortDetails | undefined;
124
+ Protocol?: string | undefined;
125
+ Blocked?: boolean | undefined;
126
126
  }
127
127
  export interface ActionLocalIpDetails {
128
- IpAddressV4?: string;
128
+ IpAddressV4?: string | undefined;
129
129
  }
130
130
  export interface PortProbeDetail {
131
- LocalPortDetails?: ActionLocalPortDetails;
132
- LocalIpDetails?: ActionLocalIpDetails;
133
- RemoteIpDetails?: ActionRemoteIpDetails;
131
+ LocalPortDetails?: ActionLocalPortDetails | undefined;
132
+ LocalIpDetails?: ActionLocalIpDetails | undefined;
133
+ RemoteIpDetails?: ActionRemoteIpDetails | undefined;
134
134
  }
135
135
  export interface PortProbeAction {
136
- PortProbeDetails?: PortProbeDetail[];
137
- Blocked?: boolean;
136
+ PortProbeDetails?: PortProbeDetail[] | undefined;
137
+ Blocked?: boolean | undefined;
138
138
  }
139
139
  export interface Action {
140
- ActionType?: string;
141
- NetworkConnectionAction?: NetworkConnectionAction;
142
- AwsApiCallAction?: AwsApiCallAction;
143
- DnsRequestAction?: DnsRequestAction;
144
- PortProbeAction?: PortProbeAction;
140
+ ActionType?: string | undefined;
141
+ NetworkConnectionAction?: NetworkConnectionAction | undefined;
142
+ AwsApiCallAction?: AwsApiCallAction | undefined;
143
+ DnsRequestAction?: DnsRequestAction | undefined;
144
+ PortProbeAction?: PortProbeAction | undefined;
145
145
  }
146
146
  export interface NoteUpdate {
147
147
  Text: string | undefined;
@@ -160,9 +160,9 @@ export declare const SeverityLabel: {
160
160
  };
161
161
  export type SeverityLabel = (typeof SeverityLabel)[keyof typeof SeverityLabel];
162
162
  export interface SeverityUpdate {
163
- Normalized?: number;
164
- Product?: number;
165
- Label?: SeverityLabel;
163
+ Normalized?: number | undefined;
164
+ Product?: number | undefined;
165
+ Label?: SeverityLabel | undefined;
166
166
  }
167
167
  export declare const VerificationState: {
168
168
  readonly BENIGN_POSITIVE: "BENIGN_POSITIVE";
@@ -181,18 +181,18 @@ export declare const WorkflowStatus: {
181
181
  export type WorkflowStatus =
182
182
  (typeof WorkflowStatus)[keyof typeof WorkflowStatus];
183
183
  export interface WorkflowUpdate {
184
- Status?: WorkflowStatus;
184
+ Status?: WorkflowStatus | undefined;
185
185
  }
186
186
  export interface AutomationRulesFindingFieldsUpdate {
187
- Note?: NoteUpdate;
188
- Severity?: SeverityUpdate;
189
- VerificationState?: VerificationState;
190
- Confidence?: number;
191
- Criticality?: number;
192
- Types?: string[];
193
- UserDefinedFields?: Record<string, string>;
194
- Workflow?: WorkflowUpdate;
195
- RelatedFindings?: RelatedFinding[];
187
+ Note?: NoteUpdate | undefined;
188
+ Severity?: SeverityUpdate | undefined;
189
+ VerificationState?: VerificationState | undefined;
190
+ Confidence?: number | undefined;
191
+ Criticality?: number | undefined;
192
+ Types?: string[] | undefined;
193
+ UserDefinedFields?: Record<string, string> | undefined;
194
+ Workflow?: WorkflowUpdate | undefined;
195
+ RelatedFindings?: RelatedFinding[] | undefined;
196
196
  }
197
197
  export declare const AutomationRulesActionType: {
198
198
  readonly FINDING_FIELDS_UPDATE: "FINDING_FIELDS_UPDATE";
@@ -200,8 +200,8 @@ export declare const AutomationRulesActionType: {
200
200
  export type AutomationRulesActionType =
201
201
  (typeof AutomationRulesActionType)[keyof typeof AutomationRulesActionType];
202
202
  export interface AutomationRulesAction {
203
- Type?: AutomationRulesActionType;
204
- FindingFieldsUpdate?: AutomationRulesFindingFieldsUpdate;
203
+ Type?: AutomationRulesActionType | undefined;
204
+ FindingFieldsUpdate?: AutomationRulesFindingFieldsUpdate | undefined;
205
205
  }
206
206
  export interface ActionTarget {
207
207
  ActionTargetArn: string | undefined;
@@ -209,8 +209,8 @@ export interface ActionTarget {
209
209
  Description: string | undefined;
210
210
  }
211
211
  export interface Adjustment {
212
- Metric?: string;
213
- Reason?: string;
212
+ Metric?: string | undefined;
213
+ Reason?: string | undefined;
214
214
  }
215
215
  export declare const AdminStatus: {
216
216
  readonly DISABLE_IN_PROGRESS: "DISABLE_IN_PROGRESS";
@@ -218,11 +218,11 @@ export declare const AdminStatus: {
218
218
  };
219
219
  export type AdminStatus = (typeof AdminStatus)[keyof typeof AdminStatus];
220
220
  export interface AdminAccount {
221
- AccountId?: string;
222
- Status?: AdminStatus;
221
+ AccountId?: string | undefined;
222
+ Status?: AdminStatus | undefined;
223
223
  }
224
224
  export interface AssociatedStandard {
225
- StandardsId?: string;
225
+ StandardsId?: string | undefined;
226
226
  }
227
227
  export declare const ConfigurationPolicyAssociationStatus: {
228
228
  readonly FAILED: "FAILED";
@@ -238,21 +238,21 @@ export declare const AssociationType: {
238
238
  export type AssociationType =
239
239
  (typeof AssociationType)[keyof typeof AssociationType];
240
240
  export interface AssociationFilters {
241
- ConfigurationPolicyId?: string;
242
- AssociationType?: AssociationType;
243
- AssociationStatus?: ConfigurationPolicyAssociationStatus;
241
+ ConfigurationPolicyId?: string | undefined;
242
+ AssociationType?: AssociationType | undefined;
243
+ AssociationStatus?: ConfigurationPolicyAssociationStatus | undefined;
244
244
  }
245
245
  export interface AssociationStateDetails {
246
- State?: string;
247
- StatusMessage?: string;
246
+ State?: string | undefined;
247
+ StatusMessage?: string | undefined;
248
248
  }
249
249
  export interface AssociationSetDetails {
250
- AssociationState?: AssociationStateDetails;
251
- GatewayId?: string;
252
- Main?: boolean;
253
- RouteTableAssociationId?: string;
254
- RouteTableId?: string;
255
- SubnetId?: string;
250
+ AssociationState?: AssociationStateDetails | undefined;
251
+ GatewayId?: string | undefined;
252
+ Main?: boolean | undefined;
253
+ RouteTableAssociationId?: string | undefined;
254
+ RouteTableId?: string | undefined;
255
+ SubnetId?: string | undefined;
256
256
  }
257
257
  export declare const AssociationStatus: {
258
258
  readonly DISABLED: "DISABLED";
@@ -277,28 +277,28 @@ export declare const StringFilterComparison: {
277
277
  export type StringFilterComparison =
278
278
  (typeof StringFilterComparison)[keyof typeof StringFilterComparison];
279
279
  export interface StringFilter {
280
- Value?: string;
281
- Comparison?: StringFilterComparison;
280
+ Value?: string | undefined;
281
+ Comparison?: StringFilterComparison | undefined;
282
282
  }
283
283
  export interface NumberFilter {
284
- Gte?: number;
285
- Lte?: number;
286
- Eq?: number;
287
- Gt?: number;
288
- Lt?: number;
284
+ Gte?: number | undefined;
285
+ Lte?: number | undefined;
286
+ Eq?: number | undefined;
287
+ Gt?: number | undefined;
288
+ Lt?: number | undefined;
289
289
  }
290
290
  export declare const DateRangeUnit: {
291
291
  readonly DAYS: "DAYS";
292
292
  };
293
293
  export type DateRangeUnit = (typeof DateRangeUnit)[keyof typeof DateRangeUnit];
294
294
  export interface DateRange {
295
- Value?: number;
296
- Unit?: DateRangeUnit;
295
+ Value?: number | undefined;
296
+ Unit?: DateRangeUnit | undefined;
297
297
  }
298
298
  export interface DateFilter {
299
- Start?: string;
300
- End?: string;
301
- DateRange?: DateRange;
299
+ Start?: string | undefined;
300
+ End?: string | undefined;
301
+ DateRange?: DateRange | undefined;
302
302
  }
303
303
  export declare const MapFilterComparison: {
304
304
  readonly CONTAINS: "CONTAINS";
@@ -309,49 +309,49 @@ export declare const MapFilterComparison: {
309
309
  export type MapFilterComparison =
310
310
  (typeof MapFilterComparison)[keyof typeof MapFilterComparison];
311
311
  export interface MapFilter {
312
- Key?: string;
313
- Value?: string;
314
- Comparison?: MapFilterComparison;
312
+ Key?: string | undefined;
313
+ Value?: string | undefined;
314
+ Comparison?: MapFilterComparison | undefined;
315
315
  }
316
316
  export interface AutomationRulesFindingFilters {
317
- ProductArn?: StringFilter[];
318
- AwsAccountId?: StringFilter[];
319
- Id?: StringFilter[];
320
- GeneratorId?: StringFilter[];
321
- Type?: StringFilter[];
322
- FirstObservedAt?: DateFilter[];
323
- LastObservedAt?: DateFilter[];
324
- CreatedAt?: DateFilter[];
325
- UpdatedAt?: DateFilter[];
326
- Confidence?: NumberFilter[];
327
- Criticality?: NumberFilter[];
328
- Title?: StringFilter[];
329
- Description?: StringFilter[];
330
- SourceUrl?: StringFilter[];
331
- ProductName?: StringFilter[];
332
- CompanyName?: StringFilter[];
333
- SeverityLabel?: StringFilter[];
334
- ResourceType?: StringFilter[];
335
- ResourceId?: StringFilter[];
336
- ResourcePartition?: StringFilter[];
337
- ResourceRegion?: StringFilter[];
338
- ResourceTags?: MapFilter[];
339
- ResourceDetailsOther?: MapFilter[];
340
- ComplianceStatus?: StringFilter[];
341
- ComplianceSecurityControlId?: StringFilter[];
342
- ComplianceAssociatedStandardsId?: StringFilter[];
343
- VerificationState?: StringFilter[];
344
- WorkflowStatus?: StringFilter[];
345
- RecordState?: StringFilter[];
346
- RelatedFindingsProductArn?: StringFilter[];
347
- RelatedFindingsId?: StringFilter[];
348
- NoteText?: StringFilter[];
349
- NoteUpdatedAt?: DateFilter[];
350
- NoteUpdatedBy?: StringFilter[];
351
- UserDefinedFields?: MapFilter[];
352
- ResourceApplicationArn?: StringFilter[];
353
- ResourceApplicationName?: StringFilter[];
354
- AwsAccountName?: StringFilter[];
317
+ ProductArn?: StringFilter[] | undefined;
318
+ AwsAccountId?: StringFilter[] | undefined;
319
+ Id?: StringFilter[] | undefined;
320
+ GeneratorId?: StringFilter[] | undefined;
321
+ Type?: StringFilter[] | undefined;
322
+ FirstObservedAt?: DateFilter[] | undefined;
323
+ LastObservedAt?: DateFilter[] | undefined;
324
+ CreatedAt?: DateFilter[] | undefined;
325
+ UpdatedAt?: DateFilter[] | undefined;
326
+ Confidence?: NumberFilter[] | undefined;
327
+ Criticality?: NumberFilter[] | undefined;
328
+ Title?: StringFilter[] | undefined;
329
+ Description?: StringFilter[] | undefined;
330
+ SourceUrl?: StringFilter[] | undefined;
331
+ ProductName?: StringFilter[] | undefined;
332
+ CompanyName?: StringFilter[] | undefined;
333
+ SeverityLabel?: StringFilter[] | undefined;
334
+ ResourceType?: StringFilter[] | undefined;
335
+ ResourceId?: StringFilter[] | undefined;
336
+ ResourcePartition?: StringFilter[] | undefined;
337
+ ResourceRegion?: StringFilter[] | undefined;
338
+ ResourceTags?: MapFilter[] | undefined;
339
+ ResourceDetailsOther?: MapFilter[] | undefined;
340
+ ComplianceStatus?: StringFilter[] | undefined;
341
+ ComplianceSecurityControlId?: StringFilter[] | undefined;
342
+ ComplianceAssociatedStandardsId?: StringFilter[] | undefined;
343
+ VerificationState?: StringFilter[] | undefined;
344
+ WorkflowStatus?: StringFilter[] | undefined;
345
+ RecordState?: StringFilter[] | undefined;
346
+ RelatedFindingsProductArn?: StringFilter[] | undefined;
347
+ RelatedFindingsId?: StringFilter[] | undefined;
348
+ NoteText?: StringFilter[] | undefined;
349
+ NoteUpdatedAt?: DateFilter[] | undefined;
350
+ NoteUpdatedBy?: StringFilter[] | undefined;
351
+ UserDefinedFields?: MapFilter[] | undefined;
352
+ ResourceApplicationArn?: StringFilter[] | undefined;
353
+ ResourceApplicationName?: StringFilter[] | undefined;
354
+ AwsAccountName?: StringFilter[] | undefined;
355
355
  }
356
356
  export declare const RuleStatus: {
357
357
  readonly DISABLED: "DISABLED";
@@ -359,1635 +359,1797 @@ export declare const RuleStatus: {
359
359
  };
360
360
  export type RuleStatus = (typeof RuleStatus)[keyof typeof RuleStatus];
361
361
  export interface AutomationRulesConfig {
362
- RuleArn?: string;
363
- RuleStatus?: RuleStatus;
364
- RuleOrder?: number;
365
- RuleName?: string;
366
- Description?: string;
367
- IsTerminal?: boolean;
368
- Criteria?: AutomationRulesFindingFilters;
369
- Actions?: AutomationRulesAction[];
370
- CreatedAt?: Date;
371
- UpdatedAt?: Date;
372
- CreatedBy?: string;
362
+ RuleArn?: string | undefined;
363
+ RuleStatus?: RuleStatus | undefined;
364
+ RuleOrder?: number | undefined;
365
+ RuleName?: string | undefined;
366
+ Description?: string | undefined;
367
+ IsTerminal?: boolean | undefined;
368
+ Criteria?: AutomationRulesFindingFilters | undefined;
369
+ Actions?: AutomationRulesAction[] | undefined;
370
+ CreatedAt?: Date | undefined;
371
+ UpdatedAt?: Date | undefined;
372
+ CreatedBy?: string | undefined;
373
373
  }
374
374
  export interface AutomationRulesMetadata {
375
- RuleArn?: string;
376
- RuleStatus?: RuleStatus;
377
- RuleOrder?: number;
378
- RuleName?: string;
379
- Description?: string;
380
- IsTerminal?: boolean;
381
- CreatedAt?: Date;
382
- UpdatedAt?: Date;
383
- CreatedBy?: string;
375
+ RuleArn?: string | undefined;
376
+ RuleStatus?: RuleStatus | undefined;
377
+ RuleOrder?: number | undefined;
378
+ RuleName?: string | undefined;
379
+ Description?: string | undefined;
380
+ IsTerminal?: boolean | undefined;
381
+ CreatedAt?: Date | undefined;
382
+ UpdatedAt?: Date | undefined;
383
+ CreatedBy?: string | undefined;
384
384
  }
385
385
  export interface AvailabilityZone {
386
- ZoneName?: string;
387
- SubnetId?: string;
386
+ ZoneName?: string | undefined;
387
+ SubnetId?: string | undefined;
388
388
  }
389
389
  export interface AwsAmazonMqBrokerEncryptionOptionsDetails {
390
- KmsKeyId?: string;
391
- UseAwsOwnedKey?: boolean;
390
+ KmsKeyId?: string | undefined;
391
+ UseAwsOwnedKey?: boolean | undefined;
392
392
  }
393
393
  export interface AwsAmazonMqBrokerLdapServerMetadataDetails {
394
- Hosts?: string[];
395
- RoleBase?: string;
396
- RoleName?: string;
397
- RoleSearchMatching?: string;
398
- RoleSearchSubtree?: boolean;
399
- ServiceAccountUsername?: string;
400
- UserBase?: string;
401
- UserRoleName?: string;
402
- UserSearchMatching?: string;
403
- UserSearchSubtree?: boolean;
394
+ Hosts?: string[] | undefined;
395
+ RoleBase?: string | undefined;
396
+ RoleName?: string | undefined;
397
+ RoleSearchMatching?: string | undefined;
398
+ RoleSearchSubtree?: boolean | undefined;
399
+ ServiceAccountUsername?: string | undefined;
400
+ UserBase?: string | undefined;
401
+ UserRoleName?: string | undefined;
402
+ UserSearchMatching?: string | undefined;
403
+ UserSearchSubtree?: boolean | undefined;
404
404
  }
405
405
  export interface AwsAmazonMqBrokerLogsPendingDetails {
406
- Audit?: boolean;
407
- General?: boolean;
406
+ Audit?: boolean | undefined;
407
+ General?: boolean | undefined;
408
408
  }
409
409
  export interface AwsAmazonMqBrokerLogsDetails {
410
- Audit?: boolean;
411
- General?: boolean;
412
- AuditLogGroup?: string;
413
- GeneralLogGroup?: string;
414
- Pending?: AwsAmazonMqBrokerLogsPendingDetails;
410
+ Audit?: boolean | undefined;
411
+ General?: boolean | undefined;
412
+ AuditLogGroup?: string | undefined;
413
+ GeneralLogGroup?: string | undefined;
414
+ Pending?: AwsAmazonMqBrokerLogsPendingDetails | undefined;
415
415
  }
416
416
  export interface AwsAmazonMqBrokerMaintenanceWindowStartTimeDetails {
417
- DayOfWeek?: string;
418
- TimeOfDay?: string;
419
- TimeZone?: string;
417
+ DayOfWeek?: string | undefined;
418
+ TimeOfDay?: string | undefined;
419
+ TimeZone?: string | undefined;
420
420
  }
421
421
  export interface AwsAmazonMqBrokerUsersDetails {
422
- PendingChange?: string;
423
- Username?: string;
422
+ PendingChange?: string | undefined;
423
+ Username?: string | undefined;
424
424
  }
425
425
  export interface AwsAmazonMqBrokerDetails {
426
- AuthenticationStrategy?: string;
427
- AutoMinorVersionUpgrade?: boolean;
428
- BrokerArn?: string;
429
- BrokerName?: string;
430
- DeploymentMode?: string;
431
- EncryptionOptions?: AwsAmazonMqBrokerEncryptionOptionsDetails;
432
- EngineType?: string;
433
- EngineVersion?: string;
434
- HostInstanceType?: string;
435
- BrokerId?: string;
436
- LdapServerMetadata?: AwsAmazonMqBrokerLdapServerMetadataDetails;
437
- Logs?: AwsAmazonMqBrokerLogsDetails;
438
- MaintenanceWindowStartTime?: AwsAmazonMqBrokerMaintenanceWindowStartTimeDetails;
439
- PubliclyAccessible?: boolean;
440
- SecurityGroups?: string[];
441
- StorageType?: string;
442
- SubnetIds?: string[];
443
- Users?: AwsAmazonMqBrokerUsersDetails[];
426
+ AuthenticationStrategy?: string | undefined;
427
+ AutoMinorVersionUpgrade?: boolean | undefined;
428
+ BrokerArn?: string | undefined;
429
+ BrokerName?: string | undefined;
430
+ DeploymentMode?: string | undefined;
431
+ EncryptionOptions?: AwsAmazonMqBrokerEncryptionOptionsDetails | undefined;
432
+ EngineType?: string | undefined;
433
+ EngineVersion?: string | undefined;
434
+ HostInstanceType?: string | undefined;
435
+ BrokerId?: string | undefined;
436
+ LdapServerMetadata?: AwsAmazonMqBrokerLdapServerMetadataDetails | undefined;
437
+ Logs?: AwsAmazonMqBrokerLogsDetails | undefined;
438
+ MaintenanceWindowStartTime?:
439
+ | AwsAmazonMqBrokerMaintenanceWindowStartTimeDetails
440
+ | undefined;
441
+ PubliclyAccessible?: boolean | undefined;
442
+ SecurityGroups?: string[] | undefined;
443
+ StorageType?: string | undefined;
444
+ SubnetIds?: string[] | undefined;
445
+ Users?: AwsAmazonMqBrokerUsersDetails[] | undefined;
444
446
  }
445
447
  export interface AwsApiGatewayAccessLogSettings {
446
- Format?: string;
447
- DestinationArn?: string;
448
+ Format?: string | undefined;
449
+ DestinationArn?: string | undefined;
448
450
  }
449
451
  export interface AwsApiGatewayCanarySettings {
450
- PercentTraffic?: number;
451
- DeploymentId?: string;
452
- StageVariableOverrides?: Record<string, string>;
453
- UseStageCache?: boolean;
452
+ PercentTraffic?: number | undefined;
453
+ DeploymentId?: string | undefined;
454
+ StageVariableOverrides?: Record<string, string> | undefined;
455
+ UseStageCache?: boolean | undefined;
454
456
  }
455
457
  export interface AwsApiGatewayEndpointConfiguration {
456
- Types?: string[];
458
+ Types?: string[] | undefined;
457
459
  }
458
460
  export interface AwsApiGatewayMethodSettings {
459
- MetricsEnabled?: boolean;
460
- LoggingLevel?: string;
461
- DataTraceEnabled?: boolean;
462
- ThrottlingBurstLimit?: number;
463
- ThrottlingRateLimit?: number;
464
- CachingEnabled?: boolean;
465
- CacheTtlInSeconds?: number;
466
- CacheDataEncrypted?: boolean;
467
- RequireAuthorizationForCacheControl?: boolean;
468
- UnauthorizedCacheControlHeaderStrategy?: string;
469
- HttpMethod?: string;
470
- ResourcePath?: string;
461
+ MetricsEnabled?: boolean | undefined;
462
+ LoggingLevel?: string | undefined;
463
+ DataTraceEnabled?: boolean | undefined;
464
+ ThrottlingBurstLimit?: number | undefined;
465
+ ThrottlingRateLimit?: number | undefined;
466
+ CachingEnabled?: boolean | undefined;
467
+ CacheTtlInSeconds?: number | undefined;
468
+ CacheDataEncrypted?: boolean | undefined;
469
+ RequireAuthorizationForCacheControl?: boolean | undefined;
470
+ UnauthorizedCacheControlHeaderStrategy?: string | undefined;
471
+ HttpMethod?: string | undefined;
472
+ ResourcePath?: string | undefined;
471
473
  }
472
474
  export interface AwsApiGatewayRestApiDetails {
473
- Id?: string;
474
- Name?: string;
475
- Description?: string;
476
- CreatedDate?: string;
477
- Version?: string;
478
- BinaryMediaTypes?: string[];
479
- MinimumCompressionSize?: number;
480
- ApiKeySource?: string;
481
- EndpointConfiguration?: AwsApiGatewayEndpointConfiguration;
475
+ Id?: string | undefined;
476
+ Name?: string | undefined;
477
+ Description?: string | undefined;
478
+ CreatedDate?: string | undefined;
479
+ Version?: string | undefined;
480
+ BinaryMediaTypes?: string[] | undefined;
481
+ MinimumCompressionSize?: number | undefined;
482
+ ApiKeySource?: string | undefined;
483
+ EndpointConfiguration?: AwsApiGatewayEndpointConfiguration | undefined;
482
484
  }
483
485
  export interface AwsApiGatewayStageDetails {
484
- DeploymentId?: string;
485
- ClientCertificateId?: string;
486
- StageName?: string;
487
- Description?: string;
488
- CacheClusterEnabled?: boolean;
489
- CacheClusterSize?: string;
490
- CacheClusterStatus?: string;
491
- MethodSettings?: AwsApiGatewayMethodSettings[];
492
- Variables?: Record<string, string>;
493
- DocumentationVersion?: string;
494
- AccessLogSettings?: AwsApiGatewayAccessLogSettings;
495
- CanarySettings?: AwsApiGatewayCanarySettings;
496
- TracingEnabled?: boolean;
497
- CreatedDate?: string;
498
- LastUpdatedDate?: string;
499
- WebAclArn?: string;
486
+ DeploymentId?: string | undefined;
487
+ ClientCertificateId?: string | undefined;
488
+ StageName?: string | undefined;
489
+ Description?: string | undefined;
490
+ CacheClusterEnabled?: boolean | undefined;
491
+ CacheClusterSize?: string | undefined;
492
+ CacheClusterStatus?: string | undefined;
493
+ MethodSettings?: AwsApiGatewayMethodSettings[] | undefined;
494
+ Variables?: Record<string, string> | undefined;
495
+ DocumentationVersion?: string | undefined;
496
+ AccessLogSettings?: AwsApiGatewayAccessLogSettings | undefined;
497
+ CanarySettings?: AwsApiGatewayCanarySettings | undefined;
498
+ TracingEnabled?: boolean | undefined;
499
+ CreatedDate?: string | undefined;
500
+ LastUpdatedDate?: string | undefined;
501
+ WebAclArn?: string | undefined;
500
502
  }
501
503
  export interface AwsCorsConfiguration {
502
- AllowOrigins?: string[];
503
- AllowCredentials?: boolean;
504
- ExposeHeaders?: string[];
505
- MaxAge?: number;
506
- AllowMethods?: string[];
507
- AllowHeaders?: string[];
504
+ AllowOrigins?: string[] | undefined;
505
+ AllowCredentials?: boolean | undefined;
506
+ ExposeHeaders?: string[] | undefined;
507
+ MaxAge?: number | undefined;
508
+ AllowMethods?: string[] | undefined;
509
+ AllowHeaders?: string[] | undefined;
508
510
  }
509
511
  export interface AwsApiGatewayV2ApiDetails {
510
- ApiEndpoint?: string;
511
- ApiId?: string;
512
- ApiKeySelectionExpression?: string;
513
- CreatedDate?: string;
514
- Description?: string;
515
- Version?: string;
516
- Name?: string;
517
- ProtocolType?: string;
518
- RouteSelectionExpression?: string;
519
- CorsConfiguration?: AwsCorsConfiguration;
512
+ ApiEndpoint?: string | undefined;
513
+ ApiId?: string | undefined;
514
+ ApiKeySelectionExpression?: string | undefined;
515
+ CreatedDate?: string | undefined;
516
+ Description?: string | undefined;
517
+ Version?: string | undefined;
518
+ Name?: string | undefined;
519
+ ProtocolType?: string | undefined;
520
+ RouteSelectionExpression?: string | undefined;
521
+ CorsConfiguration?: AwsCorsConfiguration | undefined;
520
522
  }
521
523
  export interface AwsApiGatewayV2RouteSettings {
522
- DetailedMetricsEnabled?: boolean;
523
- LoggingLevel?: string;
524
- DataTraceEnabled?: boolean;
525
- ThrottlingBurstLimit?: number;
526
- ThrottlingRateLimit?: number;
524
+ DetailedMetricsEnabled?: boolean | undefined;
525
+ LoggingLevel?: string | undefined;
526
+ DataTraceEnabled?: boolean | undefined;
527
+ ThrottlingBurstLimit?: number | undefined;
528
+ ThrottlingRateLimit?: number | undefined;
527
529
  }
528
530
  export interface AwsApiGatewayV2StageDetails {
529
- ClientCertificateId?: string;
530
- CreatedDate?: string;
531
- Description?: string;
532
- DefaultRouteSettings?: AwsApiGatewayV2RouteSettings;
533
- DeploymentId?: string;
534
- LastUpdatedDate?: string;
535
- RouteSettings?: AwsApiGatewayV2RouteSettings;
536
- StageName?: string;
537
- StageVariables?: Record<string, string>;
538
- AccessLogSettings?: AwsApiGatewayAccessLogSettings;
539
- AutoDeploy?: boolean;
540
- LastDeploymentStatusMessage?: string;
541
- ApiGatewayManaged?: boolean;
531
+ ClientCertificateId?: string | undefined;
532
+ CreatedDate?: string | undefined;
533
+ Description?: string | undefined;
534
+ DefaultRouteSettings?: AwsApiGatewayV2RouteSettings | undefined;
535
+ DeploymentId?: string | undefined;
536
+ LastUpdatedDate?: string | undefined;
537
+ RouteSettings?: AwsApiGatewayV2RouteSettings | undefined;
538
+ StageName?: string | undefined;
539
+ StageVariables?: Record<string, string> | undefined;
540
+ AccessLogSettings?: AwsApiGatewayAccessLogSettings | undefined;
541
+ AutoDeploy?: boolean | undefined;
542
+ LastDeploymentStatusMessage?: string | undefined;
543
+ ApiGatewayManaged?: boolean | undefined;
542
544
  }
543
545
  export interface AwsAppSyncGraphQlApiLambdaAuthorizerConfigDetails {
544
- AuthorizerResultTtlInSeconds?: number;
545
- AuthorizerUri?: string;
546
- IdentityValidationExpression?: string;
546
+ AuthorizerResultTtlInSeconds?: number | undefined;
547
+ AuthorizerUri?: string | undefined;
548
+ IdentityValidationExpression?: string | undefined;
547
549
  }
548
550
  export interface AwsAppSyncGraphQlApiOpenIdConnectConfigDetails {
549
- AuthTtL?: number;
550
- ClientId?: string;
551
- IatTtL?: number;
552
- Issuer?: string;
551
+ AuthTtL?: number | undefined;
552
+ ClientId?: string | undefined;
553
+ IatTtL?: number | undefined;
554
+ Issuer?: string | undefined;
553
555
  }
554
556
  export interface AwsAppSyncGraphQlApiUserPoolConfigDetails {
555
- AppIdClientRegex?: string;
556
- AwsRegion?: string;
557
- DefaultAction?: string;
558
- UserPoolId?: string;
557
+ AppIdClientRegex?: string | undefined;
558
+ AwsRegion?: string | undefined;
559
+ DefaultAction?: string | undefined;
560
+ UserPoolId?: string | undefined;
559
561
  }
560
562
  export interface AwsAppSyncGraphQlApiAdditionalAuthenticationProvidersDetails {
561
- AuthenticationType?: string;
562
- LambdaAuthorizerConfig?: AwsAppSyncGraphQlApiLambdaAuthorizerConfigDetails;
563
- OpenIdConnectConfig?: AwsAppSyncGraphQlApiOpenIdConnectConfigDetails;
564
- UserPoolConfig?: AwsAppSyncGraphQlApiUserPoolConfigDetails;
563
+ AuthenticationType?: string | undefined;
564
+ LambdaAuthorizerConfig?:
565
+ | AwsAppSyncGraphQlApiLambdaAuthorizerConfigDetails
566
+ | undefined;
567
+ OpenIdConnectConfig?:
568
+ | AwsAppSyncGraphQlApiOpenIdConnectConfigDetails
569
+ | undefined;
570
+ UserPoolConfig?: AwsAppSyncGraphQlApiUserPoolConfigDetails | undefined;
565
571
  }
566
572
  export interface AwsAppSyncGraphQlApiLogConfigDetails {
567
- CloudWatchLogsRoleArn?: string;
568
- ExcludeVerboseContent?: boolean;
569
- FieldLogLevel?: string;
573
+ CloudWatchLogsRoleArn?: string | undefined;
574
+ ExcludeVerboseContent?: boolean | undefined;
575
+ FieldLogLevel?: string | undefined;
570
576
  }
571
577
  export interface AwsAppSyncGraphQlApiDetails {
572
- ApiId?: string;
573
- Id?: string;
574
- OpenIdConnectConfig?: AwsAppSyncGraphQlApiOpenIdConnectConfigDetails;
575
- Name?: string;
576
- LambdaAuthorizerConfig?: AwsAppSyncGraphQlApiLambdaAuthorizerConfigDetails;
577
- XrayEnabled?: boolean;
578
- Arn?: string;
579
- UserPoolConfig?: AwsAppSyncGraphQlApiUserPoolConfigDetails;
580
- AuthenticationType?: string;
581
- LogConfig?: AwsAppSyncGraphQlApiLogConfigDetails;
582
- AdditionalAuthenticationProviders?: AwsAppSyncGraphQlApiAdditionalAuthenticationProvidersDetails[];
583
- WafWebAclArn?: string;
578
+ ApiId?: string | undefined;
579
+ Id?: string | undefined;
580
+ OpenIdConnectConfig?:
581
+ | AwsAppSyncGraphQlApiOpenIdConnectConfigDetails
582
+ | undefined;
583
+ Name?: string | undefined;
584
+ LambdaAuthorizerConfig?:
585
+ | AwsAppSyncGraphQlApiLambdaAuthorizerConfigDetails
586
+ | undefined;
587
+ XrayEnabled?: boolean | undefined;
588
+ Arn?: string | undefined;
589
+ UserPoolConfig?: AwsAppSyncGraphQlApiUserPoolConfigDetails | undefined;
590
+ AuthenticationType?: string | undefined;
591
+ LogConfig?: AwsAppSyncGraphQlApiLogConfigDetails | undefined;
592
+ AdditionalAuthenticationProviders?:
593
+ | AwsAppSyncGraphQlApiAdditionalAuthenticationProvidersDetails[]
594
+ | undefined;
595
+ WafWebAclArn?: string | undefined;
584
596
  }
585
597
  export interface AwsAthenaWorkGroupConfigurationResultConfigurationEncryptionConfigurationDetails {
586
- EncryptionOption?: string;
587
- KmsKey?: string;
598
+ EncryptionOption?: string | undefined;
599
+ KmsKey?: string | undefined;
588
600
  }
589
601
  export interface AwsAthenaWorkGroupConfigurationResultConfigurationDetails {
590
- EncryptionConfiguration?: AwsAthenaWorkGroupConfigurationResultConfigurationEncryptionConfigurationDetails;
602
+ EncryptionConfiguration?:
603
+ | AwsAthenaWorkGroupConfigurationResultConfigurationEncryptionConfigurationDetails
604
+ | undefined;
591
605
  }
592
606
  export interface AwsAthenaWorkGroupConfigurationDetails {
593
- ResultConfiguration?: AwsAthenaWorkGroupConfigurationResultConfigurationDetails;
607
+ ResultConfiguration?:
608
+ | AwsAthenaWorkGroupConfigurationResultConfigurationDetails
609
+ | undefined;
594
610
  }
595
611
  export interface AwsAthenaWorkGroupDetails {
596
- Name?: string;
597
- Description?: string;
598
- State?: string;
599
- Configuration?: AwsAthenaWorkGroupConfigurationDetails;
612
+ Name?: string | undefined;
613
+ Description?: string | undefined;
614
+ State?: string | undefined;
615
+ Configuration?: AwsAthenaWorkGroupConfigurationDetails | undefined;
600
616
  }
601
617
  export interface AwsAutoScalingAutoScalingGroupAvailabilityZonesListDetails {
602
- Value?: string;
618
+ Value?: string | undefined;
603
619
  }
604
620
  export interface AwsAutoScalingAutoScalingGroupLaunchTemplateLaunchTemplateSpecification {
605
- LaunchTemplateId?: string;
606
- LaunchTemplateName?: string;
607
- Version?: string;
621
+ LaunchTemplateId?: string | undefined;
622
+ LaunchTemplateName?: string | undefined;
623
+ Version?: string | undefined;
608
624
  }
609
625
  export interface AwsAutoScalingAutoScalingGroupMixedInstancesPolicyInstancesDistributionDetails {
610
- OnDemandAllocationStrategy?: string;
611
- OnDemandBaseCapacity?: number;
612
- OnDemandPercentageAboveBaseCapacity?: number;
613
- SpotAllocationStrategy?: string;
614
- SpotInstancePools?: number;
615
- SpotMaxPrice?: string;
626
+ OnDemandAllocationStrategy?: string | undefined;
627
+ OnDemandBaseCapacity?: number | undefined;
628
+ OnDemandPercentageAboveBaseCapacity?: number | undefined;
629
+ SpotAllocationStrategy?: string | undefined;
630
+ SpotInstancePools?: number | undefined;
631
+ SpotMaxPrice?: string | undefined;
616
632
  }
617
633
  export interface AwsAutoScalingAutoScalingGroupMixedInstancesPolicyLaunchTemplateLaunchTemplateSpecification {
618
- LaunchTemplateId?: string;
619
- LaunchTemplateName?: string;
620
- Version?: string;
634
+ LaunchTemplateId?: string | undefined;
635
+ LaunchTemplateName?: string | undefined;
636
+ Version?: string | undefined;
621
637
  }
622
638
  export interface AwsAutoScalingAutoScalingGroupMixedInstancesPolicyLaunchTemplateOverridesListDetails {
623
- InstanceType?: string;
624
- WeightedCapacity?: string;
639
+ InstanceType?: string | undefined;
640
+ WeightedCapacity?: string | undefined;
625
641
  }
626
642
  export interface AwsAutoScalingAutoScalingGroupMixedInstancesPolicyLaunchTemplateDetails {
627
- LaunchTemplateSpecification?: AwsAutoScalingAutoScalingGroupMixedInstancesPolicyLaunchTemplateLaunchTemplateSpecification;
628
- Overrides?: AwsAutoScalingAutoScalingGroupMixedInstancesPolicyLaunchTemplateOverridesListDetails[];
643
+ LaunchTemplateSpecification?:
644
+ | AwsAutoScalingAutoScalingGroupMixedInstancesPolicyLaunchTemplateLaunchTemplateSpecification
645
+ | undefined;
646
+ Overrides?:
647
+ | AwsAutoScalingAutoScalingGroupMixedInstancesPolicyLaunchTemplateOverridesListDetails[]
648
+ | undefined;
629
649
  }
630
650
  export interface AwsAutoScalingAutoScalingGroupMixedInstancesPolicyDetails {
631
- InstancesDistribution?: AwsAutoScalingAutoScalingGroupMixedInstancesPolicyInstancesDistributionDetails;
632
- LaunchTemplate?: AwsAutoScalingAutoScalingGroupMixedInstancesPolicyLaunchTemplateDetails;
651
+ InstancesDistribution?:
652
+ | AwsAutoScalingAutoScalingGroupMixedInstancesPolicyInstancesDistributionDetails
653
+ | undefined;
654
+ LaunchTemplate?:
655
+ | AwsAutoScalingAutoScalingGroupMixedInstancesPolicyLaunchTemplateDetails
656
+ | undefined;
633
657
  }
634
658
  export interface AwsAutoScalingAutoScalingGroupDetails {
635
- LaunchConfigurationName?: string;
636
- LoadBalancerNames?: string[];
637
- HealthCheckType?: string;
638
- HealthCheckGracePeriod?: number;
639
- CreatedTime?: string;
640
- MixedInstancesPolicy?: AwsAutoScalingAutoScalingGroupMixedInstancesPolicyDetails;
641
- AvailabilityZones?: AwsAutoScalingAutoScalingGroupAvailabilityZonesListDetails[];
642
- LaunchTemplate?: AwsAutoScalingAutoScalingGroupLaunchTemplateLaunchTemplateSpecification;
643
- CapacityRebalance?: boolean;
659
+ LaunchConfigurationName?: string | undefined;
660
+ LoadBalancerNames?: string[] | undefined;
661
+ HealthCheckType?: string | undefined;
662
+ HealthCheckGracePeriod?: number | undefined;
663
+ CreatedTime?: string | undefined;
664
+ MixedInstancesPolicy?:
665
+ | AwsAutoScalingAutoScalingGroupMixedInstancesPolicyDetails
666
+ | undefined;
667
+ AvailabilityZones?:
668
+ | AwsAutoScalingAutoScalingGroupAvailabilityZonesListDetails[]
669
+ | undefined;
670
+ LaunchTemplate?:
671
+ | AwsAutoScalingAutoScalingGroupLaunchTemplateLaunchTemplateSpecification
672
+ | undefined;
673
+ CapacityRebalance?: boolean | undefined;
644
674
  }
645
675
  export interface AwsAutoScalingLaunchConfigurationBlockDeviceMappingsEbsDetails {
646
- DeleteOnTermination?: boolean;
647
- Encrypted?: boolean;
648
- Iops?: number;
649
- SnapshotId?: string;
650
- VolumeSize?: number;
651
- VolumeType?: string;
676
+ DeleteOnTermination?: boolean | undefined;
677
+ Encrypted?: boolean | undefined;
678
+ Iops?: number | undefined;
679
+ SnapshotId?: string | undefined;
680
+ VolumeSize?: number | undefined;
681
+ VolumeType?: string | undefined;
652
682
  }
653
683
  export interface AwsAutoScalingLaunchConfigurationBlockDeviceMappingsDetails {
654
- DeviceName?: string;
655
- Ebs?: AwsAutoScalingLaunchConfigurationBlockDeviceMappingsEbsDetails;
656
- NoDevice?: boolean;
657
- VirtualName?: string;
684
+ DeviceName?: string | undefined;
685
+ Ebs?:
686
+ | AwsAutoScalingLaunchConfigurationBlockDeviceMappingsEbsDetails
687
+ | undefined;
688
+ NoDevice?: boolean | undefined;
689
+ VirtualName?: string | undefined;
658
690
  }
659
691
  export interface AwsAutoScalingLaunchConfigurationInstanceMonitoringDetails {
660
- Enabled?: boolean;
692
+ Enabled?: boolean | undefined;
661
693
  }
662
694
  export interface AwsAutoScalingLaunchConfigurationMetadataOptions {
663
- HttpEndpoint?: string;
664
- HttpPutResponseHopLimit?: number;
665
- HttpTokens?: string;
695
+ HttpEndpoint?: string | undefined;
696
+ HttpPutResponseHopLimit?: number | undefined;
697
+ HttpTokens?: string | undefined;
666
698
  }
667
699
  export interface AwsAutoScalingLaunchConfigurationDetails {
668
- AssociatePublicIpAddress?: boolean;
669
- BlockDeviceMappings?: AwsAutoScalingLaunchConfigurationBlockDeviceMappingsDetails[];
670
- ClassicLinkVpcId?: string;
671
- ClassicLinkVpcSecurityGroups?: string[];
672
- CreatedTime?: string;
673
- EbsOptimized?: boolean;
674
- IamInstanceProfile?: string;
675
- ImageId?: string;
676
- InstanceMonitoring?: AwsAutoScalingLaunchConfigurationInstanceMonitoringDetails;
677
- InstanceType?: string;
678
- KernelId?: string;
679
- KeyName?: string;
680
- LaunchConfigurationName?: string;
681
- PlacementTenancy?: string;
682
- RamdiskId?: string;
683
- SecurityGroups?: string[];
684
- SpotPrice?: string;
685
- UserData?: string;
686
- MetadataOptions?: AwsAutoScalingLaunchConfigurationMetadataOptions;
700
+ AssociatePublicIpAddress?: boolean | undefined;
701
+ BlockDeviceMappings?:
702
+ | AwsAutoScalingLaunchConfigurationBlockDeviceMappingsDetails[]
703
+ | undefined;
704
+ ClassicLinkVpcId?: string | undefined;
705
+ ClassicLinkVpcSecurityGroups?: string[] | undefined;
706
+ CreatedTime?: string | undefined;
707
+ EbsOptimized?: boolean | undefined;
708
+ IamInstanceProfile?: string | undefined;
709
+ ImageId?: string | undefined;
710
+ InstanceMonitoring?:
711
+ | AwsAutoScalingLaunchConfigurationInstanceMonitoringDetails
712
+ | undefined;
713
+ InstanceType?: string | undefined;
714
+ KernelId?: string | undefined;
715
+ KeyName?: string | undefined;
716
+ LaunchConfigurationName?: string | undefined;
717
+ PlacementTenancy?: string | undefined;
718
+ RamdiskId?: string | undefined;
719
+ SecurityGroups?: string[] | undefined;
720
+ SpotPrice?: string | undefined;
721
+ UserData?: string | undefined;
722
+ MetadataOptions?:
723
+ | AwsAutoScalingLaunchConfigurationMetadataOptions
724
+ | undefined;
687
725
  }
688
726
  export interface AwsBackupBackupPlanAdvancedBackupSettingsDetails {
689
- BackupOptions?: Record<string, string>;
690
- ResourceType?: string;
727
+ BackupOptions?: Record<string, string> | undefined;
728
+ ResourceType?: string | undefined;
691
729
  }
692
730
  export interface AwsBackupBackupPlanLifecycleDetails {
693
- DeleteAfterDays?: number;
694
- MoveToColdStorageAfterDays?: number;
731
+ DeleteAfterDays?: number | undefined;
732
+ MoveToColdStorageAfterDays?: number | undefined;
695
733
  }
696
734
  export interface AwsBackupBackupPlanRuleCopyActionsDetails {
697
- DestinationBackupVaultArn?: string;
698
- Lifecycle?: AwsBackupBackupPlanLifecycleDetails;
735
+ DestinationBackupVaultArn?: string | undefined;
736
+ Lifecycle?: AwsBackupBackupPlanLifecycleDetails | undefined;
699
737
  }
700
738
  export interface AwsBackupBackupPlanRuleDetails {
701
- TargetBackupVault?: string;
702
- StartWindowMinutes?: number;
703
- ScheduleExpression?: string;
704
- RuleName?: string;
705
- RuleId?: string;
706
- EnableContinuousBackup?: boolean;
707
- CompletionWindowMinutes?: number;
708
- CopyActions?: AwsBackupBackupPlanRuleCopyActionsDetails[];
709
- Lifecycle?: AwsBackupBackupPlanLifecycleDetails;
739
+ TargetBackupVault?: string | undefined;
740
+ StartWindowMinutes?: number | undefined;
741
+ ScheduleExpression?: string | undefined;
742
+ RuleName?: string | undefined;
743
+ RuleId?: string | undefined;
744
+ EnableContinuousBackup?: boolean | undefined;
745
+ CompletionWindowMinutes?: number | undefined;
746
+ CopyActions?: AwsBackupBackupPlanRuleCopyActionsDetails[] | undefined;
747
+ Lifecycle?: AwsBackupBackupPlanLifecycleDetails | undefined;
710
748
  }
711
749
  export interface AwsBackupBackupPlanBackupPlanDetails {
712
- BackupPlanName?: string;
713
- AdvancedBackupSettings?: AwsBackupBackupPlanAdvancedBackupSettingsDetails[];
714
- BackupPlanRule?: AwsBackupBackupPlanRuleDetails[];
750
+ BackupPlanName?: string | undefined;
751
+ AdvancedBackupSettings?:
752
+ | AwsBackupBackupPlanAdvancedBackupSettingsDetails[]
753
+ | undefined;
754
+ BackupPlanRule?: AwsBackupBackupPlanRuleDetails[] | undefined;
715
755
  }
716
756
  export interface AwsBackupBackupPlanDetails {
717
- BackupPlan?: AwsBackupBackupPlanBackupPlanDetails;
718
- BackupPlanArn?: string;
719
- BackupPlanId?: string;
720
- VersionId?: string;
757
+ BackupPlan?: AwsBackupBackupPlanBackupPlanDetails | undefined;
758
+ BackupPlanArn?: string | undefined;
759
+ BackupPlanId?: string | undefined;
760
+ VersionId?: string | undefined;
721
761
  }
722
762
  export interface AwsBackupBackupVaultNotificationsDetails {
723
- BackupVaultEvents?: string[];
724
- SnsTopicArn?: string;
763
+ BackupVaultEvents?: string[] | undefined;
764
+ SnsTopicArn?: string | undefined;
725
765
  }
726
766
  export interface AwsBackupBackupVaultDetails {
727
- BackupVaultArn?: string;
728
- BackupVaultName?: string;
729
- EncryptionKeyArn?: string;
730
- Notifications?: AwsBackupBackupVaultNotificationsDetails;
731
- AccessPolicy?: string;
767
+ BackupVaultArn?: string | undefined;
768
+ BackupVaultName?: string | undefined;
769
+ EncryptionKeyArn?: string | undefined;
770
+ Notifications?: AwsBackupBackupVaultNotificationsDetails | undefined;
771
+ AccessPolicy?: string | undefined;
732
772
  }
733
773
  export interface AwsBackupRecoveryPointCalculatedLifecycleDetails {
734
- DeleteAt?: string;
735
- MoveToColdStorageAt?: string;
774
+ DeleteAt?: string | undefined;
775
+ MoveToColdStorageAt?: string | undefined;
736
776
  }
737
777
  export interface AwsBackupRecoveryPointCreatedByDetails {
738
- BackupPlanArn?: string;
739
- BackupPlanId?: string;
740
- BackupPlanVersion?: string;
741
- BackupRuleId?: string;
778
+ BackupPlanArn?: string | undefined;
779
+ BackupPlanId?: string | undefined;
780
+ BackupPlanVersion?: string | undefined;
781
+ BackupRuleId?: string | undefined;
742
782
  }
743
783
  export interface AwsBackupRecoveryPointLifecycleDetails {
744
- DeleteAfterDays?: number;
745
- MoveToColdStorageAfterDays?: number;
784
+ DeleteAfterDays?: number | undefined;
785
+ MoveToColdStorageAfterDays?: number | undefined;
746
786
  }
747
787
  export interface AwsBackupRecoveryPointDetails {
748
- BackupSizeInBytes?: number;
749
- BackupVaultArn?: string;
750
- BackupVaultName?: string;
751
- CalculatedLifecycle?: AwsBackupRecoveryPointCalculatedLifecycleDetails;
752
- CompletionDate?: string;
753
- CreatedBy?: AwsBackupRecoveryPointCreatedByDetails;
754
- CreationDate?: string;
755
- EncryptionKeyArn?: string;
756
- IamRoleArn?: string;
757
- IsEncrypted?: boolean;
758
- LastRestoreTime?: string;
759
- Lifecycle?: AwsBackupRecoveryPointLifecycleDetails;
760
- RecoveryPointArn?: string;
761
- ResourceArn?: string;
762
- ResourceType?: string;
763
- SourceBackupVaultArn?: string;
764
- Status?: string;
765
- StatusMessage?: string;
766
- StorageClass?: string;
788
+ BackupSizeInBytes?: number | undefined;
789
+ BackupVaultArn?: string | undefined;
790
+ BackupVaultName?: string | undefined;
791
+ CalculatedLifecycle?:
792
+ | AwsBackupRecoveryPointCalculatedLifecycleDetails
793
+ | undefined;
794
+ CompletionDate?: string | undefined;
795
+ CreatedBy?: AwsBackupRecoveryPointCreatedByDetails | undefined;
796
+ CreationDate?: string | undefined;
797
+ EncryptionKeyArn?: string | undefined;
798
+ IamRoleArn?: string | undefined;
799
+ IsEncrypted?: boolean | undefined;
800
+ LastRestoreTime?: string | undefined;
801
+ Lifecycle?: AwsBackupRecoveryPointLifecycleDetails | undefined;
802
+ RecoveryPointArn?: string | undefined;
803
+ ResourceArn?: string | undefined;
804
+ ResourceType?: string | undefined;
805
+ SourceBackupVaultArn?: string | undefined;
806
+ Status?: string | undefined;
807
+ StatusMessage?: string | undefined;
808
+ StorageClass?: string | undefined;
767
809
  }
768
810
  export interface AwsCertificateManagerCertificateResourceRecord {
769
- Name?: string;
770
- Type?: string;
771
- Value?: string;
811
+ Name?: string | undefined;
812
+ Type?: string | undefined;
813
+ Value?: string | undefined;
772
814
  }
773
815
  export interface AwsCertificateManagerCertificateDomainValidationOption {
774
- DomainName?: string;
775
- ResourceRecord?: AwsCertificateManagerCertificateResourceRecord;
776
- ValidationDomain?: string;
777
- ValidationEmails?: string[];
778
- ValidationMethod?: string;
779
- ValidationStatus?: string;
816
+ DomainName?: string | undefined;
817
+ ResourceRecord?: AwsCertificateManagerCertificateResourceRecord | undefined;
818
+ ValidationDomain?: string | undefined;
819
+ ValidationEmails?: string[] | undefined;
820
+ ValidationMethod?: string | undefined;
821
+ ValidationStatus?: string | undefined;
780
822
  }
781
823
  export interface AwsCertificateManagerCertificateExtendedKeyUsage {
782
- Name?: string;
783
- OId?: string;
824
+ Name?: string | undefined;
825
+ OId?: string | undefined;
784
826
  }
785
827
  export interface AwsCertificateManagerCertificateKeyUsage {
786
- Name?: string;
828
+ Name?: string | undefined;
787
829
  }
788
830
  export interface AwsCertificateManagerCertificateOptions {
789
- CertificateTransparencyLoggingPreference?: string;
831
+ CertificateTransparencyLoggingPreference?: string | undefined;
790
832
  }
791
833
  export interface AwsCertificateManagerCertificateRenewalSummary {
792
- DomainValidationOptions?: AwsCertificateManagerCertificateDomainValidationOption[];
793
- RenewalStatus?: string;
794
- RenewalStatusReason?: string;
795
- UpdatedAt?: string;
834
+ DomainValidationOptions?:
835
+ | AwsCertificateManagerCertificateDomainValidationOption[]
836
+ | undefined;
837
+ RenewalStatus?: string | undefined;
838
+ RenewalStatusReason?: string | undefined;
839
+ UpdatedAt?: string | undefined;
796
840
  }
797
841
  export interface AwsCertificateManagerCertificateDetails {
798
- CertificateAuthorityArn?: string;
799
- CreatedAt?: string;
800
- DomainName?: string;
801
- DomainValidationOptions?: AwsCertificateManagerCertificateDomainValidationOption[];
802
- ExtendedKeyUsages?: AwsCertificateManagerCertificateExtendedKeyUsage[];
803
- FailureReason?: string;
804
- ImportedAt?: string;
805
- InUseBy?: string[];
806
- IssuedAt?: string;
807
- Issuer?: string;
808
- KeyAlgorithm?: string;
809
- KeyUsages?: AwsCertificateManagerCertificateKeyUsage[];
810
- NotAfter?: string;
811
- NotBefore?: string;
812
- Options?: AwsCertificateManagerCertificateOptions;
813
- RenewalEligibility?: string;
814
- RenewalSummary?: AwsCertificateManagerCertificateRenewalSummary;
815
- Serial?: string;
816
- SignatureAlgorithm?: string;
817
- Status?: string;
818
- Subject?: string;
819
- SubjectAlternativeNames?: string[];
820
- Type?: string;
842
+ CertificateAuthorityArn?: string | undefined;
843
+ CreatedAt?: string | undefined;
844
+ DomainName?: string | undefined;
845
+ DomainValidationOptions?:
846
+ | AwsCertificateManagerCertificateDomainValidationOption[]
847
+ | undefined;
848
+ ExtendedKeyUsages?:
849
+ | AwsCertificateManagerCertificateExtendedKeyUsage[]
850
+ | undefined;
851
+ FailureReason?: string | undefined;
852
+ ImportedAt?: string | undefined;
853
+ InUseBy?: string[] | undefined;
854
+ IssuedAt?: string | undefined;
855
+ Issuer?: string | undefined;
856
+ KeyAlgorithm?: string | undefined;
857
+ KeyUsages?: AwsCertificateManagerCertificateKeyUsage[] | undefined;
858
+ NotAfter?: string | undefined;
859
+ NotBefore?: string | undefined;
860
+ Options?: AwsCertificateManagerCertificateOptions | undefined;
861
+ RenewalEligibility?: string | undefined;
862
+ RenewalSummary?: AwsCertificateManagerCertificateRenewalSummary | undefined;
863
+ Serial?: string | undefined;
864
+ SignatureAlgorithm?: string | undefined;
865
+ Status?: string | undefined;
866
+ Subject?: string | undefined;
867
+ SubjectAlternativeNames?: string[] | undefined;
868
+ Type?: string | undefined;
821
869
  }
822
870
  export interface AwsCloudFormationStackDriftInformationDetails {
823
- StackDriftStatus?: string;
871
+ StackDriftStatus?: string | undefined;
824
872
  }
825
873
  export interface AwsCloudFormationStackOutputsDetails {
826
- Description?: string;
827
- OutputKey?: string;
828
- OutputValue?: string;
874
+ Description?: string | undefined;
875
+ OutputKey?: string | undefined;
876
+ OutputValue?: string | undefined;
829
877
  }
830
878
  export interface AwsCloudFormationStackDetails {
831
- Capabilities?: string[];
832
- CreationTime?: string;
833
- Description?: string;
834
- DisableRollback?: boolean;
835
- DriftInformation?: AwsCloudFormationStackDriftInformationDetails;
836
- EnableTerminationProtection?: boolean;
837
- LastUpdatedTime?: string;
838
- NotificationArns?: string[];
839
- Outputs?: AwsCloudFormationStackOutputsDetails[];
840
- RoleArn?: string;
841
- StackId?: string;
842
- StackName?: string;
843
- StackStatus?: string;
844
- StackStatusReason?: string;
845
- TimeoutInMinutes?: number;
879
+ Capabilities?: string[] | undefined;
880
+ CreationTime?: string | undefined;
881
+ Description?: string | undefined;
882
+ DisableRollback?: boolean | undefined;
883
+ DriftInformation?: AwsCloudFormationStackDriftInformationDetails | undefined;
884
+ EnableTerminationProtection?: boolean | undefined;
885
+ LastUpdatedTime?: string | undefined;
886
+ NotificationArns?: string[] | undefined;
887
+ Outputs?: AwsCloudFormationStackOutputsDetails[] | undefined;
888
+ RoleArn?: string | undefined;
889
+ StackId?: string | undefined;
890
+ StackName?: string | undefined;
891
+ StackStatus?: string | undefined;
892
+ StackStatusReason?: string | undefined;
893
+ TimeoutInMinutes?: number | undefined;
846
894
  }
847
895
  export interface AwsCloudFrontDistributionCacheBehavior {
848
- ViewerProtocolPolicy?: string;
896
+ ViewerProtocolPolicy?: string | undefined;
849
897
  }
850
898
  export interface AwsCloudFrontDistributionCacheBehaviors {
851
- Items?: AwsCloudFrontDistributionCacheBehavior[];
899
+ Items?: AwsCloudFrontDistributionCacheBehavior[] | undefined;
852
900
  }
853
901
  export interface AwsCloudFrontDistributionDefaultCacheBehavior {
854
- ViewerProtocolPolicy?: string;
902
+ ViewerProtocolPolicy?: string | undefined;
855
903
  }
856
904
  export interface AwsCloudFrontDistributionLogging {
857
- Bucket?: string;
858
- Enabled?: boolean;
859
- IncludeCookies?: boolean;
860
- Prefix?: string;
905
+ Bucket?: string | undefined;
906
+ Enabled?: boolean | undefined;
907
+ IncludeCookies?: boolean | undefined;
908
+ Prefix?: string | undefined;
861
909
  }
862
910
  export interface AwsCloudFrontDistributionOriginGroupFailoverStatusCodes {
863
- Items?: number[];
864
- Quantity?: number;
911
+ Items?: number[] | undefined;
912
+ Quantity?: number | undefined;
865
913
  }
866
914
  export interface AwsCloudFrontDistributionOriginGroupFailover {
867
- StatusCodes?: AwsCloudFrontDistributionOriginGroupFailoverStatusCodes;
915
+ StatusCodes?:
916
+ | AwsCloudFrontDistributionOriginGroupFailoverStatusCodes
917
+ | undefined;
868
918
  }
869
919
  export interface AwsCloudFrontDistributionOriginGroup {
870
- FailoverCriteria?: AwsCloudFrontDistributionOriginGroupFailover;
920
+ FailoverCriteria?: AwsCloudFrontDistributionOriginGroupFailover | undefined;
871
921
  }
872
922
  export interface AwsCloudFrontDistributionOriginGroups {
873
- Items?: AwsCloudFrontDistributionOriginGroup[];
923
+ Items?: AwsCloudFrontDistributionOriginGroup[] | undefined;
874
924
  }
875
925
  export interface AwsCloudFrontDistributionOriginSslProtocols {
876
- Items?: string[];
877
- Quantity?: number;
926
+ Items?: string[] | undefined;
927
+ Quantity?: number | undefined;
878
928
  }
879
929
  export interface AwsCloudFrontDistributionOriginCustomOriginConfig {
880
- HttpPort?: number;
881
- HttpsPort?: number;
882
- OriginKeepaliveTimeout?: number;
883
- OriginProtocolPolicy?: string;
884
- OriginReadTimeout?: number;
885
- OriginSslProtocols?: AwsCloudFrontDistributionOriginSslProtocols;
930
+ HttpPort?: number | undefined;
931
+ HttpsPort?: number | undefined;
932
+ OriginKeepaliveTimeout?: number | undefined;
933
+ OriginProtocolPolicy?: string | undefined;
934
+ OriginReadTimeout?: number | undefined;
935
+ OriginSslProtocols?: AwsCloudFrontDistributionOriginSslProtocols | undefined;
886
936
  }
887
937
  export interface AwsCloudFrontDistributionOriginS3OriginConfig {
888
- OriginAccessIdentity?: string;
938
+ OriginAccessIdentity?: string | undefined;
889
939
  }
890
940
  export interface AwsCloudFrontDistributionOriginItem {
891
- DomainName?: string;
892
- Id?: string;
893
- OriginPath?: string;
894
- S3OriginConfig?: AwsCloudFrontDistributionOriginS3OriginConfig;
895
- CustomOriginConfig?: AwsCloudFrontDistributionOriginCustomOriginConfig;
941
+ DomainName?: string | undefined;
942
+ Id?: string | undefined;
943
+ OriginPath?: string | undefined;
944
+ S3OriginConfig?: AwsCloudFrontDistributionOriginS3OriginConfig | undefined;
945
+ CustomOriginConfig?:
946
+ | AwsCloudFrontDistributionOriginCustomOriginConfig
947
+ | undefined;
896
948
  }
897
949
  export interface AwsCloudFrontDistributionOrigins {
898
- Items?: AwsCloudFrontDistributionOriginItem[];
950
+ Items?: AwsCloudFrontDistributionOriginItem[] | undefined;
899
951
  }
900
952
  export interface AwsCloudFrontDistributionViewerCertificate {
901
- AcmCertificateArn?: string;
902
- Certificate?: string;
903
- CertificateSource?: string;
904
- CloudFrontDefaultCertificate?: boolean;
905
- IamCertificateId?: string;
906
- MinimumProtocolVersion?: string;
907
- SslSupportMethod?: string;
953
+ AcmCertificateArn?: string | undefined;
954
+ Certificate?: string | undefined;
955
+ CertificateSource?: string | undefined;
956
+ CloudFrontDefaultCertificate?: boolean | undefined;
957
+ IamCertificateId?: string | undefined;
958
+ MinimumProtocolVersion?: string | undefined;
959
+ SslSupportMethod?: string | undefined;
908
960
  }
909
961
  export interface AwsCloudFrontDistributionDetails {
910
- CacheBehaviors?: AwsCloudFrontDistributionCacheBehaviors;
911
- DefaultCacheBehavior?: AwsCloudFrontDistributionDefaultCacheBehavior;
912
- DefaultRootObject?: string;
913
- DomainName?: string;
914
- ETag?: string;
915
- LastModifiedTime?: string;
916
- Logging?: AwsCloudFrontDistributionLogging;
917
- Origins?: AwsCloudFrontDistributionOrigins;
918
- OriginGroups?: AwsCloudFrontDistributionOriginGroups;
919
- ViewerCertificate?: AwsCloudFrontDistributionViewerCertificate;
920
- Status?: string;
921
- WebAclId?: string;
962
+ CacheBehaviors?: AwsCloudFrontDistributionCacheBehaviors | undefined;
963
+ DefaultCacheBehavior?:
964
+ | AwsCloudFrontDistributionDefaultCacheBehavior
965
+ | undefined;
966
+ DefaultRootObject?: string | undefined;
967
+ DomainName?: string | undefined;
968
+ ETag?: string | undefined;
969
+ LastModifiedTime?: string | undefined;
970
+ Logging?: AwsCloudFrontDistributionLogging | undefined;
971
+ Origins?: AwsCloudFrontDistributionOrigins | undefined;
972
+ OriginGroups?: AwsCloudFrontDistributionOriginGroups | undefined;
973
+ ViewerCertificate?: AwsCloudFrontDistributionViewerCertificate | undefined;
974
+ Status?: string | undefined;
975
+ WebAclId?: string | undefined;
922
976
  }
923
977
  export interface AwsCloudTrailTrailDetails {
924
- CloudWatchLogsLogGroupArn?: string;
925
- CloudWatchLogsRoleArn?: string;
926
- HasCustomEventSelectors?: boolean;
927
- HomeRegion?: string;
928
- IncludeGlobalServiceEvents?: boolean;
929
- IsMultiRegionTrail?: boolean;
930
- IsOrganizationTrail?: boolean;
931
- KmsKeyId?: string;
932
- LogFileValidationEnabled?: boolean;
933
- Name?: string;
934
- S3BucketName?: string;
935
- S3KeyPrefix?: string;
936
- SnsTopicArn?: string;
937
- SnsTopicName?: string;
938
- TrailArn?: string;
978
+ CloudWatchLogsLogGroupArn?: string | undefined;
979
+ CloudWatchLogsRoleArn?: string | undefined;
980
+ HasCustomEventSelectors?: boolean | undefined;
981
+ HomeRegion?: string | undefined;
982
+ IncludeGlobalServiceEvents?: boolean | undefined;
983
+ IsMultiRegionTrail?: boolean | undefined;
984
+ IsOrganizationTrail?: boolean | undefined;
985
+ KmsKeyId?: string | undefined;
986
+ LogFileValidationEnabled?: boolean | undefined;
987
+ Name?: string | undefined;
988
+ S3BucketName?: string | undefined;
989
+ S3KeyPrefix?: string | undefined;
990
+ SnsTopicArn?: string | undefined;
991
+ SnsTopicName?: string | undefined;
992
+ TrailArn?: string | undefined;
939
993
  }
940
994
  export interface AwsCloudWatchAlarmDimensionsDetails {
941
- Name?: string;
942
- Value?: string;
995
+ Name?: string | undefined;
996
+ Value?: string | undefined;
943
997
  }
944
998
  export interface AwsCloudWatchAlarmDetails {
945
- ActionsEnabled?: boolean;
946
- AlarmActions?: string[];
947
- AlarmArn?: string;
948
- AlarmConfigurationUpdatedTimestamp?: string;
949
- AlarmDescription?: string;
950
- AlarmName?: string;
951
- ComparisonOperator?: string;
952
- DatapointsToAlarm?: number;
953
- Dimensions?: AwsCloudWatchAlarmDimensionsDetails[];
954
- EvaluateLowSampleCountPercentile?: string;
955
- EvaluationPeriods?: number;
956
- ExtendedStatistic?: string;
957
- InsufficientDataActions?: string[];
958
- MetricName?: string;
959
- Namespace?: string;
960
- OkActions?: string[];
961
- Period?: number;
962
- Statistic?: string;
963
- Threshold?: number;
964
- ThresholdMetricId?: string;
965
- TreatMissingData?: string;
966
- Unit?: string;
999
+ ActionsEnabled?: boolean | undefined;
1000
+ AlarmActions?: string[] | undefined;
1001
+ AlarmArn?: string | undefined;
1002
+ AlarmConfigurationUpdatedTimestamp?: string | undefined;
1003
+ AlarmDescription?: string | undefined;
1004
+ AlarmName?: string | undefined;
1005
+ ComparisonOperator?: string | undefined;
1006
+ DatapointsToAlarm?: number | undefined;
1007
+ Dimensions?: AwsCloudWatchAlarmDimensionsDetails[] | undefined;
1008
+ EvaluateLowSampleCountPercentile?: string | undefined;
1009
+ EvaluationPeriods?: number | undefined;
1010
+ ExtendedStatistic?: string | undefined;
1011
+ InsufficientDataActions?: string[] | undefined;
1012
+ MetricName?: string | undefined;
1013
+ Namespace?: string | undefined;
1014
+ OkActions?: string[] | undefined;
1015
+ Period?: number | undefined;
1016
+ Statistic?: string | undefined;
1017
+ Threshold?: number | undefined;
1018
+ ThresholdMetricId?: string | undefined;
1019
+ TreatMissingData?: string | undefined;
1020
+ Unit?: string | undefined;
967
1021
  }
968
1022
  export interface AwsCodeBuildProjectArtifactsDetails {
969
- ArtifactIdentifier?: string;
970
- EncryptionDisabled?: boolean;
971
- Location?: string;
972
- Name?: string;
973
- NamespaceType?: string;
974
- OverrideArtifactName?: boolean;
975
- Packaging?: string;
976
- Path?: string;
977
- Type?: string;
1023
+ ArtifactIdentifier?: string | undefined;
1024
+ EncryptionDisabled?: boolean | undefined;
1025
+ Location?: string | undefined;
1026
+ Name?: string | undefined;
1027
+ NamespaceType?: string | undefined;
1028
+ OverrideArtifactName?: boolean | undefined;
1029
+ Packaging?: string | undefined;
1030
+ Path?: string | undefined;
1031
+ Type?: string | undefined;
978
1032
  }
979
1033
  export interface AwsCodeBuildProjectEnvironmentEnvironmentVariablesDetails {
980
- Name?: string;
981
- Type?: string;
982
- Value?: string;
1034
+ Name?: string | undefined;
1035
+ Type?: string | undefined;
1036
+ Value?: string | undefined;
983
1037
  }
984
1038
  export interface AwsCodeBuildProjectEnvironmentRegistryCredential {
985
- Credential?: string;
986
- CredentialProvider?: string;
1039
+ Credential?: string | undefined;
1040
+ CredentialProvider?: string | undefined;
987
1041
  }
988
1042
  export interface AwsCodeBuildProjectEnvironment {
989
- Certificate?: string;
990
- EnvironmentVariables?: AwsCodeBuildProjectEnvironmentEnvironmentVariablesDetails[];
991
- PrivilegedMode?: boolean;
992
- ImagePullCredentialsType?: string;
993
- RegistryCredential?: AwsCodeBuildProjectEnvironmentRegistryCredential;
994
- Type?: string;
1043
+ Certificate?: string | undefined;
1044
+ EnvironmentVariables?:
1045
+ | AwsCodeBuildProjectEnvironmentEnvironmentVariablesDetails[]
1046
+ | undefined;
1047
+ PrivilegedMode?: boolean | undefined;
1048
+ ImagePullCredentialsType?: string | undefined;
1049
+ RegistryCredential?:
1050
+ | AwsCodeBuildProjectEnvironmentRegistryCredential
1051
+ | undefined;
1052
+ Type?: string | undefined;
995
1053
  }
996
1054
  export interface AwsCodeBuildProjectLogsConfigCloudWatchLogsDetails {
997
- GroupName?: string;
998
- Status?: string;
999
- StreamName?: string;
1055
+ GroupName?: string | undefined;
1056
+ Status?: string | undefined;
1057
+ StreamName?: string | undefined;
1000
1058
  }
1001
1059
  export interface AwsCodeBuildProjectLogsConfigS3LogsDetails {
1002
- EncryptionDisabled?: boolean;
1003
- Location?: string;
1004
- Status?: string;
1060
+ EncryptionDisabled?: boolean | undefined;
1061
+ Location?: string | undefined;
1062
+ Status?: string | undefined;
1005
1063
  }
1006
1064
  export interface AwsCodeBuildProjectLogsConfigDetails {
1007
- CloudWatchLogs?: AwsCodeBuildProjectLogsConfigCloudWatchLogsDetails;
1008
- S3Logs?: AwsCodeBuildProjectLogsConfigS3LogsDetails;
1065
+ CloudWatchLogs?:
1066
+ | AwsCodeBuildProjectLogsConfigCloudWatchLogsDetails
1067
+ | undefined;
1068
+ S3Logs?: AwsCodeBuildProjectLogsConfigS3LogsDetails | undefined;
1009
1069
  }
1010
1070
  export interface AwsCodeBuildProjectSource {
1011
- Type?: string;
1012
- Location?: string;
1013
- GitCloneDepth?: number;
1014
- InsecureSsl?: boolean;
1071
+ Type?: string | undefined;
1072
+ Location?: string | undefined;
1073
+ GitCloneDepth?: number | undefined;
1074
+ InsecureSsl?: boolean | undefined;
1015
1075
  }
1016
1076
  export interface AwsCodeBuildProjectVpcConfig {
1017
- VpcId?: string;
1018
- Subnets?: string[];
1019
- SecurityGroupIds?: string[];
1077
+ VpcId?: string | undefined;
1078
+ Subnets?: string[] | undefined;
1079
+ SecurityGroupIds?: string[] | undefined;
1020
1080
  }
1021
1081
  export interface AwsCodeBuildProjectDetails {
1022
- EncryptionKey?: string;
1023
- Artifacts?: AwsCodeBuildProjectArtifactsDetails[];
1024
- Environment?: AwsCodeBuildProjectEnvironment;
1025
- Name?: string;
1026
- Source?: AwsCodeBuildProjectSource;
1027
- ServiceRole?: string;
1028
- LogsConfig?: AwsCodeBuildProjectLogsConfigDetails;
1029
- VpcConfig?: AwsCodeBuildProjectVpcConfig;
1030
- SecondaryArtifacts?: AwsCodeBuildProjectArtifactsDetails[];
1082
+ EncryptionKey?: string | undefined;
1083
+ Artifacts?: AwsCodeBuildProjectArtifactsDetails[] | undefined;
1084
+ Environment?: AwsCodeBuildProjectEnvironment | undefined;
1085
+ Name?: string | undefined;
1086
+ Source?: AwsCodeBuildProjectSource | undefined;
1087
+ ServiceRole?: string | undefined;
1088
+ LogsConfig?: AwsCodeBuildProjectLogsConfigDetails | undefined;
1089
+ VpcConfig?: AwsCodeBuildProjectVpcConfig | undefined;
1090
+ SecondaryArtifacts?: AwsCodeBuildProjectArtifactsDetails[] | undefined;
1031
1091
  }
1032
1092
  export interface AwsDmsEndpointDetails {
1033
- CertificateArn?: string;
1034
- DatabaseName?: string;
1035
- EndpointArn?: string;
1036
- EndpointIdentifier?: string;
1037
- EndpointType?: string;
1038
- EngineName?: string;
1039
- ExternalId?: string;
1040
- ExtraConnectionAttributes?: string;
1041
- KmsKeyId?: string;
1042
- Port?: number;
1043
- ServerName?: string;
1044
- SslMode?: string;
1045
- Username?: string;
1093
+ CertificateArn?: string | undefined;
1094
+ DatabaseName?: string | undefined;
1095
+ EndpointArn?: string | undefined;
1096
+ EndpointIdentifier?: string | undefined;
1097
+ EndpointType?: string | undefined;
1098
+ EngineName?: string | undefined;
1099
+ ExternalId?: string | undefined;
1100
+ ExtraConnectionAttributes?: string | undefined;
1101
+ KmsKeyId?: string | undefined;
1102
+ Port?: number | undefined;
1103
+ ServerName?: string | undefined;
1104
+ SslMode?: string | undefined;
1105
+ Username?: string | undefined;
1046
1106
  }
1047
1107
  export interface AwsDmsReplicationInstanceReplicationSubnetGroupDetails {
1048
- ReplicationSubnetGroupIdentifier?: string;
1108
+ ReplicationSubnetGroupIdentifier?: string | undefined;
1049
1109
  }
1050
1110
  export interface AwsDmsReplicationInstanceVpcSecurityGroupsDetails {
1051
- VpcSecurityGroupId?: string;
1111
+ VpcSecurityGroupId?: string | undefined;
1052
1112
  }
1053
1113
  export interface AwsDmsReplicationInstanceDetails {
1054
- AllocatedStorage?: number;
1055
- AutoMinorVersionUpgrade?: boolean;
1056
- AvailabilityZone?: string;
1057
- EngineVersion?: string;
1058
- KmsKeyId?: string;
1059
- MultiAZ?: boolean;
1060
- PreferredMaintenanceWindow?: string;
1061
- PubliclyAccessible?: boolean;
1062
- ReplicationInstanceClass?: string;
1063
- ReplicationInstanceIdentifier?: string;
1064
- ReplicationSubnetGroup?: AwsDmsReplicationInstanceReplicationSubnetGroupDetails;
1065
- VpcSecurityGroups?: AwsDmsReplicationInstanceVpcSecurityGroupsDetails[];
1114
+ AllocatedStorage?: number | undefined;
1115
+ AutoMinorVersionUpgrade?: boolean | undefined;
1116
+ AvailabilityZone?: string | undefined;
1117
+ EngineVersion?: string | undefined;
1118
+ KmsKeyId?: string | undefined;
1119
+ MultiAZ?: boolean | undefined;
1120
+ PreferredMaintenanceWindow?: string | undefined;
1121
+ PubliclyAccessible?: boolean | undefined;
1122
+ ReplicationInstanceClass?: string | undefined;
1123
+ ReplicationInstanceIdentifier?: string | undefined;
1124
+ ReplicationSubnetGroup?:
1125
+ | AwsDmsReplicationInstanceReplicationSubnetGroupDetails
1126
+ | undefined;
1127
+ VpcSecurityGroups?:
1128
+ | AwsDmsReplicationInstanceVpcSecurityGroupsDetails[]
1129
+ | undefined;
1066
1130
  }
1067
1131
  export interface AwsDmsReplicationTaskDetails {
1068
- CdcStartPosition?: string;
1069
- CdcStartTime?: string;
1070
- CdcStopPosition?: string;
1071
- MigrationType?: string;
1072
- Id?: string;
1073
- ResourceIdentifier?: string;
1074
- ReplicationInstanceArn?: string;
1075
- ReplicationTaskIdentifier?: string;
1076
- ReplicationTaskSettings?: string;
1077
- SourceEndpointArn?: string;
1078
- TableMappings?: string;
1079
- TargetEndpointArn?: string;
1080
- TaskData?: string;
1132
+ CdcStartPosition?: string | undefined;
1133
+ CdcStartTime?: string | undefined;
1134
+ CdcStopPosition?: string | undefined;
1135
+ MigrationType?: string | undefined;
1136
+ Id?: string | undefined;
1137
+ ResourceIdentifier?: string | undefined;
1138
+ ReplicationInstanceArn?: string | undefined;
1139
+ ReplicationTaskIdentifier?: string | undefined;
1140
+ ReplicationTaskSettings?: string | undefined;
1141
+ SourceEndpointArn?: string | undefined;
1142
+ TableMappings?: string | undefined;
1143
+ TargetEndpointArn?: string | undefined;
1144
+ TaskData?: string | undefined;
1081
1145
  }
1082
1146
  export interface AwsDynamoDbTableAttributeDefinition {
1083
- AttributeName?: string;
1084
- AttributeType?: string;
1147
+ AttributeName?: string | undefined;
1148
+ AttributeType?: string | undefined;
1085
1149
  }
1086
1150
  export interface AwsDynamoDbTableBillingModeSummary {
1087
- BillingMode?: string;
1088
- LastUpdateToPayPerRequestDateTime?: string;
1151
+ BillingMode?: string | undefined;
1152
+ LastUpdateToPayPerRequestDateTime?: string | undefined;
1089
1153
  }
1090
1154
  export interface AwsDynamoDbTableKeySchema {
1091
- AttributeName?: string;
1092
- KeyType?: string;
1155
+ AttributeName?: string | undefined;
1156
+ KeyType?: string | undefined;
1093
1157
  }
1094
1158
  export interface AwsDynamoDbTableProjection {
1095
- NonKeyAttributes?: string[];
1096
- ProjectionType?: string;
1159
+ NonKeyAttributes?: string[] | undefined;
1160
+ ProjectionType?: string | undefined;
1097
1161
  }
1098
1162
  export interface AwsDynamoDbTableProvisionedThroughput {
1099
- LastDecreaseDateTime?: string;
1100
- LastIncreaseDateTime?: string;
1101
- NumberOfDecreasesToday?: number;
1102
- ReadCapacityUnits?: number;
1103
- WriteCapacityUnits?: number;
1163
+ LastDecreaseDateTime?: string | undefined;
1164
+ LastIncreaseDateTime?: string | undefined;
1165
+ NumberOfDecreasesToday?: number | undefined;
1166
+ ReadCapacityUnits?: number | undefined;
1167
+ WriteCapacityUnits?: number | undefined;
1104
1168
  }
1105
1169
  export interface AwsDynamoDbTableGlobalSecondaryIndex {
1106
- Backfilling?: boolean;
1107
- IndexArn?: string;
1108
- IndexName?: string;
1109
- IndexSizeBytes?: number;
1110
- IndexStatus?: string;
1111
- ItemCount?: number;
1112
- KeySchema?: AwsDynamoDbTableKeySchema[];
1113
- Projection?: AwsDynamoDbTableProjection;
1114
- ProvisionedThroughput?: AwsDynamoDbTableProvisionedThroughput;
1170
+ Backfilling?: boolean | undefined;
1171
+ IndexArn?: string | undefined;
1172
+ IndexName?: string | undefined;
1173
+ IndexSizeBytes?: number | undefined;
1174
+ IndexStatus?: string | undefined;
1175
+ ItemCount?: number | undefined;
1176
+ KeySchema?: AwsDynamoDbTableKeySchema[] | undefined;
1177
+ Projection?: AwsDynamoDbTableProjection | undefined;
1178
+ ProvisionedThroughput?: AwsDynamoDbTableProvisionedThroughput | undefined;
1115
1179
  }
1116
1180
  export interface AwsDynamoDbTableLocalSecondaryIndex {
1117
- IndexArn?: string;
1118
- IndexName?: string;
1119
- KeySchema?: AwsDynamoDbTableKeySchema[];
1120
- Projection?: AwsDynamoDbTableProjection;
1181
+ IndexArn?: string | undefined;
1182
+ IndexName?: string | undefined;
1183
+ KeySchema?: AwsDynamoDbTableKeySchema[] | undefined;
1184
+ Projection?: AwsDynamoDbTableProjection | undefined;
1121
1185
  }
1122
1186
  export interface AwsDynamoDbTableProvisionedThroughputOverride {
1123
- ReadCapacityUnits?: number;
1187
+ ReadCapacityUnits?: number | undefined;
1124
1188
  }
1125
1189
  export interface AwsDynamoDbTableReplicaGlobalSecondaryIndex {
1126
- IndexName?: string;
1127
- ProvisionedThroughputOverride?: AwsDynamoDbTableProvisionedThroughputOverride;
1190
+ IndexName?: string | undefined;
1191
+ ProvisionedThroughputOverride?:
1192
+ | AwsDynamoDbTableProvisionedThroughputOverride
1193
+ | undefined;
1128
1194
  }
1129
1195
  export interface AwsDynamoDbTableReplica {
1130
- GlobalSecondaryIndexes?: AwsDynamoDbTableReplicaGlobalSecondaryIndex[];
1131
- KmsMasterKeyId?: string;
1132
- ProvisionedThroughputOverride?: AwsDynamoDbTableProvisionedThroughputOverride;
1133
- RegionName?: string;
1134
- ReplicaStatus?: string;
1135
- ReplicaStatusDescription?: string;
1196
+ GlobalSecondaryIndexes?:
1197
+ | AwsDynamoDbTableReplicaGlobalSecondaryIndex[]
1198
+ | undefined;
1199
+ KmsMasterKeyId?: string | undefined;
1200
+ ProvisionedThroughputOverride?:
1201
+ | AwsDynamoDbTableProvisionedThroughputOverride
1202
+ | undefined;
1203
+ RegionName?: string | undefined;
1204
+ ReplicaStatus?: string | undefined;
1205
+ ReplicaStatusDescription?: string | undefined;
1136
1206
  }
1137
1207
  export interface AwsDynamoDbTableRestoreSummary {
1138
- SourceBackupArn?: string;
1139
- SourceTableArn?: string;
1140
- RestoreDateTime?: string;
1141
- RestoreInProgress?: boolean;
1208
+ SourceBackupArn?: string | undefined;
1209
+ SourceTableArn?: string | undefined;
1210
+ RestoreDateTime?: string | undefined;
1211
+ RestoreInProgress?: boolean | undefined;
1142
1212
  }
1143
1213
  export interface AwsDynamoDbTableSseDescription {
1144
- InaccessibleEncryptionDateTime?: string;
1145
- Status?: string;
1146
- SseType?: string;
1147
- KmsMasterKeyArn?: string;
1214
+ InaccessibleEncryptionDateTime?: string | undefined;
1215
+ Status?: string | undefined;
1216
+ SseType?: string | undefined;
1217
+ KmsMasterKeyArn?: string | undefined;
1148
1218
  }
1149
1219
  export interface AwsDynamoDbTableStreamSpecification {
1150
- StreamEnabled?: boolean;
1151
- StreamViewType?: string;
1220
+ StreamEnabled?: boolean | undefined;
1221
+ StreamViewType?: string | undefined;
1152
1222
  }
1153
1223
  export interface AwsDynamoDbTableDetails {
1154
- AttributeDefinitions?: AwsDynamoDbTableAttributeDefinition[];
1155
- BillingModeSummary?: AwsDynamoDbTableBillingModeSummary;
1156
- CreationDateTime?: string;
1157
- GlobalSecondaryIndexes?: AwsDynamoDbTableGlobalSecondaryIndex[];
1158
- GlobalTableVersion?: string;
1159
- ItemCount?: number;
1160
- KeySchema?: AwsDynamoDbTableKeySchema[];
1161
- LatestStreamArn?: string;
1162
- LatestStreamLabel?: string;
1163
- LocalSecondaryIndexes?: AwsDynamoDbTableLocalSecondaryIndex[];
1164
- ProvisionedThroughput?: AwsDynamoDbTableProvisionedThroughput;
1165
- Replicas?: AwsDynamoDbTableReplica[];
1166
- RestoreSummary?: AwsDynamoDbTableRestoreSummary;
1167
- SseDescription?: AwsDynamoDbTableSseDescription;
1168
- StreamSpecification?: AwsDynamoDbTableStreamSpecification;
1169
- TableId?: string;
1170
- TableName?: string;
1171
- TableSizeBytes?: number;
1172
- TableStatus?: string;
1173
- DeletionProtectionEnabled?: boolean;
1224
+ AttributeDefinitions?: AwsDynamoDbTableAttributeDefinition[] | undefined;
1225
+ BillingModeSummary?: AwsDynamoDbTableBillingModeSummary | undefined;
1226
+ CreationDateTime?: string | undefined;
1227
+ GlobalSecondaryIndexes?: AwsDynamoDbTableGlobalSecondaryIndex[] | undefined;
1228
+ GlobalTableVersion?: string | undefined;
1229
+ ItemCount?: number | undefined;
1230
+ KeySchema?: AwsDynamoDbTableKeySchema[] | undefined;
1231
+ LatestStreamArn?: string | undefined;
1232
+ LatestStreamLabel?: string | undefined;
1233
+ LocalSecondaryIndexes?: AwsDynamoDbTableLocalSecondaryIndex[] | undefined;
1234
+ ProvisionedThroughput?: AwsDynamoDbTableProvisionedThroughput | undefined;
1235
+ Replicas?: AwsDynamoDbTableReplica[] | undefined;
1236
+ RestoreSummary?: AwsDynamoDbTableRestoreSummary | undefined;
1237
+ SseDescription?: AwsDynamoDbTableSseDescription | undefined;
1238
+ StreamSpecification?: AwsDynamoDbTableStreamSpecification | undefined;
1239
+ TableId?: string | undefined;
1240
+ TableName?: string | undefined;
1241
+ TableSizeBytes?: number | undefined;
1242
+ TableStatus?: string | undefined;
1243
+ DeletionProtectionEnabled?: boolean | undefined;
1174
1244
  }
1175
1245
  export interface AwsEc2ClientVpnEndpointAuthenticationOptionsActiveDirectoryDetails {
1176
- DirectoryId?: string;
1246
+ DirectoryId?: string | undefined;
1177
1247
  }
1178
1248
  export interface AwsEc2ClientVpnEndpointAuthenticationOptionsFederatedAuthenticationDetails {
1179
- SamlProviderArn?: string;
1180
- SelfServiceSamlProviderArn?: string;
1249
+ SamlProviderArn?: string | undefined;
1250
+ SelfServiceSamlProviderArn?: string | undefined;
1181
1251
  }
1182
1252
  export interface AwsEc2ClientVpnEndpointAuthenticationOptionsMutualAuthenticationDetails {
1183
- ClientRootCertificateChain?: string;
1253
+ ClientRootCertificateChain?: string | undefined;
1184
1254
  }
1185
1255
  export interface AwsEc2ClientVpnEndpointAuthenticationOptionsDetails {
1186
- Type?: string;
1187
- ActiveDirectory?: AwsEc2ClientVpnEndpointAuthenticationOptionsActiveDirectoryDetails;
1188
- MutualAuthentication?: AwsEc2ClientVpnEndpointAuthenticationOptionsMutualAuthenticationDetails;
1189
- FederatedAuthentication?: AwsEc2ClientVpnEndpointAuthenticationOptionsFederatedAuthenticationDetails;
1256
+ Type?: string | undefined;
1257
+ ActiveDirectory?:
1258
+ | AwsEc2ClientVpnEndpointAuthenticationOptionsActiveDirectoryDetails
1259
+ | undefined;
1260
+ MutualAuthentication?:
1261
+ | AwsEc2ClientVpnEndpointAuthenticationOptionsMutualAuthenticationDetails
1262
+ | undefined;
1263
+ FederatedAuthentication?:
1264
+ | AwsEc2ClientVpnEndpointAuthenticationOptionsFederatedAuthenticationDetails
1265
+ | undefined;
1190
1266
  }
1191
1267
  export interface AwsEc2ClientVpnEndpointClientConnectOptionsStatusDetails {
1192
- Code?: string;
1193
- Message?: string;
1268
+ Code?: string | undefined;
1269
+ Message?: string | undefined;
1194
1270
  }
1195
1271
  export interface AwsEc2ClientVpnEndpointClientConnectOptionsDetails {
1196
- Enabled?: boolean;
1197
- LambdaFunctionArn?: string;
1198
- Status?: AwsEc2ClientVpnEndpointClientConnectOptionsStatusDetails;
1272
+ Enabled?: boolean | undefined;
1273
+ LambdaFunctionArn?: string | undefined;
1274
+ Status?: AwsEc2ClientVpnEndpointClientConnectOptionsStatusDetails | undefined;
1199
1275
  }
1200
1276
  export interface AwsEc2ClientVpnEndpointClientLoginBannerOptionsDetails {
1201
- Enabled?: boolean;
1202
- BannerText?: string;
1277
+ Enabled?: boolean | undefined;
1278
+ BannerText?: string | undefined;
1203
1279
  }
1204
1280
  export interface AwsEc2ClientVpnEndpointConnectionLogOptionsDetails {
1205
- Enabled?: boolean;
1206
- CloudwatchLogGroup?: string;
1207
- CloudwatchLogStream?: string;
1281
+ Enabled?: boolean | undefined;
1282
+ CloudwatchLogGroup?: string | undefined;
1283
+ CloudwatchLogStream?: string | undefined;
1208
1284
  }
1209
1285
  export interface AwsEc2ClientVpnEndpointDetails {
1210
- ClientVpnEndpointId?: string;
1211
- Description?: string;
1212
- ClientCidrBlock?: string;
1213
- DnsServer?: string[];
1214
- SplitTunnel?: boolean;
1215
- TransportProtocol?: string;
1216
- VpnPort?: number;
1217
- ServerCertificateArn?: string;
1218
- AuthenticationOptions?: AwsEc2ClientVpnEndpointAuthenticationOptionsDetails[];
1219
- ConnectionLogOptions?: AwsEc2ClientVpnEndpointConnectionLogOptionsDetails;
1220
- SecurityGroupIdSet?: string[];
1221
- VpcId?: string;
1222
- SelfServicePortalUrl?: string;
1223
- ClientConnectOptions?: AwsEc2ClientVpnEndpointClientConnectOptionsDetails;
1224
- SessionTimeoutHours?: number;
1225
- ClientLoginBannerOptions?: AwsEc2ClientVpnEndpointClientLoginBannerOptionsDetails;
1286
+ ClientVpnEndpointId?: string | undefined;
1287
+ Description?: string | undefined;
1288
+ ClientCidrBlock?: string | undefined;
1289
+ DnsServer?: string[] | undefined;
1290
+ SplitTunnel?: boolean | undefined;
1291
+ TransportProtocol?: string | undefined;
1292
+ VpnPort?: number | undefined;
1293
+ ServerCertificateArn?: string | undefined;
1294
+ AuthenticationOptions?:
1295
+ | AwsEc2ClientVpnEndpointAuthenticationOptionsDetails[]
1296
+ | undefined;
1297
+ ConnectionLogOptions?:
1298
+ | AwsEc2ClientVpnEndpointConnectionLogOptionsDetails
1299
+ | undefined;
1300
+ SecurityGroupIdSet?: string[] | undefined;
1301
+ VpcId?: string | undefined;
1302
+ SelfServicePortalUrl?: string | undefined;
1303
+ ClientConnectOptions?:
1304
+ | AwsEc2ClientVpnEndpointClientConnectOptionsDetails
1305
+ | undefined;
1306
+ SessionTimeoutHours?: number | undefined;
1307
+ ClientLoginBannerOptions?:
1308
+ | AwsEc2ClientVpnEndpointClientLoginBannerOptionsDetails
1309
+ | undefined;
1226
1310
  }
1227
1311
  export interface AwsEc2EipDetails {
1228
- InstanceId?: string;
1229
- PublicIp?: string;
1230
- AllocationId?: string;
1231
- AssociationId?: string;
1232
- Domain?: string;
1233
- PublicIpv4Pool?: string;
1234
- NetworkBorderGroup?: string;
1235
- NetworkInterfaceId?: string;
1236
- NetworkInterfaceOwnerId?: string;
1237
- PrivateIpAddress?: string;
1312
+ InstanceId?: string | undefined;
1313
+ PublicIp?: string | undefined;
1314
+ AllocationId?: string | undefined;
1315
+ AssociationId?: string | undefined;
1316
+ Domain?: string | undefined;
1317
+ PublicIpv4Pool?: string | undefined;
1318
+ NetworkBorderGroup?: string | undefined;
1319
+ NetworkInterfaceId?: string | undefined;
1320
+ NetworkInterfaceOwnerId?: string | undefined;
1321
+ PrivateIpAddress?: string | undefined;
1238
1322
  }
1239
1323
  export interface AwsEc2InstanceMetadataOptions {
1240
- HttpEndpoint?: string;
1241
- HttpProtocolIpv6?: string;
1242
- HttpPutResponseHopLimit?: number;
1243
- HttpTokens?: string;
1244
- InstanceMetadataTags?: string;
1324
+ HttpEndpoint?: string | undefined;
1325
+ HttpProtocolIpv6?: string | undefined;
1326
+ HttpPutResponseHopLimit?: number | undefined;
1327
+ HttpTokens?: string | undefined;
1328
+ InstanceMetadataTags?: string | undefined;
1245
1329
  }
1246
1330
  export interface AwsEc2InstanceMonitoringDetails {
1247
- State?: string;
1331
+ State?: string | undefined;
1248
1332
  }
1249
1333
  export interface AwsEc2InstanceNetworkInterfacesDetails {
1250
- NetworkInterfaceId?: string;
1334
+ NetworkInterfaceId?: string | undefined;
1251
1335
  }
1252
1336
  export interface AwsEc2InstanceDetails {
1253
- Type?: string;
1254
- ImageId?: string;
1255
- IpV4Addresses?: string[];
1256
- IpV6Addresses?: string[];
1257
- KeyName?: string;
1258
- IamInstanceProfileArn?: string;
1259
- VpcId?: string;
1260
- SubnetId?: string;
1261
- LaunchedAt?: string;
1262
- NetworkInterfaces?: AwsEc2InstanceNetworkInterfacesDetails[];
1263
- VirtualizationType?: string;
1264
- MetadataOptions?: AwsEc2InstanceMetadataOptions;
1265
- Monitoring?: AwsEc2InstanceMonitoringDetails;
1337
+ Type?: string | undefined;
1338
+ ImageId?: string | undefined;
1339
+ IpV4Addresses?: string[] | undefined;
1340
+ IpV6Addresses?: string[] | undefined;
1341
+ KeyName?: string | undefined;
1342
+ IamInstanceProfileArn?: string | undefined;
1343
+ VpcId?: string | undefined;
1344
+ SubnetId?: string | undefined;
1345
+ LaunchedAt?: string | undefined;
1346
+ NetworkInterfaces?: AwsEc2InstanceNetworkInterfacesDetails[] | undefined;
1347
+ VirtualizationType?: string | undefined;
1348
+ MetadataOptions?: AwsEc2InstanceMetadataOptions | undefined;
1349
+ Monitoring?: AwsEc2InstanceMonitoringDetails | undefined;
1266
1350
  }
1267
1351
  export interface AwsEc2LaunchTemplateDataBlockDeviceMappingSetEbsDetails {
1268
- DeleteOnTermination?: boolean;
1269
- Encrypted?: boolean;
1270
- Iops?: number;
1271
- KmsKeyId?: string;
1272
- SnapshotId?: string;
1273
- Throughput?: number;
1274
- VolumeSize?: number;
1275
- VolumeType?: string;
1352
+ DeleteOnTermination?: boolean | undefined;
1353
+ Encrypted?: boolean | undefined;
1354
+ Iops?: number | undefined;
1355
+ KmsKeyId?: string | undefined;
1356
+ SnapshotId?: string | undefined;
1357
+ Throughput?: number | undefined;
1358
+ VolumeSize?: number | undefined;
1359
+ VolumeType?: string | undefined;
1276
1360
  }
1277
1361
  export interface AwsEc2LaunchTemplateDataBlockDeviceMappingSetDetails {
1278
- DeviceName?: string;
1279
- Ebs?: AwsEc2LaunchTemplateDataBlockDeviceMappingSetEbsDetails;
1280
- NoDevice?: string;
1281
- VirtualName?: string;
1362
+ DeviceName?: string | undefined;
1363
+ Ebs?: AwsEc2LaunchTemplateDataBlockDeviceMappingSetEbsDetails | undefined;
1364
+ NoDevice?: string | undefined;
1365
+ VirtualName?: string | undefined;
1282
1366
  }
1283
1367
  export interface AwsEc2LaunchTemplateDataCapacityReservationSpecificationCapacityReservationTargetDetails {
1284
- CapacityReservationId?: string;
1285
- CapacityReservationResourceGroupArn?: string;
1368
+ CapacityReservationId?: string | undefined;
1369
+ CapacityReservationResourceGroupArn?: string | undefined;
1286
1370
  }
1287
1371
  export interface AwsEc2LaunchTemplateDataCapacityReservationSpecificationDetails {
1288
- CapacityReservationPreference?: string;
1289
- CapacityReservationTarget?: AwsEc2LaunchTemplateDataCapacityReservationSpecificationCapacityReservationTargetDetails;
1372
+ CapacityReservationPreference?: string | undefined;
1373
+ CapacityReservationTarget?:
1374
+ | AwsEc2LaunchTemplateDataCapacityReservationSpecificationCapacityReservationTargetDetails
1375
+ | undefined;
1290
1376
  }
1291
1377
  export interface AwsEc2LaunchTemplateDataCpuOptionsDetails {
1292
- CoreCount?: number;
1293
- ThreadsPerCore?: number;
1378
+ CoreCount?: number | undefined;
1379
+ ThreadsPerCore?: number | undefined;
1294
1380
  }
1295
1381
  export interface AwsEc2LaunchTemplateDataCreditSpecificationDetails {
1296
- CpuCredits?: string;
1382
+ CpuCredits?: string | undefined;
1297
1383
  }
1298
1384
  export interface AwsEc2LaunchTemplateDataElasticGpuSpecificationSetDetails {
1299
- Type?: string;
1385
+ Type?: string | undefined;
1300
1386
  }
1301
1387
  export interface AwsEc2LaunchTemplateDataElasticInferenceAcceleratorSetDetails {
1302
- Count?: number;
1303
- Type?: string;
1388
+ Count?: number | undefined;
1389
+ Type?: string | undefined;
1304
1390
  }
1305
1391
  export interface AwsEc2LaunchTemplateDataEnclaveOptionsDetails {
1306
- Enabled?: boolean;
1392
+ Enabled?: boolean | undefined;
1307
1393
  }
1308
1394
  export interface AwsEc2LaunchTemplateDataHibernationOptionsDetails {
1309
- Configured?: boolean;
1395
+ Configured?: boolean | undefined;
1310
1396
  }
1311
1397
  export interface AwsEc2LaunchTemplateDataIamInstanceProfileDetails {
1312
- Arn?: string;
1313
- Name?: string;
1398
+ Arn?: string | undefined;
1399
+ Name?: string | undefined;
1314
1400
  }
1315
1401
  export interface AwsEc2LaunchTemplateDataInstanceMarketOptionsSpotOptionsDetails {
1316
- BlockDurationMinutes?: number;
1317
- InstanceInterruptionBehavior?: string;
1318
- MaxPrice?: string;
1319
- SpotInstanceType?: string;
1320
- ValidUntil?: string;
1402
+ BlockDurationMinutes?: number | undefined;
1403
+ InstanceInterruptionBehavior?: string | undefined;
1404
+ MaxPrice?: string | undefined;
1405
+ SpotInstanceType?: string | undefined;
1406
+ ValidUntil?: string | undefined;
1321
1407
  }
1322
1408
  export interface AwsEc2LaunchTemplateDataInstanceMarketOptionsDetails {
1323
- MarketType?: string;
1324
- SpotOptions?: AwsEc2LaunchTemplateDataInstanceMarketOptionsSpotOptionsDetails;
1409
+ MarketType?: string | undefined;
1410
+ SpotOptions?:
1411
+ | AwsEc2LaunchTemplateDataInstanceMarketOptionsSpotOptionsDetails
1412
+ | undefined;
1325
1413
  }
1326
1414
  export interface AwsEc2LaunchTemplateDataInstanceRequirementsAcceleratorCountDetails {
1327
- Max?: number;
1328
- Min?: number;
1415
+ Max?: number | undefined;
1416
+ Min?: number | undefined;
1329
1417
  }
1330
1418
  export interface AwsEc2LaunchTemplateDataInstanceRequirementsAcceleratorTotalMemoryMiBDetails {
1331
- Max?: number;
1332
- Min?: number;
1419
+ Max?: number | undefined;
1420
+ Min?: number | undefined;
1333
1421
  }
1334
1422
  export interface AwsEc2LaunchTemplateDataInstanceRequirementsBaselineEbsBandwidthMbpsDetails {
1335
- Max?: number;
1336
- Min?: number;
1423
+ Max?: number | undefined;
1424
+ Min?: number | undefined;
1337
1425
  }
1338
1426
  export interface AwsEc2LaunchTemplateDataInstanceRequirementsMemoryGiBPerVCpuDetails {
1339
- Max?: number;
1340
- Min?: number;
1427
+ Max?: number | undefined;
1428
+ Min?: number | undefined;
1341
1429
  }
1342
1430
  export interface AwsEc2LaunchTemplateDataInstanceRequirementsMemoryMiBDetails {
1343
- Max?: number;
1344
- Min?: number;
1431
+ Max?: number | undefined;
1432
+ Min?: number | undefined;
1345
1433
  }
1346
1434
  export interface AwsEc2LaunchTemplateDataInstanceRequirementsNetworkInterfaceCountDetails {
1347
- Max?: number;
1348
- Min?: number;
1435
+ Max?: number | undefined;
1436
+ Min?: number | undefined;
1349
1437
  }
1350
1438
  export interface AwsEc2LaunchTemplateDataInstanceRequirementsTotalLocalStorageGBDetails {
1351
- Max?: number;
1352
- Min?: number;
1439
+ Max?: number | undefined;
1440
+ Min?: number | undefined;
1353
1441
  }
1354
1442
  export interface AwsEc2LaunchTemplateDataInstanceRequirementsVCpuCountDetails {
1355
- Max?: number;
1356
- Min?: number;
1443
+ Max?: number | undefined;
1444
+ Min?: number | undefined;
1357
1445
  }
1358
1446
  export interface AwsEc2LaunchTemplateDataInstanceRequirementsDetails {
1359
- AcceleratorCount?: AwsEc2LaunchTemplateDataInstanceRequirementsAcceleratorCountDetails;
1360
- AcceleratorManufacturers?: string[];
1361
- AcceleratorNames?: string[];
1362
- AcceleratorTotalMemoryMiB?: AwsEc2LaunchTemplateDataInstanceRequirementsAcceleratorTotalMemoryMiBDetails;
1363
- AcceleratorTypes?: string[];
1364
- BareMetal?: string;
1365
- BaselineEbsBandwidthMbps?: AwsEc2LaunchTemplateDataInstanceRequirementsBaselineEbsBandwidthMbpsDetails;
1366
- BurstablePerformance?: string;
1367
- CpuManufacturers?: string[];
1368
- ExcludedInstanceTypes?: string[];
1369
- InstanceGenerations?: string[];
1370
- LocalStorage?: string;
1371
- LocalStorageTypes?: string[];
1372
- MemoryGiBPerVCpu?: AwsEc2LaunchTemplateDataInstanceRequirementsMemoryGiBPerVCpuDetails;
1373
- MemoryMiB?: AwsEc2LaunchTemplateDataInstanceRequirementsMemoryMiBDetails;
1374
- NetworkInterfaceCount?: AwsEc2LaunchTemplateDataInstanceRequirementsNetworkInterfaceCountDetails;
1375
- OnDemandMaxPricePercentageOverLowestPrice?: number;
1376
- RequireHibernateSupport?: boolean;
1377
- SpotMaxPricePercentageOverLowestPrice?: number;
1378
- TotalLocalStorageGB?: AwsEc2LaunchTemplateDataInstanceRequirementsTotalLocalStorageGBDetails;
1379
- VCpuCount?: AwsEc2LaunchTemplateDataInstanceRequirementsVCpuCountDetails;
1447
+ AcceleratorCount?:
1448
+ | AwsEc2LaunchTemplateDataInstanceRequirementsAcceleratorCountDetails
1449
+ | undefined;
1450
+ AcceleratorManufacturers?: string[] | undefined;
1451
+ AcceleratorNames?: string[] | undefined;
1452
+ AcceleratorTotalMemoryMiB?:
1453
+ | AwsEc2LaunchTemplateDataInstanceRequirementsAcceleratorTotalMemoryMiBDetails
1454
+ | undefined;
1455
+ AcceleratorTypes?: string[] | undefined;
1456
+ BareMetal?: string | undefined;
1457
+ BaselineEbsBandwidthMbps?:
1458
+ | AwsEc2LaunchTemplateDataInstanceRequirementsBaselineEbsBandwidthMbpsDetails
1459
+ | undefined;
1460
+ BurstablePerformance?: string | undefined;
1461
+ CpuManufacturers?: string[] | undefined;
1462
+ ExcludedInstanceTypes?: string[] | undefined;
1463
+ InstanceGenerations?: string[] | undefined;
1464
+ LocalStorage?: string | undefined;
1465
+ LocalStorageTypes?: string[] | undefined;
1466
+ MemoryGiBPerVCpu?:
1467
+ | AwsEc2LaunchTemplateDataInstanceRequirementsMemoryGiBPerVCpuDetails
1468
+ | undefined;
1469
+ MemoryMiB?:
1470
+ | AwsEc2LaunchTemplateDataInstanceRequirementsMemoryMiBDetails
1471
+ | undefined;
1472
+ NetworkInterfaceCount?:
1473
+ | AwsEc2LaunchTemplateDataInstanceRequirementsNetworkInterfaceCountDetails
1474
+ | undefined;
1475
+ OnDemandMaxPricePercentageOverLowestPrice?: number | undefined;
1476
+ RequireHibernateSupport?: boolean | undefined;
1477
+ SpotMaxPricePercentageOverLowestPrice?: number | undefined;
1478
+ TotalLocalStorageGB?:
1479
+ | AwsEc2LaunchTemplateDataInstanceRequirementsTotalLocalStorageGBDetails
1480
+ | undefined;
1481
+ VCpuCount?:
1482
+ | AwsEc2LaunchTemplateDataInstanceRequirementsVCpuCountDetails
1483
+ | undefined;
1380
1484
  }
1381
1485
  export interface AwsEc2LaunchTemplateDataLicenseSetDetails {
1382
- LicenseConfigurationArn?: string;
1486
+ LicenseConfigurationArn?: string | undefined;
1383
1487
  }
1384
1488
  export interface AwsEc2LaunchTemplateDataMaintenanceOptionsDetails {
1385
- AutoRecovery?: string;
1489
+ AutoRecovery?: string | undefined;
1386
1490
  }
1387
1491
  export interface AwsEc2LaunchTemplateDataMetadataOptionsDetails {
1388
- HttpEndpoint?: string;
1389
- HttpProtocolIpv6?: string;
1390
- HttpTokens?: string;
1391
- HttpPutResponseHopLimit?: number;
1392
- InstanceMetadataTags?: string;
1492
+ HttpEndpoint?: string | undefined;
1493
+ HttpProtocolIpv6?: string | undefined;
1494
+ HttpTokens?: string | undefined;
1495
+ HttpPutResponseHopLimit?: number | undefined;
1496
+ InstanceMetadataTags?: string | undefined;
1393
1497
  }
1394
1498
  export interface AwsEc2LaunchTemplateDataMonitoringDetails {
1395
- Enabled?: boolean;
1499
+ Enabled?: boolean | undefined;
1396
1500
  }
1397
1501
  export interface AwsEc2LaunchTemplateDataNetworkInterfaceSetIpv4PrefixesDetails {
1398
- Ipv4Prefix?: string;
1502
+ Ipv4Prefix?: string | undefined;
1399
1503
  }
1400
1504
  export interface AwsEc2LaunchTemplateDataNetworkInterfaceSetIpv6AddressesDetails {
1401
- Ipv6Address?: string;
1505
+ Ipv6Address?: string | undefined;
1402
1506
  }
1403
1507
  export interface AwsEc2LaunchTemplateDataNetworkInterfaceSetIpv6PrefixesDetails {
1404
- Ipv6Prefix?: string;
1508
+ Ipv6Prefix?: string | undefined;
1405
1509
  }
1406
1510
  export interface AwsEc2LaunchTemplateDataNetworkInterfaceSetPrivateIpAddressesDetails {
1407
- Primary?: boolean;
1408
- PrivateIpAddress?: string;
1511
+ Primary?: boolean | undefined;
1512
+ PrivateIpAddress?: string | undefined;
1409
1513
  }
1410
1514
  export interface AwsEc2LaunchTemplateDataNetworkInterfaceSetDetails {
1411
- AssociateCarrierIpAddress?: boolean;
1412
- AssociatePublicIpAddress?: boolean;
1413
- DeleteOnTermination?: boolean;
1414
- Description?: string;
1415
- DeviceIndex?: number;
1416
- Groups?: string[];
1417
- InterfaceType?: string;
1418
- Ipv4PrefixCount?: number;
1419
- Ipv4Prefixes?: AwsEc2LaunchTemplateDataNetworkInterfaceSetIpv4PrefixesDetails[];
1420
- Ipv6AddressCount?: number;
1421
- Ipv6Addresses?: AwsEc2LaunchTemplateDataNetworkInterfaceSetIpv6AddressesDetails[];
1422
- Ipv6PrefixCount?: number;
1423
- Ipv6Prefixes?: AwsEc2LaunchTemplateDataNetworkInterfaceSetIpv6PrefixesDetails[];
1424
- NetworkCardIndex?: number;
1425
- NetworkInterfaceId?: string;
1426
- PrivateIpAddress?: string;
1427
- PrivateIpAddresses?: AwsEc2LaunchTemplateDataNetworkInterfaceSetPrivateIpAddressesDetails[];
1428
- SecondaryPrivateIpAddressCount?: number;
1429
- SubnetId?: string;
1515
+ AssociateCarrierIpAddress?: boolean | undefined;
1516
+ AssociatePublicIpAddress?: boolean | undefined;
1517
+ DeleteOnTermination?: boolean | undefined;
1518
+ Description?: string | undefined;
1519
+ DeviceIndex?: number | undefined;
1520
+ Groups?: string[] | undefined;
1521
+ InterfaceType?: string | undefined;
1522
+ Ipv4PrefixCount?: number | undefined;
1523
+ Ipv4Prefixes?:
1524
+ | AwsEc2LaunchTemplateDataNetworkInterfaceSetIpv4PrefixesDetails[]
1525
+ | undefined;
1526
+ Ipv6AddressCount?: number | undefined;
1527
+ Ipv6Addresses?:
1528
+ | AwsEc2LaunchTemplateDataNetworkInterfaceSetIpv6AddressesDetails[]
1529
+ | undefined;
1530
+ Ipv6PrefixCount?: number | undefined;
1531
+ Ipv6Prefixes?:
1532
+ | AwsEc2LaunchTemplateDataNetworkInterfaceSetIpv6PrefixesDetails[]
1533
+ | undefined;
1534
+ NetworkCardIndex?: number | undefined;
1535
+ NetworkInterfaceId?: string | undefined;
1536
+ PrivateIpAddress?: string | undefined;
1537
+ PrivateIpAddresses?:
1538
+ | AwsEc2LaunchTemplateDataNetworkInterfaceSetPrivateIpAddressesDetails[]
1539
+ | undefined;
1540
+ SecondaryPrivateIpAddressCount?: number | undefined;
1541
+ SubnetId?: string | undefined;
1430
1542
  }
1431
1543
  export interface AwsEc2LaunchTemplateDataPlacementDetails {
1432
- Affinity?: string;
1433
- AvailabilityZone?: string;
1434
- GroupName?: string;
1435
- HostId?: string;
1436
- HostResourceGroupArn?: string;
1437
- PartitionNumber?: number;
1438
- SpreadDomain?: string;
1439
- Tenancy?: string;
1544
+ Affinity?: string | undefined;
1545
+ AvailabilityZone?: string | undefined;
1546
+ GroupName?: string | undefined;
1547
+ HostId?: string | undefined;
1548
+ HostResourceGroupArn?: string | undefined;
1549
+ PartitionNumber?: number | undefined;
1550
+ SpreadDomain?: string | undefined;
1551
+ Tenancy?: string | undefined;
1440
1552
  }
1441
1553
  export interface AwsEc2LaunchTemplateDataPrivateDnsNameOptionsDetails {
1442
- EnableResourceNameDnsAAAARecord?: boolean;
1443
- EnableResourceNameDnsARecord?: boolean;
1444
- HostnameType?: string;
1554
+ EnableResourceNameDnsAAAARecord?: boolean | undefined;
1555
+ EnableResourceNameDnsARecord?: boolean | undefined;
1556
+ HostnameType?: string | undefined;
1445
1557
  }
1446
1558
  export interface AwsEc2LaunchTemplateDataDetails {
1447
- BlockDeviceMappingSet?: AwsEc2LaunchTemplateDataBlockDeviceMappingSetDetails[];
1448
- CapacityReservationSpecification?: AwsEc2LaunchTemplateDataCapacityReservationSpecificationDetails;
1449
- CpuOptions?: AwsEc2LaunchTemplateDataCpuOptionsDetails;
1450
- CreditSpecification?: AwsEc2LaunchTemplateDataCreditSpecificationDetails;
1451
- DisableApiStop?: boolean;
1452
- DisableApiTermination?: boolean;
1453
- EbsOptimized?: boolean;
1454
- ElasticGpuSpecificationSet?: AwsEc2LaunchTemplateDataElasticGpuSpecificationSetDetails[];
1455
- ElasticInferenceAcceleratorSet?: AwsEc2LaunchTemplateDataElasticInferenceAcceleratorSetDetails[];
1456
- EnclaveOptions?: AwsEc2LaunchTemplateDataEnclaveOptionsDetails;
1457
- HibernationOptions?: AwsEc2LaunchTemplateDataHibernationOptionsDetails;
1458
- IamInstanceProfile?: AwsEc2LaunchTemplateDataIamInstanceProfileDetails;
1459
- ImageId?: string;
1460
- InstanceInitiatedShutdownBehavior?: string;
1461
- InstanceMarketOptions?: AwsEc2LaunchTemplateDataInstanceMarketOptionsDetails;
1462
- InstanceRequirements?: AwsEc2LaunchTemplateDataInstanceRequirementsDetails;
1463
- InstanceType?: string;
1464
- KernelId?: string;
1465
- KeyName?: string;
1466
- LicenseSet?: AwsEc2LaunchTemplateDataLicenseSetDetails[];
1467
- MaintenanceOptions?: AwsEc2LaunchTemplateDataMaintenanceOptionsDetails;
1468
- MetadataOptions?: AwsEc2LaunchTemplateDataMetadataOptionsDetails;
1469
- Monitoring?: AwsEc2LaunchTemplateDataMonitoringDetails;
1470
- NetworkInterfaceSet?: AwsEc2LaunchTemplateDataNetworkInterfaceSetDetails[];
1471
- Placement?: AwsEc2LaunchTemplateDataPlacementDetails;
1472
- PrivateDnsNameOptions?: AwsEc2LaunchTemplateDataPrivateDnsNameOptionsDetails;
1473
- RamDiskId?: string;
1474
- SecurityGroupIdSet?: string[];
1475
- SecurityGroupSet?: string[];
1476
- UserData?: string;
1559
+ BlockDeviceMappingSet?:
1560
+ | AwsEc2LaunchTemplateDataBlockDeviceMappingSetDetails[]
1561
+ | undefined;
1562
+ CapacityReservationSpecification?:
1563
+ | AwsEc2LaunchTemplateDataCapacityReservationSpecificationDetails
1564
+ | undefined;
1565
+ CpuOptions?: AwsEc2LaunchTemplateDataCpuOptionsDetails | undefined;
1566
+ CreditSpecification?:
1567
+ | AwsEc2LaunchTemplateDataCreditSpecificationDetails
1568
+ | undefined;
1569
+ DisableApiStop?: boolean | undefined;
1570
+ DisableApiTermination?: boolean | undefined;
1571
+ EbsOptimized?: boolean | undefined;
1572
+ ElasticGpuSpecificationSet?:
1573
+ | AwsEc2LaunchTemplateDataElasticGpuSpecificationSetDetails[]
1574
+ | undefined;
1575
+ ElasticInferenceAcceleratorSet?:
1576
+ | AwsEc2LaunchTemplateDataElasticInferenceAcceleratorSetDetails[]
1577
+ | undefined;
1578
+ EnclaveOptions?: AwsEc2LaunchTemplateDataEnclaveOptionsDetails | undefined;
1579
+ HibernationOptions?:
1580
+ | AwsEc2LaunchTemplateDataHibernationOptionsDetails
1581
+ | undefined;
1582
+ IamInstanceProfile?:
1583
+ | AwsEc2LaunchTemplateDataIamInstanceProfileDetails
1584
+ | undefined;
1585
+ ImageId?: string | undefined;
1586
+ InstanceInitiatedShutdownBehavior?: string | undefined;
1587
+ InstanceMarketOptions?:
1588
+ | AwsEc2LaunchTemplateDataInstanceMarketOptionsDetails
1589
+ | undefined;
1590
+ InstanceRequirements?:
1591
+ | AwsEc2LaunchTemplateDataInstanceRequirementsDetails
1592
+ | undefined;
1593
+ InstanceType?: string | undefined;
1594
+ KernelId?: string | undefined;
1595
+ KeyName?: string | undefined;
1596
+ LicenseSet?: AwsEc2LaunchTemplateDataLicenseSetDetails[] | undefined;
1597
+ MaintenanceOptions?:
1598
+ | AwsEc2LaunchTemplateDataMaintenanceOptionsDetails
1599
+ | undefined;
1600
+ MetadataOptions?: AwsEc2LaunchTemplateDataMetadataOptionsDetails | undefined;
1601
+ Monitoring?: AwsEc2LaunchTemplateDataMonitoringDetails | undefined;
1602
+ NetworkInterfaceSet?:
1603
+ | AwsEc2LaunchTemplateDataNetworkInterfaceSetDetails[]
1604
+ | undefined;
1605
+ Placement?: AwsEc2LaunchTemplateDataPlacementDetails | undefined;
1606
+ PrivateDnsNameOptions?:
1607
+ | AwsEc2LaunchTemplateDataPrivateDnsNameOptionsDetails
1608
+ | undefined;
1609
+ RamDiskId?: string | undefined;
1610
+ SecurityGroupIdSet?: string[] | undefined;
1611
+ SecurityGroupSet?: string[] | undefined;
1612
+ UserData?: string | undefined;
1477
1613
  }
1478
1614
  export interface AwsEc2LaunchTemplateDetails {
1479
- LaunchTemplateName?: string;
1480
- Id?: string;
1481
- LaunchTemplateData?: AwsEc2LaunchTemplateDataDetails;
1482
- DefaultVersionNumber?: number;
1483
- LatestVersionNumber?: number;
1615
+ LaunchTemplateName?: string | undefined;
1616
+ Id?: string | undefined;
1617
+ LaunchTemplateData?: AwsEc2LaunchTemplateDataDetails | undefined;
1618
+ DefaultVersionNumber?: number | undefined;
1619
+ LatestVersionNumber?: number | undefined;
1484
1620
  }
1485
1621
  export interface AwsEc2NetworkAclAssociation {
1486
- NetworkAclAssociationId?: string;
1487
- NetworkAclId?: string;
1488
- SubnetId?: string;
1622
+ NetworkAclAssociationId?: string | undefined;
1623
+ NetworkAclId?: string | undefined;
1624
+ SubnetId?: string | undefined;
1489
1625
  }
1490
1626
  export interface IcmpTypeCode {
1491
- Code?: number;
1492
- Type?: number;
1627
+ Code?: number | undefined;
1628
+ Type?: number | undefined;
1493
1629
  }
1494
1630
  export interface PortRangeFromTo {
1495
- From?: number;
1496
- To?: number;
1631
+ From?: number | undefined;
1632
+ To?: number | undefined;
1497
1633
  }
1498
1634
  export interface AwsEc2NetworkAclEntry {
1499
- CidrBlock?: string;
1500
- Egress?: boolean;
1501
- IcmpTypeCode?: IcmpTypeCode;
1502
- Ipv6CidrBlock?: string;
1503
- PortRange?: PortRangeFromTo;
1504
- Protocol?: string;
1505
- RuleAction?: string;
1506
- RuleNumber?: number;
1635
+ CidrBlock?: string | undefined;
1636
+ Egress?: boolean | undefined;
1637
+ IcmpTypeCode?: IcmpTypeCode | undefined;
1638
+ Ipv6CidrBlock?: string | undefined;
1639
+ PortRange?: PortRangeFromTo | undefined;
1640
+ Protocol?: string | undefined;
1641
+ RuleAction?: string | undefined;
1642
+ RuleNumber?: number | undefined;
1507
1643
  }
1508
1644
  export interface AwsEc2NetworkAclDetails {
1509
- IsDefault?: boolean;
1510
- NetworkAclId?: string;
1511
- OwnerId?: string;
1512
- VpcId?: string;
1513
- Associations?: AwsEc2NetworkAclAssociation[];
1514
- Entries?: AwsEc2NetworkAclEntry[];
1645
+ IsDefault?: boolean | undefined;
1646
+ NetworkAclId?: string | undefined;
1647
+ OwnerId?: string | undefined;
1648
+ VpcId?: string | undefined;
1649
+ Associations?: AwsEc2NetworkAclAssociation[] | undefined;
1650
+ Entries?: AwsEc2NetworkAclEntry[] | undefined;
1515
1651
  }
1516
1652
  export interface AwsEc2NetworkInterfaceAttachment {
1517
- AttachTime?: string;
1518
- AttachmentId?: string;
1519
- DeleteOnTermination?: boolean;
1520
- DeviceIndex?: number;
1521
- InstanceId?: string;
1522
- InstanceOwnerId?: string;
1523
- Status?: string;
1653
+ AttachTime?: string | undefined;
1654
+ AttachmentId?: string | undefined;
1655
+ DeleteOnTermination?: boolean | undefined;
1656
+ DeviceIndex?: number | undefined;
1657
+ InstanceId?: string | undefined;
1658
+ InstanceOwnerId?: string | undefined;
1659
+ Status?: string | undefined;
1524
1660
  }
1525
1661
  export interface AwsEc2NetworkInterfaceIpV6AddressDetail {
1526
- IpV6Address?: string;
1662
+ IpV6Address?: string | undefined;
1527
1663
  }
1528
1664
  export interface AwsEc2NetworkInterfacePrivateIpAddressDetail {
1529
- PrivateIpAddress?: string;
1530
- PrivateDnsName?: string;
1665
+ PrivateIpAddress?: string | undefined;
1666
+ PrivateDnsName?: string | undefined;
1531
1667
  }
1532
1668
  export interface AwsEc2NetworkInterfaceSecurityGroup {
1533
- GroupName?: string;
1534
- GroupId?: string;
1669
+ GroupName?: string | undefined;
1670
+ GroupId?: string | undefined;
1535
1671
  }
1536
1672
  export interface AwsEc2NetworkInterfaceDetails {
1537
- Attachment?: AwsEc2NetworkInterfaceAttachment;
1538
- NetworkInterfaceId?: string;
1539
- SecurityGroups?: AwsEc2NetworkInterfaceSecurityGroup[];
1540
- SourceDestCheck?: boolean;
1541
- IpV6Addresses?: AwsEc2NetworkInterfaceIpV6AddressDetail[];
1542
- PrivateIpAddresses?: AwsEc2NetworkInterfacePrivateIpAddressDetail[];
1543
- PublicDnsName?: string;
1544
- PublicIp?: string;
1673
+ Attachment?: AwsEc2NetworkInterfaceAttachment | undefined;
1674
+ NetworkInterfaceId?: string | undefined;
1675
+ SecurityGroups?: AwsEc2NetworkInterfaceSecurityGroup[] | undefined;
1676
+ SourceDestCheck?: boolean | undefined;
1677
+ IpV6Addresses?: AwsEc2NetworkInterfaceIpV6AddressDetail[] | undefined;
1678
+ PrivateIpAddresses?:
1679
+ | AwsEc2NetworkInterfacePrivateIpAddressDetail[]
1680
+ | undefined;
1681
+ PublicDnsName?: string | undefined;
1682
+ PublicIp?: string | undefined;
1545
1683
  }
1546
1684
  export interface PropagatingVgwSetDetails {
1547
- GatewayId?: string;
1685
+ GatewayId?: string | undefined;
1548
1686
  }
1549
1687
  export interface RouteSetDetails {
1550
- CarrierGatewayId?: string;
1551
- CoreNetworkArn?: string;
1552
- DestinationCidrBlock?: string;
1553
- DestinationIpv6CidrBlock?: string;
1554
- DestinationPrefixListId?: string;
1555
- EgressOnlyInternetGatewayId?: string;
1556
- GatewayId?: string;
1557
- InstanceId?: string;
1558
- InstanceOwnerId?: string;
1559
- LocalGatewayId?: string;
1560
- NatGatewayId?: string;
1561
- NetworkInterfaceId?: string;
1562
- Origin?: string;
1563
- State?: string;
1564
- TransitGatewayId?: string;
1565
- VpcPeeringConnectionId?: string;
1688
+ CarrierGatewayId?: string | undefined;
1689
+ CoreNetworkArn?: string | undefined;
1690
+ DestinationCidrBlock?: string | undefined;
1691
+ DestinationIpv6CidrBlock?: string | undefined;
1692
+ DestinationPrefixListId?: string | undefined;
1693
+ EgressOnlyInternetGatewayId?: string | undefined;
1694
+ GatewayId?: string | undefined;
1695
+ InstanceId?: string | undefined;
1696
+ InstanceOwnerId?: string | undefined;
1697
+ LocalGatewayId?: string | undefined;
1698
+ NatGatewayId?: string | undefined;
1699
+ NetworkInterfaceId?: string | undefined;
1700
+ Origin?: string | undefined;
1701
+ State?: string | undefined;
1702
+ TransitGatewayId?: string | undefined;
1703
+ VpcPeeringConnectionId?: string | undefined;
1566
1704
  }
1567
1705
  export interface AwsEc2RouteTableDetails {
1568
- AssociationSet?: AssociationSetDetails[];
1569
- OwnerId?: string;
1570
- PropagatingVgwSet?: PropagatingVgwSetDetails[];
1571
- RouteTableId?: string;
1572
- RouteSet?: RouteSetDetails[];
1573
- VpcId?: string;
1706
+ AssociationSet?: AssociationSetDetails[] | undefined;
1707
+ OwnerId?: string | undefined;
1708
+ PropagatingVgwSet?: PropagatingVgwSetDetails[] | undefined;
1709
+ RouteTableId?: string | undefined;
1710
+ RouteSet?: RouteSetDetails[] | undefined;
1711
+ VpcId?: string | undefined;
1574
1712
  }
1575
1713
  export interface AwsEc2SecurityGroupIpRange {
1576
- CidrIp?: string;
1714
+ CidrIp?: string | undefined;
1577
1715
  }
1578
1716
  export interface AwsEc2SecurityGroupIpv6Range {
1579
- CidrIpv6?: string;
1717
+ CidrIpv6?: string | undefined;
1580
1718
  }
1581
1719
  export interface AwsEc2SecurityGroupPrefixListId {
1582
- PrefixListId?: string;
1720
+ PrefixListId?: string | undefined;
1583
1721
  }
1584
1722
  export interface AwsEc2SecurityGroupUserIdGroupPair {
1585
- GroupId?: string;
1586
- GroupName?: string;
1587
- PeeringStatus?: string;
1588
- UserId?: string;
1589
- VpcId?: string;
1590
- VpcPeeringConnectionId?: string;
1723
+ GroupId?: string | undefined;
1724
+ GroupName?: string | undefined;
1725
+ PeeringStatus?: string | undefined;
1726
+ UserId?: string | undefined;
1727
+ VpcId?: string | undefined;
1728
+ VpcPeeringConnectionId?: string | undefined;
1591
1729
  }
1592
1730
  export interface AwsEc2SecurityGroupIpPermission {
1593
- IpProtocol?: string;
1594
- FromPort?: number;
1595
- ToPort?: number;
1596
- UserIdGroupPairs?: AwsEc2SecurityGroupUserIdGroupPair[];
1597
- IpRanges?: AwsEc2SecurityGroupIpRange[];
1598
- Ipv6Ranges?: AwsEc2SecurityGroupIpv6Range[];
1599
- PrefixListIds?: AwsEc2SecurityGroupPrefixListId[];
1731
+ IpProtocol?: string | undefined;
1732
+ FromPort?: number | undefined;
1733
+ ToPort?: number | undefined;
1734
+ UserIdGroupPairs?: AwsEc2SecurityGroupUserIdGroupPair[] | undefined;
1735
+ IpRanges?: AwsEc2SecurityGroupIpRange[] | undefined;
1736
+ Ipv6Ranges?: AwsEc2SecurityGroupIpv6Range[] | undefined;
1737
+ PrefixListIds?: AwsEc2SecurityGroupPrefixListId[] | undefined;
1600
1738
  }
1601
1739
  export interface AwsEc2SecurityGroupDetails {
1602
- GroupName?: string;
1603
- GroupId?: string;
1604
- OwnerId?: string;
1605
- VpcId?: string;
1606
- IpPermissions?: AwsEc2SecurityGroupIpPermission[];
1607
- IpPermissionsEgress?: AwsEc2SecurityGroupIpPermission[];
1740
+ GroupName?: string | undefined;
1741
+ GroupId?: string | undefined;
1742
+ OwnerId?: string | undefined;
1743
+ VpcId?: string | undefined;
1744
+ IpPermissions?: AwsEc2SecurityGroupIpPermission[] | undefined;
1745
+ IpPermissionsEgress?: AwsEc2SecurityGroupIpPermission[] | undefined;
1608
1746
  }
1609
1747
  export interface Ipv6CidrBlockAssociation {
1610
- AssociationId?: string;
1611
- Ipv6CidrBlock?: string;
1612
- CidrBlockState?: string;
1748
+ AssociationId?: string | undefined;
1749
+ Ipv6CidrBlock?: string | undefined;
1750
+ CidrBlockState?: string | undefined;
1613
1751
  }
1614
1752
  export interface AwsEc2SubnetDetails {
1615
- AssignIpv6AddressOnCreation?: boolean;
1616
- AvailabilityZone?: string;
1617
- AvailabilityZoneId?: string;
1618
- AvailableIpAddressCount?: number;
1619
- CidrBlock?: string;
1620
- DefaultForAz?: boolean;
1621
- MapPublicIpOnLaunch?: boolean;
1622
- OwnerId?: string;
1623
- State?: string;
1624
- SubnetArn?: string;
1625
- SubnetId?: string;
1626
- VpcId?: string;
1627
- Ipv6CidrBlockAssociationSet?: Ipv6CidrBlockAssociation[];
1753
+ AssignIpv6AddressOnCreation?: boolean | undefined;
1754
+ AvailabilityZone?: string | undefined;
1755
+ AvailabilityZoneId?: string | undefined;
1756
+ AvailableIpAddressCount?: number | undefined;
1757
+ CidrBlock?: string | undefined;
1758
+ DefaultForAz?: boolean | undefined;
1759
+ MapPublicIpOnLaunch?: boolean | undefined;
1760
+ OwnerId?: string | undefined;
1761
+ State?: string | undefined;
1762
+ SubnetArn?: string | undefined;
1763
+ SubnetId?: string | undefined;
1764
+ VpcId?: string | undefined;
1765
+ Ipv6CidrBlockAssociationSet?: Ipv6CidrBlockAssociation[] | undefined;
1628
1766
  }
1629
1767
  export interface AwsEc2TransitGatewayDetails {
1630
- Id?: string;
1631
- Description?: string;
1632
- DefaultRouteTablePropagation?: string;
1633
- AutoAcceptSharedAttachments?: string;
1634
- DefaultRouteTableAssociation?: string;
1635
- TransitGatewayCidrBlocks?: string[];
1636
- AssociationDefaultRouteTableId?: string;
1637
- PropagationDefaultRouteTableId?: string;
1638
- VpnEcmpSupport?: string;
1639
- DnsSupport?: string;
1640
- MulticastSupport?: string;
1641
- AmazonSideAsn?: number;
1768
+ Id?: string | undefined;
1769
+ Description?: string | undefined;
1770
+ DefaultRouteTablePropagation?: string | undefined;
1771
+ AutoAcceptSharedAttachments?: string | undefined;
1772
+ DefaultRouteTableAssociation?: string | undefined;
1773
+ TransitGatewayCidrBlocks?: string[] | undefined;
1774
+ AssociationDefaultRouteTableId?: string | undefined;
1775
+ PropagationDefaultRouteTableId?: string | undefined;
1776
+ VpnEcmpSupport?: string | undefined;
1777
+ DnsSupport?: string | undefined;
1778
+ MulticastSupport?: string | undefined;
1779
+ AmazonSideAsn?: number | undefined;
1642
1780
  }
1643
1781
  export interface AwsEc2VolumeAttachment {
1644
- AttachTime?: string;
1645
- DeleteOnTermination?: boolean;
1646
- InstanceId?: string;
1647
- Status?: string;
1782
+ AttachTime?: string | undefined;
1783
+ DeleteOnTermination?: boolean | undefined;
1784
+ InstanceId?: string | undefined;
1785
+ Status?: string | undefined;
1648
1786
  }
1649
1787
  export interface AwsEc2VolumeDetails {
1650
- CreateTime?: string;
1651
- DeviceName?: string;
1652
- Encrypted?: boolean;
1653
- Size?: number;
1654
- SnapshotId?: string;
1655
- Status?: string;
1656
- KmsKeyId?: string;
1657
- Attachments?: AwsEc2VolumeAttachment[];
1658
- VolumeId?: string;
1659
- VolumeType?: string;
1660
- VolumeScanStatus?: string;
1788
+ CreateTime?: string | undefined;
1789
+ DeviceName?: string | undefined;
1790
+ Encrypted?: boolean | undefined;
1791
+ Size?: number | undefined;
1792
+ SnapshotId?: string | undefined;
1793
+ Status?: string | undefined;
1794
+ KmsKeyId?: string | undefined;
1795
+ Attachments?: AwsEc2VolumeAttachment[] | undefined;
1796
+ VolumeId?: string | undefined;
1797
+ VolumeType?: string | undefined;
1798
+ VolumeScanStatus?: string | undefined;
1661
1799
  }
1662
1800
  export interface CidrBlockAssociation {
1663
- AssociationId?: string;
1664
- CidrBlock?: string;
1665
- CidrBlockState?: string;
1801
+ AssociationId?: string | undefined;
1802
+ CidrBlock?: string | undefined;
1803
+ CidrBlockState?: string | undefined;
1666
1804
  }
1667
1805
  export interface AwsEc2VpcDetails {
1668
- CidrBlockAssociationSet?: CidrBlockAssociation[];
1669
- Ipv6CidrBlockAssociationSet?: Ipv6CidrBlockAssociation[];
1670
- DhcpOptionsId?: string;
1671
- State?: string;
1806
+ CidrBlockAssociationSet?: CidrBlockAssociation[] | undefined;
1807
+ Ipv6CidrBlockAssociationSet?: Ipv6CidrBlockAssociation[] | undefined;
1808
+ DhcpOptionsId?: string | undefined;
1809
+ State?: string | undefined;
1672
1810
  }
1673
1811
  export interface AwsEc2VpcEndpointServiceServiceTypeDetails {
1674
- ServiceType?: string;
1812
+ ServiceType?: string | undefined;
1675
1813
  }
1676
1814
  export interface AwsEc2VpcEndpointServiceDetails {
1677
- AcceptanceRequired?: boolean;
1678
- AvailabilityZones?: string[];
1679
- BaseEndpointDnsNames?: string[];
1680
- ManagesVpcEndpoints?: boolean;
1681
- GatewayLoadBalancerArns?: string[];
1682
- NetworkLoadBalancerArns?: string[];
1683
- PrivateDnsName?: string;
1684
- ServiceId?: string;
1685
- ServiceName?: string;
1686
- ServiceState?: string;
1687
- ServiceType?: AwsEc2VpcEndpointServiceServiceTypeDetails[];
1815
+ AcceptanceRequired?: boolean | undefined;
1816
+ AvailabilityZones?: string[] | undefined;
1817
+ BaseEndpointDnsNames?: string[] | undefined;
1818
+ ManagesVpcEndpoints?: boolean | undefined;
1819
+ GatewayLoadBalancerArns?: string[] | undefined;
1820
+ NetworkLoadBalancerArns?: string[] | undefined;
1821
+ PrivateDnsName?: string | undefined;
1822
+ ServiceId?: string | undefined;
1823
+ ServiceName?: string | undefined;
1824
+ ServiceState?: string | undefined;
1825
+ ServiceType?: AwsEc2VpcEndpointServiceServiceTypeDetails[] | undefined;
1688
1826
  }
1689
1827
  export interface VpcInfoCidrBlockSetDetails {
1690
- CidrBlock?: string;
1828
+ CidrBlock?: string | undefined;
1691
1829
  }
1692
1830
  export interface VpcInfoIpv6CidrBlockSetDetails {
1693
- Ipv6CidrBlock?: string;
1831
+ Ipv6CidrBlock?: string | undefined;
1694
1832
  }
1695
1833
  export interface VpcInfoPeeringOptionsDetails {
1696
- AllowDnsResolutionFromRemoteVpc?: boolean;
1697
- AllowEgressFromLocalClassicLinkToRemoteVpc?: boolean;
1698
- AllowEgressFromLocalVpcToRemoteClassicLink?: boolean;
1834
+ AllowDnsResolutionFromRemoteVpc?: boolean | undefined;
1835
+ AllowEgressFromLocalClassicLinkToRemoteVpc?: boolean | undefined;
1836
+ AllowEgressFromLocalVpcToRemoteClassicLink?: boolean | undefined;
1699
1837
  }
1700
1838
  export interface AwsEc2VpcPeeringConnectionVpcInfoDetails {
1701
- CidrBlock?: string;
1702
- CidrBlockSet?: VpcInfoCidrBlockSetDetails[];
1703
- Ipv6CidrBlockSet?: VpcInfoIpv6CidrBlockSetDetails[];
1704
- OwnerId?: string;
1705
- PeeringOptions?: VpcInfoPeeringOptionsDetails;
1706
- Region?: string;
1707
- VpcId?: string;
1839
+ CidrBlock?: string | undefined;
1840
+ CidrBlockSet?: VpcInfoCidrBlockSetDetails[] | undefined;
1841
+ Ipv6CidrBlockSet?: VpcInfoIpv6CidrBlockSetDetails[] | undefined;
1842
+ OwnerId?: string | undefined;
1843
+ PeeringOptions?: VpcInfoPeeringOptionsDetails | undefined;
1844
+ Region?: string | undefined;
1845
+ VpcId?: string | undefined;
1708
1846
  }
1709
1847
  export interface AwsEc2VpcPeeringConnectionStatusDetails {
1710
- Code?: string;
1711
- Message?: string;
1848
+ Code?: string | undefined;
1849
+ Message?: string | undefined;
1712
1850
  }
1713
1851
  export interface AwsEc2VpcPeeringConnectionDetails {
1714
- AccepterVpcInfo?: AwsEc2VpcPeeringConnectionVpcInfoDetails;
1715
- ExpirationTime?: string;
1716
- RequesterVpcInfo?: AwsEc2VpcPeeringConnectionVpcInfoDetails;
1717
- Status?: AwsEc2VpcPeeringConnectionStatusDetails;
1718
- VpcPeeringConnectionId?: string;
1852
+ AccepterVpcInfo?: AwsEc2VpcPeeringConnectionVpcInfoDetails | undefined;
1853
+ ExpirationTime?: string | undefined;
1854
+ RequesterVpcInfo?: AwsEc2VpcPeeringConnectionVpcInfoDetails | undefined;
1855
+ Status?: AwsEc2VpcPeeringConnectionStatusDetails | undefined;
1856
+ VpcPeeringConnectionId?: string | undefined;
1719
1857
  }
1720
1858
  export interface AwsEc2VpnConnectionOptionsTunnelOptionsDetails {
1721
- DpdTimeoutSeconds?: number;
1722
- IkeVersions?: string[];
1723
- OutsideIpAddress?: string;
1724
- Phase1DhGroupNumbers?: number[];
1725
- Phase1EncryptionAlgorithms?: string[];
1726
- Phase1IntegrityAlgorithms?: string[];
1727
- Phase1LifetimeSeconds?: number;
1728
- Phase2DhGroupNumbers?: number[];
1729
- Phase2EncryptionAlgorithms?: string[];
1730
- Phase2IntegrityAlgorithms?: string[];
1731
- Phase2LifetimeSeconds?: number;
1732
- PreSharedKey?: string;
1733
- RekeyFuzzPercentage?: number;
1734
- RekeyMarginTimeSeconds?: number;
1735
- ReplayWindowSize?: number;
1736
- TunnelInsideCidr?: string;
1859
+ DpdTimeoutSeconds?: number | undefined;
1860
+ IkeVersions?: string[] | undefined;
1861
+ OutsideIpAddress?: string | undefined;
1862
+ Phase1DhGroupNumbers?: number[] | undefined;
1863
+ Phase1EncryptionAlgorithms?: string[] | undefined;
1864
+ Phase1IntegrityAlgorithms?: string[] | undefined;
1865
+ Phase1LifetimeSeconds?: number | undefined;
1866
+ Phase2DhGroupNumbers?: number[] | undefined;
1867
+ Phase2EncryptionAlgorithms?: string[] | undefined;
1868
+ Phase2IntegrityAlgorithms?: string[] | undefined;
1869
+ Phase2LifetimeSeconds?: number | undefined;
1870
+ PreSharedKey?: string | undefined;
1871
+ RekeyFuzzPercentage?: number | undefined;
1872
+ RekeyMarginTimeSeconds?: number | undefined;
1873
+ ReplayWindowSize?: number | undefined;
1874
+ TunnelInsideCidr?: string | undefined;
1737
1875
  }
1738
1876
  export interface AwsEc2VpnConnectionOptionsDetails {
1739
- StaticRoutesOnly?: boolean;
1740
- TunnelOptions?: AwsEc2VpnConnectionOptionsTunnelOptionsDetails[];
1877
+ StaticRoutesOnly?: boolean | undefined;
1878
+ TunnelOptions?: AwsEc2VpnConnectionOptionsTunnelOptionsDetails[] | undefined;
1741
1879
  }
1742
1880
  export interface AwsEc2VpnConnectionRoutesDetails {
1743
- DestinationCidrBlock?: string;
1744
- State?: string;
1881
+ DestinationCidrBlock?: string | undefined;
1882
+ State?: string | undefined;
1745
1883
  }
1746
1884
  export interface AwsEc2VpnConnectionVgwTelemetryDetails {
1747
- AcceptedRouteCount?: number;
1748
- CertificateArn?: string;
1749
- LastStatusChange?: string;
1750
- OutsideIpAddress?: string;
1751
- Status?: string;
1752
- StatusMessage?: string;
1885
+ AcceptedRouteCount?: number | undefined;
1886
+ CertificateArn?: string | undefined;
1887
+ LastStatusChange?: string | undefined;
1888
+ OutsideIpAddress?: string | undefined;
1889
+ Status?: string | undefined;
1890
+ StatusMessage?: string | undefined;
1753
1891
  }
1754
1892
  export interface AwsEc2VpnConnectionDetails {
1755
- VpnConnectionId?: string;
1756
- State?: string;
1757
- CustomerGatewayId?: string;
1758
- CustomerGatewayConfiguration?: string;
1759
- Type?: string;
1760
- VpnGatewayId?: string;
1761
- Category?: string;
1762
- VgwTelemetry?: AwsEc2VpnConnectionVgwTelemetryDetails[];
1763
- Options?: AwsEc2VpnConnectionOptionsDetails;
1764
- Routes?: AwsEc2VpnConnectionRoutesDetails[];
1765
- TransitGatewayId?: string;
1893
+ VpnConnectionId?: string | undefined;
1894
+ State?: string | undefined;
1895
+ CustomerGatewayId?: string | undefined;
1896
+ CustomerGatewayConfiguration?: string | undefined;
1897
+ Type?: string | undefined;
1898
+ VpnGatewayId?: string | undefined;
1899
+ Category?: string | undefined;
1900
+ VgwTelemetry?: AwsEc2VpnConnectionVgwTelemetryDetails[] | undefined;
1901
+ Options?: AwsEc2VpnConnectionOptionsDetails | undefined;
1902
+ Routes?: AwsEc2VpnConnectionRoutesDetails[] | undefined;
1903
+ TransitGatewayId?: string | undefined;
1766
1904
  }
1767
1905
  export interface AwsEcrContainerImageDetails {
1768
- RegistryId?: string;
1769
- RepositoryName?: string;
1770
- Architecture?: string;
1771
- ImageDigest?: string;
1772
- ImageTags?: string[];
1773
- ImagePublishedAt?: string;
1906
+ RegistryId?: string | undefined;
1907
+ RepositoryName?: string | undefined;
1908
+ Architecture?: string | undefined;
1909
+ ImageDigest?: string | undefined;
1910
+ ImageTags?: string[] | undefined;
1911
+ ImagePublishedAt?: string | undefined;
1774
1912
  }
1775
1913
  export interface AwsEcrRepositoryImageScanningConfigurationDetails {
1776
- ScanOnPush?: boolean;
1914
+ ScanOnPush?: boolean | undefined;
1777
1915
  }
1778
1916
  export interface AwsEcrRepositoryLifecyclePolicyDetails {
1779
- LifecyclePolicyText?: string;
1780
- RegistryId?: string;
1917
+ LifecyclePolicyText?: string | undefined;
1918
+ RegistryId?: string | undefined;
1781
1919
  }
1782
1920
  export interface AwsEcrRepositoryDetails {
1783
- Arn?: string;
1784
- ImageScanningConfiguration?: AwsEcrRepositoryImageScanningConfigurationDetails;
1785
- ImageTagMutability?: string;
1786
- LifecyclePolicy?: AwsEcrRepositoryLifecyclePolicyDetails;
1787
- RepositoryName?: string;
1788
- RepositoryPolicyText?: string;
1921
+ Arn?: string | undefined;
1922
+ ImageScanningConfiguration?:
1923
+ | AwsEcrRepositoryImageScanningConfigurationDetails
1924
+ | undefined;
1925
+ ImageTagMutability?: string | undefined;
1926
+ LifecyclePolicy?: AwsEcrRepositoryLifecyclePolicyDetails | undefined;
1927
+ RepositoryName?: string | undefined;
1928
+ RepositoryPolicyText?: string | undefined;
1789
1929
  }
1790
1930
  export interface AwsEcsClusterClusterSettingsDetails {
1791
- Name?: string;
1792
- Value?: string;
1931
+ Name?: string | undefined;
1932
+ Value?: string | undefined;
1793
1933
  }
1794
1934
  export interface AwsEcsClusterConfigurationExecuteCommandConfigurationLogConfigurationDetails {
1795
- CloudWatchEncryptionEnabled?: boolean;
1796
- CloudWatchLogGroupName?: string;
1797
- S3BucketName?: string;
1798
- S3EncryptionEnabled?: boolean;
1799
- S3KeyPrefix?: string;
1935
+ CloudWatchEncryptionEnabled?: boolean | undefined;
1936
+ CloudWatchLogGroupName?: string | undefined;
1937
+ S3BucketName?: string | undefined;
1938
+ S3EncryptionEnabled?: boolean | undefined;
1939
+ S3KeyPrefix?: string | undefined;
1800
1940
  }
1801
1941
  export interface AwsEcsClusterConfigurationExecuteCommandConfigurationDetails {
1802
- KmsKeyId?: string;
1803
- LogConfiguration?: AwsEcsClusterConfigurationExecuteCommandConfigurationLogConfigurationDetails;
1804
- Logging?: string;
1942
+ KmsKeyId?: string | undefined;
1943
+ LogConfiguration?:
1944
+ | AwsEcsClusterConfigurationExecuteCommandConfigurationLogConfigurationDetails
1945
+ | undefined;
1946
+ Logging?: string | undefined;
1805
1947
  }
1806
1948
  export interface AwsEcsClusterConfigurationDetails {
1807
- ExecuteCommandConfiguration?: AwsEcsClusterConfigurationExecuteCommandConfigurationDetails;
1949
+ ExecuteCommandConfiguration?:
1950
+ | AwsEcsClusterConfigurationExecuteCommandConfigurationDetails
1951
+ | undefined;
1808
1952
  }
1809
1953
  export interface AwsEcsClusterDefaultCapacityProviderStrategyDetails {
1810
- Base?: number;
1811
- CapacityProvider?: string;
1812
- Weight?: number;
1954
+ Base?: number | undefined;
1955
+ CapacityProvider?: string | undefined;
1956
+ Weight?: number | undefined;
1813
1957
  }
1814
1958
  export interface AwsEcsClusterDetails {
1815
- ClusterArn?: string;
1816
- ActiveServicesCount?: number;
1817
- CapacityProviders?: string[];
1818
- ClusterSettings?: AwsEcsClusterClusterSettingsDetails[];
1819
- Configuration?: AwsEcsClusterConfigurationDetails;
1820
- DefaultCapacityProviderStrategy?: AwsEcsClusterDefaultCapacityProviderStrategyDetails[];
1821
- ClusterName?: string;
1822
- RegisteredContainerInstancesCount?: number;
1823
- RunningTasksCount?: number;
1824
- Status?: string;
1959
+ ClusterArn?: string | undefined;
1960
+ ActiveServicesCount?: number | undefined;
1961
+ CapacityProviders?: string[] | undefined;
1962
+ ClusterSettings?: AwsEcsClusterClusterSettingsDetails[] | undefined;
1963
+ Configuration?: AwsEcsClusterConfigurationDetails | undefined;
1964
+ DefaultCapacityProviderStrategy?:
1965
+ | AwsEcsClusterDefaultCapacityProviderStrategyDetails[]
1966
+ | undefined;
1967
+ ClusterName?: string | undefined;
1968
+ RegisteredContainerInstancesCount?: number | undefined;
1969
+ RunningTasksCount?: number | undefined;
1970
+ Status?: string | undefined;
1825
1971
  }
1826
1972
  export interface AwsMountPoint {
1827
- SourceVolume?: string;
1828
- ContainerPath?: string;
1973
+ SourceVolume?: string | undefined;
1974
+ ContainerPath?: string | undefined;
1829
1975
  }
1830
1976
  export interface AwsEcsContainerDetails {
1831
- Name?: string;
1832
- Image?: string;
1833
- MountPoints?: AwsMountPoint[];
1834
- Privileged?: boolean;
1977
+ Name?: string | undefined;
1978
+ Image?: string | undefined;
1979
+ MountPoints?: AwsMountPoint[] | undefined;
1980
+ Privileged?: boolean | undefined;
1835
1981
  }
1836
1982
  export interface AwsEcsServiceCapacityProviderStrategyDetails {
1837
- Base?: number;
1838
- CapacityProvider?: string;
1839
- Weight?: number;
1983
+ Base?: number | undefined;
1984
+ CapacityProvider?: string | undefined;
1985
+ Weight?: number | undefined;
1840
1986
  }
1841
1987
  export interface AwsEcsServiceDeploymentConfigurationDeploymentCircuitBreakerDetails {
1842
- Enable?: boolean;
1843
- Rollback?: boolean;
1988
+ Enable?: boolean | undefined;
1989
+ Rollback?: boolean | undefined;
1844
1990
  }
1845
1991
  export interface AwsEcsServiceDeploymentConfigurationDetails {
1846
- DeploymentCircuitBreaker?: AwsEcsServiceDeploymentConfigurationDeploymentCircuitBreakerDetails;
1847
- MaximumPercent?: number;
1848
- MinimumHealthyPercent?: number;
1992
+ DeploymentCircuitBreaker?:
1993
+ | AwsEcsServiceDeploymentConfigurationDeploymentCircuitBreakerDetails
1994
+ | undefined;
1995
+ MaximumPercent?: number | undefined;
1996
+ MinimumHealthyPercent?: number | undefined;
1849
1997
  }
1850
1998
  export interface AwsEcsServiceDeploymentControllerDetails {
1851
- Type?: string;
1999
+ Type?: string | undefined;
1852
2000
  }
1853
2001
  export interface AwsEcsServiceLoadBalancersDetails {
1854
- ContainerName?: string;
1855
- ContainerPort?: number;
1856
- LoadBalancerName?: string;
1857
- TargetGroupArn?: string;
2002
+ ContainerName?: string | undefined;
2003
+ ContainerPort?: number | undefined;
2004
+ LoadBalancerName?: string | undefined;
2005
+ TargetGroupArn?: string | undefined;
1858
2006
  }
1859
2007
  export interface AwsEcsServiceNetworkConfigurationAwsVpcConfigurationDetails {
1860
- AssignPublicIp?: string;
1861
- SecurityGroups?: string[];
1862
- Subnets?: string[];
2008
+ AssignPublicIp?: string | undefined;
2009
+ SecurityGroups?: string[] | undefined;
2010
+ Subnets?: string[] | undefined;
1863
2011
  }
1864
2012
  export interface AwsEcsServiceNetworkConfigurationDetails {
1865
- AwsVpcConfiguration?: AwsEcsServiceNetworkConfigurationAwsVpcConfigurationDetails;
2013
+ AwsVpcConfiguration?:
2014
+ | AwsEcsServiceNetworkConfigurationAwsVpcConfigurationDetails
2015
+ | undefined;
1866
2016
  }
1867
2017
  export interface AwsEcsServicePlacementConstraintsDetails {
1868
- Expression?: string;
1869
- Type?: string;
2018
+ Expression?: string | undefined;
2019
+ Type?: string | undefined;
1870
2020
  }
1871
2021
  export interface AwsEcsServicePlacementStrategiesDetails {
1872
- Field?: string;
1873
- Type?: string;
2022
+ Field?: string | undefined;
2023
+ Type?: string | undefined;
1874
2024
  }
1875
2025
  export interface AwsEcsServiceServiceRegistriesDetails {
1876
- ContainerName?: string;
1877
- ContainerPort?: number;
1878
- Port?: number;
1879
- RegistryArn?: string;
2026
+ ContainerName?: string | undefined;
2027
+ ContainerPort?: number | undefined;
2028
+ Port?: number | undefined;
2029
+ RegistryArn?: string | undefined;
1880
2030
  }
1881
2031
  export interface AwsEcsServiceDetails {
1882
- CapacityProviderStrategy?: AwsEcsServiceCapacityProviderStrategyDetails[];
1883
- Cluster?: string;
1884
- DeploymentConfiguration?: AwsEcsServiceDeploymentConfigurationDetails;
1885
- DeploymentController?: AwsEcsServiceDeploymentControllerDetails;
1886
- DesiredCount?: number;
1887
- EnableEcsManagedTags?: boolean;
1888
- EnableExecuteCommand?: boolean;
1889
- HealthCheckGracePeriodSeconds?: number;
1890
- LaunchType?: string;
1891
- LoadBalancers?: AwsEcsServiceLoadBalancersDetails[];
1892
- Name?: string;
1893
- NetworkConfiguration?: AwsEcsServiceNetworkConfigurationDetails;
1894
- PlacementConstraints?: AwsEcsServicePlacementConstraintsDetails[];
1895
- PlacementStrategies?: AwsEcsServicePlacementStrategiesDetails[];
1896
- PlatformVersion?: string;
1897
- PropagateTags?: string;
1898
- Role?: string;
1899
- SchedulingStrategy?: string;
1900
- ServiceArn?: string;
1901
- ServiceName?: string;
1902
- ServiceRegistries?: AwsEcsServiceServiceRegistriesDetails[];
1903
- TaskDefinition?: string;
2032
+ CapacityProviderStrategy?:
2033
+ | AwsEcsServiceCapacityProviderStrategyDetails[]
2034
+ | undefined;
2035
+ Cluster?: string | undefined;
2036
+ DeploymentConfiguration?:
2037
+ | AwsEcsServiceDeploymentConfigurationDetails
2038
+ | undefined;
2039
+ DeploymentController?: AwsEcsServiceDeploymentControllerDetails | undefined;
2040
+ DesiredCount?: number | undefined;
2041
+ EnableEcsManagedTags?: boolean | undefined;
2042
+ EnableExecuteCommand?: boolean | undefined;
2043
+ HealthCheckGracePeriodSeconds?: number | undefined;
2044
+ LaunchType?: string | undefined;
2045
+ LoadBalancers?: AwsEcsServiceLoadBalancersDetails[] | undefined;
2046
+ Name?: string | undefined;
2047
+ NetworkConfiguration?: AwsEcsServiceNetworkConfigurationDetails | undefined;
2048
+ PlacementConstraints?: AwsEcsServicePlacementConstraintsDetails[] | undefined;
2049
+ PlacementStrategies?: AwsEcsServicePlacementStrategiesDetails[] | undefined;
2050
+ PlatformVersion?: string | undefined;
2051
+ PropagateTags?: string | undefined;
2052
+ Role?: string | undefined;
2053
+ SchedulingStrategy?: string | undefined;
2054
+ ServiceArn?: string | undefined;
2055
+ ServiceName?: string | undefined;
2056
+ ServiceRegistries?: AwsEcsServiceServiceRegistriesDetails[] | undefined;
2057
+ TaskDefinition?: string | undefined;
1904
2058
  }
1905
2059
  export interface AwsEcsTaskDefinitionContainerDefinitionsDependsOnDetails {
1906
- Condition?: string;
1907
- ContainerName?: string;
2060
+ Condition?: string | undefined;
2061
+ ContainerName?: string | undefined;
1908
2062
  }
1909
2063
  export interface AwsEcsTaskDefinitionContainerDefinitionsEnvironmentDetails {
1910
- Name?: string;
1911
- Value?: string;
2064
+ Name?: string | undefined;
2065
+ Value?: string | undefined;
1912
2066
  }
1913
2067
  export interface AwsEcsTaskDefinitionContainerDefinitionsEnvironmentFilesDetails {
1914
- Type?: string;
1915
- Value?: string;
2068
+ Type?: string | undefined;
2069
+ Value?: string | undefined;
1916
2070
  }
1917
2071
  export interface AwsEcsTaskDefinitionContainerDefinitionsExtraHostsDetails {
1918
- Hostname?: string;
1919
- IpAddress?: string;
2072
+ Hostname?: string | undefined;
2073
+ IpAddress?: string | undefined;
1920
2074
  }
1921
2075
  export interface AwsEcsTaskDefinitionContainerDefinitionsFirelensConfigurationDetails {
1922
- Options?: Record<string, string>;
1923
- Type?: string;
2076
+ Options?: Record<string, string> | undefined;
2077
+ Type?: string | undefined;
1924
2078
  }
1925
2079
  export interface AwsEcsTaskDefinitionContainerDefinitionsHealthCheckDetails {
1926
- Command?: string[];
1927
- Interval?: number;
1928
- Retries?: number;
1929
- StartPeriod?: number;
1930
- Timeout?: number;
2080
+ Command?: string[] | undefined;
2081
+ Interval?: number | undefined;
2082
+ Retries?: number | undefined;
2083
+ StartPeriod?: number | undefined;
2084
+ Timeout?: number | undefined;
1931
2085
  }
1932
2086
  export interface AwsEcsTaskDefinitionContainerDefinitionsLinuxParametersCapabilitiesDetails {
1933
- Add?: string[];
1934
- Drop?: string[];
2087
+ Add?: string[] | undefined;
2088
+ Drop?: string[] | undefined;
1935
2089
  }
1936
2090
  export interface AwsEcsTaskDefinitionContainerDefinitionsLinuxParametersDevicesDetails {
1937
- ContainerPath?: string;
1938
- HostPath?: string;
1939
- Permissions?: string[];
2091
+ ContainerPath?: string | undefined;
2092
+ HostPath?: string | undefined;
2093
+ Permissions?: string[] | undefined;
1940
2094
  }
1941
2095
  export interface AwsEcsTaskDefinitionContainerDefinitionsLinuxParametersTmpfsDetails {
1942
- ContainerPath?: string;
1943
- MountOptions?: string[];
1944
- Size?: number;
2096
+ ContainerPath?: string | undefined;
2097
+ MountOptions?: string[] | undefined;
2098
+ Size?: number | undefined;
1945
2099
  }
1946
2100
  export interface AwsEcsTaskDefinitionContainerDefinitionsLinuxParametersDetails {
1947
- Capabilities?: AwsEcsTaskDefinitionContainerDefinitionsLinuxParametersCapabilitiesDetails;
1948
- Devices?: AwsEcsTaskDefinitionContainerDefinitionsLinuxParametersDevicesDetails[];
1949
- InitProcessEnabled?: boolean;
1950
- MaxSwap?: number;
1951
- SharedMemorySize?: number;
1952
- Swappiness?: number;
1953
- Tmpfs?: AwsEcsTaskDefinitionContainerDefinitionsLinuxParametersTmpfsDetails[];
2101
+ Capabilities?:
2102
+ | AwsEcsTaskDefinitionContainerDefinitionsLinuxParametersCapabilitiesDetails
2103
+ | undefined;
2104
+ Devices?:
2105
+ | AwsEcsTaskDefinitionContainerDefinitionsLinuxParametersDevicesDetails[]
2106
+ | undefined;
2107
+ InitProcessEnabled?: boolean | undefined;
2108
+ MaxSwap?: number | undefined;
2109
+ SharedMemorySize?: number | undefined;
2110
+ Swappiness?: number | undefined;
2111
+ Tmpfs?:
2112
+ | AwsEcsTaskDefinitionContainerDefinitionsLinuxParametersTmpfsDetails[]
2113
+ | undefined;
1954
2114
  }
1955
2115
  export interface AwsEcsTaskDefinitionContainerDefinitionsLogConfigurationSecretOptionsDetails {
1956
- Name?: string;
1957
- ValueFrom?: string;
2116
+ Name?: string | undefined;
2117
+ ValueFrom?: string | undefined;
1958
2118
  }
1959
2119
  export interface AwsEcsTaskDefinitionContainerDefinitionsLogConfigurationDetails {
1960
- LogDriver?: string;
1961
- Options?: Record<string, string>;
1962
- SecretOptions?: AwsEcsTaskDefinitionContainerDefinitionsLogConfigurationSecretOptionsDetails[];
2120
+ LogDriver?: string | undefined;
2121
+ Options?: Record<string, string> | undefined;
2122
+ SecretOptions?:
2123
+ | AwsEcsTaskDefinitionContainerDefinitionsLogConfigurationSecretOptionsDetails[]
2124
+ | undefined;
1963
2125
  }
1964
2126
  export interface AwsEcsTaskDefinitionContainerDefinitionsMountPointsDetails {
1965
- ContainerPath?: string;
1966
- ReadOnly?: boolean;
1967
- SourceVolume?: string;
2127
+ ContainerPath?: string | undefined;
2128
+ ReadOnly?: boolean | undefined;
2129
+ SourceVolume?: string | undefined;
1968
2130
  }
1969
2131
  export interface AwsEcsTaskDefinitionContainerDefinitionsPortMappingsDetails {
1970
- ContainerPort?: number;
1971
- HostPort?: number;
1972
- Protocol?: string;
2132
+ ContainerPort?: number | undefined;
2133
+ HostPort?: number | undefined;
2134
+ Protocol?: string | undefined;
1973
2135
  }
1974
2136
  export interface AwsEcsTaskDefinitionContainerDefinitionsRepositoryCredentialsDetails {
1975
- CredentialsParameter?: string;
2137
+ CredentialsParameter?: string | undefined;
1976
2138
  }
1977
2139
  export interface AwsEcsTaskDefinitionContainerDefinitionsResourceRequirementsDetails {
1978
- Type?: string;
1979
- Value?: string;
2140
+ Type?: string | undefined;
2141
+ Value?: string | undefined;
1980
2142
  }
1981
2143
  export interface AwsEcsTaskDefinitionContainerDefinitionsSecretsDetails {
1982
- Name?: string;
1983
- ValueFrom?: string;
2144
+ Name?: string | undefined;
2145
+ ValueFrom?: string | undefined;
1984
2146
  }
1985
2147
  export interface AwsEcsTaskDefinitionContainerDefinitionsSystemControlsDetails {
1986
- Namespace?: string;
1987
- Value?: string;
2148
+ Namespace?: string | undefined;
2149
+ Value?: string | undefined;
1988
2150
  }
1989
2151
  export interface AwsEcsTaskDefinitionContainerDefinitionsUlimitsDetails {
1990
- HardLimit?: number;
1991
- Name?: string;
1992
- SoftLimit?: number;
2152
+ HardLimit?: number | undefined;
2153
+ Name?: string | undefined;
2154
+ SoftLimit?: number | undefined;
1993
2155
  }