@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.
@@ -21,482 +21,564 @@ import {
21
21
  SeverityLabel,
22
22
  } from "./models_0";
23
23
  export interface AwsEcsTaskDefinitionContainerDefinitionsVolumesFromDetails {
24
- ReadOnly?: boolean;
25
- SourceContainer?: string;
24
+ ReadOnly?: boolean | undefined;
25
+ SourceContainer?: string | undefined;
26
26
  }
27
27
  export interface AwsEcsTaskDefinitionContainerDefinitionsDetails {
28
- Command?: string[];
29
- Cpu?: number;
30
- DependsOn?: AwsEcsTaskDefinitionContainerDefinitionsDependsOnDetails[];
31
- DisableNetworking?: boolean;
32
- DnsSearchDomains?: string[];
33
- DnsServers?: string[];
34
- DockerLabels?: Record<string, string>;
35
- DockerSecurityOptions?: string[];
36
- EntryPoint?: string[];
37
- Environment?: AwsEcsTaskDefinitionContainerDefinitionsEnvironmentDetails[];
38
- EnvironmentFiles?: AwsEcsTaskDefinitionContainerDefinitionsEnvironmentFilesDetails[];
39
- Essential?: boolean;
40
- ExtraHosts?: AwsEcsTaskDefinitionContainerDefinitionsExtraHostsDetails[];
41
- FirelensConfiguration?: AwsEcsTaskDefinitionContainerDefinitionsFirelensConfigurationDetails;
42
- HealthCheck?: AwsEcsTaskDefinitionContainerDefinitionsHealthCheckDetails;
43
- Hostname?: string;
44
- Image?: string;
45
- Interactive?: boolean;
46
- Links?: string[];
47
- LinuxParameters?: AwsEcsTaskDefinitionContainerDefinitionsLinuxParametersDetails;
48
- LogConfiguration?: AwsEcsTaskDefinitionContainerDefinitionsLogConfigurationDetails;
49
- Memory?: number;
50
- MemoryReservation?: number;
51
- MountPoints?: AwsEcsTaskDefinitionContainerDefinitionsMountPointsDetails[];
52
- Name?: string;
53
- PortMappings?: AwsEcsTaskDefinitionContainerDefinitionsPortMappingsDetails[];
54
- Privileged?: boolean;
55
- PseudoTerminal?: boolean;
56
- ReadonlyRootFilesystem?: boolean;
57
- RepositoryCredentials?: AwsEcsTaskDefinitionContainerDefinitionsRepositoryCredentialsDetails;
58
- ResourceRequirements?: AwsEcsTaskDefinitionContainerDefinitionsResourceRequirementsDetails[];
59
- Secrets?: AwsEcsTaskDefinitionContainerDefinitionsSecretsDetails[];
60
- StartTimeout?: number;
61
- StopTimeout?: number;
62
- SystemControls?: AwsEcsTaskDefinitionContainerDefinitionsSystemControlsDetails[];
63
- Ulimits?: AwsEcsTaskDefinitionContainerDefinitionsUlimitsDetails[];
64
- User?: string;
65
- VolumesFrom?: AwsEcsTaskDefinitionContainerDefinitionsVolumesFromDetails[];
66
- WorkingDirectory?: string;
28
+ Command?: string[] | undefined;
29
+ Cpu?: number | undefined;
30
+ DependsOn?:
31
+ | AwsEcsTaskDefinitionContainerDefinitionsDependsOnDetails[]
32
+ | undefined;
33
+ DisableNetworking?: boolean | undefined;
34
+ DnsSearchDomains?: string[] | undefined;
35
+ DnsServers?: string[] | undefined;
36
+ DockerLabels?: Record<string, string> | undefined;
37
+ DockerSecurityOptions?: string[] | undefined;
38
+ EntryPoint?: string[] | undefined;
39
+ Environment?:
40
+ | AwsEcsTaskDefinitionContainerDefinitionsEnvironmentDetails[]
41
+ | undefined;
42
+ EnvironmentFiles?:
43
+ | AwsEcsTaskDefinitionContainerDefinitionsEnvironmentFilesDetails[]
44
+ | undefined;
45
+ Essential?: boolean | undefined;
46
+ ExtraHosts?:
47
+ | AwsEcsTaskDefinitionContainerDefinitionsExtraHostsDetails[]
48
+ | undefined;
49
+ FirelensConfiguration?:
50
+ | AwsEcsTaskDefinitionContainerDefinitionsFirelensConfigurationDetails
51
+ | undefined;
52
+ HealthCheck?:
53
+ | AwsEcsTaskDefinitionContainerDefinitionsHealthCheckDetails
54
+ | undefined;
55
+ Hostname?: string | undefined;
56
+ Image?: string | undefined;
57
+ Interactive?: boolean | undefined;
58
+ Links?: string[] | undefined;
59
+ LinuxParameters?:
60
+ | AwsEcsTaskDefinitionContainerDefinitionsLinuxParametersDetails
61
+ | undefined;
62
+ LogConfiguration?:
63
+ | AwsEcsTaskDefinitionContainerDefinitionsLogConfigurationDetails
64
+ | undefined;
65
+ Memory?: number | undefined;
66
+ MemoryReservation?: number | undefined;
67
+ MountPoints?:
68
+ | AwsEcsTaskDefinitionContainerDefinitionsMountPointsDetails[]
69
+ | undefined;
70
+ Name?: string | undefined;
71
+ PortMappings?:
72
+ | AwsEcsTaskDefinitionContainerDefinitionsPortMappingsDetails[]
73
+ | undefined;
74
+ Privileged?: boolean | undefined;
75
+ PseudoTerminal?: boolean | undefined;
76
+ ReadonlyRootFilesystem?: boolean | undefined;
77
+ RepositoryCredentials?:
78
+ | AwsEcsTaskDefinitionContainerDefinitionsRepositoryCredentialsDetails
79
+ | undefined;
80
+ ResourceRequirements?:
81
+ | AwsEcsTaskDefinitionContainerDefinitionsResourceRequirementsDetails[]
82
+ | undefined;
83
+ Secrets?:
84
+ | AwsEcsTaskDefinitionContainerDefinitionsSecretsDetails[]
85
+ | undefined;
86
+ StartTimeout?: number | undefined;
87
+ StopTimeout?: number | undefined;
88
+ SystemControls?:
89
+ | AwsEcsTaskDefinitionContainerDefinitionsSystemControlsDetails[]
90
+ | undefined;
91
+ Ulimits?:
92
+ | AwsEcsTaskDefinitionContainerDefinitionsUlimitsDetails[]
93
+ | undefined;
94
+ User?: string | undefined;
95
+ VolumesFrom?:
96
+ | AwsEcsTaskDefinitionContainerDefinitionsVolumesFromDetails[]
97
+ | undefined;
98
+ WorkingDirectory?: string | undefined;
67
99
  }
68
100
  export interface AwsEcsTaskDefinitionInferenceAcceleratorsDetails {
69
- DeviceName?: string;
70
- DeviceType?: string;
101
+ DeviceName?: string | undefined;
102
+ DeviceType?: string | undefined;
71
103
  }
72
104
  export interface AwsEcsTaskDefinitionPlacementConstraintsDetails {
73
- Expression?: string;
74
- Type?: string;
105
+ Expression?: string | undefined;
106
+ Type?: string | undefined;
75
107
  }
76
108
  export interface AwsEcsTaskDefinitionProxyConfigurationProxyConfigurationPropertiesDetails {
77
- Name?: string;
78
- Value?: string;
109
+ Name?: string | undefined;
110
+ Value?: string | undefined;
79
111
  }
80
112
  export interface AwsEcsTaskDefinitionProxyConfigurationDetails {
81
- ContainerName?: string;
82
- ProxyConfigurationProperties?: AwsEcsTaskDefinitionProxyConfigurationProxyConfigurationPropertiesDetails[];
83
- Type?: string;
113
+ ContainerName?: string | undefined;
114
+ ProxyConfigurationProperties?:
115
+ | AwsEcsTaskDefinitionProxyConfigurationProxyConfigurationPropertiesDetails[]
116
+ | undefined;
117
+ Type?: string | undefined;
84
118
  }
85
119
  export interface AwsEcsTaskDefinitionVolumesDockerVolumeConfigurationDetails {
86
- Autoprovision?: boolean;
87
- Driver?: string;
88
- DriverOpts?: Record<string, string>;
89
- Labels?: Record<string, string>;
90
- Scope?: string;
120
+ Autoprovision?: boolean | undefined;
121
+ Driver?: string | undefined;
122
+ DriverOpts?: Record<string, string> | undefined;
123
+ Labels?: Record<string, string> | undefined;
124
+ Scope?: string | undefined;
91
125
  }
92
126
  export interface AwsEcsTaskDefinitionVolumesEfsVolumeConfigurationAuthorizationConfigDetails {
93
- AccessPointId?: string;
94
- Iam?: string;
127
+ AccessPointId?: string | undefined;
128
+ Iam?: string | undefined;
95
129
  }
96
130
  export interface AwsEcsTaskDefinitionVolumesEfsVolumeConfigurationDetails {
97
- AuthorizationConfig?: AwsEcsTaskDefinitionVolumesEfsVolumeConfigurationAuthorizationConfigDetails;
98
- FilesystemId?: string;
99
- RootDirectory?: string;
100
- TransitEncryption?: string;
101
- TransitEncryptionPort?: number;
131
+ AuthorizationConfig?:
132
+ | AwsEcsTaskDefinitionVolumesEfsVolumeConfigurationAuthorizationConfigDetails
133
+ | undefined;
134
+ FilesystemId?: string | undefined;
135
+ RootDirectory?: string | undefined;
136
+ TransitEncryption?: string | undefined;
137
+ TransitEncryptionPort?: number | undefined;
102
138
  }
103
139
  export interface AwsEcsTaskDefinitionVolumesHostDetails {
104
- SourcePath?: string;
140
+ SourcePath?: string | undefined;
105
141
  }
106
142
  export interface AwsEcsTaskDefinitionVolumesDetails {
107
- DockerVolumeConfiguration?: AwsEcsTaskDefinitionVolumesDockerVolumeConfigurationDetails;
108
- EfsVolumeConfiguration?: AwsEcsTaskDefinitionVolumesEfsVolumeConfigurationDetails;
109
- Host?: AwsEcsTaskDefinitionVolumesHostDetails;
110
- Name?: string;
143
+ DockerVolumeConfiguration?:
144
+ | AwsEcsTaskDefinitionVolumesDockerVolumeConfigurationDetails
145
+ | undefined;
146
+ EfsVolumeConfiguration?:
147
+ | AwsEcsTaskDefinitionVolumesEfsVolumeConfigurationDetails
148
+ | undefined;
149
+ Host?: AwsEcsTaskDefinitionVolumesHostDetails | undefined;
150
+ Name?: string | undefined;
111
151
  }
112
152
  export interface AwsEcsTaskDefinitionDetails {
113
- ContainerDefinitions?: AwsEcsTaskDefinitionContainerDefinitionsDetails[];
114
- Cpu?: string;
115
- ExecutionRoleArn?: string;
116
- Family?: string;
117
- InferenceAccelerators?: AwsEcsTaskDefinitionInferenceAcceleratorsDetails[];
118
- IpcMode?: string;
119
- Memory?: string;
120
- NetworkMode?: string;
121
- PidMode?: string;
122
- PlacementConstraints?: AwsEcsTaskDefinitionPlacementConstraintsDetails[];
123
- ProxyConfiguration?: AwsEcsTaskDefinitionProxyConfigurationDetails;
124
- RequiresCompatibilities?: string[];
125
- TaskRoleArn?: string;
126
- Volumes?: AwsEcsTaskDefinitionVolumesDetails[];
127
- Status?: string;
153
+ ContainerDefinitions?:
154
+ | AwsEcsTaskDefinitionContainerDefinitionsDetails[]
155
+ | undefined;
156
+ Cpu?: string | undefined;
157
+ ExecutionRoleArn?: string | undefined;
158
+ Family?: string | undefined;
159
+ InferenceAccelerators?:
160
+ | AwsEcsTaskDefinitionInferenceAcceleratorsDetails[]
161
+ | undefined;
162
+ IpcMode?: string | undefined;
163
+ Memory?: string | undefined;
164
+ NetworkMode?: string | undefined;
165
+ PidMode?: string | undefined;
166
+ PlacementConstraints?:
167
+ | AwsEcsTaskDefinitionPlacementConstraintsDetails[]
168
+ | undefined;
169
+ ProxyConfiguration?:
170
+ | AwsEcsTaskDefinitionProxyConfigurationDetails
171
+ | undefined;
172
+ RequiresCompatibilities?: string[] | undefined;
173
+ TaskRoleArn?: string | undefined;
174
+ Volumes?: AwsEcsTaskDefinitionVolumesDetails[] | undefined;
175
+ Status?: string | undefined;
128
176
  }
129
177
  export interface AwsEcsTaskVolumeHostDetails {
130
- SourcePath?: string;
178
+ SourcePath?: string | undefined;
131
179
  }
132
180
  export interface AwsEcsTaskVolumeDetails {
133
- Name?: string;
134
- Host?: AwsEcsTaskVolumeHostDetails;
181
+ Name?: string | undefined;
182
+ Host?: AwsEcsTaskVolumeHostDetails | undefined;
135
183
  }
136
184
  export interface AwsEcsTaskDetails {
137
- ClusterArn?: string;
138
- TaskDefinitionArn?: string;
139
- Version?: string;
140
- CreatedAt?: string;
141
- StartedAt?: string;
142
- StartedBy?: string;
143
- Group?: string;
144
- Volumes?: AwsEcsTaskVolumeDetails[];
145
- Containers?: AwsEcsContainerDetails[];
185
+ ClusterArn?: string | undefined;
186
+ TaskDefinitionArn?: string | undefined;
187
+ Version?: string | undefined;
188
+ CreatedAt?: string | undefined;
189
+ StartedAt?: string | undefined;
190
+ StartedBy?: string | undefined;
191
+ Group?: string | undefined;
192
+ Volumes?: AwsEcsTaskVolumeDetails[] | undefined;
193
+ Containers?: AwsEcsContainerDetails[] | undefined;
146
194
  }
147
195
  export interface AwsEfsAccessPointPosixUserDetails {
148
- Gid?: string;
149
- SecondaryGids?: string[];
150
- Uid?: string;
196
+ Gid?: string | undefined;
197
+ SecondaryGids?: string[] | undefined;
198
+ Uid?: string | undefined;
151
199
  }
152
200
  export interface AwsEfsAccessPointRootDirectoryCreationInfoDetails {
153
- OwnerGid?: string;
154
- OwnerUid?: string;
155
- Permissions?: string;
201
+ OwnerGid?: string | undefined;
202
+ OwnerUid?: string | undefined;
203
+ Permissions?: string | undefined;
156
204
  }
157
205
  export interface AwsEfsAccessPointRootDirectoryDetails {
158
- CreationInfo?: AwsEfsAccessPointRootDirectoryCreationInfoDetails;
159
- Path?: string;
206
+ CreationInfo?: AwsEfsAccessPointRootDirectoryCreationInfoDetails | undefined;
207
+ Path?: string | undefined;
160
208
  }
161
209
  export interface AwsEfsAccessPointDetails {
162
- AccessPointId?: string;
163
- Arn?: string;
164
- ClientToken?: string;
165
- FileSystemId?: string;
166
- PosixUser?: AwsEfsAccessPointPosixUserDetails;
167
- RootDirectory?: AwsEfsAccessPointRootDirectoryDetails;
210
+ AccessPointId?: string | undefined;
211
+ Arn?: string | undefined;
212
+ ClientToken?: string | undefined;
213
+ FileSystemId?: string | undefined;
214
+ PosixUser?: AwsEfsAccessPointPosixUserDetails | undefined;
215
+ RootDirectory?: AwsEfsAccessPointRootDirectoryDetails | undefined;
168
216
  }
169
217
  export interface AwsEksClusterLoggingClusterLoggingDetails {
170
- Enabled?: boolean;
171
- Types?: string[];
218
+ Enabled?: boolean | undefined;
219
+ Types?: string[] | undefined;
172
220
  }
173
221
  export interface AwsEksClusterLoggingDetails {
174
- ClusterLogging?: AwsEksClusterLoggingClusterLoggingDetails[];
222
+ ClusterLogging?: AwsEksClusterLoggingClusterLoggingDetails[] | undefined;
175
223
  }
176
224
  export interface AwsEksClusterResourcesVpcConfigDetails {
177
- SecurityGroupIds?: string[];
178
- SubnetIds?: string[];
179
- EndpointPublicAccess?: boolean;
225
+ SecurityGroupIds?: string[] | undefined;
226
+ SubnetIds?: string[] | undefined;
227
+ EndpointPublicAccess?: boolean | undefined;
180
228
  }
181
229
  export interface AwsEksClusterDetails {
182
- Arn?: string;
183
- CertificateAuthorityData?: string;
184
- ClusterStatus?: string;
185
- Endpoint?: string;
186
- Name?: string;
187
- ResourcesVpcConfig?: AwsEksClusterResourcesVpcConfigDetails;
188
- RoleArn?: string;
189
- Version?: string;
190
- Logging?: AwsEksClusterLoggingDetails;
230
+ Arn?: string | undefined;
231
+ CertificateAuthorityData?: string | undefined;
232
+ ClusterStatus?: string | undefined;
233
+ Endpoint?: string | undefined;
234
+ Name?: string | undefined;
235
+ ResourcesVpcConfig?: AwsEksClusterResourcesVpcConfigDetails | undefined;
236
+ RoleArn?: string | undefined;
237
+ Version?: string | undefined;
238
+ Logging?: AwsEksClusterLoggingDetails | undefined;
191
239
  }
192
240
  export interface AwsElasticBeanstalkEnvironmentEnvironmentLink {
193
- EnvironmentName?: string;
194
- LinkName?: string;
241
+ EnvironmentName?: string | undefined;
242
+ LinkName?: string | undefined;
195
243
  }
196
244
  export interface AwsElasticBeanstalkEnvironmentOptionSetting {
197
- Namespace?: string;
198
- OptionName?: string;
199
- ResourceName?: string;
200
- Value?: string;
245
+ Namespace?: string | undefined;
246
+ OptionName?: string | undefined;
247
+ ResourceName?: string | undefined;
248
+ Value?: string | undefined;
201
249
  }
202
250
  export interface AwsElasticBeanstalkEnvironmentTier {
203
- Name?: string;
204
- Type?: string;
205
- Version?: string;
251
+ Name?: string | undefined;
252
+ Type?: string | undefined;
253
+ Version?: string | undefined;
206
254
  }
207
255
  export interface AwsElasticBeanstalkEnvironmentDetails {
208
- ApplicationName?: string;
209
- Cname?: string;
210
- DateCreated?: string;
211
- DateUpdated?: string;
212
- Description?: string;
213
- EndpointUrl?: string;
214
- EnvironmentArn?: string;
215
- EnvironmentId?: string;
216
- EnvironmentLinks?: AwsElasticBeanstalkEnvironmentEnvironmentLink[];
217
- EnvironmentName?: string;
218
- OptionSettings?: AwsElasticBeanstalkEnvironmentOptionSetting[];
219
- PlatformArn?: string;
220
- SolutionStackName?: string;
221
- Status?: string;
222
- Tier?: AwsElasticBeanstalkEnvironmentTier;
223
- VersionLabel?: string;
256
+ ApplicationName?: string | undefined;
257
+ Cname?: string | undefined;
258
+ DateCreated?: string | undefined;
259
+ DateUpdated?: string | undefined;
260
+ Description?: string | undefined;
261
+ EndpointUrl?: string | undefined;
262
+ EnvironmentArn?: string | undefined;
263
+ EnvironmentId?: string | undefined;
264
+ EnvironmentLinks?:
265
+ | AwsElasticBeanstalkEnvironmentEnvironmentLink[]
266
+ | undefined;
267
+ EnvironmentName?: string | undefined;
268
+ OptionSettings?: AwsElasticBeanstalkEnvironmentOptionSetting[] | undefined;
269
+ PlatformArn?: string | undefined;
270
+ SolutionStackName?: string | undefined;
271
+ Status?: string | undefined;
272
+ Tier?: AwsElasticBeanstalkEnvironmentTier | undefined;
273
+ VersionLabel?: string | undefined;
224
274
  }
225
275
  export interface AwsElasticsearchDomainDomainEndpointOptions {
226
- EnforceHTTPS?: boolean;
227
- TLSSecurityPolicy?: string;
276
+ EnforceHTTPS?: boolean | undefined;
277
+ TLSSecurityPolicy?: string | undefined;
228
278
  }
229
279
  export interface AwsElasticsearchDomainElasticsearchClusterConfigZoneAwarenessConfigDetails {
230
- AvailabilityZoneCount?: number;
280
+ AvailabilityZoneCount?: number | undefined;
231
281
  }
232
282
  export interface AwsElasticsearchDomainElasticsearchClusterConfigDetails {
233
- DedicatedMasterCount?: number;
234
- DedicatedMasterEnabled?: boolean;
235
- DedicatedMasterType?: string;
236
- InstanceCount?: number;
237
- InstanceType?: string;
238
- ZoneAwarenessConfig?: AwsElasticsearchDomainElasticsearchClusterConfigZoneAwarenessConfigDetails;
239
- ZoneAwarenessEnabled?: boolean;
283
+ DedicatedMasterCount?: number | undefined;
284
+ DedicatedMasterEnabled?: boolean | undefined;
285
+ DedicatedMasterType?: string | undefined;
286
+ InstanceCount?: number | undefined;
287
+ InstanceType?: string | undefined;
288
+ ZoneAwarenessConfig?:
289
+ | AwsElasticsearchDomainElasticsearchClusterConfigZoneAwarenessConfigDetails
290
+ | undefined;
291
+ ZoneAwarenessEnabled?: boolean | undefined;
240
292
  }
241
293
  export interface AwsElasticsearchDomainEncryptionAtRestOptions {
242
- Enabled?: boolean;
243
- KmsKeyId?: string;
294
+ Enabled?: boolean | undefined;
295
+ KmsKeyId?: string | undefined;
244
296
  }
245
297
  export interface AwsElasticsearchDomainLogPublishingOptionsLogConfig {
246
- CloudWatchLogsLogGroupArn?: string;
247
- Enabled?: boolean;
298
+ CloudWatchLogsLogGroupArn?: string | undefined;
299
+ Enabled?: boolean | undefined;
248
300
  }
249
301
  export interface AwsElasticsearchDomainLogPublishingOptions {
250
- IndexSlowLogs?: AwsElasticsearchDomainLogPublishingOptionsLogConfig;
251
- SearchSlowLogs?: AwsElasticsearchDomainLogPublishingOptionsLogConfig;
252
- AuditLogs?: AwsElasticsearchDomainLogPublishingOptionsLogConfig;
302
+ IndexSlowLogs?:
303
+ | AwsElasticsearchDomainLogPublishingOptionsLogConfig
304
+ | undefined;
305
+ SearchSlowLogs?:
306
+ | AwsElasticsearchDomainLogPublishingOptionsLogConfig
307
+ | undefined;
308
+ AuditLogs?: AwsElasticsearchDomainLogPublishingOptionsLogConfig | undefined;
253
309
  }
254
310
  export interface AwsElasticsearchDomainNodeToNodeEncryptionOptions {
255
- Enabled?: boolean;
311
+ Enabled?: boolean | undefined;
256
312
  }
257
313
  export interface AwsElasticsearchDomainServiceSoftwareOptions {
258
- AutomatedUpdateDate?: string;
259
- Cancellable?: boolean;
260
- CurrentVersion?: string;
261
- Description?: string;
262
- NewVersion?: string;
263
- UpdateAvailable?: boolean;
264
- UpdateStatus?: string;
314
+ AutomatedUpdateDate?: string | undefined;
315
+ Cancellable?: boolean | undefined;
316
+ CurrentVersion?: string | undefined;
317
+ Description?: string | undefined;
318
+ NewVersion?: string | undefined;
319
+ UpdateAvailable?: boolean | undefined;
320
+ UpdateStatus?: string | undefined;
265
321
  }
266
322
  export interface AwsElasticsearchDomainVPCOptions {
267
- AvailabilityZones?: string[];
268
- SecurityGroupIds?: string[];
269
- SubnetIds?: string[];
270
- VPCId?: string;
323
+ AvailabilityZones?: string[] | undefined;
324
+ SecurityGroupIds?: string[] | undefined;
325
+ SubnetIds?: string[] | undefined;
326
+ VPCId?: string | undefined;
271
327
  }
272
328
  export interface AwsElasticsearchDomainDetails {
273
- AccessPolicies?: string;
274
- DomainEndpointOptions?: AwsElasticsearchDomainDomainEndpointOptions;
275
- DomainId?: string;
276
- DomainName?: string;
277
- Endpoint?: string;
278
- Endpoints?: Record<string, string>;
279
- ElasticsearchVersion?: string;
280
- ElasticsearchClusterConfig?: AwsElasticsearchDomainElasticsearchClusterConfigDetails;
281
- EncryptionAtRestOptions?: AwsElasticsearchDomainEncryptionAtRestOptions;
282
- LogPublishingOptions?: AwsElasticsearchDomainLogPublishingOptions;
283
- NodeToNodeEncryptionOptions?: AwsElasticsearchDomainNodeToNodeEncryptionOptions;
284
- ServiceSoftwareOptions?: AwsElasticsearchDomainServiceSoftwareOptions;
285
- VPCOptions?: AwsElasticsearchDomainVPCOptions;
329
+ AccessPolicies?: string | undefined;
330
+ DomainEndpointOptions?:
331
+ | AwsElasticsearchDomainDomainEndpointOptions
332
+ | undefined;
333
+ DomainId?: string | undefined;
334
+ DomainName?: string | undefined;
335
+ Endpoint?: string | undefined;
336
+ Endpoints?: Record<string, string> | undefined;
337
+ ElasticsearchVersion?: string | undefined;
338
+ ElasticsearchClusterConfig?:
339
+ | AwsElasticsearchDomainElasticsearchClusterConfigDetails
340
+ | undefined;
341
+ EncryptionAtRestOptions?:
342
+ | AwsElasticsearchDomainEncryptionAtRestOptions
343
+ | undefined;
344
+ LogPublishingOptions?: AwsElasticsearchDomainLogPublishingOptions | undefined;
345
+ NodeToNodeEncryptionOptions?:
346
+ | AwsElasticsearchDomainNodeToNodeEncryptionOptions
347
+ | undefined;
348
+ ServiceSoftwareOptions?:
349
+ | AwsElasticsearchDomainServiceSoftwareOptions
350
+ | undefined;
351
+ VPCOptions?: AwsElasticsearchDomainVPCOptions | undefined;
286
352
  }
287
353
  export interface AwsElbAppCookieStickinessPolicy {
288
- CookieName?: string;
289
- PolicyName?: string;
354
+ CookieName?: string | undefined;
355
+ PolicyName?: string | undefined;
290
356
  }
291
357
  export interface AwsElbLbCookieStickinessPolicy {
292
- CookieExpirationPeriod?: number;
293
- PolicyName?: string;
358
+ CookieExpirationPeriod?: number | undefined;
359
+ PolicyName?: string | undefined;
294
360
  }
295
361
  export interface AwsElbLoadBalancerAccessLog {
296
- EmitInterval?: number;
297
- Enabled?: boolean;
298
- S3BucketName?: string;
299
- S3BucketPrefix?: string;
362
+ EmitInterval?: number | undefined;
363
+ Enabled?: boolean | undefined;
364
+ S3BucketName?: string | undefined;
365
+ S3BucketPrefix?: string | undefined;
300
366
  }
301
367
  export interface AwsElbLoadBalancerAdditionalAttribute {
302
- Key?: string;
303
- Value?: string;
368
+ Key?: string | undefined;
369
+ Value?: string | undefined;
304
370
  }
305
371
  export interface AwsElbLoadBalancerConnectionDraining {
306
- Enabled?: boolean;
307
- Timeout?: number;
372
+ Enabled?: boolean | undefined;
373
+ Timeout?: number | undefined;
308
374
  }
309
375
  export interface AwsElbLoadBalancerConnectionSettings {
310
- IdleTimeout?: number;
376
+ IdleTimeout?: number | undefined;
311
377
  }
312
378
  export interface AwsElbLoadBalancerCrossZoneLoadBalancing {
313
- Enabled?: boolean;
379
+ Enabled?: boolean | undefined;
314
380
  }
315
381
  export interface AwsElbLoadBalancerAttributes {
316
- AccessLog?: AwsElbLoadBalancerAccessLog;
317
- ConnectionDraining?: AwsElbLoadBalancerConnectionDraining;
318
- ConnectionSettings?: AwsElbLoadBalancerConnectionSettings;
319
- CrossZoneLoadBalancing?: AwsElbLoadBalancerCrossZoneLoadBalancing;
320
- AdditionalAttributes?: AwsElbLoadBalancerAdditionalAttribute[];
382
+ AccessLog?: AwsElbLoadBalancerAccessLog | undefined;
383
+ ConnectionDraining?: AwsElbLoadBalancerConnectionDraining | undefined;
384
+ ConnectionSettings?: AwsElbLoadBalancerConnectionSettings | undefined;
385
+ CrossZoneLoadBalancing?: AwsElbLoadBalancerCrossZoneLoadBalancing | undefined;
386
+ AdditionalAttributes?: AwsElbLoadBalancerAdditionalAttribute[] | undefined;
321
387
  }
322
388
  export interface AwsElbLoadBalancerBackendServerDescription {
323
- InstancePort?: number;
324
- PolicyNames?: string[];
389
+ InstancePort?: number | undefined;
390
+ PolicyNames?: string[] | undefined;
325
391
  }
326
392
  export interface AwsElbLoadBalancerHealthCheck {
327
- HealthyThreshold?: number;
328
- Interval?: number;
329
- Target?: string;
330
- Timeout?: number;
331
- UnhealthyThreshold?: number;
393
+ HealthyThreshold?: number | undefined;
394
+ Interval?: number | undefined;
395
+ Target?: string | undefined;
396
+ Timeout?: number | undefined;
397
+ UnhealthyThreshold?: number | undefined;
332
398
  }
333
399
  export interface AwsElbLoadBalancerInstance {
334
- InstanceId?: string;
400
+ InstanceId?: string | undefined;
335
401
  }
336
402
  export interface AwsElbLoadBalancerListener {
337
- InstancePort?: number;
338
- InstanceProtocol?: string;
339
- LoadBalancerPort?: number;
340
- Protocol?: string;
341
- SslCertificateId?: string;
403
+ InstancePort?: number | undefined;
404
+ InstanceProtocol?: string | undefined;
405
+ LoadBalancerPort?: number | undefined;
406
+ Protocol?: string | undefined;
407
+ SslCertificateId?: string | undefined;
342
408
  }
343
409
  export interface AwsElbLoadBalancerListenerDescription {
344
- Listener?: AwsElbLoadBalancerListener;
345
- PolicyNames?: string[];
410
+ Listener?: AwsElbLoadBalancerListener | undefined;
411
+ PolicyNames?: string[] | undefined;
346
412
  }
347
413
  export interface AwsElbLoadBalancerPolicies {
348
- AppCookieStickinessPolicies?: AwsElbAppCookieStickinessPolicy[];
349
- LbCookieStickinessPolicies?: AwsElbLbCookieStickinessPolicy[];
350
- OtherPolicies?: string[];
414
+ AppCookieStickinessPolicies?: AwsElbAppCookieStickinessPolicy[] | undefined;
415
+ LbCookieStickinessPolicies?: AwsElbLbCookieStickinessPolicy[] | undefined;
416
+ OtherPolicies?: string[] | undefined;
351
417
  }
352
418
  export interface AwsElbLoadBalancerSourceSecurityGroup {
353
- GroupName?: string;
354
- OwnerAlias?: string;
419
+ GroupName?: string | undefined;
420
+ OwnerAlias?: string | undefined;
355
421
  }
356
422
  export interface AwsElbLoadBalancerDetails {
357
- AvailabilityZones?: string[];
358
- BackendServerDescriptions?: AwsElbLoadBalancerBackendServerDescription[];
359
- CanonicalHostedZoneName?: string;
360
- CanonicalHostedZoneNameID?: string;
361
- CreatedTime?: string;
362
- DnsName?: string;
363
- HealthCheck?: AwsElbLoadBalancerHealthCheck;
364
- Instances?: AwsElbLoadBalancerInstance[];
365
- ListenerDescriptions?: AwsElbLoadBalancerListenerDescription[];
366
- LoadBalancerAttributes?: AwsElbLoadBalancerAttributes;
367
- LoadBalancerName?: string;
368
- Policies?: AwsElbLoadBalancerPolicies;
369
- Scheme?: string;
370
- SecurityGroups?: string[];
371
- SourceSecurityGroup?: AwsElbLoadBalancerSourceSecurityGroup;
372
- Subnets?: string[];
373
- VpcId?: string;
423
+ AvailabilityZones?: string[] | undefined;
424
+ BackendServerDescriptions?:
425
+ | AwsElbLoadBalancerBackendServerDescription[]
426
+ | undefined;
427
+ CanonicalHostedZoneName?: string | undefined;
428
+ CanonicalHostedZoneNameID?: string | undefined;
429
+ CreatedTime?: string | undefined;
430
+ DnsName?: string | undefined;
431
+ HealthCheck?: AwsElbLoadBalancerHealthCheck | undefined;
432
+ Instances?: AwsElbLoadBalancerInstance[] | undefined;
433
+ ListenerDescriptions?: AwsElbLoadBalancerListenerDescription[] | undefined;
434
+ LoadBalancerAttributes?: AwsElbLoadBalancerAttributes | undefined;
435
+ LoadBalancerName?: string | undefined;
436
+ Policies?: AwsElbLoadBalancerPolicies | undefined;
437
+ Scheme?: string | undefined;
438
+ SecurityGroups?: string[] | undefined;
439
+ SourceSecurityGroup?: AwsElbLoadBalancerSourceSecurityGroup | undefined;
440
+ Subnets?: string[] | undefined;
441
+ VpcId?: string | undefined;
374
442
  }
375
443
  export interface AwsElbv2LoadBalancerAttribute {
376
- Key?: string;
377
- Value?: string;
444
+ Key?: string | undefined;
445
+ Value?: string | undefined;
378
446
  }
379
447
  export interface LoadBalancerState {
380
- Code?: string;
381
- Reason?: string;
448
+ Code?: string | undefined;
449
+ Reason?: string | undefined;
382
450
  }
383
451
  export interface AwsElbv2LoadBalancerDetails {
384
- AvailabilityZones?: AvailabilityZone[];
385
- CanonicalHostedZoneId?: string;
386
- CreatedTime?: string;
387
- DNSName?: string;
388
- IpAddressType?: string;
389
- Scheme?: string;
390
- SecurityGroups?: string[];
391
- State?: LoadBalancerState;
392
- Type?: string;
393
- VpcId?: string;
394
- LoadBalancerAttributes?: AwsElbv2LoadBalancerAttribute[];
452
+ AvailabilityZones?: AvailabilityZone[] | undefined;
453
+ CanonicalHostedZoneId?: string | undefined;
454
+ CreatedTime?: string | undefined;
455
+ DNSName?: string | undefined;
456
+ IpAddressType?: string | undefined;
457
+ Scheme?: string | undefined;
458
+ SecurityGroups?: string[] | undefined;
459
+ State?: LoadBalancerState | undefined;
460
+ Type?: string | undefined;
461
+ VpcId?: string | undefined;
462
+ LoadBalancerAttributes?: AwsElbv2LoadBalancerAttribute[] | undefined;
395
463
  }
396
464
  export interface AwsEventSchemasRegistryDetails {
397
- Description?: string;
398
- RegistryArn?: string;
399
- RegistryName?: string;
465
+ Description?: string | undefined;
466
+ RegistryArn?: string | undefined;
467
+ RegistryName?: string | undefined;
400
468
  }
401
469
  export interface AwsEventsEndpointEventBusesDetails {
402
- EventBusArn?: string;
470
+ EventBusArn?: string | undefined;
403
471
  }
404
472
  export interface AwsEventsEndpointReplicationConfigDetails {
405
- State?: string;
473
+ State?: string | undefined;
406
474
  }
407
475
  export interface AwsEventsEndpointRoutingConfigFailoverConfigPrimaryDetails {
408
- HealthCheck?: string;
476
+ HealthCheck?: string | undefined;
409
477
  }
410
478
  export interface AwsEventsEndpointRoutingConfigFailoverConfigSecondaryDetails {
411
- Route?: string;
479
+ Route?: string | undefined;
412
480
  }
413
481
  export interface AwsEventsEndpointRoutingConfigFailoverConfigDetails {
414
- Primary?: AwsEventsEndpointRoutingConfigFailoverConfigPrimaryDetails;
415
- Secondary?: AwsEventsEndpointRoutingConfigFailoverConfigSecondaryDetails;
482
+ Primary?:
483
+ | AwsEventsEndpointRoutingConfigFailoverConfigPrimaryDetails
484
+ | undefined;
485
+ Secondary?:
486
+ | AwsEventsEndpointRoutingConfigFailoverConfigSecondaryDetails
487
+ | undefined;
416
488
  }
417
489
  export interface AwsEventsEndpointRoutingConfigDetails {
418
- FailoverConfig?: AwsEventsEndpointRoutingConfigFailoverConfigDetails;
490
+ FailoverConfig?:
491
+ | AwsEventsEndpointRoutingConfigFailoverConfigDetails
492
+ | undefined;
419
493
  }
420
494
  export interface AwsEventsEndpointDetails {
421
- Arn?: string;
422
- Description?: string;
423
- EndpointId?: string;
424
- EndpointUrl?: string;
425
- EventBuses?: AwsEventsEndpointEventBusesDetails[];
426
- Name?: string;
427
- ReplicationConfig?: AwsEventsEndpointReplicationConfigDetails;
428
- RoleArn?: string;
429
- RoutingConfig?: AwsEventsEndpointRoutingConfigDetails;
430
- State?: string;
431
- StateReason?: string;
495
+ Arn?: string | undefined;
496
+ Description?: string | undefined;
497
+ EndpointId?: string | undefined;
498
+ EndpointUrl?: string | undefined;
499
+ EventBuses?: AwsEventsEndpointEventBusesDetails[] | undefined;
500
+ Name?: string | undefined;
501
+ ReplicationConfig?: AwsEventsEndpointReplicationConfigDetails | undefined;
502
+ RoleArn?: string | undefined;
503
+ RoutingConfig?: AwsEventsEndpointRoutingConfigDetails | undefined;
504
+ State?: string | undefined;
505
+ StateReason?: string | undefined;
432
506
  }
433
507
  export interface AwsEventsEventbusDetails {
434
- Arn?: string;
435
- Name?: string;
436
- Policy?: string;
508
+ Arn?: string | undefined;
509
+ Name?: string | undefined;
510
+ Policy?: string | undefined;
437
511
  }
438
512
  export interface AwsGuardDutyDetectorDataSourcesCloudTrailDetails {
439
- Status?: string;
513
+ Status?: string | undefined;
440
514
  }
441
515
  export interface AwsGuardDutyDetectorDataSourcesDnsLogsDetails {
442
- Status?: string;
516
+ Status?: string | undefined;
443
517
  }
444
518
  export interface AwsGuardDutyDetectorDataSourcesFlowLogsDetails {
445
- Status?: string;
519
+ Status?: string | undefined;
446
520
  }
447
521
  export interface AwsGuardDutyDetectorDataSourcesKubernetesAuditLogsDetails {
448
- Status?: string;
522
+ Status?: string | undefined;
449
523
  }
450
524
  export interface AwsGuardDutyDetectorDataSourcesKubernetesDetails {
451
- AuditLogs?: AwsGuardDutyDetectorDataSourcesKubernetesAuditLogsDetails;
525
+ AuditLogs?:
526
+ | AwsGuardDutyDetectorDataSourcesKubernetesAuditLogsDetails
527
+ | undefined;
452
528
  }
453
529
  export interface AwsGuardDutyDetectorDataSourcesMalwareProtectionScanEc2InstanceWithFindingsEbsVolumesDetails {
454
- Reason?: string;
455
- Status?: string;
530
+ Reason?: string | undefined;
531
+ Status?: string | undefined;
456
532
  }
457
533
  export interface AwsGuardDutyDetectorDataSourcesMalwareProtectionScanEc2InstanceWithFindingsDetails {
458
- EbsVolumes?: AwsGuardDutyDetectorDataSourcesMalwareProtectionScanEc2InstanceWithFindingsEbsVolumesDetails;
534
+ EbsVolumes?:
535
+ | AwsGuardDutyDetectorDataSourcesMalwareProtectionScanEc2InstanceWithFindingsEbsVolumesDetails
536
+ | undefined;
459
537
  }
460
538
  export interface AwsGuardDutyDetectorDataSourcesMalwareProtectionDetails {
461
- ScanEc2InstanceWithFindings?: AwsGuardDutyDetectorDataSourcesMalwareProtectionScanEc2InstanceWithFindingsDetails;
462
- ServiceRole?: string;
539
+ ScanEc2InstanceWithFindings?:
540
+ | AwsGuardDutyDetectorDataSourcesMalwareProtectionScanEc2InstanceWithFindingsDetails
541
+ | undefined;
542
+ ServiceRole?: string | undefined;
463
543
  }
464
544
  export interface AwsGuardDutyDetectorDataSourcesS3LogsDetails {
465
- Status?: string;
545
+ Status?: string | undefined;
466
546
  }
467
547
  export interface AwsGuardDutyDetectorDataSourcesDetails {
468
- CloudTrail?: AwsGuardDutyDetectorDataSourcesCloudTrailDetails;
469
- DnsLogs?: AwsGuardDutyDetectorDataSourcesDnsLogsDetails;
470
- FlowLogs?: AwsGuardDutyDetectorDataSourcesFlowLogsDetails;
471
- Kubernetes?: AwsGuardDutyDetectorDataSourcesKubernetesDetails;
472
- MalwareProtection?: AwsGuardDutyDetectorDataSourcesMalwareProtectionDetails;
473
- S3Logs?: AwsGuardDutyDetectorDataSourcesS3LogsDetails;
548
+ CloudTrail?: AwsGuardDutyDetectorDataSourcesCloudTrailDetails | undefined;
549
+ DnsLogs?: AwsGuardDutyDetectorDataSourcesDnsLogsDetails | undefined;
550
+ FlowLogs?: AwsGuardDutyDetectorDataSourcesFlowLogsDetails | undefined;
551
+ Kubernetes?: AwsGuardDutyDetectorDataSourcesKubernetesDetails | undefined;
552
+ MalwareProtection?:
553
+ | AwsGuardDutyDetectorDataSourcesMalwareProtectionDetails
554
+ | undefined;
555
+ S3Logs?: AwsGuardDutyDetectorDataSourcesS3LogsDetails | undefined;
474
556
  }
475
557
  export interface AwsGuardDutyDetectorFeaturesDetails {
476
- Name?: string;
477
- Status?: string;
558
+ Name?: string | undefined;
559
+ Status?: string | undefined;
478
560
  }
479
561
  export interface AwsGuardDutyDetectorDetails {
480
- DataSources?: AwsGuardDutyDetectorDataSourcesDetails;
481
- Features?: AwsGuardDutyDetectorFeaturesDetails[];
482
- FindingPublishingFrequency?: string;
483
- ServiceRole?: string;
484
- Status?: string;
562
+ DataSources?: AwsGuardDutyDetectorDataSourcesDetails | undefined;
563
+ Features?: AwsGuardDutyDetectorFeaturesDetails[] | undefined;
564
+ FindingPublishingFrequency?: string | undefined;
565
+ ServiceRole?: string | undefined;
566
+ Status?: string | undefined;
485
567
  }
486
568
  export interface AwsIamAccessKeySessionContextAttributes {
487
- MfaAuthenticated?: boolean;
488
- CreationDate?: string;
569
+ MfaAuthenticated?: boolean | undefined;
570
+ CreationDate?: string | undefined;
489
571
  }
490
572
  export interface AwsIamAccessKeySessionContextSessionIssuer {
491
- Type?: string;
492
- PrincipalId?: string;
493
- Arn?: string;
494
- AccountId?: string;
495
- UserName?: string;
573
+ Type?: string | undefined;
574
+ PrincipalId?: string | undefined;
575
+ Arn?: string | undefined;
576
+ AccountId?: string | undefined;
577
+ UserName?: string | undefined;
496
578
  }
497
579
  export interface AwsIamAccessKeySessionContext {
498
- Attributes?: AwsIamAccessKeySessionContextAttributes;
499
- SessionIssuer?: AwsIamAccessKeySessionContextSessionIssuer;
580
+ Attributes?: AwsIamAccessKeySessionContextAttributes | undefined;
581
+ SessionIssuer?: AwsIamAccessKeySessionContextSessionIssuer | undefined;
500
582
  }
501
583
  export declare const AwsIamAccessKeyStatus: {
502
584
  readonly ACTIVE: "Active";
@@ -505,944 +587,1020 @@ export declare const AwsIamAccessKeyStatus: {
505
587
  export type AwsIamAccessKeyStatus =
506
588
  (typeof AwsIamAccessKeyStatus)[keyof typeof AwsIamAccessKeyStatus];
507
589
  export interface AwsIamAccessKeyDetails {
508
- UserName?: string;
509
- Status?: AwsIamAccessKeyStatus;
510
- CreatedAt?: string;
511
- PrincipalId?: string;
512
- PrincipalType?: string;
513
- PrincipalName?: string;
514
- AccountId?: string;
515
- AccessKeyId?: string;
516
- SessionContext?: AwsIamAccessKeySessionContext;
590
+ UserName?: string | undefined;
591
+ Status?: AwsIamAccessKeyStatus | undefined;
592
+ CreatedAt?: string | undefined;
593
+ PrincipalId?: string | undefined;
594
+ PrincipalType?: string | undefined;
595
+ PrincipalName?: string | undefined;
596
+ AccountId?: string | undefined;
597
+ AccessKeyId?: string | undefined;
598
+ SessionContext?: AwsIamAccessKeySessionContext | undefined;
517
599
  }
518
600
  export interface AwsIamAttachedManagedPolicy {
519
- PolicyName?: string;
520
- PolicyArn?: string;
601
+ PolicyName?: string | undefined;
602
+ PolicyArn?: string | undefined;
521
603
  }
522
604
  export interface AwsIamGroupPolicy {
523
- PolicyName?: string;
605
+ PolicyName?: string | undefined;
524
606
  }
525
607
  export interface AwsIamGroupDetails {
526
- AttachedManagedPolicies?: AwsIamAttachedManagedPolicy[];
527
- CreateDate?: string;
528
- GroupId?: string;
529
- GroupName?: string;
530
- GroupPolicyList?: AwsIamGroupPolicy[];
531
- Path?: string;
608
+ AttachedManagedPolicies?: AwsIamAttachedManagedPolicy[] | undefined;
609
+ CreateDate?: string | undefined;
610
+ GroupId?: string | undefined;
611
+ GroupName?: string | undefined;
612
+ GroupPolicyList?: AwsIamGroupPolicy[] | undefined;
613
+ Path?: string | undefined;
532
614
  }
533
615
  export interface AwsIamInstanceProfileRole {
534
- Arn?: string;
535
- AssumeRolePolicyDocument?: string;
536
- CreateDate?: string;
537
- Path?: string;
538
- RoleId?: string;
539
- RoleName?: string;
616
+ Arn?: string | undefined;
617
+ AssumeRolePolicyDocument?: string | undefined;
618
+ CreateDate?: string | undefined;
619
+ Path?: string | undefined;
620
+ RoleId?: string | undefined;
621
+ RoleName?: string | undefined;
540
622
  }
541
623
  export interface AwsIamInstanceProfile {
542
- Arn?: string;
543
- CreateDate?: string;
544
- InstanceProfileId?: string;
545
- InstanceProfileName?: string;
546
- Path?: string;
547
- Roles?: AwsIamInstanceProfileRole[];
624
+ Arn?: string | undefined;
625
+ CreateDate?: string | undefined;
626
+ InstanceProfileId?: string | undefined;
627
+ InstanceProfileName?: string | undefined;
628
+ Path?: string | undefined;
629
+ Roles?: AwsIamInstanceProfileRole[] | undefined;
548
630
  }
549
631
  export interface AwsIamPermissionsBoundary {
550
- PermissionsBoundaryArn?: string;
551
- PermissionsBoundaryType?: string;
632
+ PermissionsBoundaryArn?: string | undefined;
633
+ PermissionsBoundaryType?: string | undefined;
552
634
  }
553
635
  export interface AwsIamPolicyVersion {
554
- VersionId?: string;
555
- IsDefaultVersion?: boolean;
556
- CreateDate?: string;
636
+ VersionId?: string | undefined;
637
+ IsDefaultVersion?: boolean | undefined;
638
+ CreateDate?: string | undefined;
557
639
  }
558
640
  export interface AwsIamPolicyDetails {
559
- AttachmentCount?: number;
560
- CreateDate?: string;
561
- DefaultVersionId?: string;
562
- Description?: string;
563
- IsAttachable?: boolean;
564
- Path?: string;
565
- PermissionsBoundaryUsageCount?: number;
566
- PolicyId?: string;
567
- PolicyName?: string;
568
- PolicyVersionList?: AwsIamPolicyVersion[];
569
- UpdateDate?: string;
641
+ AttachmentCount?: number | undefined;
642
+ CreateDate?: string | undefined;
643
+ DefaultVersionId?: string | undefined;
644
+ Description?: string | undefined;
645
+ IsAttachable?: boolean | undefined;
646
+ Path?: string | undefined;
647
+ PermissionsBoundaryUsageCount?: number | undefined;
648
+ PolicyId?: string | undefined;
649
+ PolicyName?: string | undefined;
650
+ PolicyVersionList?: AwsIamPolicyVersion[] | undefined;
651
+ UpdateDate?: string | undefined;
570
652
  }
571
653
  export interface AwsIamRolePolicy {
572
- PolicyName?: string;
654
+ PolicyName?: string | undefined;
573
655
  }
574
656
  export interface AwsIamRoleDetails {
575
- AssumeRolePolicyDocument?: string;
576
- AttachedManagedPolicies?: AwsIamAttachedManagedPolicy[];
577
- CreateDate?: string;
578
- InstanceProfileList?: AwsIamInstanceProfile[];
579
- PermissionsBoundary?: AwsIamPermissionsBoundary;
580
- RoleId?: string;
581
- RoleName?: string;
582
- RolePolicyList?: AwsIamRolePolicy[];
583
- MaxSessionDuration?: number;
584
- Path?: string;
657
+ AssumeRolePolicyDocument?: string | undefined;
658
+ AttachedManagedPolicies?: AwsIamAttachedManagedPolicy[] | undefined;
659
+ CreateDate?: string | undefined;
660
+ InstanceProfileList?: AwsIamInstanceProfile[] | undefined;
661
+ PermissionsBoundary?: AwsIamPermissionsBoundary | undefined;
662
+ RoleId?: string | undefined;
663
+ RoleName?: string | undefined;
664
+ RolePolicyList?: AwsIamRolePolicy[] | undefined;
665
+ MaxSessionDuration?: number | undefined;
666
+ Path?: string | undefined;
585
667
  }
586
668
  export interface AwsIamUserPolicy {
587
- PolicyName?: string;
669
+ PolicyName?: string | undefined;
588
670
  }
589
671
  export interface AwsIamUserDetails {
590
- AttachedManagedPolicies?: AwsIamAttachedManagedPolicy[];
591
- CreateDate?: string;
592
- GroupList?: string[];
593
- Path?: string;
594
- PermissionsBoundary?: AwsIamPermissionsBoundary;
595
- UserId?: string;
596
- UserName?: string;
597
- UserPolicyList?: AwsIamUserPolicy[];
672
+ AttachedManagedPolicies?: AwsIamAttachedManagedPolicy[] | undefined;
673
+ CreateDate?: string | undefined;
674
+ GroupList?: string[] | undefined;
675
+ Path?: string | undefined;
676
+ PermissionsBoundary?: AwsIamPermissionsBoundary | undefined;
677
+ UserId?: string | undefined;
678
+ UserName?: string | undefined;
679
+ UserPolicyList?: AwsIamUserPolicy[] | undefined;
598
680
  }
599
681
  export interface AwsKinesisStreamStreamEncryptionDetails {
600
- EncryptionType?: string;
601
- KeyId?: string;
682
+ EncryptionType?: string | undefined;
683
+ KeyId?: string | undefined;
602
684
  }
603
685
  export interface AwsKinesisStreamDetails {
604
- Name?: string;
605
- Arn?: string;
606
- StreamEncryption?: AwsKinesisStreamStreamEncryptionDetails;
607
- ShardCount?: number;
608
- RetentionPeriodHours?: number;
686
+ Name?: string | undefined;
687
+ Arn?: string | undefined;
688
+ StreamEncryption?: AwsKinesisStreamStreamEncryptionDetails | undefined;
689
+ ShardCount?: number | undefined;
690
+ RetentionPeriodHours?: number | undefined;
609
691
  }
610
692
  export interface AwsKmsKeyDetails {
611
- AWSAccountId?: string;
612
- CreationDate?: number;
613
- KeyId?: string;
614
- KeyManager?: string;
615
- KeyState?: string;
616
- Origin?: string;
617
- Description?: string;
618
- KeyRotationStatus?: boolean;
693
+ AWSAccountId?: string | undefined;
694
+ CreationDate?: number | undefined;
695
+ KeyId?: string | undefined;
696
+ KeyManager?: string | undefined;
697
+ KeyState?: string | undefined;
698
+ Origin?: string | undefined;
699
+ Description?: string | undefined;
700
+ KeyRotationStatus?: boolean | undefined;
619
701
  }
620
702
  export interface AwsLambdaFunctionCode {
621
- S3Bucket?: string;
622
- S3Key?: string;
623
- S3ObjectVersion?: string;
624
- ZipFile?: string;
703
+ S3Bucket?: string | undefined;
704
+ S3Key?: string | undefined;
705
+ S3ObjectVersion?: string | undefined;
706
+ ZipFile?: string | undefined;
625
707
  }
626
708
  export interface AwsLambdaFunctionDeadLetterConfig {
627
- TargetArn?: string;
709
+ TargetArn?: string | undefined;
628
710
  }
629
711
  export interface AwsLambdaFunctionEnvironmentError {
630
- ErrorCode?: string;
631
- Message?: string;
712
+ ErrorCode?: string | undefined;
713
+ Message?: string | undefined;
632
714
  }
633
715
  export interface AwsLambdaFunctionEnvironment {
634
- Variables?: Record<string, string>;
635
- Error?: AwsLambdaFunctionEnvironmentError;
716
+ Variables?: Record<string, string> | undefined;
717
+ Error?: AwsLambdaFunctionEnvironmentError | undefined;
636
718
  }
637
719
  export interface AwsLambdaFunctionLayer {
638
- Arn?: string;
639
- CodeSize?: number;
720
+ Arn?: string | undefined;
721
+ CodeSize?: number | undefined;
640
722
  }
641
723
  export interface AwsLambdaFunctionTracingConfig {
642
- Mode?: string;
724
+ Mode?: string | undefined;
643
725
  }
644
726
  export interface AwsLambdaFunctionVpcConfig {
645
- SecurityGroupIds?: string[];
646
- SubnetIds?: string[];
647
- VpcId?: string;
727
+ SecurityGroupIds?: string[] | undefined;
728
+ SubnetIds?: string[] | undefined;
729
+ VpcId?: string | undefined;
648
730
  }
649
731
  export interface AwsLambdaFunctionDetails {
650
- Code?: AwsLambdaFunctionCode;
651
- CodeSha256?: string;
652
- DeadLetterConfig?: AwsLambdaFunctionDeadLetterConfig;
653
- Environment?: AwsLambdaFunctionEnvironment;
654
- FunctionName?: string;
655
- Handler?: string;
656
- KmsKeyArn?: string;
657
- LastModified?: string;
658
- Layers?: AwsLambdaFunctionLayer[];
659
- MasterArn?: string;
660
- MemorySize?: number;
661
- RevisionId?: string;
662
- Role?: string;
663
- Runtime?: string;
664
- Timeout?: number;
665
- TracingConfig?: AwsLambdaFunctionTracingConfig;
666
- VpcConfig?: AwsLambdaFunctionVpcConfig;
667
- Version?: string;
668
- Architectures?: string[];
669
- PackageType?: string;
732
+ Code?: AwsLambdaFunctionCode | undefined;
733
+ CodeSha256?: string | undefined;
734
+ DeadLetterConfig?: AwsLambdaFunctionDeadLetterConfig | undefined;
735
+ Environment?: AwsLambdaFunctionEnvironment | undefined;
736
+ FunctionName?: string | undefined;
737
+ Handler?: string | undefined;
738
+ KmsKeyArn?: string | undefined;
739
+ LastModified?: string | undefined;
740
+ Layers?: AwsLambdaFunctionLayer[] | undefined;
741
+ MasterArn?: string | undefined;
742
+ MemorySize?: number | undefined;
743
+ RevisionId?: string | undefined;
744
+ Role?: string | undefined;
745
+ Runtime?: string | undefined;
746
+ Timeout?: number | undefined;
747
+ TracingConfig?: AwsLambdaFunctionTracingConfig | undefined;
748
+ VpcConfig?: AwsLambdaFunctionVpcConfig | undefined;
749
+ Version?: string | undefined;
750
+ Architectures?: string[] | undefined;
751
+ PackageType?: string | undefined;
670
752
  }
671
753
  export interface AwsLambdaLayerVersionDetails {
672
- Version?: number;
673
- CompatibleRuntimes?: string[];
674
- CreatedDate?: string;
754
+ Version?: number | undefined;
755
+ CompatibleRuntimes?: string[] | undefined;
756
+ CreatedDate?: string | undefined;
675
757
  }
676
758
  export interface AwsMskClusterClusterInfoClientAuthenticationSaslIamDetails {
677
- Enabled?: boolean;
759
+ Enabled?: boolean | undefined;
678
760
  }
679
761
  export interface AwsMskClusterClusterInfoClientAuthenticationSaslScramDetails {
680
- Enabled?: boolean;
762
+ Enabled?: boolean | undefined;
681
763
  }
682
764
  export interface AwsMskClusterClusterInfoClientAuthenticationSaslDetails {
683
- Iam?: AwsMskClusterClusterInfoClientAuthenticationSaslIamDetails;
684
- Scram?: AwsMskClusterClusterInfoClientAuthenticationSaslScramDetails;
765
+ Iam?: AwsMskClusterClusterInfoClientAuthenticationSaslIamDetails | undefined;
766
+ Scram?:
767
+ | AwsMskClusterClusterInfoClientAuthenticationSaslScramDetails
768
+ | undefined;
685
769
  }
686
770
  export interface AwsMskClusterClusterInfoClientAuthenticationTlsDetails {
687
- CertificateAuthorityArnList?: string[];
688
- Enabled?: boolean;
771
+ CertificateAuthorityArnList?: string[] | undefined;
772
+ Enabled?: boolean | undefined;
689
773
  }
690
774
  export interface AwsMskClusterClusterInfoClientAuthenticationUnauthenticatedDetails {
691
- Enabled?: boolean;
775
+ Enabled?: boolean | undefined;
692
776
  }
693
777
  export interface AwsMskClusterClusterInfoClientAuthenticationDetails {
694
- Sasl?: AwsMskClusterClusterInfoClientAuthenticationSaslDetails;
695
- Unauthenticated?: AwsMskClusterClusterInfoClientAuthenticationUnauthenticatedDetails;
696
- Tls?: AwsMskClusterClusterInfoClientAuthenticationTlsDetails;
778
+ Sasl?: AwsMskClusterClusterInfoClientAuthenticationSaslDetails | undefined;
779
+ Unauthenticated?:
780
+ | AwsMskClusterClusterInfoClientAuthenticationUnauthenticatedDetails
781
+ | undefined;
782
+ Tls?: AwsMskClusterClusterInfoClientAuthenticationTlsDetails | undefined;
697
783
  }
698
784
  export interface AwsMskClusterClusterInfoEncryptionInfoEncryptionAtRestDetails {
699
- DataVolumeKMSKeyId?: string;
785
+ DataVolumeKMSKeyId?: string | undefined;
700
786
  }
701
787
  export interface AwsMskClusterClusterInfoEncryptionInfoEncryptionInTransitDetails {
702
- InCluster?: boolean;
703
- ClientBroker?: string;
788
+ InCluster?: boolean | undefined;
789
+ ClientBroker?: string | undefined;
704
790
  }
705
791
  export interface AwsMskClusterClusterInfoEncryptionInfoDetails {
706
- EncryptionInTransit?: AwsMskClusterClusterInfoEncryptionInfoEncryptionInTransitDetails;
707
- EncryptionAtRest?: AwsMskClusterClusterInfoEncryptionInfoEncryptionAtRestDetails;
792
+ EncryptionInTransit?:
793
+ | AwsMskClusterClusterInfoEncryptionInfoEncryptionInTransitDetails
794
+ | undefined;
795
+ EncryptionAtRest?:
796
+ | AwsMskClusterClusterInfoEncryptionInfoEncryptionAtRestDetails
797
+ | undefined;
708
798
  }
709
799
  export interface AwsMskClusterClusterInfoDetails {
710
- EncryptionInfo?: AwsMskClusterClusterInfoEncryptionInfoDetails;
711
- CurrentVersion?: string;
712
- NumberOfBrokerNodes?: number;
713
- ClusterName?: string;
714
- ClientAuthentication?: AwsMskClusterClusterInfoClientAuthenticationDetails;
715
- EnhancedMonitoring?: string;
800
+ EncryptionInfo?: AwsMskClusterClusterInfoEncryptionInfoDetails | undefined;
801
+ CurrentVersion?: string | undefined;
802
+ NumberOfBrokerNodes?: number | undefined;
803
+ ClusterName?: string | undefined;
804
+ ClientAuthentication?:
805
+ | AwsMskClusterClusterInfoClientAuthenticationDetails
806
+ | undefined;
807
+ EnhancedMonitoring?: string | undefined;
716
808
  }
717
809
  export interface AwsMskClusterDetails {
718
- ClusterInfo?: AwsMskClusterClusterInfoDetails;
810
+ ClusterInfo?: AwsMskClusterClusterInfoDetails | undefined;
719
811
  }
720
812
  export interface AwsNetworkFirewallFirewallSubnetMappingsDetails {
721
- SubnetId?: string;
813
+ SubnetId?: string | undefined;
722
814
  }
723
815
  export interface AwsNetworkFirewallFirewallDetails {
724
- DeleteProtection?: boolean;
725
- Description?: string;
726
- FirewallArn?: string;
727
- FirewallId?: string;
728
- FirewallName?: string;
729
- FirewallPolicyArn?: string;
730
- FirewallPolicyChangeProtection?: boolean;
731
- SubnetChangeProtection?: boolean;
732
- SubnetMappings?: AwsNetworkFirewallFirewallSubnetMappingsDetails[];
733
- VpcId?: string;
816
+ DeleteProtection?: boolean | undefined;
817
+ Description?: string | undefined;
818
+ FirewallArn?: string | undefined;
819
+ FirewallId?: string | undefined;
820
+ FirewallName?: string | undefined;
821
+ FirewallPolicyArn?: string | undefined;
822
+ FirewallPolicyChangeProtection?: boolean | undefined;
823
+ SubnetChangeProtection?: boolean | undefined;
824
+ SubnetMappings?:
825
+ | AwsNetworkFirewallFirewallSubnetMappingsDetails[]
826
+ | undefined;
827
+ VpcId?: string | undefined;
734
828
  }
735
829
  export interface FirewallPolicyStatefulRuleGroupReferencesDetails {
736
- ResourceArn?: string;
830
+ ResourceArn?: string | undefined;
737
831
  }
738
832
  export interface StatelessCustomPublishMetricActionDimension {
739
- Value?: string;
833
+ Value?: string | undefined;
740
834
  }
741
835
  export interface StatelessCustomPublishMetricAction {
742
- Dimensions?: StatelessCustomPublishMetricActionDimension[];
836
+ Dimensions?: StatelessCustomPublishMetricActionDimension[] | undefined;
743
837
  }
744
838
  export interface StatelessCustomActionDefinition {
745
- PublishMetricAction?: StatelessCustomPublishMetricAction;
839
+ PublishMetricAction?: StatelessCustomPublishMetricAction | undefined;
746
840
  }
747
841
  export interface FirewallPolicyStatelessCustomActionsDetails {
748
- ActionDefinition?: StatelessCustomActionDefinition;
749
- ActionName?: string;
842
+ ActionDefinition?: StatelessCustomActionDefinition | undefined;
843
+ ActionName?: string | undefined;
750
844
  }
751
845
  export interface FirewallPolicyStatelessRuleGroupReferencesDetails {
752
- Priority?: number;
753
- ResourceArn?: string;
846
+ Priority?: number | undefined;
847
+ ResourceArn?: string | undefined;
754
848
  }
755
849
  export interface FirewallPolicyDetails {
756
- StatefulRuleGroupReferences?: FirewallPolicyStatefulRuleGroupReferencesDetails[];
757
- StatelessCustomActions?: FirewallPolicyStatelessCustomActionsDetails[];
758
- StatelessDefaultActions?: string[];
759
- StatelessFragmentDefaultActions?: string[];
760
- StatelessRuleGroupReferences?: FirewallPolicyStatelessRuleGroupReferencesDetails[];
850
+ StatefulRuleGroupReferences?:
851
+ | FirewallPolicyStatefulRuleGroupReferencesDetails[]
852
+ | undefined;
853
+ StatelessCustomActions?:
854
+ | FirewallPolicyStatelessCustomActionsDetails[]
855
+ | undefined;
856
+ StatelessDefaultActions?: string[] | undefined;
857
+ StatelessFragmentDefaultActions?: string[] | undefined;
858
+ StatelessRuleGroupReferences?:
859
+ | FirewallPolicyStatelessRuleGroupReferencesDetails[]
860
+ | undefined;
761
861
  }
762
862
  export interface AwsNetworkFirewallFirewallPolicyDetails {
763
- FirewallPolicy?: FirewallPolicyDetails;
764
- FirewallPolicyArn?: string;
765
- FirewallPolicyId?: string;
766
- FirewallPolicyName?: string;
767
- Description?: string;
863
+ FirewallPolicy?: FirewallPolicyDetails | undefined;
864
+ FirewallPolicyArn?: string | undefined;
865
+ FirewallPolicyId?: string | undefined;
866
+ FirewallPolicyName?: string | undefined;
867
+ Description?: string | undefined;
768
868
  }
769
869
  export interface RuleGroupSourceListDetails {
770
- GeneratedRulesType?: string;
771
- TargetTypes?: string[];
772
- Targets?: string[];
870
+ GeneratedRulesType?: string | undefined;
871
+ TargetTypes?: string[] | undefined;
872
+ Targets?: string[] | undefined;
773
873
  }
774
874
  export interface RuleGroupSourceStatefulRulesHeaderDetails {
775
- Destination?: string;
776
- DestinationPort?: string;
777
- Direction?: string;
778
- Protocol?: string;
779
- Source?: string;
780
- SourcePort?: string;
875
+ Destination?: string | undefined;
876
+ DestinationPort?: string | undefined;
877
+ Direction?: string | undefined;
878
+ Protocol?: string | undefined;
879
+ Source?: string | undefined;
880
+ SourcePort?: string | undefined;
781
881
  }
782
882
  export interface RuleGroupSourceStatefulRulesOptionsDetails {
783
- Keyword?: string;
784
- Settings?: string[];
883
+ Keyword?: string | undefined;
884
+ Settings?: string[] | undefined;
785
885
  }
786
886
  export interface RuleGroupSourceStatefulRulesDetails {
787
- Action?: string;
788
- Header?: RuleGroupSourceStatefulRulesHeaderDetails;
789
- RuleOptions?: RuleGroupSourceStatefulRulesOptionsDetails[];
887
+ Action?: string | undefined;
888
+ Header?: RuleGroupSourceStatefulRulesHeaderDetails | undefined;
889
+ RuleOptions?: RuleGroupSourceStatefulRulesOptionsDetails[] | undefined;
790
890
  }
791
891
  export interface RuleGroupSourceCustomActionsDetails {
792
- ActionDefinition?: StatelessCustomActionDefinition;
793
- ActionName?: string;
892
+ ActionDefinition?: StatelessCustomActionDefinition | undefined;
893
+ ActionName?: string | undefined;
794
894
  }
795
895
  export interface RuleGroupSourceStatelessRuleMatchAttributesDestinationPorts {
796
- FromPort?: number;
797
- ToPort?: number;
896
+ FromPort?: number | undefined;
897
+ ToPort?: number | undefined;
798
898
  }
799
899
  export interface RuleGroupSourceStatelessRuleMatchAttributesDestinations {
800
- AddressDefinition?: string;
900
+ AddressDefinition?: string | undefined;
801
901
  }
802
902
  export interface RuleGroupSourceStatelessRuleMatchAttributesSourcePorts {
803
- FromPort?: number;
804
- ToPort?: number;
903
+ FromPort?: number | undefined;
904
+ ToPort?: number | undefined;
805
905
  }
806
906
  export interface RuleGroupSourceStatelessRuleMatchAttributesSources {
807
- AddressDefinition?: string;
907
+ AddressDefinition?: string | undefined;
808
908
  }
809
909
  export interface RuleGroupSourceStatelessRuleMatchAttributesTcpFlags {
810
- Flags?: string[];
811
- Masks?: string[];
910
+ Flags?: string[] | undefined;
911
+ Masks?: string[] | undefined;
812
912
  }
813
913
  export interface RuleGroupSourceStatelessRuleMatchAttributes {
814
- DestinationPorts?: RuleGroupSourceStatelessRuleMatchAttributesDestinationPorts[];
815
- Destinations?: RuleGroupSourceStatelessRuleMatchAttributesDestinations[];
816
- Protocols?: number[];
817
- SourcePorts?: RuleGroupSourceStatelessRuleMatchAttributesSourcePorts[];
818
- Sources?: RuleGroupSourceStatelessRuleMatchAttributesSources[];
819
- TcpFlags?: RuleGroupSourceStatelessRuleMatchAttributesTcpFlags[];
914
+ DestinationPorts?:
915
+ | RuleGroupSourceStatelessRuleMatchAttributesDestinationPorts[]
916
+ | undefined;
917
+ Destinations?:
918
+ | RuleGroupSourceStatelessRuleMatchAttributesDestinations[]
919
+ | undefined;
920
+ Protocols?: number[] | undefined;
921
+ SourcePorts?:
922
+ | RuleGroupSourceStatelessRuleMatchAttributesSourcePorts[]
923
+ | undefined;
924
+ Sources?: RuleGroupSourceStatelessRuleMatchAttributesSources[] | undefined;
925
+ TcpFlags?: RuleGroupSourceStatelessRuleMatchAttributesTcpFlags[] | undefined;
820
926
  }
821
927
  export interface RuleGroupSourceStatelessRuleDefinition {
822
- Actions?: string[];
823
- MatchAttributes?: RuleGroupSourceStatelessRuleMatchAttributes;
928
+ Actions?: string[] | undefined;
929
+ MatchAttributes?: RuleGroupSourceStatelessRuleMatchAttributes | undefined;
824
930
  }
825
931
  export interface RuleGroupSourceStatelessRulesDetails {
826
- Priority?: number;
827
- RuleDefinition?: RuleGroupSourceStatelessRuleDefinition;
932
+ Priority?: number | undefined;
933
+ RuleDefinition?: RuleGroupSourceStatelessRuleDefinition | undefined;
828
934
  }
829
935
  export interface RuleGroupSourceStatelessRulesAndCustomActionsDetails {
830
- CustomActions?: RuleGroupSourceCustomActionsDetails[];
831
- StatelessRules?: RuleGroupSourceStatelessRulesDetails[];
936
+ CustomActions?: RuleGroupSourceCustomActionsDetails[] | undefined;
937
+ StatelessRules?: RuleGroupSourceStatelessRulesDetails[] | undefined;
832
938
  }
833
939
  export interface RuleGroupSource {
834
- RulesSourceList?: RuleGroupSourceListDetails;
835
- RulesString?: string;
836
- StatefulRules?: RuleGroupSourceStatefulRulesDetails[];
837
- StatelessRulesAndCustomActions?: RuleGroupSourceStatelessRulesAndCustomActionsDetails;
940
+ RulesSourceList?: RuleGroupSourceListDetails | undefined;
941
+ RulesString?: string | undefined;
942
+ StatefulRules?: RuleGroupSourceStatefulRulesDetails[] | undefined;
943
+ StatelessRulesAndCustomActions?:
944
+ | RuleGroupSourceStatelessRulesAndCustomActionsDetails
945
+ | undefined;
838
946
  }
839
947
  export interface RuleGroupVariablesIpSetsDetails {
840
- Definition?: string[];
948
+ Definition?: string[] | undefined;
841
949
  }
842
950
  export interface RuleGroupVariablesPortSetsDetails {
843
- Definition?: string[];
951
+ Definition?: string[] | undefined;
844
952
  }
845
953
  export interface RuleGroupVariables {
846
- IpSets?: RuleGroupVariablesIpSetsDetails;
847
- PortSets?: RuleGroupVariablesPortSetsDetails;
954
+ IpSets?: RuleGroupVariablesIpSetsDetails | undefined;
955
+ PortSets?: RuleGroupVariablesPortSetsDetails | undefined;
848
956
  }
849
957
  export interface RuleGroupDetails {
850
- RuleVariables?: RuleGroupVariables;
851
- RulesSource?: RuleGroupSource;
958
+ RuleVariables?: RuleGroupVariables | undefined;
959
+ RulesSource?: RuleGroupSource | undefined;
852
960
  }
853
961
  export interface AwsNetworkFirewallRuleGroupDetails {
854
- Capacity?: number;
855
- Description?: string;
856
- RuleGroup?: RuleGroupDetails;
857
- RuleGroupArn?: string;
858
- RuleGroupId?: string;
859
- RuleGroupName?: string;
860
- Type?: string;
962
+ Capacity?: number | undefined;
963
+ Description?: string | undefined;
964
+ RuleGroup?: RuleGroupDetails | undefined;
965
+ RuleGroupArn?: string | undefined;
966
+ RuleGroupId?: string | undefined;
967
+ RuleGroupName?: string | undefined;
968
+ Type?: string | undefined;
861
969
  }
862
970
  export interface AwsOpenSearchServiceDomainMasterUserOptionsDetails {
863
- MasterUserArn?: string;
864
- MasterUserName?: string;
865
- MasterUserPassword?: string;
971
+ MasterUserArn?: string | undefined;
972
+ MasterUserName?: string | undefined;
973
+ MasterUserPassword?: string | undefined;
866
974
  }
867
975
  export interface AwsOpenSearchServiceDomainAdvancedSecurityOptionsDetails {
868
- Enabled?: boolean;
869
- InternalUserDatabaseEnabled?: boolean;
870
- MasterUserOptions?: AwsOpenSearchServiceDomainMasterUserOptionsDetails;
976
+ Enabled?: boolean | undefined;
977
+ InternalUserDatabaseEnabled?: boolean | undefined;
978
+ MasterUserOptions?:
979
+ | AwsOpenSearchServiceDomainMasterUserOptionsDetails
980
+ | undefined;
871
981
  }
872
982
  export interface AwsOpenSearchServiceDomainClusterConfigZoneAwarenessConfigDetails {
873
- AvailabilityZoneCount?: number;
983
+ AvailabilityZoneCount?: number | undefined;
874
984
  }
875
985
  export interface AwsOpenSearchServiceDomainClusterConfigDetails {
876
- InstanceCount?: number;
877
- WarmEnabled?: boolean;
878
- WarmCount?: number;
879
- DedicatedMasterEnabled?: boolean;
880
- ZoneAwarenessConfig?: AwsOpenSearchServiceDomainClusterConfigZoneAwarenessConfigDetails;
881
- DedicatedMasterCount?: number;
882
- InstanceType?: string;
883
- WarmType?: string;
884
- ZoneAwarenessEnabled?: boolean;
885
- DedicatedMasterType?: string;
986
+ InstanceCount?: number | undefined;
987
+ WarmEnabled?: boolean | undefined;
988
+ WarmCount?: number | undefined;
989
+ DedicatedMasterEnabled?: boolean | undefined;
990
+ ZoneAwarenessConfig?:
991
+ | AwsOpenSearchServiceDomainClusterConfigZoneAwarenessConfigDetails
992
+ | undefined;
993
+ DedicatedMasterCount?: number | undefined;
994
+ InstanceType?: string | undefined;
995
+ WarmType?: string | undefined;
996
+ ZoneAwarenessEnabled?: boolean | undefined;
997
+ DedicatedMasterType?: string | undefined;
886
998
  }
887
999
  export interface AwsOpenSearchServiceDomainDomainEndpointOptionsDetails {
888
- CustomEndpointCertificateArn?: string;
889
- CustomEndpointEnabled?: boolean;
890
- EnforceHTTPS?: boolean;
891
- CustomEndpoint?: string;
892
- TLSSecurityPolicy?: string;
1000
+ CustomEndpointCertificateArn?: string | undefined;
1001
+ CustomEndpointEnabled?: boolean | undefined;
1002
+ EnforceHTTPS?: boolean | undefined;
1003
+ CustomEndpoint?: string | undefined;
1004
+ TLSSecurityPolicy?: string | undefined;
893
1005
  }
894
1006
  export interface AwsOpenSearchServiceDomainEncryptionAtRestOptionsDetails {
895
- Enabled?: boolean;
896
- KmsKeyId?: string;
1007
+ Enabled?: boolean | undefined;
1008
+ KmsKeyId?: string | undefined;
897
1009
  }
898
1010
  export interface AwsOpenSearchServiceDomainLogPublishingOption {
899
- CloudWatchLogsLogGroupArn?: string;
900
- Enabled?: boolean;
1011
+ CloudWatchLogsLogGroupArn?: string | undefined;
1012
+ Enabled?: boolean | undefined;
901
1013
  }
902
1014
  export interface AwsOpenSearchServiceDomainLogPublishingOptionsDetails {
903
- IndexSlowLogs?: AwsOpenSearchServiceDomainLogPublishingOption;
904
- SearchSlowLogs?: AwsOpenSearchServiceDomainLogPublishingOption;
905
- AuditLogs?: AwsOpenSearchServiceDomainLogPublishingOption;
1015
+ IndexSlowLogs?: AwsOpenSearchServiceDomainLogPublishingOption | undefined;
1016
+ SearchSlowLogs?: AwsOpenSearchServiceDomainLogPublishingOption | undefined;
1017
+ AuditLogs?: AwsOpenSearchServiceDomainLogPublishingOption | undefined;
906
1018
  }
907
1019
  export interface AwsOpenSearchServiceDomainNodeToNodeEncryptionOptionsDetails {
908
- Enabled?: boolean;
1020
+ Enabled?: boolean | undefined;
909
1021
  }
910
1022
  export interface AwsOpenSearchServiceDomainServiceSoftwareOptionsDetails {
911
- AutomatedUpdateDate?: string;
912
- Cancellable?: boolean;
913
- CurrentVersion?: string;
914
- Description?: string;
915
- NewVersion?: string;
916
- UpdateAvailable?: boolean;
917
- UpdateStatus?: string;
918
- OptionalDeployment?: boolean;
1023
+ AutomatedUpdateDate?: string | undefined;
1024
+ Cancellable?: boolean | undefined;
1025
+ CurrentVersion?: string | undefined;
1026
+ Description?: string | undefined;
1027
+ NewVersion?: string | undefined;
1028
+ UpdateAvailable?: boolean | undefined;
1029
+ UpdateStatus?: string | undefined;
1030
+ OptionalDeployment?: boolean | undefined;
919
1031
  }
920
1032
  export interface AwsOpenSearchServiceDomainVpcOptionsDetails {
921
- SecurityGroupIds?: string[];
922
- SubnetIds?: string[];
1033
+ SecurityGroupIds?: string[] | undefined;
1034
+ SubnetIds?: string[] | undefined;
923
1035
  }
924
1036
  export interface AwsOpenSearchServiceDomainDetails {
925
- Arn?: string;
926
- AccessPolicies?: string;
927
- DomainName?: string;
928
- Id?: string;
929
- DomainEndpoint?: string;
930
- EngineVersion?: string;
931
- EncryptionAtRestOptions?: AwsOpenSearchServiceDomainEncryptionAtRestOptionsDetails;
932
- NodeToNodeEncryptionOptions?: AwsOpenSearchServiceDomainNodeToNodeEncryptionOptionsDetails;
933
- ServiceSoftwareOptions?: AwsOpenSearchServiceDomainServiceSoftwareOptionsDetails;
934
- ClusterConfig?: AwsOpenSearchServiceDomainClusterConfigDetails;
935
- DomainEndpointOptions?: AwsOpenSearchServiceDomainDomainEndpointOptionsDetails;
936
- VpcOptions?: AwsOpenSearchServiceDomainVpcOptionsDetails;
937
- LogPublishingOptions?: AwsOpenSearchServiceDomainLogPublishingOptionsDetails;
938
- DomainEndpoints?: Record<string, string>;
939
- AdvancedSecurityOptions?: AwsOpenSearchServiceDomainAdvancedSecurityOptionsDetails;
1037
+ Arn?: string | undefined;
1038
+ AccessPolicies?: string | undefined;
1039
+ DomainName?: string | undefined;
1040
+ Id?: string | undefined;
1041
+ DomainEndpoint?: string | undefined;
1042
+ EngineVersion?: string | undefined;
1043
+ EncryptionAtRestOptions?:
1044
+ | AwsOpenSearchServiceDomainEncryptionAtRestOptionsDetails
1045
+ | undefined;
1046
+ NodeToNodeEncryptionOptions?:
1047
+ | AwsOpenSearchServiceDomainNodeToNodeEncryptionOptionsDetails
1048
+ | undefined;
1049
+ ServiceSoftwareOptions?:
1050
+ | AwsOpenSearchServiceDomainServiceSoftwareOptionsDetails
1051
+ | undefined;
1052
+ ClusterConfig?: AwsOpenSearchServiceDomainClusterConfigDetails | undefined;
1053
+ DomainEndpointOptions?:
1054
+ | AwsOpenSearchServiceDomainDomainEndpointOptionsDetails
1055
+ | undefined;
1056
+ VpcOptions?: AwsOpenSearchServiceDomainVpcOptionsDetails | undefined;
1057
+ LogPublishingOptions?:
1058
+ | AwsOpenSearchServiceDomainLogPublishingOptionsDetails
1059
+ | undefined;
1060
+ DomainEndpoints?: Record<string, string> | undefined;
1061
+ AdvancedSecurityOptions?:
1062
+ | AwsOpenSearchServiceDomainAdvancedSecurityOptionsDetails
1063
+ | undefined;
940
1064
  }
941
1065
  export interface AwsRdsDbClusterAssociatedRole {
942
- RoleArn?: string;
943
- Status?: string;
1066
+ RoleArn?: string | undefined;
1067
+ Status?: string | undefined;
944
1068
  }
945
1069
  export interface AwsRdsDbClusterMember {
946
- IsClusterWriter?: boolean;
947
- PromotionTier?: number;
948
- DbInstanceIdentifier?: string;
949
- DbClusterParameterGroupStatus?: string;
1070
+ IsClusterWriter?: boolean | undefined;
1071
+ PromotionTier?: number | undefined;
1072
+ DbInstanceIdentifier?: string | undefined;
1073
+ DbClusterParameterGroupStatus?: string | undefined;
950
1074
  }
951
1075
  export interface AwsRdsDbClusterOptionGroupMembership {
952
- DbClusterOptionGroupName?: string;
953
- Status?: string;
1076
+ DbClusterOptionGroupName?: string | undefined;
1077
+ Status?: string | undefined;
954
1078
  }
955
1079
  export interface AwsRdsDbDomainMembership {
956
- Domain?: string;
957
- Status?: string;
958
- Fqdn?: string;
959
- IamRoleName?: string;
1080
+ Domain?: string | undefined;
1081
+ Status?: string | undefined;
1082
+ Fqdn?: string | undefined;
1083
+ IamRoleName?: string | undefined;
960
1084
  }
961
1085
  export interface AwsRdsDbInstanceVpcSecurityGroup {
962
- VpcSecurityGroupId?: string;
963
- Status?: string;
1086
+ VpcSecurityGroupId?: string | undefined;
1087
+ Status?: string | undefined;
964
1088
  }
965
1089
  export interface AwsRdsDbClusterDetails {
966
- AllocatedStorage?: number;
967
- AvailabilityZones?: string[];
968
- BackupRetentionPeriod?: number;
969
- DatabaseName?: string;
970
- Status?: string;
971
- Endpoint?: string;
972
- ReaderEndpoint?: string;
973
- CustomEndpoints?: string[];
974
- MultiAz?: boolean;
975
- Engine?: string;
976
- EngineVersion?: string;
977
- Port?: number;
978
- MasterUsername?: string;
979
- PreferredBackupWindow?: string;
980
- PreferredMaintenanceWindow?: string;
981
- ReadReplicaIdentifiers?: string[];
982
- VpcSecurityGroups?: AwsRdsDbInstanceVpcSecurityGroup[];
983
- HostedZoneId?: string;
984
- StorageEncrypted?: boolean;
985
- KmsKeyId?: string;
986
- DbClusterResourceId?: string;
987
- AssociatedRoles?: AwsRdsDbClusterAssociatedRole[];
988
- ClusterCreateTime?: string;
989
- EnabledCloudWatchLogsExports?: string[];
990
- EngineMode?: string;
991
- DeletionProtection?: boolean;
992
- HttpEndpointEnabled?: boolean;
993
- ActivityStreamStatus?: string;
994
- CopyTagsToSnapshot?: boolean;
995
- CrossAccountClone?: boolean;
996
- DomainMemberships?: AwsRdsDbDomainMembership[];
997
- DbClusterParameterGroup?: string;
998
- DbSubnetGroup?: string;
999
- DbClusterOptionGroupMemberships?: AwsRdsDbClusterOptionGroupMembership[];
1000
- DbClusterIdentifier?: string;
1001
- DbClusterMembers?: AwsRdsDbClusterMember[];
1002
- IamDatabaseAuthenticationEnabled?: boolean;
1003
- AutoMinorVersionUpgrade?: boolean;
1090
+ AllocatedStorage?: number | undefined;
1091
+ AvailabilityZones?: string[] | undefined;
1092
+ BackupRetentionPeriod?: number | undefined;
1093
+ DatabaseName?: string | undefined;
1094
+ Status?: string | undefined;
1095
+ Endpoint?: string | undefined;
1096
+ ReaderEndpoint?: string | undefined;
1097
+ CustomEndpoints?: string[] | undefined;
1098
+ MultiAz?: boolean | undefined;
1099
+ Engine?: string | undefined;
1100
+ EngineVersion?: string | undefined;
1101
+ Port?: number | undefined;
1102
+ MasterUsername?: string | undefined;
1103
+ PreferredBackupWindow?: string | undefined;
1104
+ PreferredMaintenanceWindow?: string | undefined;
1105
+ ReadReplicaIdentifiers?: string[] | undefined;
1106
+ VpcSecurityGroups?: AwsRdsDbInstanceVpcSecurityGroup[] | undefined;
1107
+ HostedZoneId?: string | undefined;
1108
+ StorageEncrypted?: boolean | undefined;
1109
+ KmsKeyId?: string | undefined;
1110
+ DbClusterResourceId?: string | undefined;
1111
+ AssociatedRoles?: AwsRdsDbClusterAssociatedRole[] | undefined;
1112
+ ClusterCreateTime?: string | undefined;
1113
+ EnabledCloudWatchLogsExports?: string[] | undefined;
1114
+ EngineMode?: string | undefined;
1115
+ DeletionProtection?: boolean | undefined;
1116
+ HttpEndpointEnabled?: boolean | undefined;
1117
+ ActivityStreamStatus?: string | undefined;
1118
+ CopyTagsToSnapshot?: boolean | undefined;
1119
+ CrossAccountClone?: boolean | undefined;
1120
+ DomainMemberships?: AwsRdsDbDomainMembership[] | undefined;
1121
+ DbClusterParameterGroup?: string | undefined;
1122
+ DbSubnetGroup?: string | undefined;
1123
+ DbClusterOptionGroupMemberships?:
1124
+ | AwsRdsDbClusterOptionGroupMembership[]
1125
+ | undefined;
1126
+ DbClusterIdentifier?: string | undefined;
1127
+ DbClusterMembers?: AwsRdsDbClusterMember[] | undefined;
1128
+ IamDatabaseAuthenticationEnabled?: boolean | undefined;
1129
+ AutoMinorVersionUpgrade?: boolean | undefined;
1004
1130
  }
1005
1131
  export interface AwsRdsDbClusterSnapshotDbClusterSnapshotAttribute {
1006
- AttributeName?: string;
1007
- AttributeValues?: string[];
1132
+ AttributeName?: string | undefined;
1133
+ AttributeValues?: string[] | undefined;
1008
1134
  }
1009
1135
  export interface AwsRdsDbClusterSnapshotDetails {
1010
- AvailabilityZones?: string[];
1011
- SnapshotCreateTime?: string;
1012
- Engine?: string;
1013
- AllocatedStorage?: number;
1014
- Status?: string;
1015
- Port?: number;
1016
- VpcId?: string;
1017
- ClusterCreateTime?: string;
1018
- MasterUsername?: string;
1019
- EngineVersion?: string;
1020
- LicenseModel?: string;
1021
- SnapshotType?: string;
1022
- PercentProgress?: number;
1023
- StorageEncrypted?: boolean;
1024
- KmsKeyId?: string;
1025
- DbClusterIdentifier?: string;
1026
- DbClusterSnapshotIdentifier?: string;
1027
- IamDatabaseAuthenticationEnabled?: boolean;
1028
- DbClusterSnapshotAttributes?: AwsRdsDbClusterSnapshotDbClusterSnapshotAttribute[];
1136
+ AvailabilityZones?: string[] | undefined;
1137
+ SnapshotCreateTime?: string | undefined;
1138
+ Engine?: string | undefined;
1139
+ AllocatedStorage?: number | undefined;
1140
+ Status?: string | undefined;
1141
+ Port?: number | undefined;
1142
+ VpcId?: string | undefined;
1143
+ ClusterCreateTime?: string | undefined;
1144
+ MasterUsername?: string | undefined;
1145
+ EngineVersion?: string | undefined;
1146
+ LicenseModel?: string | undefined;
1147
+ SnapshotType?: string | undefined;
1148
+ PercentProgress?: number | undefined;
1149
+ StorageEncrypted?: boolean | undefined;
1150
+ KmsKeyId?: string | undefined;
1151
+ DbClusterIdentifier?: string | undefined;
1152
+ DbClusterSnapshotIdentifier?: string | undefined;
1153
+ IamDatabaseAuthenticationEnabled?: boolean | undefined;
1154
+ DbClusterSnapshotAttributes?:
1155
+ | AwsRdsDbClusterSnapshotDbClusterSnapshotAttribute[]
1156
+ | undefined;
1029
1157
  }
1030
1158
  export interface AwsRdsDbInstanceAssociatedRole {
1031
- RoleArn?: string;
1032
- FeatureName?: string;
1033
- Status?: string;
1159
+ RoleArn?: string | undefined;
1160
+ FeatureName?: string | undefined;
1161
+ Status?: string | undefined;
1034
1162
  }
1035
1163
  export interface AwsRdsDbParameterGroup {
1036
- DbParameterGroupName?: string;
1037
- ParameterApplyStatus?: string;
1164
+ DbParameterGroupName?: string | undefined;
1165
+ ParameterApplyStatus?: string | undefined;
1038
1166
  }
1039
1167
  export interface AwsRdsDbSubnetGroupSubnetAvailabilityZone {
1040
- Name?: string;
1168
+ Name?: string | undefined;
1041
1169
  }
1042
1170
  export interface AwsRdsDbSubnetGroupSubnet {
1043
- SubnetIdentifier?: string;
1044
- SubnetAvailabilityZone?: AwsRdsDbSubnetGroupSubnetAvailabilityZone;
1045
- SubnetStatus?: string;
1171
+ SubnetIdentifier?: string | undefined;
1172
+ SubnetAvailabilityZone?:
1173
+ | AwsRdsDbSubnetGroupSubnetAvailabilityZone
1174
+ | undefined;
1175
+ SubnetStatus?: string | undefined;
1046
1176
  }
1047
1177
  export interface AwsRdsDbSubnetGroup {
1048
- DbSubnetGroupName?: string;
1049
- DbSubnetGroupDescription?: string;
1050
- VpcId?: string;
1051
- SubnetGroupStatus?: string;
1052
- Subnets?: AwsRdsDbSubnetGroupSubnet[];
1053
- DbSubnetGroupArn?: string;
1178
+ DbSubnetGroupName?: string | undefined;
1179
+ DbSubnetGroupDescription?: string | undefined;
1180
+ VpcId?: string | undefined;
1181
+ SubnetGroupStatus?: string | undefined;
1182
+ Subnets?: AwsRdsDbSubnetGroupSubnet[] | undefined;
1183
+ DbSubnetGroupArn?: string | undefined;
1054
1184
  }
1055
1185
  export interface AwsRdsDbInstanceEndpoint {
1056
- Address?: string;
1057
- Port?: number;
1058
- HostedZoneId?: string;
1186
+ Address?: string | undefined;
1187
+ Port?: number | undefined;
1188
+ HostedZoneId?: string | undefined;
1059
1189
  }
1060
1190
  export interface AwsRdsDbOptionGroupMembership {
1061
- OptionGroupName?: string;
1062
- Status?: string;
1191
+ OptionGroupName?: string | undefined;
1192
+ Status?: string | undefined;
1063
1193
  }
1064
1194
  export interface AwsRdsPendingCloudWatchLogsExports {
1065
- LogTypesToEnable?: string[];
1066
- LogTypesToDisable?: string[];
1195
+ LogTypesToEnable?: string[] | undefined;
1196
+ LogTypesToDisable?: string[] | undefined;
1067
1197
  }
1068
1198
  export interface AwsRdsDbProcessorFeature {
1069
- Name?: string;
1070
- Value?: string;
1199
+ Name?: string | undefined;
1200
+ Value?: string | undefined;
1071
1201
  }
1072
1202
  export interface AwsRdsDbPendingModifiedValues {
1073
- DbInstanceClass?: string;
1074
- AllocatedStorage?: number;
1075
- MasterUserPassword?: string;
1076
- Port?: number;
1077
- BackupRetentionPeriod?: number;
1078
- MultiAZ?: boolean;
1079
- EngineVersion?: string;
1080
- LicenseModel?: string;
1081
- Iops?: number;
1082
- DbInstanceIdentifier?: string;
1083
- StorageType?: string;
1084
- CaCertificateIdentifier?: string;
1085
- DbSubnetGroupName?: string;
1086
- PendingCloudWatchLogsExports?: AwsRdsPendingCloudWatchLogsExports;
1087
- ProcessorFeatures?: AwsRdsDbProcessorFeature[];
1203
+ DbInstanceClass?: string | undefined;
1204
+ AllocatedStorage?: number | undefined;
1205
+ MasterUserPassword?: string | undefined;
1206
+ Port?: number | undefined;
1207
+ BackupRetentionPeriod?: number | undefined;
1208
+ MultiAZ?: boolean | undefined;
1209
+ EngineVersion?: string | undefined;
1210
+ LicenseModel?: string | undefined;
1211
+ Iops?: number | undefined;
1212
+ DbInstanceIdentifier?: string | undefined;
1213
+ StorageType?: string | undefined;
1214
+ CaCertificateIdentifier?: string | undefined;
1215
+ DbSubnetGroupName?: string | undefined;
1216
+ PendingCloudWatchLogsExports?: AwsRdsPendingCloudWatchLogsExports | undefined;
1217
+ ProcessorFeatures?: AwsRdsDbProcessorFeature[] | undefined;
1088
1218
  }
1089
1219
  export interface AwsRdsDbStatusInfo {
1090
- StatusType?: string;
1091
- Normal?: boolean;
1092
- Status?: string;
1093
- Message?: string;
1220
+ StatusType?: string | undefined;
1221
+ Normal?: boolean | undefined;
1222
+ Status?: string | undefined;
1223
+ Message?: string | undefined;
1094
1224
  }
1095
1225
  export interface AwsRdsDbInstanceDetails {
1096
- AssociatedRoles?: AwsRdsDbInstanceAssociatedRole[];
1097
- CACertificateIdentifier?: string;
1098
- DBClusterIdentifier?: string;
1099
- DBInstanceIdentifier?: string;
1100
- DBInstanceClass?: string;
1101
- DbInstancePort?: number;
1102
- DbiResourceId?: string;
1103
- DBName?: string;
1104
- DeletionProtection?: boolean;
1105
- Endpoint?: AwsRdsDbInstanceEndpoint;
1106
- Engine?: string;
1107
- EngineVersion?: string;
1108
- IAMDatabaseAuthenticationEnabled?: boolean;
1109
- InstanceCreateTime?: string;
1110
- KmsKeyId?: string;
1111
- PubliclyAccessible?: boolean;
1112
- StorageEncrypted?: boolean;
1113
- TdeCredentialArn?: string;
1114
- VpcSecurityGroups?: AwsRdsDbInstanceVpcSecurityGroup[];
1115
- MultiAz?: boolean;
1116
- EnhancedMonitoringResourceArn?: string;
1117
- DbInstanceStatus?: string;
1118
- MasterUsername?: string;
1119
- AllocatedStorage?: number;
1120
- PreferredBackupWindow?: string;
1121
- BackupRetentionPeriod?: number;
1122
- DbSecurityGroups?: string[];
1123
- DbParameterGroups?: AwsRdsDbParameterGroup[];
1124
- AvailabilityZone?: string;
1125
- DbSubnetGroup?: AwsRdsDbSubnetGroup;
1126
- PreferredMaintenanceWindow?: string;
1127
- PendingModifiedValues?: AwsRdsDbPendingModifiedValues;
1128
- LatestRestorableTime?: string;
1129
- AutoMinorVersionUpgrade?: boolean;
1130
- ReadReplicaSourceDBInstanceIdentifier?: string;
1131
- ReadReplicaDBInstanceIdentifiers?: string[];
1132
- ReadReplicaDBClusterIdentifiers?: string[];
1133
- LicenseModel?: string;
1134
- Iops?: number;
1135
- OptionGroupMemberships?: AwsRdsDbOptionGroupMembership[];
1136
- CharacterSetName?: string;
1137
- SecondaryAvailabilityZone?: string;
1138
- StatusInfos?: AwsRdsDbStatusInfo[];
1139
- StorageType?: string;
1140
- DomainMemberships?: AwsRdsDbDomainMembership[];
1141
- CopyTagsToSnapshot?: boolean;
1142
- MonitoringInterval?: number;
1143
- MonitoringRoleArn?: string;
1144
- PromotionTier?: number;
1145
- Timezone?: string;
1146
- PerformanceInsightsEnabled?: boolean;
1147
- PerformanceInsightsKmsKeyId?: string;
1148
- PerformanceInsightsRetentionPeriod?: number;
1149
- EnabledCloudWatchLogsExports?: string[];
1150
- ProcessorFeatures?: AwsRdsDbProcessorFeature[];
1151
- ListenerEndpoint?: AwsRdsDbInstanceEndpoint;
1152
- MaxAllocatedStorage?: number;
1226
+ AssociatedRoles?: AwsRdsDbInstanceAssociatedRole[] | undefined;
1227
+ CACertificateIdentifier?: string | undefined;
1228
+ DBClusterIdentifier?: string | undefined;
1229
+ DBInstanceIdentifier?: string | undefined;
1230
+ DBInstanceClass?: string | undefined;
1231
+ DbInstancePort?: number | undefined;
1232
+ DbiResourceId?: string | undefined;
1233
+ DBName?: string | undefined;
1234
+ DeletionProtection?: boolean | undefined;
1235
+ Endpoint?: AwsRdsDbInstanceEndpoint | undefined;
1236
+ Engine?: string | undefined;
1237
+ EngineVersion?: string | undefined;
1238
+ IAMDatabaseAuthenticationEnabled?: boolean | undefined;
1239
+ InstanceCreateTime?: string | undefined;
1240
+ KmsKeyId?: string | undefined;
1241
+ PubliclyAccessible?: boolean | undefined;
1242
+ StorageEncrypted?: boolean | undefined;
1243
+ TdeCredentialArn?: string | undefined;
1244
+ VpcSecurityGroups?: AwsRdsDbInstanceVpcSecurityGroup[] | undefined;
1245
+ MultiAz?: boolean | undefined;
1246
+ EnhancedMonitoringResourceArn?: string | undefined;
1247
+ DbInstanceStatus?: string | undefined;
1248
+ MasterUsername?: string | undefined;
1249
+ AllocatedStorage?: number | undefined;
1250
+ PreferredBackupWindow?: string | undefined;
1251
+ BackupRetentionPeriod?: number | undefined;
1252
+ DbSecurityGroups?: string[] | undefined;
1253
+ DbParameterGroups?: AwsRdsDbParameterGroup[] | undefined;
1254
+ AvailabilityZone?: string | undefined;
1255
+ DbSubnetGroup?: AwsRdsDbSubnetGroup | undefined;
1256
+ PreferredMaintenanceWindow?: string | undefined;
1257
+ PendingModifiedValues?: AwsRdsDbPendingModifiedValues | undefined;
1258
+ LatestRestorableTime?: string | undefined;
1259
+ AutoMinorVersionUpgrade?: boolean | undefined;
1260
+ ReadReplicaSourceDBInstanceIdentifier?: string | undefined;
1261
+ ReadReplicaDBInstanceIdentifiers?: string[] | undefined;
1262
+ ReadReplicaDBClusterIdentifiers?: string[] | undefined;
1263
+ LicenseModel?: string | undefined;
1264
+ Iops?: number | undefined;
1265
+ OptionGroupMemberships?: AwsRdsDbOptionGroupMembership[] | undefined;
1266
+ CharacterSetName?: string | undefined;
1267
+ SecondaryAvailabilityZone?: string | undefined;
1268
+ StatusInfos?: AwsRdsDbStatusInfo[] | undefined;
1269
+ StorageType?: string | undefined;
1270
+ DomainMemberships?: AwsRdsDbDomainMembership[] | undefined;
1271
+ CopyTagsToSnapshot?: boolean | undefined;
1272
+ MonitoringInterval?: number | undefined;
1273
+ MonitoringRoleArn?: string | undefined;
1274
+ PromotionTier?: number | undefined;
1275
+ Timezone?: string | undefined;
1276
+ PerformanceInsightsEnabled?: boolean | undefined;
1277
+ PerformanceInsightsKmsKeyId?: string | undefined;
1278
+ PerformanceInsightsRetentionPeriod?: number | undefined;
1279
+ EnabledCloudWatchLogsExports?: string[] | undefined;
1280
+ ProcessorFeatures?: AwsRdsDbProcessorFeature[] | undefined;
1281
+ ListenerEndpoint?: AwsRdsDbInstanceEndpoint | undefined;
1282
+ MaxAllocatedStorage?: number | undefined;
1153
1283
  }
1154
1284
  export interface AwsRdsDbSecurityGroupEc2SecurityGroup {
1155
- Ec2SecurityGroupId?: string;
1156
- Ec2SecurityGroupName?: string;
1157
- Ec2SecurityGroupOwnerId?: string;
1158
- Status?: string;
1285
+ Ec2SecurityGroupId?: string | undefined;
1286
+ Ec2SecurityGroupName?: string | undefined;
1287
+ Ec2SecurityGroupOwnerId?: string | undefined;
1288
+ Status?: string | undefined;
1159
1289
  }
1160
1290
  export interface AwsRdsDbSecurityGroupIpRange {
1161
- CidrIp?: string;
1162
- Status?: string;
1291
+ CidrIp?: string | undefined;
1292
+ Status?: string | undefined;
1163
1293
  }
1164
1294
  export interface AwsRdsDbSecurityGroupDetails {
1165
- DbSecurityGroupArn?: string;
1166
- DbSecurityGroupDescription?: string;
1167
- DbSecurityGroupName?: string;
1168
- Ec2SecurityGroups?: AwsRdsDbSecurityGroupEc2SecurityGroup[];
1169
- IpRanges?: AwsRdsDbSecurityGroupIpRange[];
1170
- OwnerId?: string;
1171
- VpcId?: string;
1295
+ DbSecurityGroupArn?: string | undefined;
1296
+ DbSecurityGroupDescription?: string | undefined;
1297
+ DbSecurityGroupName?: string | undefined;
1298
+ Ec2SecurityGroups?: AwsRdsDbSecurityGroupEc2SecurityGroup[] | undefined;
1299
+ IpRanges?: AwsRdsDbSecurityGroupIpRange[] | undefined;
1300
+ OwnerId?: string | undefined;
1301
+ VpcId?: string | undefined;
1172
1302
  }
1173
1303
  export interface AwsRdsDbSnapshotDetails {
1174
- DbSnapshotIdentifier?: string;
1175
- DbInstanceIdentifier?: string;
1176
- SnapshotCreateTime?: string;
1177
- Engine?: string;
1178
- AllocatedStorage?: number;
1179
- Status?: string;
1180
- Port?: number;
1181
- AvailabilityZone?: string;
1182
- VpcId?: string;
1183
- InstanceCreateTime?: string;
1184
- MasterUsername?: string;
1185
- EngineVersion?: string;
1186
- LicenseModel?: string;
1187
- SnapshotType?: string;
1188
- Iops?: number;
1189
- OptionGroupName?: string;
1190
- PercentProgress?: number;
1191
- SourceRegion?: string;
1192
- SourceDbSnapshotIdentifier?: string;
1193
- StorageType?: string;
1194
- TdeCredentialArn?: string;
1195
- Encrypted?: boolean;
1196
- KmsKeyId?: string;
1197
- Timezone?: string;
1198
- IamDatabaseAuthenticationEnabled?: boolean;
1199
- ProcessorFeatures?: AwsRdsDbProcessorFeature[];
1200
- DbiResourceId?: string;
1304
+ DbSnapshotIdentifier?: string | undefined;
1305
+ DbInstanceIdentifier?: string | undefined;
1306
+ SnapshotCreateTime?: string | undefined;
1307
+ Engine?: string | undefined;
1308
+ AllocatedStorage?: number | undefined;
1309
+ Status?: string | undefined;
1310
+ Port?: number | undefined;
1311
+ AvailabilityZone?: string | undefined;
1312
+ VpcId?: string | undefined;
1313
+ InstanceCreateTime?: string | undefined;
1314
+ MasterUsername?: string | undefined;
1315
+ EngineVersion?: string | undefined;
1316
+ LicenseModel?: string | undefined;
1317
+ SnapshotType?: string | undefined;
1318
+ Iops?: number | undefined;
1319
+ OptionGroupName?: string | undefined;
1320
+ PercentProgress?: number | undefined;
1321
+ SourceRegion?: string | undefined;
1322
+ SourceDbSnapshotIdentifier?: string | undefined;
1323
+ StorageType?: string | undefined;
1324
+ TdeCredentialArn?: string | undefined;
1325
+ Encrypted?: boolean | undefined;
1326
+ KmsKeyId?: string | undefined;
1327
+ Timezone?: string | undefined;
1328
+ IamDatabaseAuthenticationEnabled?: boolean | undefined;
1329
+ ProcessorFeatures?: AwsRdsDbProcessorFeature[] | undefined;
1330
+ DbiResourceId?: string | undefined;
1201
1331
  }
1202
1332
  export interface AwsRdsEventSubscriptionDetails {
1203
- CustSubscriptionId?: string;
1204
- CustomerAwsId?: string;
1205
- Enabled?: boolean;
1206
- EventCategoriesList?: string[];
1207
- EventSubscriptionArn?: string;
1208
- SnsTopicArn?: string;
1209
- SourceIdsList?: string[];
1210
- SourceType?: string;
1211
- Status?: string;
1212
- SubscriptionCreationTime?: string;
1333
+ CustSubscriptionId?: string | undefined;
1334
+ CustomerAwsId?: string | undefined;
1335
+ Enabled?: boolean | undefined;
1336
+ EventCategoriesList?: string[] | undefined;
1337
+ EventSubscriptionArn?: string | undefined;
1338
+ SnsTopicArn?: string | undefined;
1339
+ SourceIdsList?: string[] | undefined;
1340
+ SourceType?: string | undefined;
1341
+ Status?: string | undefined;
1342
+ SubscriptionCreationTime?: string | undefined;
1213
1343
  }
1214
1344
  export interface AwsRedshiftClusterClusterNode {
1215
- NodeRole?: string;
1216
- PrivateIpAddress?: string;
1217
- PublicIpAddress?: string;
1345
+ NodeRole?: string | undefined;
1346
+ PrivateIpAddress?: string | undefined;
1347
+ PublicIpAddress?: string | undefined;
1218
1348
  }
1219
1349
  export interface AwsRedshiftClusterClusterParameterStatus {
1220
- ParameterName?: string;
1221
- ParameterApplyStatus?: string;
1222
- ParameterApplyErrorDescription?: string;
1350
+ ParameterName?: string | undefined;
1351
+ ParameterApplyStatus?: string | undefined;
1352
+ ParameterApplyErrorDescription?: string | undefined;
1223
1353
  }
1224
1354
  export interface AwsRedshiftClusterClusterParameterGroup {
1225
- ClusterParameterStatusList?: AwsRedshiftClusterClusterParameterStatus[];
1226
- ParameterApplyStatus?: string;
1227
- ParameterGroupName?: string;
1355
+ ClusterParameterStatusList?:
1356
+ | AwsRedshiftClusterClusterParameterStatus[]
1357
+ | undefined;
1358
+ ParameterApplyStatus?: string | undefined;
1359
+ ParameterGroupName?: string | undefined;
1228
1360
  }
1229
1361
  export interface AwsRedshiftClusterClusterSecurityGroup {
1230
- ClusterSecurityGroupName?: string;
1231
- Status?: string;
1362
+ ClusterSecurityGroupName?: string | undefined;
1363
+ Status?: string | undefined;
1232
1364
  }
1233
1365
  export interface AwsRedshiftClusterClusterSnapshotCopyStatus {
1234
- DestinationRegion?: string;
1235
- ManualSnapshotRetentionPeriod?: number;
1236
- RetentionPeriod?: number;
1237
- SnapshotCopyGrantName?: string;
1366
+ DestinationRegion?: string | undefined;
1367
+ ManualSnapshotRetentionPeriod?: number | undefined;
1368
+ RetentionPeriod?: number | undefined;
1369
+ SnapshotCopyGrantName?: string | undefined;
1238
1370
  }
1239
1371
  export interface AwsRedshiftClusterDeferredMaintenanceWindow {
1240
- DeferMaintenanceEndTime?: string;
1241
- DeferMaintenanceIdentifier?: string;
1242
- DeferMaintenanceStartTime?: string;
1372
+ DeferMaintenanceEndTime?: string | undefined;
1373
+ DeferMaintenanceIdentifier?: string | undefined;
1374
+ DeferMaintenanceStartTime?: string | undefined;
1243
1375
  }
1244
1376
  export interface AwsRedshiftClusterElasticIpStatus {
1245
- ElasticIp?: string;
1246
- Status?: string;
1377
+ ElasticIp?: string | undefined;
1378
+ Status?: string | undefined;
1247
1379
  }
1248
1380
  export interface AwsRedshiftClusterEndpoint {
1249
- Address?: string;
1250
- Port?: number;
1381
+ Address?: string | undefined;
1382
+ Port?: number | undefined;
1251
1383
  }
1252
1384
  export interface AwsRedshiftClusterHsmStatus {
1253
- HsmClientCertificateIdentifier?: string;
1254
- HsmConfigurationIdentifier?: string;
1255
- Status?: string;
1385
+ HsmClientCertificateIdentifier?: string | undefined;
1386
+ HsmConfigurationIdentifier?: string | undefined;
1387
+ Status?: string | undefined;
1256
1388
  }
1257
1389
  export interface AwsRedshiftClusterIamRole {
1258
- ApplyStatus?: string;
1259
- IamRoleArn?: string;
1390
+ ApplyStatus?: string | undefined;
1391
+ IamRoleArn?: string | undefined;
1260
1392
  }
1261
1393
  export interface AwsRedshiftClusterLoggingStatus {
1262
- BucketName?: string;
1263
- LastFailureMessage?: string;
1264
- LastFailureTime?: string;
1265
- LastSuccessfulDeliveryTime?: string;
1266
- LoggingEnabled?: boolean;
1267
- S3KeyPrefix?: string;
1394
+ BucketName?: string | undefined;
1395
+ LastFailureMessage?: string | undefined;
1396
+ LastFailureTime?: string | undefined;
1397
+ LastSuccessfulDeliveryTime?: string | undefined;
1398
+ LoggingEnabled?: boolean | undefined;
1399
+ S3KeyPrefix?: string | undefined;
1268
1400
  }
1269
1401
  export interface AwsRedshiftClusterPendingModifiedValues {
1270
- AutomatedSnapshotRetentionPeriod?: number;
1271
- ClusterIdentifier?: string;
1272
- ClusterType?: string;
1273
- ClusterVersion?: string;
1274
- EncryptionType?: string;
1275
- EnhancedVpcRouting?: boolean;
1276
- MaintenanceTrackName?: string;
1277
- MasterUserPassword?: string;
1278
- NodeType?: string;
1279
- NumberOfNodes?: number;
1280
- PubliclyAccessible?: boolean;
1402
+ AutomatedSnapshotRetentionPeriod?: number | undefined;
1403
+ ClusterIdentifier?: string | undefined;
1404
+ ClusterType?: string | undefined;
1405
+ ClusterVersion?: string | undefined;
1406
+ EncryptionType?: string | undefined;
1407
+ EnhancedVpcRouting?: boolean | undefined;
1408
+ MaintenanceTrackName?: string | undefined;
1409
+ MasterUserPassword?: string | undefined;
1410
+ NodeType?: string | undefined;
1411
+ NumberOfNodes?: number | undefined;
1412
+ PubliclyAccessible?: boolean | undefined;
1281
1413
  }
1282
1414
  export interface AwsRedshiftClusterResizeInfo {
1283
- AllowCancelResize?: boolean;
1284
- ResizeType?: string;
1415
+ AllowCancelResize?: boolean | undefined;
1416
+ ResizeType?: string | undefined;
1285
1417
  }
1286
1418
  export interface AwsRedshiftClusterRestoreStatus {
1287
- CurrentRestoreRateInMegaBytesPerSecond?: number;
1288
- ElapsedTimeInSeconds?: number;
1289
- EstimatedTimeToCompletionInSeconds?: number;
1290
- ProgressInMegaBytes?: number;
1291
- SnapshotSizeInMegaBytes?: number;
1292
- Status?: string;
1419
+ CurrentRestoreRateInMegaBytesPerSecond?: number | undefined;
1420
+ ElapsedTimeInSeconds?: number | undefined;
1421
+ EstimatedTimeToCompletionInSeconds?: number | undefined;
1422
+ ProgressInMegaBytes?: number | undefined;
1423
+ SnapshotSizeInMegaBytes?: number | undefined;
1424
+ Status?: string | undefined;
1293
1425
  }
1294
1426
  export interface AwsRedshiftClusterVpcSecurityGroup {
1295
- Status?: string;
1296
- VpcSecurityGroupId?: string;
1427
+ Status?: string | undefined;
1428
+ VpcSecurityGroupId?: string | undefined;
1297
1429
  }
1298
1430
  export interface AwsRedshiftClusterDetails {
1299
- AllowVersionUpgrade?: boolean;
1300
- AutomatedSnapshotRetentionPeriod?: number;
1301
- AvailabilityZone?: string;
1302
- ClusterAvailabilityStatus?: string;
1303
- ClusterCreateTime?: string;
1304
- ClusterIdentifier?: string;
1305
- ClusterNodes?: AwsRedshiftClusterClusterNode[];
1306
- ClusterParameterGroups?: AwsRedshiftClusterClusterParameterGroup[];
1307
- ClusterPublicKey?: string;
1308
- ClusterRevisionNumber?: string;
1309
- ClusterSecurityGroups?: AwsRedshiftClusterClusterSecurityGroup[];
1310
- ClusterSnapshotCopyStatus?: AwsRedshiftClusterClusterSnapshotCopyStatus;
1311
- ClusterStatus?: string;
1312
- ClusterSubnetGroupName?: string;
1313
- ClusterVersion?: string;
1314
- DBName?: string;
1315
- DeferredMaintenanceWindows?: AwsRedshiftClusterDeferredMaintenanceWindow[];
1316
- ElasticIpStatus?: AwsRedshiftClusterElasticIpStatus;
1317
- ElasticResizeNumberOfNodeOptions?: string;
1318
- Encrypted?: boolean;
1319
- Endpoint?: AwsRedshiftClusterEndpoint;
1320
- EnhancedVpcRouting?: boolean;
1321
- ExpectedNextSnapshotScheduleTime?: string;
1322
- ExpectedNextSnapshotScheduleTimeStatus?: string;
1323
- HsmStatus?: AwsRedshiftClusterHsmStatus;
1324
- IamRoles?: AwsRedshiftClusterIamRole[];
1325
- KmsKeyId?: string;
1326
- MaintenanceTrackName?: string;
1327
- ManualSnapshotRetentionPeriod?: number;
1328
- MasterUsername?: string;
1329
- NextMaintenanceWindowStartTime?: string;
1330
- NodeType?: string;
1331
- NumberOfNodes?: number;
1332
- PendingActions?: string[];
1333
- PendingModifiedValues?: AwsRedshiftClusterPendingModifiedValues;
1334
- PreferredMaintenanceWindow?: string;
1335
- PubliclyAccessible?: boolean;
1336
- ResizeInfo?: AwsRedshiftClusterResizeInfo;
1337
- RestoreStatus?: AwsRedshiftClusterRestoreStatus;
1338
- SnapshotScheduleIdentifier?: string;
1339
- SnapshotScheduleState?: string;
1340
- VpcId?: string;
1341
- VpcSecurityGroups?: AwsRedshiftClusterVpcSecurityGroup[];
1342
- LoggingStatus?: AwsRedshiftClusterLoggingStatus;
1431
+ AllowVersionUpgrade?: boolean | undefined;
1432
+ AutomatedSnapshotRetentionPeriod?: number | undefined;
1433
+ AvailabilityZone?: string | undefined;
1434
+ ClusterAvailabilityStatus?: string | undefined;
1435
+ ClusterCreateTime?: string | undefined;
1436
+ ClusterIdentifier?: string | undefined;
1437
+ ClusterNodes?: AwsRedshiftClusterClusterNode[] | undefined;
1438
+ ClusterParameterGroups?:
1439
+ | AwsRedshiftClusterClusterParameterGroup[]
1440
+ | undefined;
1441
+ ClusterPublicKey?: string | undefined;
1442
+ ClusterRevisionNumber?: string | undefined;
1443
+ ClusterSecurityGroups?: AwsRedshiftClusterClusterSecurityGroup[] | undefined;
1444
+ ClusterSnapshotCopyStatus?:
1445
+ | AwsRedshiftClusterClusterSnapshotCopyStatus
1446
+ | undefined;
1447
+ ClusterStatus?: string | undefined;
1448
+ ClusterSubnetGroupName?: string | undefined;
1449
+ ClusterVersion?: string | undefined;
1450
+ DBName?: string | undefined;
1451
+ DeferredMaintenanceWindows?:
1452
+ | AwsRedshiftClusterDeferredMaintenanceWindow[]
1453
+ | undefined;
1454
+ ElasticIpStatus?: AwsRedshiftClusterElasticIpStatus | undefined;
1455
+ ElasticResizeNumberOfNodeOptions?: string | undefined;
1456
+ Encrypted?: boolean | undefined;
1457
+ Endpoint?: AwsRedshiftClusterEndpoint | undefined;
1458
+ EnhancedVpcRouting?: boolean | undefined;
1459
+ ExpectedNextSnapshotScheduleTime?: string | undefined;
1460
+ ExpectedNextSnapshotScheduleTimeStatus?: string | undefined;
1461
+ HsmStatus?: AwsRedshiftClusterHsmStatus | undefined;
1462
+ IamRoles?: AwsRedshiftClusterIamRole[] | undefined;
1463
+ KmsKeyId?: string | undefined;
1464
+ MaintenanceTrackName?: string | undefined;
1465
+ ManualSnapshotRetentionPeriod?: number | undefined;
1466
+ MasterUsername?: string | undefined;
1467
+ NextMaintenanceWindowStartTime?: string | undefined;
1468
+ NodeType?: string | undefined;
1469
+ NumberOfNodes?: number | undefined;
1470
+ PendingActions?: string[] | undefined;
1471
+ PendingModifiedValues?: AwsRedshiftClusterPendingModifiedValues | undefined;
1472
+ PreferredMaintenanceWindow?: string | undefined;
1473
+ PubliclyAccessible?: boolean | undefined;
1474
+ ResizeInfo?: AwsRedshiftClusterResizeInfo | undefined;
1475
+ RestoreStatus?: AwsRedshiftClusterRestoreStatus | undefined;
1476
+ SnapshotScheduleIdentifier?: string | undefined;
1477
+ SnapshotScheduleState?: string | undefined;
1478
+ VpcId?: string | undefined;
1479
+ VpcSecurityGroups?: AwsRedshiftClusterVpcSecurityGroup[] | undefined;
1480
+ LoggingStatus?: AwsRedshiftClusterLoggingStatus | undefined;
1343
1481
  }
1344
1482
  export interface AwsRoute53HostedZoneConfigDetails {
1345
- Comment?: string;
1483
+ Comment?: string | undefined;
1346
1484
  }
1347
1485
  export interface AwsRoute53HostedZoneObjectDetails {
1348
- Id?: string;
1349
- Name?: string;
1350
- Config?: AwsRoute53HostedZoneConfigDetails;
1486
+ Id?: string | undefined;
1487
+ Name?: string | undefined;
1488
+ Config?: AwsRoute53HostedZoneConfigDetails | undefined;
1351
1489
  }
1352
1490
  export interface CloudWatchLogsLogGroupArnConfigDetails {
1353
- CloudWatchLogsLogGroupArn?: string;
1354
- HostedZoneId?: string;
1355
- Id?: string;
1491
+ CloudWatchLogsLogGroupArn?: string | undefined;
1492
+ HostedZoneId?: string | undefined;
1493
+ Id?: string | undefined;
1356
1494
  }
1357
1495
  export interface AwsRoute53QueryLoggingConfigDetails {
1358
- CloudWatchLogsLogGroupArn?: CloudWatchLogsLogGroupArnConfigDetails;
1496
+ CloudWatchLogsLogGroupArn?:
1497
+ | CloudWatchLogsLogGroupArnConfigDetails
1498
+ | undefined;
1359
1499
  }
1360
1500
  export interface AwsRoute53HostedZoneVpcDetails {
1361
- Id?: string;
1362
- Region?: string;
1501
+ Id?: string | undefined;
1502
+ Region?: string | undefined;
1363
1503
  }
1364
1504
  export interface AwsRoute53HostedZoneDetails {
1365
- HostedZone?: AwsRoute53HostedZoneObjectDetails;
1366
- Vpcs?: AwsRoute53HostedZoneVpcDetails[];
1367
- NameServers?: string[];
1368
- QueryLoggingConfig?: AwsRoute53QueryLoggingConfigDetails;
1505
+ HostedZone?: AwsRoute53HostedZoneObjectDetails | undefined;
1506
+ Vpcs?: AwsRoute53HostedZoneVpcDetails[] | undefined;
1507
+ NameServers?: string[] | undefined;
1508
+ QueryLoggingConfig?: AwsRoute53QueryLoggingConfigDetails | undefined;
1369
1509
  }
1370
1510
  export interface AwsS3AccountPublicAccessBlockDetails {
1371
- BlockPublicAcls?: boolean;
1372
- BlockPublicPolicy?: boolean;
1373
- IgnorePublicAcls?: boolean;
1374
- RestrictPublicBuckets?: boolean;
1511
+ BlockPublicAcls?: boolean | undefined;
1512
+ BlockPublicPolicy?: boolean | undefined;
1513
+ IgnorePublicAcls?: boolean | undefined;
1514
+ RestrictPublicBuckets?: boolean | undefined;
1375
1515
  }
1376
1516
  export interface AwsS3AccessPointVpcConfigurationDetails {
1377
- VpcId?: string;
1517
+ VpcId?: string | undefined;
1378
1518
  }
1379
1519
  export interface AwsS3AccessPointDetails {
1380
- AccessPointArn?: string;
1381
- Alias?: string;
1382
- Bucket?: string;
1383
- BucketAccountId?: string;
1384
- Name?: string;
1385
- NetworkOrigin?: string;
1386
- PublicAccessBlockConfiguration?: AwsS3AccountPublicAccessBlockDetails;
1387
- VpcConfiguration?: AwsS3AccessPointVpcConfigurationDetails;
1520
+ AccessPointArn?: string | undefined;
1521
+ Alias?: string | undefined;
1522
+ Bucket?: string | undefined;
1523
+ BucketAccountId?: string | undefined;
1524
+ Name?: string | undefined;
1525
+ NetworkOrigin?: string | undefined;
1526
+ PublicAccessBlockConfiguration?:
1527
+ | AwsS3AccountPublicAccessBlockDetails
1528
+ | undefined;
1529
+ VpcConfiguration?: AwsS3AccessPointVpcConfigurationDetails | undefined;
1388
1530
  }
1389
1531
  export interface AwsS3BucketBucketLifecycleConfigurationRulesAbortIncompleteMultipartUploadDetails {
1390
- DaysAfterInitiation?: number;
1532
+ DaysAfterInitiation?: number | undefined;
1391
1533
  }
1392
1534
  export interface AwsS3BucketBucketLifecycleConfigurationRulesFilterPredicateOperandsTagDetails {
1393
- Key?: string;
1394
- Value?: string;
1535
+ Key?: string | undefined;
1536
+ Value?: string | undefined;
1395
1537
  }
1396
1538
  export interface AwsS3BucketBucketLifecycleConfigurationRulesFilterPredicateOperandsDetails {
1397
- Prefix?: string;
1398
- Tag?: AwsS3BucketBucketLifecycleConfigurationRulesFilterPredicateOperandsTagDetails;
1399
- Type?: string;
1539
+ Prefix?: string | undefined;
1540
+ Tag?:
1541
+ | AwsS3BucketBucketLifecycleConfigurationRulesFilterPredicateOperandsTagDetails
1542
+ | undefined;
1543
+ Type?: string | undefined;
1400
1544
  }
1401
1545
  export interface AwsS3BucketBucketLifecycleConfigurationRulesFilterPredicateTagDetails {
1402
- Key?: string;
1403
- Value?: string;
1546
+ Key?: string | undefined;
1547
+ Value?: string | undefined;
1404
1548
  }
1405
1549
  export interface AwsS3BucketBucketLifecycleConfigurationRulesFilterPredicateDetails {
1406
- Operands?: AwsS3BucketBucketLifecycleConfigurationRulesFilterPredicateOperandsDetails[];
1407
- Prefix?: string;
1408
- Tag?: AwsS3BucketBucketLifecycleConfigurationRulesFilterPredicateTagDetails;
1409
- Type?: string;
1550
+ Operands?:
1551
+ | AwsS3BucketBucketLifecycleConfigurationRulesFilterPredicateOperandsDetails[]
1552
+ | undefined;
1553
+ Prefix?: string | undefined;
1554
+ Tag?:
1555
+ | AwsS3BucketBucketLifecycleConfigurationRulesFilterPredicateTagDetails
1556
+ | undefined;
1557
+ Type?: string | undefined;
1410
1558
  }
1411
1559
  export interface AwsS3BucketBucketLifecycleConfigurationRulesFilterDetails {
1412
- Predicate?: AwsS3BucketBucketLifecycleConfigurationRulesFilterPredicateDetails;
1560
+ Predicate?:
1561
+ | AwsS3BucketBucketLifecycleConfigurationRulesFilterPredicateDetails
1562
+ | undefined;
1413
1563
  }
1414
1564
  export interface AwsS3BucketBucketLifecycleConfigurationRulesNoncurrentVersionTransitionsDetails {
1415
- Days?: number;
1416
- StorageClass?: string;
1565
+ Days?: number | undefined;
1566
+ StorageClass?: string | undefined;
1417
1567
  }
1418
1568
  export interface AwsS3BucketBucketLifecycleConfigurationRulesTransitionsDetails {
1419
- Date?: string;
1420
- Days?: number;
1421
- StorageClass?: string;
1569
+ Date?: string | undefined;
1570
+ Days?: number | undefined;
1571
+ StorageClass?: string | undefined;
1422
1572
  }
1423
1573
  export interface AwsS3BucketBucketLifecycleConfigurationRulesDetails {
1424
- AbortIncompleteMultipartUpload?: AwsS3BucketBucketLifecycleConfigurationRulesAbortIncompleteMultipartUploadDetails;
1425
- ExpirationDate?: string;
1426
- ExpirationInDays?: number;
1427
- ExpiredObjectDeleteMarker?: boolean;
1428
- Filter?: AwsS3BucketBucketLifecycleConfigurationRulesFilterDetails;
1429
- ID?: string;
1430
- NoncurrentVersionExpirationInDays?: number;
1431
- NoncurrentVersionTransitions?: AwsS3BucketBucketLifecycleConfigurationRulesNoncurrentVersionTransitionsDetails[];
1432
- Prefix?: string;
1433
- Status?: string;
1434
- Transitions?: AwsS3BucketBucketLifecycleConfigurationRulesTransitionsDetails[];
1574
+ AbortIncompleteMultipartUpload?:
1575
+ | AwsS3BucketBucketLifecycleConfigurationRulesAbortIncompleteMultipartUploadDetails
1576
+ | undefined;
1577
+ ExpirationDate?: string | undefined;
1578
+ ExpirationInDays?: number | undefined;
1579
+ ExpiredObjectDeleteMarker?: boolean | undefined;
1580
+ Filter?:
1581
+ | AwsS3BucketBucketLifecycleConfigurationRulesFilterDetails
1582
+ | undefined;
1583
+ ID?: string | undefined;
1584
+ NoncurrentVersionExpirationInDays?: number | undefined;
1585
+ NoncurrentVersionTransitions?:
1586
+ | AwsS3BucketBucketLifecycleConfigurationRulesNoncurrentVersionTransitionsDetails[]
1587
+ | undefined;
1588
+ Prefix?: string | undefined;
1589
+ Status?: string | undefined;
1590
+ Transitions?:
1591
+ | AwsS3BucketBucketLifecycleConfigurationRulesTransitionsDetails[]
1592
+ | undefined;
1435
1593
  }
1436
1594
  export interface AwsS3BucketBucketLifecycleConfigurationDetails {
1437
- Rules?: AwsS3BucketBucketLifecycleConfigurationRulesDetails[];
1595
+ Rules?: AwsS3BucketBucketLifecycleConfigurationRulesDetails[] | undefined;
1438
1596
  }
1439
1597
  export interface AwsS3BucketBucketVersioningConfiguration {
1440
- IsMfaDeleteEnabled?: boolean;
1441
- Status?: string;
1598
+ IsMfaDeleteEnabled?: boolean | undefined;
1599
+ Status?: string | undefined;
1442
1600
  }
1443
1601
  export interface AwsS3BucketLoggingConfiguration {
1444
- DestinationBucketName?: string;
1445
- LogFilePrefix?: string;
1602
+ DestinationBucketName?: string | undefined;
1603
+ LogFilePrefix?: string | undefined;
1446
1604
  }
1447
1605
  export declare const AwsS3BucketNotificationConfigurationS3KeyFilterRuleName: {
1448
1606
  readonly PREFIX: "Prefix";
@@ -1451,136 +1609,154 @@ export declare const AwsS3BucketNotificationConfigurationS3KeyFilterRuleName: {
1451
1609
  export type AwsS3BucketNotificationConfigurationS3KeyFilterRuleName =
1452
1610
  (typeof AwsS3BucketNotificationConfigurationS3KeyFilterRuleName)[keyof typeof AwsS3BucketNotificationConfigurationS3KeyFilterRuleName];
1453
1611
  export interface AwsS3BucketNotificationConfigurationS3KeyFilterRule {
1454
- Name?: AwsS3BucketNotificationConfigurationS3KeyFilterRuleName;
1455
- Value?: string;
1612
+ Name?: AwsS3BucketNotificationConfigurationS3KeyFilterRuleName | undefined;
1613
+ Value?: string | undefined;
1456
1614
  }
1457
1615
  export interface AwsS3BucketNotificationConfigurationS3KeyFilter {
1458
- FilterRules?: AwsS3BucketNotificationConfigurationS3KeyFilterRule[];
1616
+ FilterRules?:
1617
+ | AwsS3BucketNotificationConfigurationS3KeyFilterRule[]
1618
+ | undefined;
1459
1619
  }
1460
1620
  export interface AwsS3BucketNotificationConfigurationFilter {
1461
- S3KeyFilter?: AwsS3BucketNotificationConfigurationS3KeyFilter;
1621
+ S3KeyFilter?: AwsS3BucketNotificationConfigurationS3KeyFilter | undefined;
1462
1622
  }
1463
1623
  export interface AwsS3BucketNotificationConfigurationDetail {
1464
- Events?: string[];
1465
- Filter?: AwsS3BucketNotificationConfigurationFilter;
1466
- Destination?: string;
1467
- Type?: string;
1624
+ Events?: string[] | undefined;
1625
+ Filter?: AwsS3BucketNotificationConfigurationFilter | undefined;
1626
+ Destination?: string | undefined;
1627
+ Type?: string | undefined;
1468
1628
  }
1469
1629
  export interface AwsS3BucketNotificationConfiguration {
1470
- Configurations?: AwsS3BucketNotificationConfigurationDetail[];
1630
+ Configurations?: AwsS3BucketNotificationConfigurationDetail[] | undefined;
1471
1631
  }
1472
1632
  export interface AwsS3BucketWebsiteConfigurationRedirectTo {
1473
- Hostname?: string;
1474
- Protocol?: string;
1633
+ Hostname?: string | undefined;
1634
+ Protocol?: string | undefined;
1475
1635
  }
1476
1636
  export interface AwsS3BucketWebsiteConfigurationRoutingRuleCondition {
1477
- HttpErrorCodeReturnedEquals?: string;
1478
- KeyPrefixEquals?: string;
1637
+ HttpErrorCodeReturnedEquals?: string | undefined;
1638
+ KeyPrefixEquals?: string | undefined;
1479
1639
  }
1480
1640
  export interface AwsS3BucketWebsiteConfigurationRoutingRuleRedirect {
1481
- Hostname?: string;
1482
- HttpRedirectCode?: string;
1483
- Protocol?: string;
1484
- ReplaceKeyPrefixWith?: string;
1485
- ReplaceKeyWith?: string;
1641
+ Hostname?: string | undefined;
1642
+ HttpRedirectCode?: string | undefined;
1643
+ Protocol?: string | undefined;
1644
+ ReplaceKeyPrefixWith?: string | undefined;
1645
+ ReplaceKeyWith?: string | undefined;
1486
1646
  }
1487
1647
  export interface AwsS3BucketWebsiteConfigurationRoutingRule {
1488
- Condition?: AwsS3BucketWebsiteConfigurationRoutingRuleCondition;
1489
- Redirect?: AwsS3BucketWebsiteConfigurationRoutingRuleRedirect;
1648
+ Condition?: AwsS3BucketWebsiteConfigurationRoutingRuleCondition | undefined;
1649
+ Redirect?: AwsS3BucketWebsiteConfigurationRoutingRuleRedirect | undefined;
1490
1650
  }
1491
1651
  export interface AwsS3BucketWebsiteConfiguration {
1492
- ErrorDocument?: string;
1493
- IndexDocumentSuffix?: string;
1494
- RedirectAllRequestsTo?: AwsS3BucketWebsiteConfigurationRedirectTo;
1495
- RoutingRules?: AwsS3BucketWebsiteConfigurationRoutingRule[];
1652
+ ErrorDocument?: string | undefined;
1653
+ IndexDocumentSuffix?: string | undefined;
1654
+ RedirectAllRequestsTo?: AwsS3BucketWebsiteConfigurationRedirectTo | undefined;
1655
+ RoutingRules?: AwsS3BucketWebsiteConfigurationRoutingRule[] | undefined;
1496
1656
  }
1497
1657
  export interface AwsS3BucketObjectLockConfigurationRuleDefaultRetentionDetails {
1498
- Days?: number;
1499
- Mode?: string;
1500
- Years?: number;
1658
+ Days?: number | undefined;
1659
+ Mode?: string | undefined;
1660
+ Years?: number | undefined;
1501
1661
  }
1502
1662
  export interface AwsS3BucketObjectLockConfigurationRuleDetails {
1503
- DefaultRetention?: AwsS3BucketObjectLockConfigurationRuleDefaultRetentionDetails;
1663
+ DefaultRetention?:
1664
+ | AwsS3BucketObjectLockConfigurationRuleDefaultRetentionDetails
1665
+ | undefined;
1504
1666
  }
1505
1667
  export interface AwsS3BucketObjectLockConfiguration {
1506
- ObjectLockEnabled?: string;
1507
- Rule?: AwsS3BucketObjectLockConfigurationRuleDetails;
1668
+ ObjectLockEnabled?: string | undefined;
1669
+ Rule?: AwsS3BucketObjectLockConfigurationRuleDetails | undefined;
1508
1670
  }
1509
1671
  export interface AwsS3BucketServerSideEncryptionByDefault {
1510
- SSEAlgorithm?: string;
1511
- KMSMasterKeyID?: string;
1672
+ SSEAlgorithm?: string | undefined;
1673
+ KMSMasterKeyID?: string | undefined;
1512
1674
  }
1513
1675
  export interface AwsS3BucketServerSideEncryptionRule {
1514
- ApplyServerSideEncryptionByDefault?: AwsS3BucketServerSideEncryptionByDefault;
1676
+ ApplyServerSideEncryptionByDefault?:
1677
+ | AwsS3BucketServerSideEncryptionByDefault
1678
+ | undefined;
1515
1679
  }
1516
1680
  export interface AwsS3BucketServerSideEncryptionConfiguration {
1517
- Rules?: AwsS3BucketServerSideEncryptionRule[];
1681
+ Rules?: AwsS3BucketServerSideEncryptionRule[] | undefined;
1518
1682
  }
1519
1683
  export interface AwsS3BucketDetails {
1520
- OwnerId?: string;
1521
- OwnerName?: string;
1522
- OwnerAccountId?: string;
1523
- CreatedAt?: string;
1524
- ServerSideEncryptionConfiguration?: AwsS3BucketServerSideEncryptionConfiguration;
1525
- BucketLifecycleConfiguration?: AwsS3BucketBucketLifecycleConfigurationDetails;
1526
- PublicAccessBlockConfiguration?: AwsS3AccountPublicAccessBlockDetails;
1527
- AccessControlList?: string;
1528
- BucketLoggingConfiguration?: AwsS3BucketLoggingConfiguration;
1529
- BucketWebsiteConfiguration?: AwsS3BucketWebsiteConfiguration;
1530
- BucketNotificationConfiguration?: AwsS3BucketNotificationConfiguration;
1531
- BucketVersioningConfiguration?: AwsS3BucketBucketVersioningConfiguration;
1532
- ObjectLockConfiguration?: AwsS3BucketObjectLockConfiguration;
1533
- Name?: string;
1684
+ OwnerId?: string | undefined;
1685
+ OwnerName?: string | undefined;
1686
+ OwnerAccountId?: string | undefined;
1687
+ CreatedAt?: string | undefined;
1688
+ ServerSideEncryptionConfiguration?:
1689
+ | AwsS3BucketServerSideEncryptionConfiguration
1690
+ | undefined;
1691
+ BucketLifecycleConfiguration?:
1692
+ | AwsS3BucketBucketLifecycleConfigurationDetails
1693
+ | undefined;
1694
+ PublicAccessBlockConfiguration?:
1695
+ | AwsS3AccountPublicAccessBlockDetails
1696
+ | undefined;
1697
+ AccessControlList?: string | undefined;
1698
+ BucketLoggingConfiguration?: AwsS3BucketLoggingConfiguration | undefined;
1699
+ BucketWebsiteConfiguration?: AwsS3BucketWebsiteConfiguration | undefined;
1700
+ BucketNotificationConfiguration?:
1701
+ | AwsS3BucketNotificationConfiguration
1702
+ | undefined;
1703
+ BucketVersioningConfiguration?:
1704
+ | AwsS3BucketBucketVersioningConfiguration
1705
+ | undefined;
1706
+ ObjectLockConfiguration?: AwsS3BucketObjectLockConfiguration | undefined;
1707
+ Name?: string | undefined;
1534
1708
  }
1535
1709
  export interface AwsS3ObjectDetails {
1536
- LastModified?: string;
1537
- ETag?: string;
1538
- VersionId?: string;
1539
- ContentType?: string;
1540
- ServerSideEncryption?: string;
1541
- SSEKMSKeyId?: string;
1710
+ LastModified?: string | undefined;
1711
+ ETag?: string | undefined;
1712
+ VersionId?: string | undefined;
1713
+ ContentType?: string | undefined;
1714
+ ServerSideEncryption?: string | undefined;
1715
+ SSEKMSKeyId?: string | undefined;
1542
1716
  }
1543
1717
  export interface AwsSageMakerNotebookInstanceMetadataServiceConfigurationDetails {
1544
- MinimumInstanceMetadataServiceVersion?: string;
1718
+ MinimumInstanceMetadataServiceVersion?: string | undefined;
1545
1719
  }
1546
1720
  export interface AwsSageMakerNotebookInstanceDetails {
1547
- AcceleratorTypes?: string[];
1548
- AdditionalCodeRepositories?: string[];
1549
- DefaultCodeRepository?: string;
1550
- DirectInternetAccess?: string;
1551
- FailureReason?: string;
1552
- InstanceMetadataServiceConfiguration?: AwsSageMakerNotebookInstanceMetadataServiceConfigurationDetails;
1553
- InstanceType?: string;
1554
- KmsKeyId?: string;
1555
- NetworkInterfaceId?: string;
1556
- NotebookInstanceArn?: string;
1557
- NotebookInstanceLifecycleConfigName?: string;
1558
- NotebookInstanceName?: string;
1559
- NotebookInstanceStatus?: string;
1560
- PlatformIdentifier?: string;
1561
- RoleArn?: string;
1562
- RootAccess?: string;
1563
- SecurityGroups?: string[];
1564
- SubnetId?: string;
1565
- Url?: string;
1566
- VolumeSizeInGB?: number;
1721
+ AcceleratorTypes?: string[] | undefined;
1722
+ AdditionalCodeRepositories?: string[] | undefined;
1723
+ DefaultCodeRepository?: string | undefined;
1724
+ DirectInternetAccess?: string | undefined;
1725
+ FailureReason?: string | undefined;
1726
+ InstanceMetadataServiceConfiguration?:
1727
+ | AwsSageMakerNotebookInstanceMetadataServiceConfigurationDetails
1728
+ | undefined;
1729
+ InstanceType?: string | undefined;
1730
+ KmsKeyId?: string | undefined;
1731
+ NetworkInterfaceId?: string | undefined;
1732
+ NotebookInstanceArn?: string | undefined;
1733
+ NotebookInstanceLifecycleConfigName?: string | undefined;
1734
+ NotebookInstanceName?: string | undefined;
1735
+ NotebookInstanceStatus?: string | undefined;
1736
+ PlatformIdentifier?: string | undefined;
1737
+ RoleArn?: string | undefined;
1738
+ RootAccess?: string | undefined;
1739
+ SecurityGroups?: string[] | undefined;
1740
+ SubnetId?: string | undefined;
1741
+ Url?: string | undefined;
1742
+ VolumeSizeInGB?: number | undefined;
1567
1743
  }
1568
1744
  export interface AwsSecretsManagerSecretRotationRules {
1569
- AutomaticallyAfterDays?: number;
1745
+ AutomaticallyAfterDays?: number | undefined;
1570
1746
  }
1571
1747
  export interface AwsSecretsManagerSecretDetails {
1572
- RotationRules?: AwsSecretsManagerSecretRotationRules;
1573
- RotationOccurredWithinFrequency?: boolean;
1574
- KmsKeyId?: string;
1575
- RotationEnabled?: boolean;
1576
- RotationLambdaArn?: string;
1577
- Deleted?: boolean;
1578
- Name?: string;
1579
- Description?: string;
1748
+ RotationRules?: AwsSecretsManagerSecretRotationRules | undefined;
1749
+ RotationOccurredWithinFrequency?: boolean | undefined;
1750
+ KmsKeyId?: string | undefined;
1751
+ RotationEnabled?: boolean | undefined;
1752
+ RotationLambdaArn?: string | undefined;
1753
+ Deleted?: boolean | undefined;
1754
+ Name?: string | undefined;
1755
+ Description?: string | undefined;
1580
1756
  }
1581
1757
  export interface SecurityControlParameter {
1582
- Name?: string;
1583
- Value?: string[];
1758
+ Name?: string | undefined;
1759
+ Value?: string[] | undefined;
1584
1760
  }
1585
1761
  export declare const ComplianceStatus: {
1586
1762
  readonly FAILED: "FAILED";
@@ -1592,31 +1768,31 @@ export type ComplianceStatus =
1592
1768
  (typeof ComplianceStatus)[keyof typeof ComplianceStatus];
1593
1769
  export interface StatusReason {
1594
1770
  ReasonCode: string | undefined;
1595
- Description?: string;
1771
+ Description?: string | undefined;
1596
1772
  }
1597
1773
  export interface Compliance {
1598
- Status?: ComplianceStatus;
1599
- RelatedRequirements?: string[];
1600
- StatusReasons?: StatusReason[];
1601
- SecurityControlId?: string;
1602
- AssociatedStandards?: AssociatedStandard[];
1603
- SecurityControlParameters?: SecurityControlParameter[];
1774
+ Status?: ComplianceStatus | undefined;
1775
+ RelatedRequirements?: string[] | undefined;
1776
+ StatusReasons?: StatusReason[] | undefined;
1777
+ SecurityControlId?: string | undefined;
1778
+ AssociatedStandards?: AssociatedStandard[] | undefined;
1779
+ SecurityControlParameters?: SecurityControlParameter[] | undefined;
1604
1780
  }
1605
1781
  export interface FindingProviderSeverity {
1606
- Label?: SeverityLabel;
1607
- Original?: string;
1782
+ Label?: SeverityLabel | undefined;
1783
+ Original?: string | undefined;
1608
1784
  }
1609
1785
  export interface FindingProviderFields {
1610
- Confidence?: number;
1611
- Criticality?: number;
1612
- RelatedFindings?: RelatedFinding[];
1613
- Severity?: FindingProviderSeverity;
1614
- Types?: string[];
1786
+ Confidence?: number | undefined;
1787
+ Criticality?: number | undefined;
1788
+ RelatedFindings?: RelatedFinding[] | undefined;
1789
+ Severity?: FindingProviderSeverity | undefined;
1790
+ Types?: string[] | undefined;
1615
1791
  }
1616
1792
  export interface GeneratorDetails {
1617
- Name?: string;
1618
- Description?: string;
1619
- Labels?: string[];
1793
+ Name?: string | undefined;
1794
+ Description?: string | undefined;
1795
+ Labels?: string[] | undefined;
1620
1796
  }
1621
1797
  export declare const MalwareState: {
1622
1798
  readonly OBSERVED: "OBSERVED";
@@ -1644,9 +1820,9 @@ export declare const MalwareType: {
1644
1820
  export type MalwareType = (typeof MalwareType)[keyof typeof MalwareType];
1645
1821
  export interface Malware {
1646
1822
  Name: string | undefined;
1647
- Type?: MalwareType;
1648
- Path?: string;
1649
- State?: MalwareState;
1823
+ Type?: MalwareType | undefined;
1824
+ Path?: string | undefined;
1825
+ State?: MalwareState | undefined;
1650
1826
  }
1651
1827
  export declare const NetworkDirection: {
1652
1828
  readonly IN: "IN";
@@ -1655,37 +1831,37 @@ export declare const NetworkDirection: {
1655
1831
  export type NetworkDirection =
1656
1832
  (typeof NetworkDirection)[keyof typeof NetworkDirection];
1657
1833
  export interface PortRange {
1658
- Begin?: number;
1659
- End?: number;
1834
+ Begin?: number | undefined;
1835
+ End?: number | undefined;
1660
1836
  }
1661
1837
  export interface Network {
1662
- Direction?: NetworkDirection;
1663
- Protocol?: string;
1664
- OpenPortRange?: PortRange;
1665
- SourceIpV4?: string;
1666
- SourceIpV6?: string;
1667
- SourcePort?: number;
1668
- SourceDomain?: string;
1669
- SourceMac?: string;
1670
- DestinationIpV4?: string;
1671
- DestinationIpV6?: string;
1672
- DestinationPort?: number;
1673
- DestinationDomain?: string;
1838
+ Direction?: NetworkDirection | undefined;
1839
+ Protocol?: string | undefined;
1840
+ OpenPortRange?: PortRange | undefined;
1841
+ SourceIpV4?: string | undefined;
1842
+ SourceIpV6?: string | undefined;
1843
+ SourcePort?: number | undefined;
1844
+ SourceDomain?: string | undefined;
1845
+ SourceMac?: string | undefined;
1846
+ DestinationIpV4?: string | undefined;
1847
+ DestinationIpV6?: string | undefined;
1848
+ DestinationPort?: number | undefined;
1849
+ DestinationDomain?: string | undefined;
1674
1850
  }
1675
1851
  export interface NetworkPathComponentDetails {
1676
- Address?: string[];
1677
- PortRanges?: PortRange[];
1852
+ Address?: string[] | undefined;
1853
+ PortRanges?: PortRange[] | undefined;
1678
1854
  }
1679
1855
  export interface NetworkHeader {
1680
- Protocol?: string;
1681
- Destination?: NetworkPathComponentDetails;
1682
- Source?: NetworkPathComponentDetails;
1856
+ Protocol?: string | undefined;
1857
+ Destination?: NetworkPathComponentDetails | undefined;
1858
+ Source?: NetworkPathComponentDetails | undefined;
1683
1859
  }
1684
1860
  export interface NetworkPathComponent {
1685
- ComponentId?: string;
1686
- ComponentType?: string;
1687
- Egress?: NetworkHeader;
1688
- Ingress?: NetworkHeader;
1861
+ ComponentId?: string | undefined;
1862
+ ComponentType?: string | undefined;
1863
+ Egress?: NetworkHeader | undefined;
1864
+ Ingress?: NetworkHeader | undefined;
1689
1865
  }
1690
1866
  export interface Note {
1691
1867
  Text: string | undefined;
@@ -1694,24 +1870,24 @@ export interface Note {
1694
1870
  }
1695
1871
  export interface PatchSummary {
1696
1872
  Id: string | undefined;
1697
- InstalledCount?: number;
1698
- MissingCount?: number;
1699
- FailedCount?: number;
1700
- InstalledOtherCount?: number;
1701
- InstalledRejectedCount?: number;
1702
- InstalledPendingReboot?: number;
1703
- OperationStartTime?: string;
1704
- OperationEndTime?: string;
1705
- RebootOption?: string;
1706
- Operation?: string;
1873
+ InstalledCount?: number | undefined;
1874
+ MissingCount?: number | undefined;
1875
+ FailedCount?: number | undefined;
1876
+ InstalledOtherCount?: number | undefined;
1877
+ InstalledRejectedCount?: number | undefined;
1878
+ InstalledPendingReboot?: number | undefined;
1879
+ OperationStartTime?: string | undefined;
1880
+ OperationEndTime?: string | undefined;
1881
+ RebootOption?: string | undefined;
1882
+ Operation?: string | undefined;
1707
1883
  }
1708
1884
  export interface ProcessDetails {
1709
- Name?: string;
1710
- Path?: string;
1711
- Pid?: number;
1712
- ParentPid?: number;
1713
- LaunchedAt?: string;
1714
- TerminatedAt?: string;
1885
+ Name?: string | undefined;
1886
+ Path?: string | undefined;
1887
+ Pid?: number | undefined;
1888
+ ParentPid?: number | undefined;
1889
+ LaunchedAt?: string | undefined;
1890
+ TerminatedAt?: string | undefined;
1715
1891
  }
1716
1892
  export declare const RecordState: {
1717
1893
  readonly ACTIVE: "ACTIVE";
@@ -1719,203 +1895,211 @@ export declare const RecordState: {
1719
1895
  };
1720
1896
  export type RecordState = (typeof RecordState)[keyof typeof RecordState];
1721
1897
  export interface Recommendation {
1722
- Text?: string;
1723
- Url?: string;
1898
+ Text?: string | undefined;
1899
+ Url?: string | undefined;
1724
1900
  }
1725
1901
  export interface Remediation {
1726
- Recommendation?: Recommendation;
1902
+ Recommendation?: Recommendation | undefined;
1727
1903
  }
1728
1904
  export interface Cell {
1729
- Column?: number;
1730
- Row?: number;
1731
- ColumnName?: string;
1732
- CellReference?: string;
1905
+ Column?: number | undefined;
1906
+ Row?: number | undefined;
1907
+ ColumnName?: string | undefined;
1908
+ CellReference?: string | undefined;
1733
1909
  }
1734
1910
  export interface Range {
1735
- Start?: number;
1736
- End?: number;
1737
- StartColumn?: number;
1911
+ Start?: number | undefined;
1912
+ End?: number | undefined;
1913
+ StartColumn?: number | undefined;
1738
1914
  }
1739
1915
  export interface Page {
1740
- PageNumber?: number;
1741
- LineRange?: Range;
1742
- OffsetRange?: Range;
1916
+ PageNumber?: number | undefined;
1917
+ LineRange?: Range | undefined;
1918
+ OffsetRange?: Range | undefined;
1743
1919
  }
1744
1920
  export interface _Record {
1745
- JsonPath?: string;
1746
- RecordIndex?: number;
1921
+ JsonPath?: string | undefined;
1922
+ RecordIndex?: number | undefined;
1747
1923
  }
1748
1924
  export interface Occurrences {
1749
- LineRanges?: Range[];
1750
- OffsetRanges?: Range[];
1751
- Pages?: Page[];
1752
- Records?: _Record[];
1753
- Cells?: Cell[];
1925
+ LineRanges?: Range[] | undefined;
1926
+ OffsetRanges?: Range[] | undefined;
1927
+ Pages?: Page[] | undefined;
1928
+ Records?: _Record[] | undefined;
1929
+ Cells?: Cell[] | undefined;
1754
1930
  }
1755
1931
  export interface CustomDataIdentifiersDetections {
1756
- Count?: number;
1757
- Arn?: string;
1758
- Name?: string;
1759
- Occurrences?: Occurrences;
1932
+ Count?: number | undefined;
1933
+ Arn?: string | undefined;
1934
+ Name?: string | undefined;
1935
+ Occurrences?: Occurrences | undefined;
1760
1936
  }
1761
1937
  export interface CustomDataIdentifiersResult {
1762
- Detections?: CustomDataIdentifiersDetections[];
1763
- TotalCount?: number;
1938
+ Detections?: CustomDataIdentifiersDetections[] | undefined;
1939
+ TotalCount?: number | undefined;
1764
1940
  }
1765
1941
  export interface SensitiveDataDetections {
1766
- Count?: number;
1767
- Type?: string;
1768
- Occurrences?: Occurrences;
1942
+ Count?: number | undefined;
1943
+ Type?: string | undefined;
1944
+ Occurrences?: Occurrences | undefined;
1769
1945
  }
1770
1946
  export interface SensitiveDataResult {
1771
- Category?: string;
1772
- Detections?: SensitiveDataDetections[];
1773
- TotalCount?: number;
1947
+ Category?: string | undefined;
1948
+ Detections?: SensitiveDataDetections[] | undefined;
1949
+ TotalCount?: number | undefined;
1774
1950
  }
1775
1951
  export interface ClassificationStatus {
1776
- Code?: string;
1777
- Reason?: string;
1952
+ Code?: string | undefined;
1953
+ Reason?: string | undefined;
1778
1954
  }
1779
1955
  export interface ClassificationResult {
1780
- MimeType?: string;
1781
- SizeClassified?: number;
1782
- AdditionalOccurrences?: boolean;
1783
- Status?: ClassificationStatus;
1784
- SensitiveData?: SensitiveDataResult[];
1785
- CustomDataIdentifiers?: CustomDataIdentifiersResult;
1956
+ MimeType?: string | undefined;
1957
+ SizeClassified?: number | undefined;
1958
+ AdditionalOccurrences?: boolean | undefined;
1959
+ Status?: ClassificationStatus | undefined;
1960
+ SensitiveData?: SensitiveDataResult[] | undefined;
1961
+ CustomDataIdentifiers?: CustomDataIdentifiersResult | undefined;
1786
1962
  }
1787
1963
  export interface DataClassificationDetails {
1788
- DetailedResultsLocation?: string;
1789
- Result?: ClassificationResult;
1964
+ DetailedResultsLocation?: string | undefined;
1965
+ Result?: ClassificationResult | undefined;
1790
1966
  }
1791
1967
  export interface AwsSnsTopicSubscription {
1792
- Endpoint?: string;
1793
- Protocol?: string;
1968
+ Endpoint?: string | undefined;
1969
+ Protocol?: string | undefined;
1794
1970
  }
1795
1971
  export interface AwsSnsTopicDetails {
1796
- KmsMasterKeyId?: string;
1797
- Subscription?: AwsSnsTopicSubscription[];
1798
- TopicName?: string;
1799
- Owner?: string;
1800
- SqsSuccessFeedbackRoleArn?: string;
1801
- SqsFailureFeedbackRoleArn?: string;
1802
- ApplicationSuccessFeedbackRoleArn?: string;
1803
- FirehoseSuccessFeedbackRoleArn?: string;
1804
- FirehoseFailureFeedbackRoleArn?: string;
1805
- HttpSuccessFeedbackRoleArn?: string;
1806
- HttpFailureFeedbackRoleArn?: string;
1972
+ KmsMasterKeyId?: string | undefined;
1973
+ Subscription?: AwsSnsTopicSubscription[] | undefined;
1974
+ TopicName?: string | undefined;
1975
+ Owner?: string | undefined;
1976
+ SqsSuccessFeedbackRoleArn?: string | undefined;
1977
+ SqsFailureFeedbackRoleArn?: string | undefined;
1978
+ ApplicationSuccessFeedbackRoleArn?: string | undefined;
1979
+ FirehoseSuccessFeedbackRoleArn?: string | undefined;
1980
+ FirehoseFailureFeedbackRoleArn?: string | undefined;
1981
+ HttpSuccessFeedbackRoleArn?: string | undefined;
1982
+ HttpFailureFeedbackRoleArn?: string | undefined;
1807
1983
  }
1808
1984
  export interface AwsSqsQueueDetails {
1809
- KmsDataKeyReusePeriodSeconds?: number;
1810
- KmsMasterKeyId?: string;
1811
- QueueName?: string;
1812
- DeadLetterTargetArn?: string;
1985
+ KmsDataKeyReusePeriodSeconds?: number | undefined;
1986
+ KmsMasterKeyId?: string | undefined;
1987
+ QueueName?: string | undefined;
1988
+ DeadLetterTargetArn?: string | undefined;
1813
1989
  }
1814
1990
  export interface AwsSsmComplianceSummary {
1815
- Status?: string;
1816
- CompliantCriticalCount?: number;
1817
- CompliantHighCount?: number;
1818
- CompliantMediumCount?: number;
1819
- ExecutionType?: string;
1820
- NonCompliantCriticalCount?: number;
1821
- CompliantInformationalCount?: number;
1822
- NonCompliantInformationalCount?: number;
1823
- CompliantUnspecifiedCount?: number;
1824
- NonCompliantLowCount?: number;
1825
- NonCompliantHighCount?: number;
1826
- CompliantLowCount?: number;
1827
- ComplianceType?: string;
1828
- PatchBaselineId?: string;
1829
- OverallSeverity?: string;
1830
- NonCompliantMediumCount?: number;
1831
- NonCompliantUnspecifiedCount?: number;
1832
- PatchGroup?: string;
1991
+ Status?: string | undefined;
1992
+ CompliantCriticalCount?: number | undefined;
1993
+ CompliantHighCount?: number | undefined;
1994
+ CompliantMediumCount?: number | undefined;
1995
+ ExecutionType?: string | undefined;
1996
+ NonCompliantCriticalCount?: number | undefined;
1997
+ CompliantInformationalCount?: number | undefined;
1998
+ NonCompliantInformationalCount?: number | undefined;
1999
+ CompliantUnspecifiedCount?: number | undefined;
2000
+ NonCompliantLowCount?: number | undefined;
2001
+ NonCompliantHighCount?: number | undefined;
2002
+ CompliantLowCount?: number | undefined;
2003
+ ComplianceType?: string | undefined;
2004
+ PatchBaselineId?: string | undefined;
2005
+ OverallSeverity?: string | undefined;
2006
+ NonCompliantMediumCount?: number | undefined;
2007
+ NonCompliantUnspecifiedCount?: number | undefined;
2008
+ PatchGroup?: string | undefined;
1833
2009
  }
1834
2010
  export interface AwsSsmPatch {
1835
- ComplianceSummary?: AwsSsmComplianceSummary;
2011
+ ComplianceSummary?: AwsSsmComplianceSummary | undefined;
1836
2012
  }
1837
2013
  export interface AwsSsmPatchComplianceDetails {
1838
- Patch?: AwsSsmPatch;
2014
+ Patch?: AwsSsmPatch | undefined;
1839
2015
  }
1840
2016
  export interface AwsStepFunctionStateMachineLoggingConfigurationDestinationsCloudWatchLogsLogGroupDetails {
1841
- LogGroupArn?: string;
2017
+ LogGroupArn?: string | undefined;
1842
2018
  }
1843
2019
  export interface AwsStepFunctionStateMachineLoggingConfigurationDestinationsDetails {
1844
- CloudWatchLogsLogGroup?: AwsStepFunctionStateMachineLoggingConfigurationDestinationsCloudWatchLogsLogGroupDetails;
2020
+ CloudWatchLogsLogGroup?:
2021
+ | AwsStepFunctionStateMachineLoggingConfigurationDestinationsCloudWatchLogsLogGroupDetails
2022
+ | undefined;
1845
2023
  }
1846
2024
  export interface AwsStepFunctionStateMachineLoggingConfigurationDetails {
1847
- Destinations?: AwsStepFunctionStateMachineLoggingConfigurationDestinationsDetails[];
1848
- IncludeExecutionData?: boolean;
1849
- Level?: string;
2025
+ Destinations?:
2026
+ | AwsStepFunctionStateMachineLoggingConfigurationDestinationsDetails[]
2027
+ | undefined;
2028
+ IncludeExecutionData?: boolean | undefined;
2029
+ Level?: string | undefined;
1850
2030
  }
1851
2031
  export interface AwsStepFunctionStateMachineTracingConfigurationDetails {
1852
- Enabled?: boolean;
2032
+ Enabled?: boolean | undefined;
1853
2033
  }
1854
2034
  export interface AwsStepFunctionStateMachineDetails {
1855
- Label?: string;
1856
- LoggingConfiguration?: AwsStepFunctionStateMachineLoggingConfigurationDetails;
1857
- Name?: string;
1858
- RoleArn?: string;
1859
- StateMachineArn?: string;
1860
- Status?: string;
1861
- TracingConfiguration?: AwsStepFunctionStateMachineTracingConfigurationDetails;
1862
- Type?: string;
2035
+ Label?: string | undefined;
2036
+ LoggingConfiguration?:
2037
+ | AwsStepFunctionStateMachineLoggingConfigurationDetails
2038
+ | undefined;
2039
+ Name?: string | undefined;
2040
+ RoleArn?: string | undefined;
2041
+ StateMachineArn?: string | undefined;
2042
+ Status?: string | undefined;
2043
+ TracingConfiguration?:
2044
+ | AwsStepFunctionStateMachineTracingConfigurationDetails
2045
+ | undefined;
2046
+ Type?: string | undefined;
1863
2047
  }
1864
2048
  export interface AwsWafRateBasedRuleMatchPredicate {
1865
- DataId?: string;
1866
- Negated?: boolean;
1867
- Type?: string;
2049
+ DataId?: string | undefined;
2050
+ Negated?: boolean | undefined;
2051
+ Type?: string | undefined;
1868
2052
  }
1869
2053
  export interface AwsWafRateBasedRuleDetails {
1870
- MetricName?: string;
1871
- Name?: string;
1872
- RateKey?: string;
1873
- RateLimit?: number;
1874
- RuleId?: string;
1875
- MatchPredicates?: AwsWafRateBasedRuleMatchPredicate[];
2054
+ MetricName?: string | undefined;
2055
+ Name?: string | undefined;
2056
+ RateKey?: string | undefined;
2057
+ RateLimit?: number | undefined;
2058
+ RuleId?: string | undefined;
2059
+ MatchPredicates?: AwsWafRateBasedRuleMatchPredicate[] | undefined;
1876
2060
  }
1877
2061
  export interface AwsWafRegionalRateBasedRuleMatchPredicate {
1878
- DataId?: string;
1879
- Negated?: boolean;
1880
- Type?: string;
2062
+ DataId?: string | undefined;
2063
+ Negated?: boolean | undefined;
2064
+ Type?: string | undefined;
1881
2065
  }
1882
2066
  export interface AwsWafRegionalRateBasedRuleDetails {
1883
- MetricName?: string;
1884
- Name?: string;
1885
- RateKey?: string;
1886
- RateLimit?: number;
1887
- RuleId?: string;
1888
- MatchPredicates?: AwsWafRegionalRateBasedRuleMatchPredicate[];
2067
+ MetricName?: string | undefined;
2068
+ Name?: string | undefined;
2069
+ RateKey?: string | undefined;
2070
+ RateLimit?: number | undefined;
2071
+ RuleId?: string | undefined;
2072
+ MatchPredicates?: AwsWafRegionalRateBasedRuleMatchPredicate[] | undefined;
1889
2073
  }
1890
2074
  export interface AwsWafRegionalRulePredicateListDetails {
1891
- DataId?: string;
1892
- Negated?: boolean;
1893
- Type?: string;
2075
+ DataId?: string | undefined;
2076
+ Negated?: boolean | undefined;
2077
+ Type?: string | undefined;
1894
2078
  }
1895
2079
  export interface AwsWafRegionalRuleDetails {
1896
- MetricName?: string;
1897
- Name?: string;
1898
- PredicateList?: AwsWafRegionalRulePredicateListDetails[];
1899
- RuleId?: string;
2080
+ MetricName?: string | undefined;
2081
+ Name?: string | undefined;
2082
+ PredicateList?: AwsWafRegionalRulePredicateListDetails[] | undefined;
2083
+ RuleId?: string | undefined;
1900
2084
  }
1901
2085
  export interface AwsWafRegionalRuleGroupRulesActionDetails {
1902
- Type?: string;
2086
+ Type?: string | undefined;
1903
2087
  }
1904
2088
  export interface AwsWafRegionalRuleGroupRulesDetails {
1905
- Action?: AwsWafRegionalRuleGroupRulesActionDetails;
1906
- Priority?: number;
1907
- RuleId?: string;
1908
- Type?: string;
2089
+ Action?: AwsWafRegionalRuleGroupRulesActionDetails | undefined;
2090
+ Priority?: number | undefined;
2091
+ RuleId?: string | undefined;
2092
+ Type?: string | undefined;
1909
2093
  }
1910
2094
  export interface AwsWafRegionalRuleGroupDetails {
1911
- MetricName?: string;
1912
- Name?: string;
1913
- RuleGroupId?: string;
1914
- Rules?: AwsWafRegionalRuleGroupRulesDetails[];
2095
+ MetricName?: string | undefined;
2096
+ Name?: string | undefined;
2097
+ RuleGroupId?: string | undefined;
2098
+ Rules?: AwsWafRegionalRuleGroupRulesDetails[] | undefined;
1915
2099
  }
1916
2100
  export interface AwsWafRegionalWebAclRulesListActionDetails {
1917
- Type?: string;
2101
+ Type?: string | undefined;
1918
2102
  }
1919
2103
  export interface AwsWafRegionalWebAclRulesListOverrideActionDetails {
1920
- Type?: string;
2104
+ Type?: string | undefined;
1921
2105
  }