@aws-sdk/client-securityhub 3.28.0 → 3.32.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +35 -0
- package/dist/cjs/models/models_0.js +209 -209
- package/dist/cjs/models/models_0.js.map +1 -1
- package/dist/cjs/models/models_1.js +207 -4
- package/dist/cjs/models/models_1.js.map +1 -1
- package/dist/cjs/package.json +31 -31
- package/dist/cjs/protocols/Aws_restJson1.js +1022 -219
- package/dist/cjs/protocols/Aws_restJson1.js.map +1 -1
- package/dist/es/endpoints.js +1 -2
- package/dist/es/endpoints.js.map +1 -1
- package/dist/es/models/models_0.js +159 -159
- package/dist/es/models/models_0.js.map +1 -1
- package/dist/es/models/models_1.js +159 -0
- package/dist/es/models/models_1.js.map +1 -1
- package/dist/es/package.json +31 -31
- package/dist/es/protocols/Aws_restJson1.js +1061 -326
- package/dist/es/protocols/Aws_restJson1.js.map +1 -1
- package/dist/types/models/models_0.d.ts +882 -763
- package/dist/types/models/models_1.d.ts +653 -16
- package/dist/types/ts3.4/models/models_0.d.ts +882 -763
- package/dist/types/ts3.4/models/models_1.d.ts +653 -16
- package/models/models_0.ts +991 -852
- package/models/models_1.ts +817 -24
- package/package.json +31 -31
- package/protocols/Aws_restJson1.ts +1418 -276
|
@@ -597,6 +597,25 @@ export declare namespace ActionTarget {
|
|
|
597
597
|
*/
|
|
598
598
|
const filterSensitiveLog: (obj: ActionTarget) => any;
|
|
599
599
|
}
|
|
600
|
+
/**
|
|
601
|
+
* <p>An adjustment to the CVSS metric.</p>
|
|
602
|
+
*/
|
|
603
|
+
export interface Adjustment {
|
|
604
|
+
/**
|
|
605
|
+
* <p>The metric to adjust.</p>
|
|
606
|
+
*/
|
|
607
|
+
Metric?: string;
|
|
608
|
+
/**
|
|
609
|
+
* <p>The reason for the adjustment.</p>
|
|
610
|
+
*/
|
|
611
|
+
Reason?: string;
|
|
612
|
+
}
|
|
613
|
+
export declare namespace Adjustment {
|
|
614
|
+
/**
|
|
615
|
+
* @internal
|
|
616
|
+
*/
|
|
617
|
+
const filterSensitiveLog: (obj: Adjustment) => any;
|
|
618
|
+
}
|
|
600
619
|
export declare enum AdminStatus {
|
|
601
620
|
DISABLE_IN_PROGRESS = "DISABLE_IN_PROGRESS",
|
|
602
621
|
ENABLED = "ENABLED"
|
|
@@ -1205,6 +1224,196 @@ export declare namespace AwsAutoScalingAutoScalingGroupDetails {
|
|
|
1205
1224
|
*/
|
|
1206
1225
|
const filterSensitiveLog: (obj: AwsAutoScalingAutoScalingGroupDetails) => any;
|
|
1207
1226
|
}
|
|
1227
|
+
/**
|
|
1228
|
+
* <p>Parameters that are used to automatically set up EBS volumes when an instance is launched.</p>
|
|
1229
|
+
*/
|
|
1230
|
+
export interface AwsAutoScalingLaunchConfigurationBlockDeviceMappingsEbsDetails {
|
|
1231
|
+
/**
|
|
1232
|
+
* <p>Whether to delete the volume when the instance is terminated.</p>
|
|
1233
|
+
*/
|
|
1234
|
+
DeleteOnTermination?: boolean;
|
|
1235
|
+
/**
|
|
1236
|
+
* <p>Whether to encrypt the volume.</p>
|
|
1237
|
+
*/
|
|
1238
|
+
Encrypted?: boolean;
|
|
1239
|
+
/**
|
|
1240
|
+
* <p>The number of input/output (I/O) operations per second (IOPS) to provision for the volume.</p>
|
|
1241
|
+
* <p>Only supported for <code>gp3</code> or <code>io1</code> volumes. Required for <code>io1</code> volumes. Not used with <code>standard</code>, <code>gp2</code>, <code>st1</code>, or <code>sc1</code> volumes.</p>
|
|
1242
|
+
*/
|
|
1243
|
+
Iops?: number;
|
|
1244
|
+
/**
|
|
1245
|
+
* <p>The snapshot ID of the volume to use.</p>
|
|
1246
|
+
* <p>You must specify either <code>VolumeSize</code> or <code>SnapshotId</code>.</p>
|
|
1247
|
+
*/
|
|
1248
|
+
SnapshotId?: string;
|
|
1249
|
+
/**
|
|
1250
|
+
* <p>The volume size, in GiBs. The following are the supported volumes sizes for each volume type:</p>
|
|
1251
|
+
* <ul>
|
|
1252
|
+
* <li>
|
|
1253
|
+
* <p>gp2 and gp3: 1-16,384</p>
|
|
1254
|
+
* </li>
|
|
1255
|
+
* <li>
|
|
1256
|
+
* <p>io1: 4-16,384</p>
|
|
1257
|
+
* </li>
|
|
1258
|
+
* <li>
|
|
1259
|
+
* <p>st1 and sc1: 125-16,384</p>
|
|
1260
|
+
* </li>
|
|
1261
|
+
* <li>
|
|
1262
|
+
* <p>standard: 1-1,024</p>
|
|
1263
|
+
* </li>
|
|
1264
|
+
* </ul>
|
|
1265
|
+
* <p>You must specify either <code>SnapshotId</code> or <code>VolumeSize</code>. If you specify both <code>SnapshotId</code> and <code>VolumeSize</code>, the volume size must be equal or greater than the size of the snapshot.</p>
|
|
1266
|
+
*/
|
|
1267
|
+
VolumeSize?: number;
|
|
1268
|
+
/**
|
|
1269
|
+
* <p>The volume type.</p>
|
|
1270
|
+
*/
|
|
1271
|
+
VolumeType?: string;
|
|
1272
|
+
}
|
|
1273
|
+
export declare namespace AwsAutoScalingLaunchConfigurationBlockDeviceMappingsEbsDetails {
|
|
1274
|
+
/**
|
|
1275
|
+
* @internal
|
|
1276
|
+
*/
|
|
1277
|
+
const filterSensitiveLog: (obj: AwsAutoScalingLaunchConfigurationBlockDeviceMappingsEbsDetails) => any;
|
|
1278
|
+
}
|
|
1279
|
+
/**
|
|
1280
|
+
* <p>A block device for the instance.</p>
|
|
1281
|
+
*/
|
|
1282
|
+
export interface AwsAutoScalingLaunchConfigurationBlockDeviceMappingsDetails {
|
|
1283
|
+
/**
|
|
1284
|
+
* <p>The device name that is exposed to the EC2 instance. For example, <code>/dev/sdh</code> or <code>xvdh</code>.</p>
|
|
1285
|
+
*/
|
|
1286
|
+
DeviceName?: string;
|
|
1287
|
+
/**
|
|
1288
|
+
* <p>Parameters that are used to automatically set up Amazon EBS volumes when an instance is launched.</p>
|
|
1289
|
+
*/
|
|
1290
|
+
Ebs?: AwsAutoScalingLaunchConfigurationBlockDeviceMappingsEbsDetails;
|
|
1291
|
+
/**
|
|
1292
|
+
* <p>Whether to suppress the device that is included in the block device mapping of the Amazon Machine Image (AMI).</p>
|
|
1293
|
+
* <p>If <code>NoDevice</code> is <code>true</code>, then you cannot specify <code>Ebs</code>.></p>
|
|
1294
|
+
*/
|
|
1295
|
+
NoDevice?: boolean;
|
|
1296
|
+
/**
|
|
1297
|
+
* <p>The name of the virtual device (for example, <code>ephemeral0</code>).</p>
|
|
1298
|
+
* <p>You can provide either <code>VirtualName</code> or <code>Ebs</code>, but not both.</p>
|
|
1299
|
+
*/
|
|
1300
|
+
VirtualName?: string;
|
|
1301
|
+
}
|
|
1302
|
+
export declare namespace AwsAutoScalingLaunchConfigurationBlockDeviceMappingsDetails {
|
|
1303
|
+
/**
|
|
1304
|
+
* @internal
|
|
1305
|
+
*/
|
|
1306
|
+
const filterSensitiveLog: (obj: AwsAutoScalingLaunchConfigurationBlockDeviceMappingsDetails) => any;
|
|
1307
|
+
}
|
|
1308
|
+
/**
|
|
1309
|
+
* <p>Information about the type of monitoring for instances in the group.</p>
|
|
1310
|
+
*/
|
|
1311
|
+
export interface AwsAutoScalingLaunchConfigurationInstanceMonitoringDetails {
|
|
1312
|
+
/**
|
|
1313
|
+
* <p>If set to <code>true</code>, then instances in the group launch with detailed
|
|
1314
|
+
* monitoring.</p>
|
|
1315
|
+
* <p>If set to <code>false</code>, then instances in the group launch with basic
|
|
1316
|
+
* monitoring.</p>
|
|
1317
|
+
*/
|
|
1318
|
+
Enabled?: boolean;
|
|
1319
|
+
}
|
|
1320
|
+
export declare namespace AwsAutoScalingLaunchConfigurationInstanceMonitoringDetails {
|
|
1321
|
+
/**
|
|
1322
|
+
* @internal
|
|
1323
|
+
*/
|
|
1324
|
+
const filterSensitiveLog: (obj: AwsAutoScalingLaunchConfigurationInstanceMonitoringDetails) => any;
|
|
1325
|
+
}
|
|
1326
|
+
/**
|
|
1327
|
+
* <p>Details about a launch configuration.</p>
|
|
1328
|
+
*/
|
|
1329
|
+
export interface AwsAutoScalingLaunchConfigurationDetails {
|
|
1330
|
+
/**
|
|
1331
|
+
* <p>For Auto Scaling groups that run in a VPC, specifies whether to assign a public IP address to the group's instances.</p>
|
|
1332
|
+
*/
|
|
1333
|
+
AssociatePublicIpAddress?: boolean;
|
|
1334
|
+
/**
|
|
1335
|
+
* <p>Specifies the block devices for the instance.</p>
|
|
1336
|
+
*/
|
|
1337
|
+
BlockDeviceMappings?: AwsAutoScalingLaunchConfigurationBlockDeviceMappingsDetails[];
|
|
1338
|
+
/**
|
|
1339
|
+
* <p>The identifier of a ClassicLink-enabled VPC that EC2-Classic instances are linked to.</p>
|
|
1340
|
+
*/
|
|
1341
|
+
ClassicLinkVpcId?: string;
|
|
1342
|
+
/**
|
|
1343
|
+
* <p>The identifiers of one or more security groups for the VPC that is specified in <code>ClassicLinkVPCId</code>.</p>
|
|
1344
|
+
*/
|
|
1345
|
+
ClassicLinkVpcSecurityGroups?: string[];
|
|
1346
|
+
/**
|
|
1347
|
+
* <p>The creation date and time for the launch configuration.</p>
|
|
1348
|
+
* <p>Uses the <code>date-time</code> format specified in <a href="https://tools.ietf.org/html/rfc3339#section-5.6">RFC 3339 section 5.6, Internet
|
|
1349
|
+
* Date/Time Format</a>. The value cannot contain spaces. For example,
|
|
1350
|
+
* <code>2020-03-22T13:22:13.933Z</code>.</p>
|
|
1351
|
+
*/
|
|
1352
|
+
CreatedTime?: string;
|
|
1353
|
+
/**
|
|
1354
|
+
* <p>Whether the launch configuration is optimized for Amazon EBS I/O.</p>
|
|
1355
|
+
*/
|
|
1356
|
+
EbsOptimized?: boolean;
|
|
1357
|
+
/**
|
|
1358
|
+
* <p>The name or the ARN of the instance profile associated with the IAM role for the
|
|
1359
|
+
* instance. The instance profile contains the IAM role.</p>
|
|
1360
|
+
*/
|
|
1361
|
+
IamInstanceProfile?: string;
|
|
1362
|
+
/**
|
|
1363
|
+
* <p>The identifier of the Amazon Machine Image (AMI) that is used to launch EC2
|
|
1364
|
+
* instances.</p>
|
|
1365
|
+
*/
|
|
1366
|
+
ImageId?: string;
|
|
1367
|
+
/**
|
|
1368
|
+
* <p>Indicates the type of monitoring for instances in the group.</p>
|
|
1369
|
+
*/
|
|
1370
|
+
InstanceMonitoring?: AwsAutoScalingLaunchConfigurationInstanceMonitoringDetails;
|
|
1371
|
+
/**
|
|
1372
|
+
* <p>The instance type for the instances.</p>
|
|
1373
|
+
*/
|
|
1374
|
+
InstanceType?: string;
|
|
1375
|
+
/**
|
|
1376
|
+
* <p>The identifier of the kernel associated with the AMI.</p>
|
|
1377
|
+
*/
|
|
1378
|
+
KernelId?: string;
|
|
1379
|
+
/**
|
|
1380
|
+
* <p>The name of the key pair.</p>
|
|
1381
|
+
*/
|
|
1382
|
+
KeyName?: string;
|
|
1383
|
+
/**
|
|
1384
|
+
* <p>The name of the launch configuration.</p>
|
|
1385
|
+
*/
|
|
1386
|
+
LaunchConfigurationName?: string;
|
|
1387
|
+
/**
|
|
1388
|
+
* <p>The tenancy of the instance. An instance with <code>dedicated</code> tenancy runs on
|
|
1389
|
+
* isolated, single-tenant hardware and can only be launched into a VPC.</p>
|
|
1390
|
+
*/
|
|
1391
|
+
PlacementTenancy?: string;
|
|
1392
|
+
/**
|
|
1393
|
+
* <p>The identifier of the RAM disk associated with the AMI.</p>
|
|
1394
|
+
*/
|
|
1395
|
+
RamdiskId?: string;
|
|
1396
|
+
/**
|
|
1397
|
+
* <p>The security groups to assign to the instances in the Auto Scaling group.</p>
|
|
1398
|
+
*/
|
|
1399
|
+
SecurityGroups?: string[];
|
|
1400
|
+
/**
|
|
1401
|
+
* <p>The maximum hourly price to be paid for any Spot Instance that is launched to fulfill the
|
|
1402
|
+
* request.</p>
|
|
1403
|
+
*/
|
|
1404
|
+
SpotPrice?: string;
|
|
1405
|
+
/**
|
|
1406
|
+
* <p>The user data to make available to the launched EC2 instances. Must be base64-encoded
|
|
1407
|
+
* text.</p>
|
|
1408
|
+
*/
|
|
1409
|
+
UserData?: string;
|
|
1410
|
+
}
|
|
1411
|
+
export declare namespace AwsAutoScalingLaunchConfigurationDetails {
|
|
1412
|
+
/**
|
|
1413
|
+
* @internal
|
|
1414
|
+
*/
|
|
1415
|
+
const filterSensitiveLog: (obj: AwsAutoScalingLaunchConfigurationDetails) => any;
|
|
1416
|
+
}
|
|
1208
1417
|
/**
|
|
1209
1418
|
* <p>Provides details about the CNAME record that is added to the DNS database for domain
|
|
1210
1419
|
* validation.</p>
|
|
@@ -2109,10 +2318,10 @@ export declare namespace AwsCodeBuildProjectVpcConfig {
|
|
|
2109
2318
|
*/
|
|
2110
2319
|
export interface AwsCodeBuildProjectDetails {
|
|
2111
2320
|
/**
|
|
2112
|
-
* <p>The KMS
|
|
2321
|
+
* <p>The KMS key used to encrypt the
|
|
2113
2322
|
* build output artifacts.</p>
|
|
2114
|
-
* <p>You can specify either the ARN of the
|
|
2115
|
-
*
|
|
2323
|
+
* <p>You can specify either the ARN of the KMS key or, if available, the
|
|
2324
|
+
* KMS key alias (using the format alias/alias-name). </p>
|
|
2116
2325
|
*/
|
|
2117
2326
|
EncryptionKey?: string;
|
|
2118
2327
|
/**
|
|
@@ -2385,7 +2594,7 @@ export interface AwsDynamoDbTableReplica {
|
|
|
2385
2594
|
*/
|
|
2386
2595
|
GlobalSecondaryIndexes?: AwsDynamoDbTableReplicaGlobalSecondaryIndex[];
|
|
2387
2596
|
/**
|
|
2388
|
-
* <p>The identifier of the KMS
|
|
2597
|
+
* <p>The identifier of the KMS key that will be used for KMS
|
|
2389
2598
|
* encryption for the replica.</p>
|
|
2390
2599
|
*/
|
|
2391
2600
|
KmsMasterKeyId?: string;
|
|
@@ -2463,7 +2672,7 @@ export interface AwsDynamoDbTableSseDescription {
|
|
|
2463
2672
|
*/
|
|
2464
2673
|
SseType?: string;
|
|
2465
2674
|
/**
|
|
2466
|
-
* <p>The ARN of the KMS
|
|
2675
|
+
* <p>The ARN of the KMS key that is used for the KMS
|
|
2467
2676
|
* encryption.</p>
|
|
2468
2677
|
*/
|
|
2469
2678
|
KmsMasterKeyArn?: string;
|
|
@@ -3309,7 +3518,7 @@ export interface AwsEc2VolumeDetails {
|
|
|
3309
3518
|
*/
|
|
3310
3519
|
Status?: string;
|
|
3311
3520
|
/**
|
|
3312
|
-
* <p>The ARN of the KMS
|
|
3521
|
+
* <p>The ARN of the KMS key that was
|
|
3313
3522
|
* used to protect the volume encryption key for the volume.</p>
|
|
3314
3523
|
*/
|
|
3315
3524
|
KmsKeyId?: string;
|
|
@@ -3377,196 +3586,456 @@ export declare namespace AwsEc2VpcDetails {
|
|
|
3377
3586
|
const filterSensitiveLog: (obj: AwsEc2VpcDetails) => any;
|
|
3378
3587
|
}
|
|
3379
3588
|
/**
|
|
3380
|
-
* <p>
|
|
3589
|
+
* <p>The VPN tunnel options.</p>
|
|
3381
3590
|
*/
|
|
3382
|
-
export interface
|
|
3591
|
+
export interface AwsEc2VpnConnectionOptionsTunnelOptionsDetails {
|
|
3383
3592
|
/**
|
|
3384
|
-
* <p>The
|
|
3593
|
+
* <p>The number of seconds after which a Dead Peer Detection (DPD) timeout occurs.</p>
|
|
3385
3594
|
*/
|
|
3386
|
-
|
|
3595
|
+
DpdTimeoutSeconds?: number;
|
|
3387
3596
|
/**
|
|
3388
|
-
* <p>The
|
|
3597
|
+
* <p>The Internet Key Exchange (IKE) versions that are permitted for the VPN tunnel.</p>
|
|
3389
3598
|
*/
|
|
3390
|
-
|
|
3391
|
-
}
|
|
3392
|
-
export declare namespace AwsEcsClusterClusterSettingsDetails {
|
|
3599
|
+
IkeVersions?: string[];
|
|
3393
3600
|
/**
|
|
3394
|
-
*
|
|
3601
|
+
* <p>The external IP address of the VPN tunnel.</p>
|
|
3395
3602
|
*/
|
|
3396
|
-
|
|
3397
|
-
}
|
|
3398
|
-
/**
|
|
3399
|
-
* <p>The log configuration for the results of the run command actions.</p>
|
|
3400
|
-
*/
|
|
3401
|
-
export interface AwsEcsClusterConfigurationExecuteCommandConfigurationLogConfigurationDetails {
|
|
3603
|
+
OutsideIpAddress?: string;
|
|
3402
3604
|
/**
|
|
3403
|
-
* <p>
|
|
3605
|
+
* <p>The permitted Diffie-Hellman group numbers for the VPN tunnel for phase 1 IKE
|
|
3606
|
+
* negotiations.</p>
|
|
3404
3607
|
*/
|
|
3405
|
-
|
|
3608
|
+
Phase1DhGroupNumbers?: number[];
|
|
3406
3609
|
/**
|
|
3407
|
-
* <p>The
|
|
3610
|
+
* <p>The permitted encryption algorithms for the VPN tunnel for phase 1 IKE
|
|
3611
|
+
* negotiations.</p>
|
|
3408
3612
|
*/
|
|
3409
|
-
|
|
3613
|
+
Phase1EncryptionAlgorithms?: string[];
|
|
3410
3614
|
/**
|
|
3411
|
-
* <p>The
|
|
3615
|
+
* <p>The permitted integrity algorithms for the VPN tunnel for phase 1 IKE
|
|
3616
|
+
* negotiations.</p>
|
|
3412
3617
|
*/
|
|
3413
|
-
|
|
3618
|
+
Phase1IntegrityAlgorithms?: string[];
|
|
3414
3619
|
/**
|
|
3415
|
-
* <p>
|
|
3620
|
+
* <p>The lifetime for phase 1 of the IKE negotiation, in seconds.</p>
|
|
3416
3621
|
*/
|
|
3417
|
-
|
|
3622
|
+
Phase1LifetimeSeconds?: number;
|
|
3418
3623
|
/**
|
|
3419
|
-
* <p>
|
|
3624
|
+
* <p>The permitted Diffie-Hellman group numbers for the VPN tunnel for phase 2 IKE
|
|
3625
|
+
* negotiations.</p>
|
|
3420
3626
|
*/
|
|
3421
|
-
|
|
3422
|
-
}
|
|
3423
|
-
export declare namespace AwsEcsClusterConfigurationExecuteCommandConfigurationLogConfigurationDetails {
|
|
3627
|
+
Phase2DhGroupNumbers?: number[];
|
|
3424
3628
|
/**
|
|
3425
|
-
*
|
|
3629
|
+
* <p>The permitted encryption algorithms for the VPN tunnel for phase 2 IKE
|
|
3630
|
+
* negotiations.</p>
|
|
3426
3631
|
*/
|
|
3427
|
-
|
|
3428
|
-
}
|
|
3429
|
-
/**
|
|
3430
|
-
* <p>Contains the run command configuration for the cluster.</p>
|
|
3431
|
-
*/
|
|
3432
|
-
export interface AwsEcsClusterConfigurationExecuteCommandConfigurationDetails {
|
|
3632
|
+
Phase2EncryptionAlgorithms?: string[];
|
|
3433
3633
|
/**
|
|
3434
|
-
* <p>The
|
|
3634
|
+
* <p>The permitted integrity algorithms for the VPN tunnel for phase 2 IKE
|
|
3635
|
+
* negotiations.</p>
|
|
3435
3636
|
*/
|
|
3436
|
-
|
|
3637
|
+
Phase2IntegrityAlgorithms?: string[];
|
|
3437
3638
|
/**
|
|
3438
|
-
* <p>The
|
|
3639
|
+
* <p>The lifetime for phase 2 of the IKE negotiation, in seconds.</p>
|
|
3439
3640
|
*/
|
|
3440
|
-
|
|
3641
|
+
Phase2LifetimeSeconds?: number;
|
|
3441
3642
|
/**
|
|
3442
|
-
* <p>The
|
|
3643
|
+
* <p>The preshared key to establish initial authentication between the virtual private gateway
|
|
3644
|
+
* and the customer gateway.</p>
|
|
3443
3645
|
*/
|
|
3444
|
-
|
|
3646
|
+
PreSharedKey?: string;
|
|
3647
|
+
/**
|
|
3648
|
+
* <p>The percentage of the rekey window, which is determined by
|
|
3649
|
+
* <code>RekeyMarginTimeSeconds</code> during which the rekey time is randomly selected.</p>
|
|
3650
|
+
*/
|
|
3651
|
+
RekeyFuzzPercentage?: number;
|
|
3652
|
+
/**
|
|
3653
|
+
* <p>The margin time, in seconds, before the phase 2 lifetime expires, during which the Amazon Web Services
|
|
3654
|
+
* side of the VPN connection performs an IKE rekey.</p>
|
|
3655
|
+
*/
|
|
3656
|
+
RekeyMarginTimeSeconds?: number;
|
|
3657
|
+
/**
|
|
3658
|
+
* <p>The number of packets in an IKE replay window.</p>
|
|
3659
|
+
*/
|
|
3660
|
+
ReplayWindowSize?: number;
|
|
3661
|
+
/**
|
|
3662
|
+
* <p>The range of inside IPv4 addresses for the tunnel.</p>
|
|
3663
|
+
*/
|
|
3664
|
+
TunnelInsideCidr?: string;
|
|
3445
3665
|
}
|
|
3446
|
-
export declare namespace
|
|
3666
|
+
export declare namespace AwsEc2VpnConnectionOptionsTunnelOptionsDetails {
|
|
3447
3667
|
/**
|
|
3448
3668
|
* @internal
|
|
3449
3669
|
*/
|
|
3450
|
-
const filterSensitiveLog: (obj:
|
|
3670
|
+
const filterSensitiveLog: (obj: AwsEc2VpnConnectionOptionsTunnelOptionsDetails) => any;
|
|
3451
3671
|
}
|
|
3452
3672
|
/**
|
|
3453
|
-
* <p>
|
|
3673
|
+
* <p>VPN connection options.</p>
|
|
3454
3674
|
*/
|
|
3455
|
-
export interface
|
|
3675
|
+
export interface AwsEc2VpnConnectionOptionsDetails {
|
|
3456
3676
|
/**
|
|
3457
|
-
* <p>
|
|
3677
|
+
* <p>Whether the VPN connection uses static routes only.</p>
|
|
3458
3678
|
*/
|
|
3459
|
-
|
|
3679
|
+
StaticRoutesOnly?: boolean;
|
|
3680
|
+
/**
|
|
3681
|
+
* <p>The VPN tunnel options.</p>
|
|
3682
|
+
*/
|
|
3683
|
+
TunnelOptions?: AwsEc2VpnConnectionOptionsTunnelOptionsDetails[];
|
|
3460
3684
|
}
|
|
3461
|
-
export declare namespace
|
|
3685
|
+
export declare namespace AwsEc2VpnConnectionOptionsDetails {
|
|
3462
3686
|
/**
|
|
3463
3687
|
* @internal
|
|
3464
3688
|
*/
|
|
3465
|
-
const filterSensitiveLog: (obj:
|
|
3689
|
+
const filterSensitiveLog: (obj: AwsEc2VpnConnectionOptionsDetails) => any;
|
|
3466
3690
|
}
|
|
3467
3691
|
/**
|
|
3468
|
-
* <p>
|
|
3692
|
+
* <p>A static routes associated with
|
|
3693
|
+
* the VPN connection.</p>
|
|
3469
3694
|
*/
|
|
3470
|
-
export interface
|
|
3471
|
-
/**
|
|
3472
|
-
* <p>The minimum number of tasks to run on the specified capacity provider.</p>
|
|
3473
|
-
*/
|
|
3474
|
-
Base?: number;
|
|
3695
|
+
export interface AwsEc2VpnConnectionRoutesDetails {
|
|
3475
3696
|
/**
|
|
3476
|
-
* <p>The
|
|
3697
|
+
* <p>The CIDR block associated with the local subnet of the customer data center.</p>
|
|
3477
3698
|
*/
|
|
3478
|
-
|
|
3699
|
+
DestinationCidrBlock?: string;
|
|
3479
3700
|
/**
|
|
3480
|
-
* <p>The
|
|
3701
|
+
* <p>The current state of the static route.</p>
|
|
3481
3702
|
*/
|
|
3482
|
-
|
|
3703
|
+
State?: string;
|
|
3483
3704
|
}
|
|
3484
|
-
export declare namespace
|
|
3705
|
+
export declare namespace AwsEc2VpnConnectionRoutesDetails {
|
|
3485
3706
|
/**
|
|
3486
3707
|
* @internal
|
|
3487
3708
|
*/
|
|
3488
|
-
const filterSensitiveLog: (obj:
|
|
3709
|
+
const filterSensitiveLog: (obj: AwsEc2VpnConnectionRoutesDetails) => any;
|
|
3489
3710
|
}
|
|
3490
3711
|
/**
|
|
3491
|
-
* <p>
|
|
3712
|
+
* <p>Information about the VPN tunnel.</p>
|
|
3492
3713
|
*/
|
|
3493
|
-
export interface
|
|
3714
|
+
export interface AwsEc2VpnConnectionVgwTelemetryDetails {
|
|
3494
3715
|
/**
|
|
3495
|
-
* <p>The
|
|
3716
|
+
* <p>The number of accepted routes.</p>
|
|
3496
3717
|
*/
|
|
3497
|
-
|
|
3718
|
+
AcceptedRouteCount?: number;
|
|
3498
3719
|
/**
|
|
3499
|
-
* <p>The
|
|
3720
|
+
* <p>The ARN of the VPN tunnel endpoint certificate.</p>
|
|
3500
3721
|
*/
|
|
3501
|
-
|
|
3722
|
+
CertificateArn?: string;
|
|
3502
3723
|
/**
|
|
3503
|
-
* <p>The
|
|
3724
|
+
* <p>The date and time of the last change in status.</p>
|
|
3725
|
+
* <p>Uses the <code>date-time</code> format specified in <a href="https://tools.ietf.org/html/rfc3339#section-5.6">RFC 3339 section 5.6, Internet
|
|
3726
|
+
* Date/Time Format</a>. The value cannot contain spaces. For example,
|
|
3727
|
+
* <code>2020-03-22T13:22:13.933Z</code>.</p>
|
|
3504
3728
|
*/
|
|
3505
|
-
|
|
3729
|
+
LastStatusChange?: string;
|
|
3506
3730
|
/**
|
|
3507
|
-
* <p>The
|
|
3731
|
+
* <p>The Internet-routable IP address of the virtual private gateway's outside
|
|
3732
|
+
* interface.</p>
|
|
3508
3733
|
*/
|
|
3509
|
-
|
|
3734
|
+
OutsideIpAddress?: string;
|
|
3735
|
+
/**
|
|
3736
|
+
* <p>The status of the VPN tunnel.</p>
|
|
3737
|
+
*/
|
|
3738
|
+
Status?: string;
|
|
3739
|
+
/**
|
|
3740
|
+
* <p>If an error occurs, a description of the error.</p>
|
|
3741
|
+
*/
|
|
3742
|
+
StatusMessage?: string;
|
|
3510
3743
|
}
|
|
3511
|
-
export declare namespace
|
|
3744
|
+
export declare namespace AwsEc2VpnConnectionVgwTelemetryDetails {
|
|
3512
3745
|
/**
|
|
3513
3746
|
* @internal
|
|
3514
3747
|
*/
|
|
3515
|
-
const filterSensitiveLog: (obj:
|
|
3748
|
+
const filterSensitiveLog: (obj: AwsEc2VpnConnectionVgwTelemetryDetails) => any;
|
|
3516
3749
|
}
|
|
3517
3750
|
/**
|
|
3518
|
-
* <p>
|
|
3751
|
+
* <p>Details about an Amazon EC2 VPN
|
|
3752
|
+
* connection.</p>
|
|
3519
3753
|
*/
|
|
3520
|
-
export interface
|
|
3754
|
+
export interface AwsEc2VpnConnectionDetails {
|
|
3521
3755
|
/**
|
|
3522
|
-
* <p>The
|
|
3523
|
-
* <p>The value must be between 0 and 100000.</p>
|
|
3756
|
+
* <p>The identifier of the VPN connection.</p>
|
|
3524
3757
|
*/
|
|
3525
|
-
|
|
3758
|
+
VpnConnectionId?: string;
|
|
3526
3759
|
/**
|
|
3527
|
-
* <p>The
|
|
3760
|
+
* <p>The current state of the VPN connection.</p>
|
|
3528
3761
|
*/
|
|
3529
|
-
|
|
3762
|
+
State?: string;
|
|
3530
3763
|
/**
|
|
3531
|
-
* <p>The
|
|
3532
|
-
* <p>If no weight is specified, the default value is 0. At least one capacity provider must have a weight greater than 0.</p>
|
|
3533
|
-
* <p>The value can be between 0 and 1000.</p>
|
|
3764
|
+
* <p>The identifier of the customer gateway that is at your end of the VPN connection.</p>
|
|
3534
3765
|
*/
|
|
3535
|
-
|
|
3536
|
-
}
|
|
3537
|
-
export declare namespace AwsEcsServiceCapacityProviderStrategyDetails {
|
|
3766
|
+
CustomerGatewayId?: string;
|
|
3538
3767
|
/**
|
|
3539
|
-
*
|
|
3768
|
+
* <p>The configuration information for the VPN connection's customer gateway, in the native XML
|
|
3769
|
+
* format.</p>
|
|
3540
3770
|
*/
|
|
3541
|
-
|
|
3542
|
-
}
|
|
3543
|
-
/**
|
|
3544
|
-
* <p>Determines whether a service deployment fails if a service cannot reach a steady state.</p>
|
|
3545
|
-
*/
|
|
3546
|
-
export interface AwsEcsServiceDeploymentConfigurationDeploymentCircuitBreakerDetails {
|
|
3771
|
+
CustomerGatewayConfiguration?: string;
|
|
3547
3772
|
/**
|
|
3548
|
-
* <p>
|
|
3773
|
+
* <p>The type of VPN connection.</p>
|
|
3549
3774
|
*/
|
|
3550
|
-
|
|
3775
|
+
Type?: string;
|
|
3551
3776
|
/**
|
|
3552
|
-
* <p>
|
|
3777
|
+
* <p>The identifier of the virtual private gateway that is at the Amazon Web Services side of the VPN
|
|
3778
|
+
* connection.</p>
|
|
3553
3779
|
*/
|
|
3554
|
-
|
|
3555
|
-
}
|
|
3556
|
-
export declare namespace AwsEcsServiceDeploymentConfigurationDeploymentCircuitBreakerDetails {
|
|
3780
|
+
VpnGatewayId?: string;
|
|
3557
3781
|
/**
|
|
3558
|
-
*
|
|
3782
|
+
* <p>The category of the VPN connection. <code>VPN</code> indicates an Amazon Web Services VPN connection. <code>VPN-Classic</code>
|
|
3783
|
+
* indicates an Amazon Web Services Classic VPN connection.</p>
|
|
3559
3784
|
*/
|
|
3560
|
-
|
|
3561
|
-
}
|
|
3562
|
-
/**
|
|
3563
|
-
* <p>Optional deployment parameters for the service.</p>
|
|
3564
|
-
*/
|
|
3565
|
-
export interface AwsEcsServiceDeploymentConfigurationDetails {
|
|
3785
|
+
Category?: string;
|
|
3566
3786
|
/**
|
|
3567
|
-
* <p>
|
|
3787
|
+
* <p>Information about the VPN tunnel.</p>
|
|
3568
3788
|
*/
|
|
3569
|
-
|
|
3789
|
+
VgwTelemetry?: AwsEc2VpnConnectionVgwTelemetryDetails[];
|
|
3790
|
+
/**
|
|
3791
|
+
* <p>The VPN connection options.</p>
|
|
3792
|
+
*/
|
|
3793
|
+
Options?: AwsEc2VpnConnectionOptionsDetails;
|
|
3794
|
+
/**
|
|
3795
|
+
* <p>The static routes that are associated with the VPN connection.</p>
|
|
3796
|
+
*/
|
|
3797
|
+
Routes?: AwsEc2VpnConnectionRoutesDetails[];
|
|
3798
|
+
/**
|
|
3799
|
+
* <p>The identifier of the transit gateway that is associated with the VPN connection.</p>
|
|
3800
|
+
*/
|
|
3801
|
+
TransitGatewayId?: string;
|
|
3802
|
+
}
|
|
3803
|
+
export declare namespace AwsEc2VpnConnectionDetails {
|
|
3804
|
+
/**
|
|
3805
|
+
* @internal
|
|
3806
|
+
*/
|
|
3807
|
+
const filterSensitiveLog: (obj: AwsEc2VpnConnectionDetails) => any;
|
|
3808
|
+
}
|
|
3809
|
+
/**
|
|
3810
|
+
* <p>Information about an Amazon ECR image.</p>
|
|
3811
|
+
*/
|
|
3812
|
+
export interface AwsEcrContainerImageDetails {
|
|
3813
|
+
/**
|
|
3814
|
+
* <p>The Amazon Web Services account identifier that is associated with the registry that the image belongs
|
|
3815
|
+
* to.</p>
|
|
3816
|
+
*/
|
|
3817
|
+
RegistryId?: string;
|
|
3818
|
+
/**
|
|
3819
|
+
* <p>The name of the repository that the image belongs to.</p>
|
|
3820
|
+
*/
|
|
3821
|
+
RepositoryName?: string;
|
|
3822
|
+
/**
|
|
3823
|
+
* <p>The architecture of the image.</p>
|
|
3824
|
+
*/
|
|
3825
|
+
Architecture?: string;
|
|
3826
|
+
/**
|
|
3827
|
+
* <p>The sha256 digest of the image manifest.</p>
|
|
3828
|
+
*/
|
|
3829
|
+
ImageDigest?: string;
|
|
3830
|
+
/**
|
|
3831
|
+
* <p>The list of tags that are associated with the image.</p>
|
|
3832
|
+
*/
|
|
3833
|
+
ImageTags?: string[];
|
|
3834
|
+
/**
|
|
3835
|
+
* <p>The date and time when the image was pushed to the repository.</p>
|
|
3836
|
+
* <p>Uses the <code>date-time</code> format specified in <a href="https://tools.ietf.org/html/rfc3339#section-5.6">RFC 3339 section 5.6, Internet
|
|
3837
|
+
* Date/Time Format</a>. The value cannot contain spaces. For example,
|
|
3838
|
+
* <code>2020-03-22T13:22:13.933Z</code>.</p>
|
|
3839
|
+
*/
|
|
3840
|
+
ImagePublishedAt?: string;
|
|
3841
|
+
}
|
|
3842
|
+
export declare namespace AwsEcrContainerImageDetails {
|
|
3843
|
+
/**
|
|
3844
|
+
* @internal
|
|
3845
|
+
*/
|
|
3846
|
+
const filterSensitiveLog: (obj: AwsEcrContainerImageDetails) => any;
|
|
3847
|
+
}
|
|
3848
|
+
/**
|
|
3849
|
+
* <p>Indicates whether to enable CloudWatch Container Insights for the ECS cluster.</p>
|
|
3850
|
+
*/
|
|
3851
|
+
export interface AwsEcsClusterClusterSettingsDetails {
|
|
3852
|
+
/**
|
|
3853
|
+
* <p>The name of the setting.</p>
|
|
3854
|
+
*/
|
|
3855
|
+
Name?: string;
|
|
3856
|
+
/**
|
|
3857
|
+
* <p>The value of the setting.</p>
|
|
3858
|
+
*/
|
|
3859
|
+
Value?: string;
|
|
3860
|
+
}
|
|
3861
|
+
export declare namespace AwsEcsClusterClusterSettingsDetails {
|
|
3862
|
+
/**
|
|
3863
|
+
* @internal
|
|
3864
|
+
*/
|
|
3865
|
+
const filterSensitiveLog: (obj: AwsEcsClusterClusterSettingsDetails) => any;
|
|
3866
|
+
}
|
|
3867
|
+
/**
|
|
3868
|
+
* <p>The log configuration for the results of the run command actions.</p>
|
|
3869
|
+
*/
|
|
3870
|
+
export interface AwsEcsClusterConfigurationExecuteCommandConfigurationLogConfigurationDetails {
|
|
3871
|
+
/**
|
|
3872
|
+
* <p>Whether to enable encryption on the CloudWatch logs.</p>
|
|
3873
|
+
*/
|
|
3874
|
+
CloudWatchEncryptionEnabled?: boolean;
|
|
3875
|
+
/**
|
|
3876
|
+
* <p>The name of the CloudWatch log group to send the logs to.</p>
|
|
3877
|
+
*/
|
|
3878
|
+
CloudWatchLogGroupName?: string;
|
|
3879
|
+
/**
|
|
3880
|
+
* <p>The name of the S3 bucket to send logs to.</p>
|
|
3881
|
+
*/
|
|
3882
|
+
S3BucketName?: string;
|
|
3883
|
+
/**
|
|
3884
|
+
* <p>Whether to encrypt the logs that are sent to the S3 bucket.</p>
|
|
3885
|
+
*/
|
|
3886
|
+
S3EncryptionEnabled?: boolean;
|
|
3887
|
+
/**
|
|
3888
|
+
* <p>Identifies the folder in the S3 bucket to send the logs to.</p>
|
|
3889
|
+
*/
|
|
3890
|
+
S3KeyPrefix?: string;
|
|
3891
|
+
}
|
|
3892
|
+
export declare namespace AwsEcsClusterConfigurationExecuteCommandConfigurationLogConfigurationDetails {
|
|
3893
|
+
/**
|
|
3894
|
+
* @internal
|
|
3895
|
+
*/
|
|
3896
|
+
const filterSensitiveLog: (obj: AwsEcsClusterConfigurationExecuteCommandConfigurationLogConfigurationDetails) => any;
|
|
3897
|
+
}
|
|
3898
|
+
/**
|
|
3899
|
+
* <p>Contains the run command configuration for the cluster.</p>
|
|
3900
|
+
*/
|
|
3901
|
+
export interface AwsEcsClusterConfigurationExecuteCommandConfigurationDetails {
|
|
3902
|
+
/**
|
|
3903
|
+
* <p>The identifier of the KMS key that is used to encrypt the data between the local client and the container.</p>
|
|
3904
|
+
*/
|
|
3905
|
+
KmsKeyId?: string;
|
|
3906
|
+
/**
|
|
3907
|
+
* <p>The log configuration for the results of the run command actions. Required if <code>Logging</code> is <code>NONE</code>.</p>
|
|
3908
|
+
*/
|
|
3909
|
+
LogConfiguration?: AwsEcsClusterConfigurationExecuteCommandConfigurationLogConfigurationDetails;
|
|
3910
|
+
/**
|
|
3911
|
+
* <p>The log setting to use for redirecting logs for run command results.</p>
|
|
3912
|
+
*/
|
|
3913
|
+
Logging?: string;
|
|
3914
|
+
}
|
|
3915
|
+
export declare namespace AwsEcsClusterConfigurationExecuteCommandConfigurationDetails {
|
|
3916
|
+
/**
|
|
3917
|
+
* @internal
|
|
3918
|
+
*/
|
|
3919
|
+
const filterSensitiveLog: (obj: AwsEcsClusterConfigurationExecuteCommandConfigurationDetails) => any;
|
|
3920
|
+
}
|
|
3921
|
+
/**
|
|
3922
|
+
* <p>The run command configuration for the cluster.</p>
|
|
3923
|
+
*/
|
|
3924
|
+
export interface AwsEcsClusterConfigurationDetails {
|
|
3925
|
+
/**
|
|
3926
|
+
* <p>Contains the run command configuration for the cluster.</p>
|
|
3927
|
+
*/
|
|
3928
|
+
ExecuteCommandConfiguration?: AwsEcsClusterConfigurationExecuteCommandConfigurationDetails;
|
|
3929
|
+
}
|
|
3930
|
+
export declare namespace AwsEcsClusterConfigurationDetails {
|
|
3931
|
+
/**
|
|
3932
|
+
* @internal
|
|
3933
|
+
*/
|
|
3934
|
+
const filterSensitiveLog: (obj: AwsEcsClusterConfigurationDetails) => any;
|
|
3935
|
+
}
|
|
3936
|
+
/**
|
|
3937
|
+
* <p>The default capacity provider strategy for the cluster. The default capacity provider strategy is used when services or tasks are run without a specified launch type or capacity provider strategy.</p>
|
|
3938
|
+
*/
|
|
3939
|
+
export interface AwsEcsClusterDefaultCapacityProviderStrategyDetails {
|
|
3940
|
+
/**
|
|
3941
|
+
* <p>The minimum number of tasks to run on the specified capacity provider.</p>
|
|
3942
|
+
*/
|
|
3943
|
+
Base?: number;
|
|
3944
|
+
/**
|
|
3945
|
+
* <p>The name of the capacity provider.</p>
|
|
3946
|
+
*/
|
|
3947
|
+
CapacityProvider?: string;
|
|
3948
|
+
/**
|
|
3949
|
+
* <p>The relative percentage of the total number of tasks launched that should use the capacity provider.</p>
|
|
3950
|
+
*/
|
|
3951
|
+
Weight?: number;
|
|
3952
|
+
}
|
|
3953
|
+
export declare namespace AwsEcsClusterDefaultCapacityProviderStrategyDetails {
|
|
3954
|
+
/**
|
|
3955
|
+
* @internal
|
|
3956
|
+
*/
|
|
3957
|
+
const filterSensitiveLog: (obj: AwsEcsClusterDefaultCapacityProviderStrategyDetails) => any;
|
|
3958
|
+
}
|
|
3959
|
+
/**
|
|
3960
|
+
* <p>provides details about an ECS cluster.</p>
|
|
3961
|
+
*/
|
|
3962
|
+
export interface AwsEcsClusterDetails {
|
|
3963
|
+
/**
|
|
3964
|
+
* <p>The short name of one or more capacity providers to associate with the cluster.</p>
|
|
3965
|
+
*/
|
|
3966
|
+
CapacityProviders?: string[];
|
|
3967
|
+
/**
|
|
3968
|
+
* <p>The setting to use to create the cluster. Specifically used to configure whether to enable CloudWatch Container Insights for the cluster.</p>
|
|
3969
|
+
*/
|
|
3970
|
+
ClusterSettings?: AwsEcsClusterClusterSettingsDetails[];
|
|
3971
|
+
/**
|
|
3972
|
+
* <p>The run command configuration for the cluster.</p>
|
|
3973
|
+
*/
|
|
3974
|
+
Configuration?: AwsEcsClusterConfigurationDetails;
|
|
3975
|
+
/**
|
|
3976
|
+
* <p>The default capacity provider strategy for the cluster. The default capacity provider strategy is used when services or tasks are run without a specified launch type or capacity provider strategy.</p>
|
|
3977
|
+
*/
|
|
3978
|
+
DefaultCapacityProviderStrategy?: AwsEcsClusterDefaultCapacityProviderStrategyDetails[];
|
|
3979
|
+
}
|
|
3980
|
+
export declare namespace AwsEcsClusterDetails {
|
|
3981
|
+
/**
|
|
3982
|
+
* @internal
|
|
3983
|
+
*/
|
|
3984
|
+
const filterSensitiveLog: (obj: AwsEcsClusterDetails) => any;
|
|
3985
|
+
}
|
|
3986
|
+
/**
|
|
3987
|
+
* <p>Strategy item for the capacity provider strategy that the service uses.</p>
|
|
3988
|
+
*/
|
|
3989
|
+
export interface AwsEcsServiceCapacityProviderStrategyDetails {
|
|
3990
|
+
/**
|
|
3991
|
+
* <p>The minimum number of tasks to run on the capacity provider. Only one strategy item can specify a value for <code>Base</code>.</p>
|
|
3992
|
+
* <p>The value must be between 0 and 100000.</p>
|
|
3993
|
+
*/
|
|
3994
|
+
Base?: number;
|
|
3995
|
+
/**
|
|
3996
|
+
* <p>The short name of the capacity provider.</p>
|
|
3997
|
+
*/
|
|
3998
|
+
CapacityProvider?: string;
|
|
3999
|
+
/**
|
|
4000
|
+
* <p>The relative percentage of the total number of tasks that should use the capacity provider.</p>
|
|
4001
|
+
* <p>If no weight is specified, the default value is 0. At least one capacity provider must have a weight greater than 0.</p>
|
|
4002
|
+
* <p>The value can be between 0 and 1000.</p>
|
|
4003
|
+
*/
|
|
4004
|
+
Weight?: number;
|
|
4005
|
+
}
|
|
4006
|
+
export declare namespace AwsEcsServiceCapacityProviderStrategyDetails {
|
|
4007
|
+
/**
|
|
4008
|
+
* @internal
|
|
4009
|
+
*/
|
|
4010
|
+
const filterSensitiveLog: (obj: AwsEcsServiceCapacityProviderStrategyDetails) => any;
|
|
4011
|
+
}
|
|
4012
|
+
/**
|
|
4013
|
+
* <p>Determines whether a service deployment fails if a service cannot reach a steady state.</p>
|
|
4014
|
+
*/
|
|
4015
|
+
export interface AwsEcsServiceDeploymentConfigurationDeploymentCircuitBreakerDetails {
|
|
4016
|
+
/**
|
|
4017
|
+
* <p>Whether to enable the deployment circuit breaker logic for the service.</p>
|
|
4018
|
+
*/
|
|
4019
|
+
Enable?: boolean;
|
|
4020
|
+
/**
|
|
4021
|
+
* <p>Whether to roll back the service if a service deployment fails. If rollback is enabled, when a service deployment fails, the service is rolled back to the last deployment that completed successfully.</p>
|
|
4022
|
+
*/
|
|
4023
|
+
Rollback?: boolean;
|
|
4024
|
+
}
|
|
4025
|
+
export declare namespace AwsEcsServiceDeploymentConfigurationDeploymentCircuitBreakerDetails {
|
|
4026
|
+
/**
|
|
4027
|
+
* @internal
|
|
4028
|
+
*/
|
|
4029
|
+
const filterSensitiveLog: (obj: AwsEcsServiceDeploymentConfigurationDeploymentCircuitBreakerDetails) => any;
|
|
4030
|
+
}
|
|
4031
|
+
/**
|
|
4032
|
+
* <p>Optional deployment parameters for the service.</p>
|
|
4033
|
+
*/
|
|
4034
|
+
export interface AwsEcsServiceDeploymentConfigurationDetails {
|
|
4035
|
+
/**
|
|
4036
|
+
* <p>Determines whether a service deployment fails if a service cannot reach a steady state.</p>
|
|
4037
|
+
*/
|
|
4038
|
+
DeploymentCircuitBreaker?: AwsEcsServiceDeploymentConfigurationDeploymentCircuitBreakerDetails;
|
|
3570
4039
|
/**
|
|
3571
4040
|
* <p>For a service that uses the rolling update (<code>ECS</code>) deployment type, the maximum number of tasks in a service that are allowed in the <code>RUNNING</code> or <code>PENDING</code> state during a deployment, and for tasks that use the EC2 launch type, when any container instances are in the <code>DRAINING</code> state. Provided as a percentage of the desired number of tasks. The default value is 200%.</p>
|
|
3572
4041
|
* <p>For a service that uses the blue/green (<code>CODE_DEPLOY</code>) or <code>EXTERNAL</code> deployment types, and tasks that use the EC2 launch type, the maximum number of tasks in the service that remain in the <code>RUNNING</code> state while the container instances are in the <code>DRAINING</code> state.</p>
|
|
@@ -6308,37 +6777,37 @@ export declare namespace AwsIamUserDetails {
|
|
|
6308
6777
|
const filterSensitiveLog: (obj: AwsIamUserDetails) => any;
|
|
6309
6778
|
}
|
|
6310
6779
|
/**
|
|
6311
|
-
* <p>Contains metadata about
|
|
6780
|
+
* <p>Contains metadata about an KMS key.</p>
|
|
6312
6781
|
*/
|
|
6313
6782
|
export interface AwsKmsKeyDetails {
|
|
6314
6783
|
/**
|
|
6315
|
-
* <p>The twelve-digit account ID of the Amazon Web Services account that owns the
|
|
6784
|
+
* <p>The twelve-digit account ID of the Amazon Web Services account that owns the KMS key.</p>
|
|
6316
6785
|
*/
|
|
6317
6786
|
AWSAccountId?: string;
|
|
6318
6787
|
/**
|
|
6319
|
-
* <p>Indicates when the
|
|
6788
|
+
* <p>Indicates when the KMS key was created.</p>
|
|
6320
6789
|
* <p>Uses the <code>date-time</code> format specified in <a href="https://tools.ietf.org/html/rfc3339#section-5.6">RFC 3339 section 5.6, Internet
|
|
6321
6790
|
* Date/Time Format</a>. The value cannot contain spaces. For example,
|
|
6322
6791
|
* <code>2020-03-22T13:22:13.933Z</code>.</p>
|
|
6323
6792
|
*/
|
|
6324
6793
|
CreationDate?: number;
|
|
6325
6794
|
/**
|
|
6326
|
-
* <p>The globally unique identifier for the
|
|
6795
|
+
* <p>The globally unique identifier for the KMS key.</p>
|
|
6327
6796
|
*/
|
|
6328
6797
|
KeyId?: string;
|
|
6329
6798
|
/**
|
|
6330
|
-
* <p>The manager of the
|
|
6799
|
+
* <p>The manager of the KMS key. KMS keys in your Amazon Web Services account are either customer managed or Amazon Web Services managed.</p>
|
|
6331
6800
|
*/
|
|
6332
6801
|
KeyManager?: string;
|
|
6333
6802
|
/**
|
|
6334
|
-
* <p>The state of the
|
|
6803
|
+
* <p>The state of the KMS key.</p>
|
|
6335
6804
|
*/
|
|
6336
6805
|
KeyState?: string;
|
|
6337
6806
|
/**
|
|
6338
|
-
* <p>The source of the
|
|
6807
|
+
* <p>The source of the KMS key material.</p>
|
|
6339
6808
|
* <p>When this value is <code>AWS_KMS</code>, KMS created the key material.</p>
|
|
6340
6809
|
* <p>When this value is <code>EXTERNAL</code>, the key material was imported from your
|
|
6341
|
-
* existing key management infrastructure or the
|
|
6810
|
+
* existing key management infrastructure or the KMS key lacks key material.</p>
|
|
6342
6811
|
* <p>When this value is <code>AWS_CLOUDHSM</code>, the key material was created in the CloudHSM cluster associated with a custom key store.</p>
|
|
6343
6812
|
*/
|
|
6344
6813
|
Origin?: string;
|
|
@@ -6346,6 +6815,10 @@ export interface AwsKmsKeyDetails {
|
|
|
6346
6815
|
* <p>A description of the key.</p>
|
|
6347
6816
|
*/
|
|
6348
6817
|
Description?: string;
|
|
6818
|
+
/**
|
|
6819
|
+
* <p>Whether the key has key rotation enabled.</p>
|
|
6820
|
+
*/
|
|
6821
|
+
KeyRotationStatus?: boolean;
|
|
6349
6822
|
}
|
|
6350
6823
|
export declare namespace AwsKmsKeyDetails {
|
|
6351
6824
|
/**
|
|
@@ -6521,7 +6994,7 @@ export interface AwsLambdaFunctionDetails {
|
|
|
6521
6994
|
*/
|
|
6522
6995
|
Handler?: string;
|
|
6523
6996
|
/**
|
|
6524
|
-
* <p>The KMS key that is used to encrypt the function's environment variables. This key is only returned if you've configured a customer managed
|
|
6997
|
+
* <p>The KMS key that is used to encrypt the function's environment variables. This key is only returned if you've configured a customer managed customer managed key.</p>
|
|
6525
6998
|
*/
|
|
6526
6999
|
KmsKeyArn?: string;
|
|
6527
7000
|
/**
|
|
@@ -8698,63 +9171,306 @@ export declare namespace AwsS3BucketBucketLifecycleConfigurationDetails {
|
|
|
8698
9171
|
const filterSensitiveLog: (obj: AwsS3BucketBucketLifecycleConfigurationDetails) => any;
|
|
8699
9172
|
}
|
|
8700
9173
|
/**
|
|
8701
|
-
* <p>
|
|
8702
|
-
* bucket
|
|
9174
|
+
* <p>Information about logging for
|
|
9175
|
+
* the S3 bucket</p>
|
|
8703
9176
|
*/
|
|
8704
|
-
export interface
|
|
9177
|
+
export interface AwsS3BucketLoggingConfiguration {
|
|
8705
9178
|
/**
|
|
8706
|
-
* <p>
|
|
9179
|
+
* <p>The name of the S3 bucket where log files for the S3 bucket are stored.</p>
|
|
8707
9180
|
*/
|
|
8708
|
-
|
|
9181
|
+
DestinationBucketName?: string;
|
|
8709
9182
|
/**
|
|
8710
|
-
* <p>
|
|
9183
|
+
* <p>The prefix added to log files for the S3 bucket.</p>
|
|
8711
9184
|
*/
|
|
8712
|
-
|
|
9185
|
+
LogFilePrefix?: string;
|
|
8713
9186
|
}
|
|
8714
|
-
export declare namespace
|
|
9187
|
+
export declare namespace AwsS3BucketLoggingConfiguration {
|
|
8715
9188
|
/**
|
|
8716
9189
|
* @internal
|
|
8717
9190
|
*/
|
|
8718
|
-
const filterSensitiveLog: (obj:
|
|
9191
|
+
const filterSensitiveLog: (obj: AwsS3BucketLoggingConfiguration) => any;
|
|
9192
|
+
}
|
|
9193
|
+
export declare enum AwsS3BucketNotificationConfigurationS3KeyFilterRuleName {
|
|
9194
|
+
PREFIX = "Prefix",
|
|
9195
|
+
SUFFIX = "Suffix"
|
|
8719
9196
|
}
|
|
8720
9197
|
/**
|
|
8721
|
-
* <p>
|
|
9198
|
+
* <p>Details for a filter rule.</p>
|
|
8722
9199
|
*/
|
|
8723
|
-
export interface
|
|
9200
|
+
export interface AwsS3BucketNotificationConfigurationS3KeyFilterRule {
|
|
8724
9201
|
/**
|
|
8725
|
-
* <p>
|
|
8726
|
-
* <code>PUT</code> object request doesn't specify any server-side encryption, this default
|
|
8727
|
-
* encryption is applied.</p>
|
|
9202
|
+
* <p>Indicates whether the filter is based on the prefix or suffix of the Amazon S3 key.</p>
|
|
8728
9203
|
*/
|
|
8729
|
-
|
|
9204
|
+
Name?: AwsS3BucketNotificationConfigurationS3KeyFilterRuleName | string;
|
|
9205
|
+
/**
|
|
9206
|
+
* <p>The filter value.</p>
|
|
9207
|
+
*/
|
|
9208
|
+
Value?: string;
|
|
8730
9209
|
}
|
|
8731
|
-
export declare namespace
|
|
9210
|
+
export declare namespace AwsS3BucketNotificationConfigurationS3KeyFilterRule {
|
|
8732
9211
|
/**
|
|
8733
9212
|
* @internal
|
|
8734
9213
|
*/
|
|
8735
|
-
const filterSensitiveLog: (obj:
|
|
9214
|
+
const filterSensitiveLog: (obj: AwsS3BucketNotificationConfigurationS3KeyFilterRule) => any;
|
|
8736
9215
|
}
|
|
8737
9216
|
/**
|
|
8738
|
-
* <p>
|
|
9217
|
+
* <p>Details for an Amazon S3 filter.</p>
|
|
8739
9218
|
*/
|
|
8740
|
-
export interface
|
|
9219
|
+
export interface AwsS3BucketNotificationConfigurationS3KeyFilter {
|
|
8741
9220
|
/**
|
|
8742
|
-
* <p>The
|
|
9221
|
+
* <p>The filter rules for the filter.</p>
|
|
8743
9222
|
*/
|
|
8744
|
-
|
|
9223
|
+
FilterRules?: AwsS3BucketNotificationConfigurationS3KeyFilterRule[];
|
|
8745
9224
|
}
|
|
8746
|
-
export declare namespace
|
|
9225
|
+
export declare namespace AwsS3BucketNotificationConfigurationS3KeyFilter {
|
|
8747
9226
|
/**
|
|
8748
9227
|
* @internal
|
|
8749
9228
|
*/
|
|
8750
|
-
const filterSensitiveLog: (obj:
|
|
9229
|
+
const filterSensitiveLog: (obj: AwsS3BucketNotificationConfigurationS3KeyFilter) => any;
|
|
8751
9230
|
}
|
|
8752
9231
|
/**
|
|
8753
|
-
* <p>
|
|
9232
|
+
* <p>Filtering information for the notifications. The
|
|
9233
|
+
* filtering is based on Amazon S3 key names.</p>
|
|
8754
9234
|
*/
|
|
8755
|
-
export interface
|
|
9235
|
+
export interface AwsS3BucketNotificationConfigurationFilter {
|
|
8756
9236
|
/**
|
|
8757
|
-
* <p>
|
|
9237
|
+
* <p>Details for an Amazon S3 filter.</p>
|
|
9238
|
+
*/
|
|
9239
|
+
S3KeyFilter?: AwsS3BucketNotificationConfigurationS3KeyFilter;
|
|
9240
|
+
}
|
|
9241
|
+
export declare namespace AwsS3BucketNotificationConfigurationFilter {
|
|
9242
|
+
/**
|
|
9243
|
+
* @internal
|
|
9244
|
+
*/
|
|
9245
|
+
const filterSensitiveLog: (obj: AwsS3BucketNotificationConfigurationFilter) => any;
|
|
9246
|
+
}
|
|
9247
|
+
/**
|
|
9248
|
+
* <p>Details for an S3 bucket notification configuration.</p>
|
|
9249
|
+
*/
|
|
9250
|
+
export interface AwsS3BucketNotificationConfigurationDetail {
|
|
9251
|
+
/**
|
|
9252
|
+
* <p>The list of events that trigger a notification.</p>
|
|
9253
|
+
*/
|
|
9254
|
+
Events?: string[];
|
|
9255
|
+
/**
|
|
9256
|
+
* <p>The filters that determine which S3 buckets generate notifications.</p>
|
|
9257
|
+
*/
|
|
9258
|
+
Filter?: AwsS3BucketNotificationConfigurationFilter;
|
|
9259
|
+
/**
|
|
9260
|
+
* <p>The ARN of the Lambda function, Amazon SQS queue, or Amazon SNS topic that generates the
|
|
9261
|
+
* notification.</p>
|
|
9262
|
+
*/
|
|
9263
|
+
Destination?: string;
|
|
9264
|
+
/**
|
|
9265
|
+
* <p>Indicates the type of notification. Notifications can be generated using Lambda functions,
|
|
9266
|
+
* Amazon SQS queues or Amazon SNS topics.</p>
|
|
9267
|
+
*/
|
|
9268
|
+
Type?: string;
|
|
9269
|
+
}
|
|
9270
|
+
export declare namespace AwsS3BucketNotificationConfigurationDetail {
|
|
9271
|
+
/**
|
|
9272
|
+
* @internal
|
|
9273
|
+
*/
|
|
9274
|
+
const filterSensitiveLog: (obj: AwsS3BucketNotificationConfigurationDetail) => any;
|
|
9275
|
+
}
|
|
9276
|
+
/**
|
|
9277
|
+
* <p>The notification
|
|
9278
|
+
* configuration for the S3 bucket.</p>
|
|
9279
|
+
*/
|
|
9280
|
+
export interface AwsS3BucketNotificationConfiguration {
|
|
9281
|
+
/**
|
|
9282
|
+
* <p>Configurations for S3 bucket notifications.</p>
|
|
9283
|
+
*/
|
|
9284
|
+
Configurations?: AwsS3BucketNotificationConfigurationDetail[];
|
|
9285
|
+
}
|
|
9286
|
+
export declare namespace AwsS3BucketNotificationConfiguration {
|
|
9287
|
+
/**
|
|
9288
|
+
* @internal
|
|
9289
|
+
*/
|
|
9290
|
+
const filterSensitiveLog: (obj: AwsS3BucketNotificationConfiguration) => any;
|
|
9291
|
+
}
|
|
9292
|
+
/**
|
|
9293
|
+
* <p>The redirect behavior for requests
|
|
9294
|
+
* to the website.</p>
|
|
9295
|
+
*/
|
|
9296
|
+
export interface AwsS3BucketWebsiteConfigurationRedirectTo {
|
|
9297
|
+
/**
|
|
9298
|
+
* <p>The name of the host to redirect requests to.</p>
|
|
9299
|
+
*/
|
|
9300
|
+
Hostname?: string;
|
|
9301
|
+
/**
|
|
9302
|
+
* <p>The protocol to use when redirecting requests. By default, uses the same protocol as the
|
|
9303
|
+
* original request.</p>
|
|
9304
|
+
*/
|
|
9305
|
+
Protocol?: string;
|
|
9306
|
+
}
|
|
9307
|
+
export declare namespace AwsS3BucketWebsiteConfigurationRedirectTo {
|
|
9308
|
+
/**
|
|
9309
|
+
* @internal
|
|
9310
|
+
*/
|
|
9311
|
+
const filterSensitiveLog: (obj: AwsS3BucketWebsiteConfigurationRedirectTo) => any;
|
|
9312
|
+
}
|
|
9313
|
+
/**
|
|
9314
|
+
* <p>The condition that must be met in order to apply the routing rule.</p>
|
|
9315
|
+
*/
|
|
9316
|
+
export interface AwsS3BucketWebsiteConfigurationRoutingRuleCondition {
|
|
9317
|
+
/**
|
|
9318
|
+
* <p>Indicates to redirect the request if the HTTP error code matches this value.</p>
|
|
9319
|
+
*/
|
|
9320
|
+
HttpErrorCodeReturnedEquals?: string;
|
|
9321
|
+
/**
|
|
9322
|
+
* <p>Indicates to redirect the request if the key prefix matches this value.</p>
|
|
9323
|
+
*/
|
|
9324
|
+
KeyPrefixEquals?: string;
|
|
9325
|
+
}
|
|
9326
|
+
export declare namespace AwsS3BucketWebsiteConfigurationRoutingRuleCondition {
|
|
9327
|
+
/**
|
|
9328
|
+
* @internal
|
|
9329
|
+
*/
|
|
9330
|
+
const filterSensitiveLog: (obj: AwsS3BucketWebsiteConfigurationRoutingRuleCondition) => any;
|
|
9331
|
+
}
|
|
9332
|
+
/**
|
|
9333
|
+
* <p>The rules to redirect the request if the condition in <code>Condition</code> is
|
|
9334
|
+
* met.</p>
|
|
9335
|
+
*/
|
|
9336
|
+
export interface AwsS3BucketWebsiteConfigurationRoutingRuleRedirect {
|
|
9337
|
+
/**
|
|
9338
|
+
* <p>The host name to use in the redirect request.</p>
|
|
9339
|
+
*/
|
|
9340
|
+
Hostname?: string;
|
|
9341
|
+
/**
|
|
9342
|
+
* <p>The HTTP redirect code to use in the response.</p>
|
|
9343
|
+
*/
|
|
9344
|
+
HttpRedirectCode?: string;
|
|
9345
|
+
/**
|
|
9346
|
+
* <p>The protocol to use to redirect the request. By default, uses the protocol from the
|
|
9347
|
+
* original request.</p>
|
|
9348
|
+
*/
|
|
9349
|
+
Protocol?: string;
|
|
9350
|
+
/**
|
|
9351
|
+
* <p>The object key prefix to use in the redirect request.</p>
|
|
9352
|
+
* <p>Cannot be provided if <code>ReplaceKeyWith</code> is present.</p>
|
|
9353
|
+
*/
|
|
9354
|
+
ReplaceKeyPrefixWith?: string;
|
|
9355
|
+
/**
|
|
9356
|
+
* <p>The specific object key to use in the redirect request.</p>
|
|
9357
|
+
* <p>Cannot be provided if <code>ReplaceKeyPrefixWith</code> is present.</p>
|
|
9358
|
+
*/
|
|
9359
|
+
ReplaceKeyWith?: string;
|
|
9360
|
+
}
|
|
9361
|
+
export declare namespace AwsS3BucketWebsiteConfigurationRoutingRuleRedirect {
|
|
9362
|
+
/**
|
|
9363
|
+
* @internal
|
|
9364
|
+
*/
|
|
9365
|
+
const filterSensitiveLog: (obj: AwsS3BucketWebsiteConfigurationRoutingRuleRedirect) => any;
|
|
9366
|
+
}
|
|
9367
|
+
/**
|
|
9368
|
+
* <p>A rule for redirecting requests
|
|
9369
|
+
* to the website.</p>
|
|
9370
|
+
*/
|
|
9371
|
+
export interface AwsS3BucketWebsiteConfigurationRoutingRule {
|
|
9372
|
+
/**
|
|
9373
|
+
* <p>Provides the condition that must be met in order to apply the routing rule.</p>
|
|
9374
|
+
*/
|
|
9375
|
+
Condition?: AwsS3BucketWebsiteConfigurationRoutingRuleCondition;
|
|
9376
|
+
/**
|
|
9377
|
+
* <p>Provides the rules to redirect the request if the condition in <code>Condition</code> is
|
|
9378
|
+
* met.</p>
|
|
9379
|
+
*/
|
|
9380
|
+
Redirect?: AwsS3BucketWebsiteConfigurationRoutingRuleRedirect;
|
|
9381
|
+
}
|
|
9382
|
+
export declare namespace AwsS3BucketWebsiteConfigurationRoutingRule {
|
|
9383
|
+
/**
|
|
9384
|
+
* @internal
|
|
9385
|
+
*/
|
|
9386
|
+
const filterSensitiveLog: (obj: AwsS3BucketWebsiteConfigurationRoutingRule) => any;
|
|
9387
|
+
}
|
|
9388
|
+
/**
|
|
9389
|
+
* <p>Website parameters for the S3
|
|
9390
|
+
* bucket.</p>
|
|
9391
|
+
*/
|
|
9392
|
+
export interface AwsS3BucketWebsiteConfiguration {
|
|
9393
|
+
/**
|
|
9394
|
+
* <p>The name of the error document for the website.</p>
|
|
9395
|
+
*/
|
|
9396
|
+
ErrorDocument?: string;
|
|
9397
|
+
/**
|
|
9398
|
+
* <p>The name of the index document for the website.</p>
|
|
9399
|
+
*/
|
|
9400
|
+
IndexDocumentSuffix?: string;
|
|
9401
|
+
/**
|
|
9402
|
+
* <p>The redirect behavior for requests to the website.</p>
|
|
9403
|
+
*/
|
|
9404
|
+
RedirectAllRequestsTo?: AwsS3BucketWebsiteConfigurationRedirectTo;
|
|
9405
|
+
/**
|
|
9406
|
+
* <p>The rules for applying redirects for requests to the website.</p>
|
|
9407
|
+
*/
|
|
9408
|
+
RoutingRules?: AwsS3BucketWebsiteConfigurationRoutingRule[];
|
|
9409
|
+
}
|
|
9410
|
+
export declare namespace AwsS3BucketWebsiteConfiguration {
|
|
9411
|
+
/**
|
|
9412
|
+
* @internal
|
|
9413
|
+
*/
|
|
9414
|
+
const filterSensitiveLog: (obj: AwsS3BucketWebsiteConfiguration) => any;
|
|
9415
|
+
}
|
|
9416
|
+
/**
|
|
9417
|
+
* <p>Specifies the default server-side encryption to apply to new objects in the
|
|
9418
|
+
* bucket.</p>
|
|
9419
|
+
*/
|
|
9420
|
+
export interface AwsS3BucketServerSideEncryptionByDefault {
|
|
9421
|
+
/**
|
|
9422
|
+
* <p>Server-side encryption algorithm to use for the default encryption.</p>
|
|
9423
|
+
*/
|
|
9424
|
+
SSEAlgorithm?: string;
|
|
9425
|
+
/**
|
|
9426
|
+
* <p>KMS key ID to use for the default encryption.</p>
|
|
9427
|
+
*/
|
|
9428
|
+
KMSMasterKeyID?: string;
|
|
9429
|
+
}
|
|
9430
|
+
export declare namespace AwsS3BucketServerSideEncryptionByDefault {
|
|
9431
|
+
/**
|
|
9432
|
+
* @internal
|
|
9433
|
+
*/
|
|
9434
|
+
const filterSensitiveLog: (obj: AwsS3BucketServerSideEncryptionByDefault) => any;
|
|
9435
|
+
}
|
|
9436
|
+
/**
|
|
9437
|
+
* <p>An encryption rule to apply to the S3 bucket.</p>
|
|
9438
|
+
*/
|
|
9439
|
+
export interface AwsS3BucketServerSideEncryptionRule {
|
|
9440
|
+
/**
|
|
9441
|
+
* <p>Specifies the default server-side encryption to apply to new objects in the bucket. If a
|
|
9442
|
+
* <code>PUT</code> object request doesn't specify any server-side encryption, this default
|
|
9443
|
+
* encryption is applied.</p>
|
|
9444
|
+
*/
|
|
9445
|
+
ApplyServerSideEncryptionByDefault?: AwsS3BucketServerSideEncryptionByDefault;
|
|
9446
|
+
}
|
|
9447
|
+
export declare namespace AwsS3BucketServerSideEncryptionRule {
|
|
9448
|
+
/**
|
|
9449
|
+
* @internal
|
|
9450
|
+
*/
|
|
9451
|
+
const filterSensitiveLog: (obj: AwsS3BucketServerSideEncryptionRule) => any;
|
|
9452
|
+
}
|
|
9453
|
+
/**
|
|
9454
|
+
* <p>The encryption configuration for the S3 bucket.</p>
|
|
9455
|
+
*/
|
|
9456
|
+
export interface AwsS3BucketServerSideEncryptionConfiguration {
|
|
9457
|
+
/**
|
|
9458
|
+
* <p>The encryption rules that are applied to the S3 bucket.</p>
|
|
9459
|
+
*/
|
|
9460
|
+
Rules?: AwsS3BucketServerSideEncryptionRule[];
|
|
9461
|
+
}
|
|
9462
|
+
export declare namespace AwsS3BucketServerSideEncryptionConfiguration {
|
|
9463
|
+
/**
|
|
9464
|
+
* @internal
|
|
9465
|
+
*/
|
|
9466
|
+
const filterSensitiveLog: (obj: AwsS3BucketServerSideEncryptionConfiguration) => any;
|
|
9467
|
+
}
|
|
9468
|
+
/**
|
|
9469
|
+
* <p>The details of an Amazon S3 bucket.</p>
|
|
9470
|
+
*/
|
|
9471
|
+
export interface AwsS3BucketDetails {
|
|
9472
|
+
/**
|
|
9473
|
+
* <p>The canonical user ID of the owner of the S3 bucket.</p>
|
|
8758
9474
|
*/
|
|
8759
9475
|
OwnerId?: string;
|
|
8760
9476
|
/**
|
|
@@ -8780,6 +9496,22 @@ export interface AwsS3BucketDetails {
|
|
|
8780
9496
|
* <p>Provides information about the Amazon S3 Public Access Block configuration for the S3 bucket.</p>
|
|
8781
9497
|
*/
|
|
8782
9498
|
PublicAccessBlockConfiguration?: AwsS3AccountPublicAccessBlockDetails;
|
|
9499
|
+
/**
|
|
9500
|
+
* <p>The access control list for the S3 bucket.</p>
|
|
9501
|
+
*/
|
|
9502
|
+
AccessControlList?: string;
|
|
9503
|
+
/**
|
|
9504
|
+
* <p>The logging configuration for the S3 bucket.</p>
|
|
9505
|
+
*/
|
|
9506
|
+
BucketLoggingConfiguration?: AwsS3BucketLoggingConfiguration;
|
|
9507
|
+
/**
|
|
9508
|
+
* <p>The website configuration parameters for the S3 bucket.</p>
|
|
9509
|
+
*/
|
|
9510
|
+
BucketWebsiteConfiguration?: AwsS3BucketWebsiteConfiguration;
|
|
9511
|
+
/**
|
|
9512
|
+
* <p>The notification configuration for the S3 bucket.</p>
|
|
9513
|
+
*/
|
|
9514
|
+
BucketNotificationConfiguration?: AwsS3BucketNotificationConfiguration;
|
|
8783
9515
|
}
|
|
8784
9516
|
export declare namespace AwsS3BucketDetails {
|
|
8785
9517
|
/**
|
|
@@ -8817,8 +9549,7 @@ export interface AwsS3ObjectDetails {
|
|
|
8817
9549
|
*/
|
|
8818
9550
|
ServerSideEncryption?: string;
|
|
8819
9551
|
/**
|
|
8820
|
-
* <p>The identifier of the KMS symmetric customer managed
|
|
8821
|
-
* customer master key (CMK) that was used for the object.</p>
|
|
9552
|
+
* <p>The identifier of the KMS symmetric customer managed key that was used for the object.</p>
|
|
8822
9553
|
*/
|
|
8823
9554
|
SSEKMSKeyId?: string;
|
|
8824
9555
|
}
|
|
@@ -8856,7 +9587,7 @@ export interface AwsSecretsManagerSecretDetails {
|
|
|
8856
9587
|
*/
|
|
8857
9588
|
RotationOccurredWithinFrequency?: boolean;
|
|
8858
9589
|
/**
|
|
8859
|
-
* <p>The ARN, Key ID, or alias of the KMS
|
|
9590
|
+
* <p>The ARN, Key ID, or alias of the KMS key used to encrypt the
|
|
8860
9591
|
* <code>SecretString</code> or <code>SecretBinary</code> values for versions of this
|
|
8861
9592
|
* secret.</p>
|
|
8862
9593
|
*/
|
|
@@ -9128,615 +9859,3 @@ export declare namespace PortRange {
|
|
|
9128
9859
|
*/
|
|
9129
9860
|
const filterSensitiveLog: (obj: PortRange) => any;
|
|
9130
9861
|
}
|
|
9131
|
-
/**
|
|
9132
|
-
* <p>The details of network-related information about a finding.</p>
|
|
9133
|
-
*/
|
|
9134
|
-
export interface Network {
|
|
9135
|
-
/**
|
|
9136
|
-
* <p>The direction of network traffic associated with a finding.</p>
|
|
9137
|
-
*/
|
|
9138
|
-
Direction?: NetworkDirection | string;
|
|
9139
|
-
/**
|
|
9140
|
-
* <p>The protocol of network-related information about a finding.</p>
|
|
9141
|
-
*/
|
|
9142
|
-
Protocol?: string;
|
|
9143
|
-
/**
|
|
9144
|
-
* <p>The range of open ports that is present on the network.</p>
|
|
9145
|
-
*/
|
|
9146
|
-
OpenPortRange?: PortRange;
|
|
9147
|
-
/**
|
|
9148
|
-
* <p>The source IPv4 address of network-related information about a finding.</p>
|
|
9149
|
-
*/
|
|
9150
|
-
SourceIpV4?: string;
|
|
9151
|
-
/**
|
|
9152
|
-
* <p>The source IPv6 address of network-related information about a finding.</p>
|
|
9153
|
-
*/
|
|
9154
|
-
SourceIpV6?: string;
|
|
9155
|
-
/**
|
|
9156
|
-
* <p>The source port of network-related information about a finding.</p>
|
|
9157
|
-
*/
|
|
9158
|
-
SourcePort?: number;
|
|
9159
|
-
/**
|
|
9160
|
-
* <p>The source domain of network-related information about a finding.</p>
|
|
9161
|
-
*/
|
|
9162
|
-
SourceDomain?: string;
|
|
9163
|
-
/**
|
|
9164
|
-
* <p>The source media access control (MAC) address of network-related information about a
|
|
9165
|
-
* finding.</p>
|
|
9166
|
-
*/
|
|
9167
|
-
SourceMac?: string;
|
|
9168
|
-
/**
|
|
9169
|
-
* <p>The destination IPv4 address of network-related information about a finding.</p>
|
|
9170
|
-
*/
|
|
9171
|
-
DestinationIpV4?: string;
|
|
9172
|
-
/**
|
|
9173
|
-
* <p>The destination IPv6 address of network-related information about a finding.</p>
|
|
9174
|
-
*/
|
|
9175
|
-
DestinationIpV6?: string;
|
|
9176
|
-
/**
|
|
9177
|
-
* <p>The destination port of network-related information about a finding.</p>
|
|
9178
|
-
*/
|
|
9179
|
-
DestinationPort?: number;
|
|
9180
|
-
/**
|
|
9181
|
-
* <p>The destination domain of network-related information about a finding.</p>
|
|
9182
|
-
*/
|
|
9183
|
-
DestinationDomain?: string;
|
|
9184
|
-
}
|
|
9185
|
-
export declare namespace Network {
|
|
9186
|
-
/**
|
|
9187
|
-
* @internal
|
|
9188
|
-
*/
|
|
9189
|
-
const filterSensitiveLog: (obj: Network) => any;
|
|
9190
|
-
}
|
|
9191
|
-
/**
|
|
9192
|
-
* <p>Information about the destination of the next component in the network path.</p>
|
|
9193
|
-
*/
|
|
9194
|
-
export interface NetworkPathComponentDetails {
|
|
9195
|
-
/**
|
|
9196
|
-
* <p>The IP addresses of the destination.</p>
|
|
9197
|
-
*/
|
|
9198
|
-
Address?: string[];
|
|
9199
|
-
/**
|
|
9200
|
-
* <p>A list of port ranges for the destination.</p>
|
|
9201
|
-
*/
|
|
9202
|
-
PortRanges?: PortRange[];
|
|
9203
|
-
}
|
|
9204
|
-
export declare namespace NetworkPathComponentDetails {
|
|
9205
|
-
/**
|
|
9206
|
-
* @internal
|
|
9207
|
-
*/
|
|
9208
|
-
const filterSensitiveLog: (obj: NetworkPathComponentDetails) => any;
|
|
9209
|
-
}
|
|
9210
|
-
/**
|
|
9211
|
-
* <p>Details about a network path component that occurs before or after the current
|
|
9212
|
-
* component.</p>
|
|
9213
|
-
*/
|
|
9214
|
-
export interface NetworkHeader {
|
|
9215
|
-
/**
|
|
9216
|
-
* <p>The protocol used for the component.</p>
|
|
9217
|
-
*/
|
|
9218
|
-
Protocol?: string;
|
|
9219
|
-
/**
|
|
9220
|
-
* <p>Information about the destination of the component.</p>
|
|
9221
|
-
*/
|
|
9222
|
-
Destination?: NetworkPathComponentDetails;
|
|
9223
|
-
/**
|
|
9224
|
-
* <p>Information about the origin of the component.</p>
|
|
9225
|
-
*/
|
|
9226
|
-
Source?: NetworkPathComponentDetails;
|
|
9227
|
-
}
|
|
9228
|
-
export declare namespace NetworkHeader {
|
|
9229
|
-
/**
|
|
9230
|
-
* @internal
|
|
9231
|
-
*/
|
|
9232
|
-
const filterSensitiveLog: (obj: NetworkHeader) => any;
|
|
9233
|
-
}
|
|
9234
|
-
/**
|
|
9235
|
-
* <p>Information about a network path component.</p>
|
|
9236
|
-
*/
|
|
9237
|
-
export interface NetworkPathComponent {
|
|
9238
|
-
/**
|
|
9239
|
-
* <p>The identifier of a component in the network path.</p>
|
|
9240
|
-
*/
|
|
9241
|
-
ComponentId?: string;
|
|
9242
|
-
/**
|
|
9243
|
-
* <p>The type of component.</p>
|
|
9244
|
-
*/
|
|
9245
|
-
ComponentType?: string;
|
|
9246
|
-
/**
|
|
9247
|
-
* <p>Information about the component that comes after the current component in the network
|
|
9248
|
-
* path.</p>
|
|
9249
|
-
*/
|
|
9250
|
-
Egress?: NetworkHeader;
|
|
9251
|
-
/**
|
|
9252
|
-
* <p>Information about the component that comes before the current node in the network
|
|
9253
|
-
* path.</p>
|
|
9254
|
-
*/
|
|
9255
|
-
Ingress?: NetworkHeader;
|
|
9256
|
-
}
|
|
9257
|
-
export declare namespace NetworkPathComponent {
|
|
9258
|
-
/**
|
|
9259
|
-
* @internal
|
|
9260
|
-
*/
|
|
9261
|
-
const filterSensitiveLog: (obj: NetworkPathComponent) => any;
|
|
9262
|
-
}
|
|
9263
|
-
/**
|
|
9264
|
-
* <p>A user-defined note added to a finding.</p>
|
|
9265
|
-
*/
|
|
9266
|
-
export interface Note {
|
|
9267
|
-
/**
|
|
9268
|
-
* <p>The text of a note.</p>
|
|
9269
|
-
*/
|
|
9270
|
-
Text: string | undefined;
|
|
9271
|
-
/**
|
|
9272
|
-
* <p>The principal that created a note.</p>
|
|
9273
|
-
*/
|
|
9274
|
-
UpdatedBy: string | undefined;
|
|
9275
|
-
/**
|
|
9276
|
-
* <p>The timestamp of when the note was updated.</p>
|
|
9277
|
-
* <p>Uses the <code>date-time</code> format specified in <a href="https://tools.ietf.org/html/rfc3339#section-5.6">RFC 3339 section 5.6, Internet
|
|
9278
|
-
* Date/Time Format</a>. The value cannot contain spaces. For example,
|
|
9279
|
-
* <code>2020-03-22T13:22:13.933Z</code>.</p>
|
|
9280
|
-
*/
|
|
9281
|
-
UpdatedAt: string | undefined;
|
|
9282
|
-
}
|
|
9283
|
-
export declare namespace Note {
|
|
9284
|
-
/**
|
|
9285
|
-
* @internal
|
|
9286
|
-
*/
|
|
9287
|
-
const filterSensitiveLog: (obj: Note) => any;
|
|
9288
|
-
}
|
|
9289
|
-
/**
|
|
9290
|
-
* <p>Provides an overview of the patch compliance status for an instance against a selected
|
|
9291
|
-
* compliance standard.</p>
|
|
9292
|
-
*/
|
|
9293
|
-
export interface PatchSummary {
|
|
9294
|
-
/**
|
|
9295
|
-
* <p>The identifier of the compliance standard that was used to determine the patch
|
|
9296
|
-
* compliance status.</p>
|
|
9297
|
-
*/
|
|
9298
|
-
Id: string | undefined;
|
|
9299
|
-
/**
|
|
9300
|
-
* <p>The number of patches from the compliance standard that were installed
|
|
9301
|
-
* successfully.</p>
|
|
9302
|
-
*/
|
|
9303
|
-
InstalledCount?: number;
|
|
9304
|
-
/**
|
|
9305
|
-
* <p>The number of patches that are part of the compliance standard but are not installed.
|
|
9306
|
-
* The count includes patches that failed to install.</p>
|
|
9307
|
-
*/
|
|
9308
|
-
MissingCount?: number;
|
|
9309
|
-
/**
|
|
9310
|
-
* <p>The number of patches from the compliance standard that failed to install.</p>
|
|
9311
|
-
*/
|
|
9312
|
-
FailedCount?: number;
|
|
9313
|
-
/**
|
|
9314
|
-
* <p>The number of installed patches that are not part of the compliance standard.</p>
|
|
9315
|
-
*/
|
|
9316
|
-
InstalledOtherCount?: number;
|
|
9317
|
-
/**
|
|
9318
|
-
* <p>The number of patches that are installed but are also on a list of patches that the
|
|
9319
|
-
* customer rejected.</p>
|
|
9320
|
-
*/
|
|
9321
|
-
InstalledRejectedCount?: number;
|
|
9322
|
-
/**
|
|
9323
|
-
* <p>The number of patches that were applied, but that require the instance to be rebooted in
|
|
9324
|
-
* order to be marked as installed.</p>
|
|
9325
|
-
*/
|
|
9326
|
-
InstalledPendingReboot?: number;
|
|
9327
|
-
/**
|
|
9328
|
-
* <p>Indicates when the operation started.</p>
|
|
9329
|
-
* <p>Uses the <code>date-time</code> format specified in <a href="https://tools.ietf.org/html/rfc3339#section-5.6">RFC 3339 section 5.6, Internet
|
|
9330
|
-
* Date/Time Format</a>. The value cannot contain spaces. For example,
|
|
9331
|
-
* <code>2020-03-22T13:22:13.933Z</code>.</p>
|
|
9332
|
-
*/
|
|
9333
|
-
OperationStartTime?: string;
|
|
9334
|
-
/**
|
|
9335
|
-
* <p>Indicates when the operation completed.</p>
|
|
9336
|
-
* <p>Uses the <code>date-time</code> format specified in <a href="https://tools.ietf.org/html/rfc3339#section-5.6">RFC 3339 section 5.6, Internet
|
|
9337
|
-
* Date/Time Format</a>. The value cannot contain spaces. For example,
|
|
9338
|
-
* <code>2020-03-22T13:22:13.933Z</code>.</p>
|
|
9339
|
-
*/
|
|
9340
|
-
OperationEndTime?: string;
|
|
9341
|
-
/**
|
|
9342
|
-
* <p>The reboot option specified for the instance.</p>
|
|
9343
|
-
*/
|
|
9344
|
-
RebootOption?: string;
|
|
9345
|
-
/**
|
|
9346
|
-
* <p>The type of patch operation performed. For Patch Manager, the values are
|
|
9347
|
-
* <code>SCAN</code> and <code>INSTALL</code>. </p>
|
|
9348
|
-
*/
|
|
9349
|
-
Operation?: string;
|
|
9350
|
-
}
|
|
9351
|
-
export declare namespace PatchSummary {
|
|
9352
|
-
/**
|
|
9353
|
-
* @internal
|
|
9354
|
-
*/
|
|
9355
|
-
const filterSensitiveLog: (obj: PatchSummary) => any;
|
|
9356
|
-
}
|
|
9357
|
-
/**
|
|
9358
|
-
* <p>The details of process-related information about a finding.</p>
|
|
9359
|
-
*/
|
|
9360
|
-
export interface ProcessDetails {
|
|
9361
|
-
/**
|
|
9362
|
-
* <p>The name of the process.</p>
|
|
9363
|
-
*/
|
|
9364
|
-
Name?: string;
|
|
9365
|
-
/**
|
|
9366
|
-
* <p>The path to the process executable.</p>
|
|
9367
|
-
*/
|
|
9368
|
-
Path?: string;
|
|
9369
|
-
/**
|
|
9370
|
-
* <p>The process ID.</p>
|
|
9371
|
-
*/
|
|
9372
|
-
Pid?: number;
|
|
9373
|
-
/**
|
|
9374
|
-
* <p>The parent process ID.</p>
|
|
9375
|
-
*/
|
|
9376
|
-
ParentPid?: number;
|
|
9377
|
-
/**
|
|
9378
|
-
* <p>Indicates when the process was launched.</p>
|
|
9379
|
-
* <p>Uses the <code>date-time</code> format specified in <a href="https://tools.ietf.org/html/rfc3339#section-5.6">RFC 3339 section 5.6, Internet
|
|
9380
|
-
* Date/Time Format</a>. The value cannot contain spaces. For example,
|
|
9381
|
-
* <code>2020-03-22T13:22:13.933Z</code>.</p>
|
|
9382
|
-
*/
|
|
9383
|
-
LaunchedAt?: string;
|
|
9384
|
-
/**
|
|
9385
|
-
* <p>Indicates when the process was terminated.</p>
|
|
9386
|
-
* <p>Uses the <code>date-time</code> format specified in <a href="https://tools.ietf.org/html/rfc3339#section-5.6">RFC 3339 section 5.6, Internet
|
|
9387
|
-
* Date/Time Format</a>. The value cannot contain spaces. For example,
|
|
9388
|
-
* <code>2020-03-22T13:22:13.933Z</code>.</p>
|
|
9389
|
-
*/
|
|
9390
|
-
TerminatedAt?: string;
|
|
9391
|
-
}
|
|
9392
|
-
export declare namespace ProcessDetails {
|
|
9393
|
-
/**
|
|
9394
|
-
* @internal
|
|
9395
|
-
*/
|
|
9396
|
-
const filterSensitiveLog: (obj: ProcessDetails) => any;
|
|
9397
|
-
}
|
|
9398
|
-
export declare enum RecordState {
|
|
9399
|
-
ACTIVE = "ACTIVE",
|
|
9400
|
-
ARCHIVED = "ARCHIVED"
|
|
9401
|
-
}
|
|
9402
|
-
/**
|
|
9403
|
-
* <p>A recommendation on how to remediate the issue identified in a finding.</p>
|
|
9404
|
-
*/
|
|
9405
|
-
export interface Recommendation {
|
|
9406
|
-
/**
|
|
9407
|
-
* <p>Describes the recommended steps to take to remediate an issue identified in a finding.</p>
|
|
9408
|
-
*/
|
|
9409
|
-
Text?: string;
|
|
9410
|
-
/**
|
|
9411
|
-
* <p>A URL to a page or site that contains information about how to remediate a finding.</p>
|
|
9412
|
-
*/
|
|
9413
|
-
Url?: string;
|
|
9414
|
-
}
|
|
9415
|
-
export declare namespace Recommendation {
|
|
9416
|
-
/**
|
|
9417
|
-
* @internal
|
|
9418
|
-
*/
|
|
9419
|
-
const filterSensitiveLog: (obj: Recommendation) => any;
|
|
9420
|
-
}
|
|
9421
|
-
/**
|
|
9422
|
-
* <p>Details about the remediation steps for a finding.</p>
|
|
9423
|
-
*/
|
|
9424
|
-
export interface Remediation {
|
|
9425
|
-
/**
|
|
9426
|
-
* <p>A recommendation on the steps to take to remediate the issue identified by a finding.</p>
|
|
9427
|
-
*/
|
|
9428
|
-
Recommendation?: Recommendation;
|
|
9429
|
-
}
|
|
9430
|
-
export declare namespace Remediation {
|
|
9431
|
-
/**
|
|
9432
|
-
* @internal
|
|
9433
|
-
*/
|
|
9434
|
-
const filterSensitiveLog: (obj: Remediation) => any;
|
|
9435
|
-
}
|
|
9436
|
-
/**
|
|
9437
|
-
* <p>An occurrence of sensitive data detected in a Microsoft Excel workbook, comma-separated value (CSV) file, or tab-separated value (TSV) file.</p>
|
|
9438
|
-
*/
|
|
9439
|
-
export interface Cell {
|
|
9440
|
-
/**
|
|
9441
|
-
* <p>The column number of the column that contains the data. For a Microsoft Excel workbook, the column number corresponds to the alphabetical column identifiers. For example, a value of 1 for Column corresponds to the A column in the workbook.</p>
|
|
9442
|
-
*/
|
|
9443
|
-
Column?: number;
|
|
9444
|
-
/**
|
|
9445
|
-
* <p>The row number of the row that contains the data.</p>
|
|
9446
|
-
*/
|
|
9447
|
-
Row?: number;
|
|
9448
|
-
/**
|
|
9449
|
-
* <p>The name of the column that contains the data.</p>
|
|
9450
|
-
*/
|
|
9451
|
-
ColumnName?: string;
|
|
9452
|
-
/**
|
|
9453
|
-
* <p>For a Microsoft Excel workbook, provides the location of the cell, as an absolute cell reference, that contains the data. For example, Sheet2!C5 for cell C5 on Sheet2.</p>
|
|
9454
|
-
*/
|
|
9455
|
-
CellReference?: string;
|
|
9456
|
-
}
|
|
9457
|
-
export declare namespace Cell {
|
|
9458
|
-
/**
|
|
9459
|
-
* @internal
|
|
9460
|
-
*/
|
|
9461
|
-
const filterSensitiveLog: (obj: Cell) => any;
|
|
9462
|
-
}
|
|
9463
|
-
/**
|
|
9464
|
-
* <p>Identifies where the sensitive data begins and ends.</p>
|
|
9465
|
-
*/
|
|
9466
|
-
export interface Range {
|
|
9467
|
-
/**
|
|
9468
|
-
* <p>The number of lines (for a line range) or characters (for an offset range) from the beginning of the file to the end of the sensitive data.</p>
|
|
9469
|
-
*/
|
|
9470
|
-
Start?: number;
|
|
9471
|
-
/**
|
|
9472
|
-
* <p>The number of lines (for a line range) or characters (for an offset range) from the beginning of the file to the end of the sensitive data.</p>
|
|
9473
|
-
*/
|
|
9474
|
-
End?: number;
|
|
9475
|
-
/**
|
|
9476
|
-
* <p>In the line where the sensitive data starts, the column within the line where the sensitive data starts.</p>
|
|
9477
|
-
*/
|
|
9478
|
-
StartColumn?: number;
|
|
9479
|
-
}
|
|
9480
|
-
export declare namespace Range {
|
|
9481
|
-
/**
|
|
9482
|
-
* @internal
|
|
9483
|
-
*/
|
|
9484
|
-
const filterSensitiveLog: (obj: Range) => any;
|
|
9485
|
-
}
|
|
9486
|
-
/**
|
|
9487
|
-
* <p>An occurrence of sensitive data in an Adobe Portable Document Format (PDF) file.</p>
|
|
9488
|
-
*/
|
|
9489
|
-
export interface Page {
|
|
9490
|
-
/**
|
|
9491
|
-
* <p>The page number of the page that contains the sensitive data.</p>
|
|
9492
|
-
*/
|
|
9493
|
-
PageNumber?: number;
|
|
9494
|
-
/**
|
|
9495
|
-
* <p>An occurrence of sensitive data detected in a non-binary text file or a Microsoft Word file. Non-binary text files include files such as HTML, XML, JSON, and TXT files.</p>
|
|
9496
|
-
*/
|
|
9497
|
-
LineRange?: Range;
|
|
9498
|
-
/**
|
|
9499
|
-
* <p>An occurrence of sensitive data detected in a binary text file.</p>
|
|
9500
|
-
*/
|
|
9501
|
-
OffsetRange?: Range;
|
|
9502
|
-
}
|
|
9503
|
-
export declare namespace Page {
|
|
9504
|
-
/**
|
|
9505
|
-
* @internal
|
|
9506
|
-
*/
|
|
9507
|
-
const filterSensitiveLog: (obj: Page) => any;
|
|
9508
|
-
}
|
|
9509
|
-
/**
|
|
9510
|
-
* <p>An occurrence of sensitive data in an Apache Avro object container or an Apache Parquet file.</p>
|
|
9511
|
-
*/
|
|
9512
|
-
export interface _Record {
|
|
9513
|
-
/**
|
|
9514
|
-
* <p>The path, as a JSONPath expression, to the field in the record that contains the data. If the field name is longer than 20 characters, it is truncated. If the path is longer than 250 characters, it is truncated.</p>
|
|
9515
|
-
*/
|
|
9516
|
-
JsonPath?: string;
|
|
9517
|
-
/**
|
|
9518
|
-
* <p>The record index, starting from 0, for the record that contains the data.</p>
|
|
9519
|
-
*/
|
|
9520
|
-
RecordIndex?: number;
|
|
9521
|
-
}
|
|
9522
|
-
export declare namespace _Record {
|
|
9523
|
-
/**
|
|
9524
|
-
* @internal
|
|
9525
|
-
*/
|
|
9526
|
-
const filterSensitiveLog: (obj: _Record) => any;
|
|
9527
|
-
}
|
|
9528
|
-
/**
|
|
9529
|
-
* <p>The detected occurrences of sensitive data.</p>
|
|
9530
|
-
*/
|
|
9531
|
-
export interface Occurrences {
|
|
9532
|
-
/**
|
|
9533
|
-
* <p>Occurrences of sensitive data detected in a non-binary text file or a Microsoft Word file. Non-binary text files include files such as HTML, XML, JSON, and TXT files.</p>
|
|
9534
|
-
*/
|
|
9535
|
-
LineRanges?: Range[];
|
|
9536
|
-
/**
|
|
9537
|
-
* <p>Occurrences of sensitive data detected in a binary text file.</p>
|
|
9538
|
-
*/
|
|
9539
|
-
OffsetRanges?: Range[];
|
|
9540
|
-
/**
|
|
9541
|
-
* <p>Occurrences of sensitive data in an Adobe Portable Document Format (PDF) file.</p>
|
|
9542
|
-
*/
|
|
9543
|
-
Pages?: Page[];
|
|
9544
|
-
/**
|
|
9545
|
-
* <p>Occurrences of sensitive data in an Apache Avro object container or an Apache Parquet file.</p>
|
|
9546
|
-
*/
|
|
9547
|
-
Records?: _Record[];
|
|
9548
|
-
/**
|
|
9549
|
-
* <p>Occurrences of sensitive data detected in Microsoft Excel workbooks, comma-separated value (CSV) files, or tab-separated value (TSV) files.</p>
|
|
9550
|
-
*/
|
|
9551
|
-
Cells?: Cell[];
|
|
9552
|
-
}
|
|
9553
|
-
export declare namespace Occurrences {
|
|
9554
|
-
/**
|
|
9555
|
-
* @internal
|
|
9556
|
-
*/
|
|
9557
|
-
const filterSensitiveLog: (obj: Occurrences) => any;
|
|
9558
|
-
}
|
|
9559
|
-
/**
|
|
9560
|
-
* <p>The list of detected instances of sensitive data.</p>
|
|
9561
|
-
*/
|
|
9562
|
-
export interface CustomDataIdentifiersDetections {
|
|
9563
|
-
/**
|
|
9564
|
-
* <p>The total number of occurrences of sensitive data that were detected.</p>
|
|
9565
|
-
*/
|
|
9566
|
-
Count?: number;
|
|
9567
|
-
/**
|
|
9568
|
-
* <p>The ARN of the custom identifier that was used to detect the sensitive data.</p>
|
|
9569
|
-
*/
|
|
9570
|
-
Arn?: string;
|
|
9571
|
-
/**
|
|
9572
|
-
* <p>he name of the custom identifier that detected the sensitive data.</p>
|
|
9573
|
-
*/
|
|
9574
|
-
Name?: string;
|
|
9575
|
-
/**
|
|
9576
|
-
* <p>Details about the sensitive data that was detected.</p>
|
|
9577
|
-
*/
|
|
9578
|
-
Occurrences?: Occurrences;
|
|
9579
|
-
}
|
|
9580
|
-
export declare namespace CustomDataIdentifiersDetections {
|
|
9581
|
-
/**
|
|
9582
|
-
* @internal
|
|
9583
|
-
*/
|
|
9584
|
-
const filterSensitiveLog: (obj: CustomDataIdentifiersDetections) => any;
|
|
9585
|
-
}
|
|
9586
|
-
/**
|
|
9587
|
-
* <p>Contains an instance of sensitive data that was detected by a customer-defined identifier.</p>
|
|
9588
|
-
*/
|
|
9589
|
-
export interface CustomDataIdentifiersResult {
|
|
9590
|
-
/**
|
|
9591
|
-
* <p>The list of detected instances of sensitive data.</p>
|
|
9592
|
-
*/
|
|
9593
|
-
Detections?: CustomDataIdentifiersDetections[];
|
|
9594
|
-
/**
|
|
9595
|
-
* <p>The total number of occurrences of sensitive data.</p>
|
|
9596
|
-
*/
|
|
9597
|
-
TotalCount?: number;
|
|
9598
|
-
}
|
|
9599
|
-
export declare namespace CustomDataIdentifiersResult {
|
|
9600
|
-
/**
|
|
9601
|
-
* @internal
|
|
9602
|
-
*/
|
|
9603
|
-
const filterSensitiveLog: (obj: CustomDataIdentifiersResult) => any;
|
|
9604
|
-
}
|
|
9605
|
-
/**
|
|
9606
|
-
* <p>The list of detected instances of sensitive data.</p>
|
|
9607
|
-
*/
|
|
9608
|
-
export interface SensitiveDataDetections {
|
|
9609
|
-
/**
|
|
9610
|
-
* <p>The total number of occurrences of sensitive data that were detected.</p>
|
|
9611
|
-
*/
|
|
9612
|
-
Count?: number;
|
|
9613
|
-
/**
|
|
9614
|
-
* <p>The type of sensitive data that was detected. For example, the type might indicate that the data is an email address.</p>
|
|
9615
|
-
*/
|
|
9616
|
-
Type?: string;
|
|
9617
|
-
/**
|
|
9618
|
-
* <p>Details about the sensitive data that was detected.</p>
|
|
9619
|
-
*/
|
|
9620
|
-
Occurrences?: Occurrences;
|
|
9621
|
-
}
|
|
9622
|
-
export declare namespace SensitiveDataDetections {
|
|
9623
|
-
/**
|
|
9624
|
-
* @internal
|
|
9625
|
-
*/
|
|
9626
|
-
const filterSensitiveLog: (obj: SensitiveDataDetections) => any;
|
|
9627
|
-
}
|
|
9628
|
-
/**
|
|
9629
|
-
* <p>Contains a detected instance of sensitive data that are based on built-in identifiers.</p>
|
|
9630
|
-
*/
|
|
9631
|
-
export interface SensitiveDataResult {
|
|
9632
|
-
/**
|
|
9633
|
-
* <p>The category of sensitive data that was detected. For example, the category can indicate that the sensitive data involved credentials, financial information, or personal information.</p>
|
|
9634
|
-
*/
|
|
9635
|
-
Category?: string;
|
|
9636
|
-
/**
|
|
9637
|
-
* <p>The list of detected instances of sensitive data.</p>
|
|
9638
|
-
*/
|
|
9639
|
-
Detections?: SensitiveDataDetections[];
|
|
9640
|
-
/**
|
|
9641
|
-
* <p>The total number of occurrences of sensitive data.</p>
|
|
9642
|
-
*/
|
|
9643
|
-
TotalCount?: number;
|
|
9644
|
-
}
|
|
9645
|
-
export declare namespace SensitiveDataResult {
|
|
9646
|
-
/**
|
|
9647
|
-
* @internal
|
|
9648
|
-
*/
|
|
9649
|
-
const filterSensitiveLog: (obj: SensitiveDataResult) => any;
|
|
9650
|
-
}
|
|
9651
|
-
/**
|
|
9652
|
-
* <p>Provides details about the current status of the sensitive data detection.</p>
|
|
9653
|
-
*/
|
|
9654
|
-
export interface ClassificationStatus {
|
|
9655
|
-
/**
|
|
9656
|
-
* <p>The code that represents the status of the sensitive data detection.</p>
|
|
9657
|
-
*/
|
|
9658
|
-
Code?: string;
|
|
9659
|
-
/**
|
|
9660
|
-
* <p>A longer description of the current status of the sensitive data detection.</p>
|
|
9661
|
-
*/
|
|
9662
|
-
Reason?: string;
|
|
9663
|
-
}
|
|
9664
|
-
export declare namespace ClassificationStatus {
|
|
9665
|
-
/**
|
|
9666
|
-
* @internal
|
|
9667
|
-
*/
|
|
9668
|
-
const filterSensitiveLog: (obj: ClassificationStatus) => any;
|
|
9669
|
-
}
|
|
9670
|
-
/**
|
|
9671
|
-
* <p>Details about the sensitive data that was detected on the resource.</p>
|
|
9672
|
-
*/
|
|
9673
|
-
export interface ClassificationResult {
|
|
9674
|
-
/**
|
|
9675
|
-
* <p>The type of content that the finding applies to.</p>
|
|
9676
|
-
*/
|
|
9677
|
-
MimeType?: string;
|
|
9678
|
-
/**
|
|
9679
|
-
* <p>The total size in bytes of the affected data.</p>
|
|
9680
|
-
*/
|
|
9681
|
-
SizeClassified?: number;
|
|
9682
|
-
/**
|
|
9683
|
-
* <p>Indicates whether there are additional occurrences of sensitive data that are not included in the finding. This occurs when the number of occurrences exceeds the maximum that can be included.</p>
|
|
9684
|
-
*/
|
|
9685
|
-
AdditionalOccurrences?: boolean;
|
|
9686
|
-
/**
|
|
9687
|
-
* <p>The current status of the sensitive data detection.</p>
|
|
9688
|
-
*/
|
|
9689
|
-
Status?: ClassificationStatus;
|
|
9690
|
-
/**
|
|
9691
|
-
* <p>Provides details about sensitive data that was identified based on built-in configuration.</p>
|
|
9692
|
-
*/
|
|
9693
|
-
SensitiveData?: SensitiveDataResult[];
|
|
9694
|
-
/**
|
|
9695
|
-
* <p>Provides details about sensitive data that was identified based on customer-defined configuration.</p>
|
|
9696
|
-
*/
|
|
9697
|
-
CustomDataIdentifiers?: CustomDataIdentifiersResult;
|
|
9698
|
-
}
|
|
9699
|
-
export declare namespace ClassificationResult {
|
|
9700
|
-
/**
|
|
9701
|
-
* @internal
|
|
9702
|
-
*/
|
|
9703
|
-
const filterSensitiveLog: (obj: ClassificationResult) => any;
|
|
9704
|
-
}
|
|
9705
|
-
/**
|
|
9706
|
-
* <p>Provides details about sensitive data that was detected on a resource.</p>
|
|
9707
|
-
*/
|
|
9708
|
-
export interface DataClassificationDetails {
|
|
9709
|
-
/**
|
|
9710
|
-
* <p>The path to the folder or file that contains the sensitive data.</p>
|
|
9711
|
-
*/
|
|
9712
|
-
DetailedResultsLocation?: string;
|
|
9713
|
-
/**
|
|
9714
|
-
* <p>The details about the sensitive data that was detected on the resource.</p>
|
|
9715
|
-
*/
|
|
9716
|
-
Result?: ClassificationResult;
|
|
9717
|
-
}
|
|
9718
|
-
export declare namespace DataClassificationDetails {
|
|
9719
|
-
/**
|
|
9720
|
-
* @internal
|
|
9721
|
-
*/
|
|
9722
|
-
const filterSensitiveLog: (obj: DataClassificationDetails) => any;
|
|
9723
|
-
}
|
|
9724
|
-
/**
|
|
9725
|
-
* <p>A wrapper type for the attributes of an Amazon SNS subscription.</p>
|
|
9726
|
-
*/
|
|
9727
|
-
export interface AwsSnsTopicSubscription {
|
|
9728
|
-
/**
|
|
9729
|
-
* <p>The subscription's endpoint (format depends on the protocol).</p>
|
|
9730
|
-
*/
|
|
9731
|
-
Endpoint?: string;
|
|
9732
|
-
/**
|
|
9733
|
-
* <p>The subscription's protocol.</p>
|
|
9734
|
-
*/
|
|
9735
|
-
Protocol?: string;
|
|
9736
|
-
}
|
|
9737
|
-
export declare namespace AwsSnsTopicSubscription {
|
|
9738
|
-
/**
|
|
9739
|
-
* @internal
|
|
9740
|
-
*/
|
|
9741
|
-
const filterSensitiveLog: (obj: AwsSnsTopicSubscription) => any;
|
|
9742
|
-
}
|