@aws-sdk/client-securityhub 3.42.0 → 3.47.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 +47 -0
- package/dist-cjs/endpoints.js +1 -24
- package/dist-cjs/models/models_0.js +228 -263
- package/dist-cjs/models/models_1.js +244 -11
- package/dist-cjs/protocols/Aws_restJson1.js +1225 -74
- package/dist-cjs/runtimeConfig.browser.js +7 -2
- package/dist-cjs/runtimeConfig.js +9 -3
- package/dist-es/endpoints.js +1 -24
- package/dist-es/models/models_0.js +148 -173
- package/dist-es/models/models_1.js +162 -4
- package/dist-es/protocols/Aws_restJson1.js +1020 -17
- package/dist-es/runtimeConfig.browser.js +12 -3
- package/dist-es/runtimeConfig.js +13 -6
- package/dist-types/SecurityHub.d.ts +13 -3
- package/dist-types/SecurityHubClient.d.ts +5 -1
- package/dist-types/commands/BatchImportFindingsCommand.d.ts +13 -2
- package/dist-types/commands/CreateMembersCommand.d.ts +0 -1
- package/dist-types/models/models_0.d.ts +1026 -1814
- package/dist-types/models/models_1.d.ts +1681 -11
- package/dist-types/runtimeConfig.browser.d.ts +3 -2
- package/dist-types/runtimeConfig.d.ts +4 -3
- package/dist-types/runtimeConfig.native.d.ts +1 -0
- package/dist-types/ts3.4/SecurityHubClient.d.ts +3 -1
- package/dist-types/ts3.4/models/models_0.d.ts +532 -837
- package/dist-types/ts3.4/models/models_1.d.ts +783 -5
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +3 -2
- package/dist-types/ts3.4/runtimeConfig.d.ts +4 -3
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +1 -0
- package/package.json +38 -45
|
@@ -32,12 +32,6 @@ export interface InternalException extends __SmithyException, $MetadataBearer {
|
|
|
32
32
|
Message?: string;
|
|
33
33
|
Code?: string;
|
|
34
34
|
}
|
|
35
|
-
export declare namespace InternalException {
|
|
36
|
-
/**
|
|
37
|
-
* @internal
|
|
38
|
-
*/
|
|
39
|
-
const filterSensitiveLog: (obj: InternalException) => any;
|
|
40
|
-
}
|
|
41
35
|
/**
|
|
42
36
|
* <p>There is an issue with the account used to make the request. Either Security Hub is not enabled
|
|
43
37
|
* for the account, or the account does not have permission to perform this action.</p>
|
|
@@ -48,12 +42,6 @@ export interface InvalidAccessException extends __SmithyException, $MetadataBear
|
|
|
48
42
|
Message?: string;
|
|
49
43
|
Code?: string;
|
|
50
44
|
}
|
|
51
|
-
export declare namespace InvalidAccessException {
|
|
52
|
-
/**
|
|
53
|
-
* @internal
|
|
54
|
-
*/
|
|
55
|
-
const filterSensitiveLog: (obj: InvalidAccessException) => any;
|
|
56
|
-
}
|
|
57
45
|
/**
|
|
58
46
|
* <p>The request was rejected because you supplied an invalid or out-of-range value for an
|
|
59
47
|
* input parameter.</p>
|
|
@@ -64,12 +52,6 @@ export interface InvalidInputException extends __SmithyException, $MetadataBeare
|
|
|
64
52
|
Message?: string;
|
|
65
53
|
Code?: string;
|
|
66
54
|
}
|
|
67
|
-
export declare namespace InvalidInputException {
|
|
68
|
-
/**
|
|
69
|
-
* @internal
|
|
70
|
-
*/
|
|
71
|
-
const filterSensitiveLog: (obj: InvalidInputException) => any;
|
|
72
|
-
}
|
|
73
55
|
/**
|
|
74
56
|
* <p>The request was rejected because it attempted to create resources beyond the current Amazon Web Services
|
|
75
57
|
* account or throttling limits. The error code describes the limit exceeded.</p>
|
|
@@ -80,12 +62,6 @@ export interface LimitExceededException extends __SmithyException, $MetadataBear
|
|
|
80
62
|
Message?: string;
|
|
81
63
|
Code?: string;
|
|
82
64
|
}
|
|
83
|
-
export declare namespace LimitExceededException {
|
|
84
|
-
/**
|
|
85
|
-
* @internal
|
|
86
|
-
*/
|
|
87
|
-
const filterSensitiveLog: (obj: LimitExceededException) => any;
|
|
88
|
-
}
|
|
89
65
|
/**
|
|
90
66
|
* <p>The request was rejected because we can't find the specified resource.</p>
|
|
91
67
|
*/
|
|
@@ -95,12 +71,6 @@ export interface ResourceNotFoundException extends __SmithyException, $MetadataB
|
|
|
95
71
|
Message?: string;
|
|
96
72
|
Code?: string;
|
|
97
73
|
}
|
|
98
|
-
export declare namespace ResourceNotFoundException {
|
|
99
|
-
/**
|
|
100
|
-
* @internal
|
|
101
|
-
*/
|
|
102
|
-
const filterSensitiveLog: (obj: ResourceNotFoundException) => any;
|
|
103
|
-
}
|
|
104
74
|
export interface AcceptInvitationRequest {
|
|
105
75
|
/**
|
|
106
76
|
* <p>The account ID of the Security Hub administrator account that sent the invitation.</p>
|
|
@@ -134,12 +104,6 @@ export interface AccessDeniedException extends __SmithyException, $MetadataBeare
|
|
|
134
104
|
Message?: string;
|
|
135
105
|
Code?: string;
|
|
136
106
|
}
|
|
137
|
-
export declare namespace AccessDeniedException {
|
|
138
|
-
/**
|
|
139
|
-
* @internal
|
|
140
|
-
*/
|
|
141
|
-
const filterSensitiveLog: (obj: AccessDeniedException) => any;
|
|
142
|
-
}
|
|
143
107
|
/**
|
|
144
108
|
* <p>The details of an Amazon Web Services account.</p>
|
|
145
109
|
*/
|
|
@@ -1189,6 +1153,136 @@ export declare namespace AwsApiGatewayV2StageDetails {
|
|
|
1189
1153
|
*/
|
|
1190
1154
|
const filterSensitiveLog: (obj: AwsApiGatewayV2StageDetails) => any;
|
|
1191
1155
|
}
|
|
1156
|
+
/**
|
|
1157
|
+
* <p>An Availability Zone for the automatic scaling group.</p>
|
|
1158
|
+
*/
|
|
1159
|
+
export interface AwsAutoScalingAutoScalingGroupAvailabilityZonesListDetails {
|
|
1160
|
+
/**
|
|
1161
|
+
* <p>The name of the Availability Zone.</p>
|
|
1162
|
+
*/
|
|
1163
|
+
Value?: string;
|
|
1164
|
+
}
|
|
1165
|
+
export declare namespace AwsAutoScalingAutoScalingGroupAvailabilityZonesListDetails {
|
|
1166
|
+
/**
|
|
1167
|
+
* @internal
|
|
1168
|
+
*/
|
|
1169
|
+
const filterSensitiveLog: (obj: AwsAutoScalingAutoScalingGroupAvailabilityZonesListDetails) => any;
|
|
1170
|
+
}
|
|
1171
|
+
/**
|
|
1172
|
+
* <p>Information about the instances distribution.</p>
|
|
1173
|
+
*/
|
|
1174
|
+
export interface AwsAutoScalingAutoScalingGroupMixedInstancesPolicyInstancesDistributionDetails {
|
|
1175
|
+
/**
|
|
1176
|
+
* <p>How to allocate instance types to fulfill On-Demand capacity.</p>
|
|
1177
|
+
*/
|
|
1178
|
+
OnDemandAllocationStrategy?: string;
|
|
1179
|
+
/**
|
|
1180
|
+
* <p>The minimum amount of the Auto Scaling group's capacity that must be fulfilled by On-Demand Instances.</p>
|
|
1181
|
+
*/
|
|
1182
|
+
OnDemandBaseCapacity?: number;
|
|
1183
|
+
/**
|
|
1184
|
+
* <p>The percentage of On-Demand Instances and Spot Instances for additional capacity beyond <code>OnDemandBaseCapacity</code>.</p>
|
|
1185
|
+
*/
|
|
1186
|
+
OnDemandPercentageAboveBaseCapacity?: number;
|
|
1187
|
+
/**
|
|
1188
|
+
* <p>How to allocate instances across Spot Instance pools.</p>
|
|
1189
|
+
*/
|
|
1190
|
+
SpotAllocationStrategy?: string;
|
|
1191
|
+
/**
|
|
1192
|
+
* <p>The number of Spot Instance pools across which to allocate your Spot Instances.</p>
|
|
1193
|
+
*/
|
|
1194
|
+
SpotInstancePools?: number;
|
|
1195
|
+
/**
|
|
1196
|
+
* <p>The maximum price per unit hour that you are willing to pay for a Spot Instance.</p>
|
|
1197
|
+
*/
|
|
1198
|
+
SpotMaxPrice?: string;
|
|
1199
|
+
}
|
|
1200
|
+
export declare namespace AwsAutoScalingAutoScalingGroupMixedInstancesPolicyInstancesDistributionDetails {
|
|
1201
|
+
/**
|
|
1202
|
+
* @internal
|
|
1203
|
+
*/
|
|
1204
|
+
const filterSensitiveLog: (obj: AwsAutoScalingAutoScalingGroupMixedInstancesPolicyInstancesDistributionDetails) => any;
|
|
1205
|
+
}
|
|
1206
|
+
/**
|
|
1207
|
+
* <p>Details about the launch template to use.</p>
|
|
1208
|
+
*/
|
|
1209
|
+
export interface AwsAutoScalingAutoScalingGroupMixedInstancesPolicyLaunchTemplateLaunchTemplateSpecification {
|
|
1210
|
+
/**
|
|
1211
|
+
* <p>The identifier of the launch template. You must specify either <code>LaunchTemplateId</code> or <code>LaunchTemplateName</code>.</p>
|
|
1212
|
+
*/
|
|
1213
|
+
LaunchTemplateId?: string;
|
|
1214
|
+
/**
|
|
1215
|
+
* <p>The name of the launch template. You must specify either <code>LaunchTemplateId</code> or <code>LaunchTemplateName</code>.</p>
|
|
1216
|
+
*/
|
|
1217
|
+
LaunchTemplateName?: string;
|
|
1218
|
+
/**
|
|
1219
|
+
* <p>Identifies the version of the launch template. You can specify a version identifier, or use the values <code>$Latest</code> or <code>$Default</code>.</p>
|
|
1220
|
+
*/
|
|
1221
|
+
Version?: string;
|
|
1222
|
+
}
|
|
1223
|
+
export declare namespace AwsAutoScalingAutoScalingGroupMixedInstancesPolicyLaunchTemplateLaunchTemplateSpecification {
|
|
1224
|
+
/**
|
|
1225
|
+
* @internal
|
|
1226
|
+
*/
|
|
1227
|
+
const filterSensitiveLog: (obj: AwsAutoScalingAutoScalingGroupMixedInstancesPolicyLaunchTemplateLaunchTemplateSpecification) => any;
|
|
1228
|
+
}
|
|
1229
|
+
/**
|
|
1230
|
+
* <p>Property values to use to override the values in the launch template.</p>
|
|
1231
|
+
*/
|
|
1232
|
+
export interface AwsAutoScalingAutoScalingGroupMixedInstancesPolicyLaunchTemplateOverridesListDetails {
|
|
1233
|
+
/**
|
|
1234
|
+
* <p>The instance type. For example, <code>m3.xlarge</code>.</p>
|
|
1235
|
+
*/
|
|
1236
|
+
InstanceType?: string;
|
|
1237
|
+
/**
|
|
1238
|
+
* <p>The number of capacity units provided by the specified instance type in terms of virtual CPUs, memory, storage, throughput, or other relative performance characteristic.</p>
|
|
1239
|
+
*/
|
|
1240
|
+
WeightedCapacity?: string;
|
|
1241
|
+
}
|
|
1242
|
+
export declare namespace AwsAutoScalingAutoScalingGroupMixedInstancesPolicyLaunchTemplateOverridesListDetails {
|
|
1243
|
+
/**
|
|
1244
|
+
* @internal
|
|
1245
|
+
*/
|
|
1246
|
+
const filterSensitiveLog: (obj: AwsAutoScalingAutoScalingGroupMixedInstancesPolicyLaunchTemplateOverridesListDetails) => any;
|
|
1247
|
+
}
|
|
1248
|
+
/**
|
|
1249
|
+
* <p>Describes a launch template and overrides for a mixed instances policy.</p>
|
|
1250
|
+
*/
|
|
1251
|
+
export interface AwsAutoScalingAutoScalingGroupMixedInstancesPolicyLaunchTemplateDetails {
|
|
1252
|
+
/**
|
|
1253
|
+
* <p>The launch template to use.</p>
|
|
1254
|
+
*/
|
|
1255
|
+
LaunchTemplateSpecification?: AwsAutoScalingAutoScalingGroupMixedInstancesPolicyLaunchTemplateLaunchTemplateSpecification;
|
|
1256
|
+
/**
|
|
1257
|
+
* <p>Property values to use to override the values in the launch template.</p>
|
|
1258
|
+
*/
|
|
1259
|
+
Overrides?: AwsAutoScalingAutoScalingGroupMixedInstancesPolicyLaunchTemplateOverridesListDetails[];
|
|
1260
|
+
}
|
|
1261
|
+
export declare namespace AwsAutoScalingAutoScalingGroupMixedInstancesPolicyLaunchTemplateDetails {
|
|
1262
|
+
/**
|
|
1263
|
+
* @internal
|
|
1264
|
+
*/
|
|
1265
|
+
const filterSensitiveLog: (obj: AwsAutoScalingAutoScalingGroupMixedInstancesPolicyLaunchTemplateDetails) => any;
|
|
1266
|
+
}
|
|
1267
|
+
/**
|
|
1268
|
+
* <p>The mixed instances policy for the automatic scaling group.</p>
|
|
1269
|
+
*/
|
|
1270
|
+
export interface AwsAutoScalingAutoScalingGroupMixedInstancesPolicyDetails {
|
|
1271
|
+
/**
|
|
1272
|
+
* <p>The instances distribution. The instances distribution specifies the distribution of On-Demand Instances and Spot Instances, the maximum price to pay for Spot Instances, and how the Auto Scaling group allocates instance types to fulfill On-Demand and Spot capacity.</p>
|
|
1273
|
+
*/
|
|
1274
|
+
InstancesDistribution?: AwsAutoScalingAutoScalingGroupMixedInstancesPolicyInstancesDistributionDetails;
|
|
1275
|
+
/**
|
|
1276
|
+
* <p>The launch template to use and the instance types (overrides) to use to provision EC2 instances to fulfill On-Demand and Spot capacities.</p>
|
|
1277
|
+
*/
|
|
1278
|
+
LaunchTemplate?: AwsAutoScalingAutoScalingGroupMixedInstancesPolicyLaunchTemplateDetails;
|
|
1279
|
+
}
|
|
1280
|
+
export declare namespace AwsAutoScalingAutoScalingGroupMixedInstancesPolicyDetails {
|
|
1281
|
+
/**
|
|
1282
|
+
* @internal
|
|
1283
|
+
*/
|
|
1284
|
+
const filterSensitiveLog: (obj: AwsAutoScalingAutoScalingGroupMixedInstancesPolicyDetails) => any;
|
|
1285
|
+
}
|
|
1192
1286
|
/**
|
|
1193
1287
|
* <p>Provides details about an auto scaling group.</p>
|
|
1194
1288
|
*/
|
|
@@ -1217,6 +1311,14 @@ export interface AwsAutoScalingAutoScalingGroupDetails {
|
|
|
1217
1311
|
* <code>2020-03-22T13:22:13.933Z</code>.</p>
|
|
1218
1312
|
*/
|
|
1219
1313
|
CreatedTime?: string;
|
|
1314
|
+
/**
|
|
1315
|
+
* <p>The mixed instances policy for the automatic scaling group.</p>
|
|
1316
|
+
*/
|
|
1317
|
+
MixedInstancesPolicy?: AwsAutoScalingAutoScalingGroupMixedInstancesPolicyDetails;
|
|
1318
|
+
/**
|
|
1319
|
+
* <p>The list of Availability Zones for the automatic scaling group.</p>
|
|
1320
|
+
*/
|
|
1321
|
+
AvailabilityZones?: AwsAutoScalingAutoScalingGroupAvailabilityZonesListDetails[];
|
|
1220
1322
|
}
|
|
1221
1323
|
export declare namespace AwsAutoScalingAutoScalingGroupDetails {
|
|
1222
1324
|
/**
|
|
@@ -1323,6 +1425,29 @@ export declare namespace AwsAutoScalingLaunchConfigurationInstanceMonitoringDeta
|
|
|
1323
1425
|
*/
|
|
1324
1426
|
const filterSensitiveLog: (obj: AwsAutoScalingLaunchConfigurationInstanceMonitoringDetails) => any;
|
|
1325
1427
|
}
|
|
1428
|
+
/**
|
|
1429
|
+
* <p>The metadata options for the instances.</p>
|
|
1430
|
+
*/
|
|
1431
|
+
export interface AwsAutoScalingLaunchConfigurationMetadataOptions {
|
|
1432
|
+
/**
|
|
1433
|
+
* <p>Enables or disables the HTTP metadata endpoint on your instances. By default, the metadata endpoint is enabled.</p>
|
|
1434
|
+
*/
|
|
1435
|
+
HttpEndpoint?: string;
|
|
1436
|
+
/**
|
|
1437
|
+
* <p>The HTTP <code>PUT</code> response hop limit for instance metadata requests. The larger the number, the further instance metadata requests can travel.</p>
|
|
1438
|
+
*/
|
|
1439
|
+
HttpPutResponseHopLimit?: number;
|
|
1440
|
+
/**
|
|
1441
|
+
* <p>Indicates whether token usage is <code>required</code> or <code>optional</code> for metadata requests. By default, token usage is <code>optional</code>.</p>
|
|
1442
|
+
*/
|
|
1443
|
+
HttpTokens?: string;
|
|
1444
|
+
}
|
|
1445
|
+
export declare namespace AwsAutoScalingLaunchConfigurationMetadataOptions {
|
|
1446
|
+
/**
|
|
1447
|
+
* @internal
|
|
1448
|
+
*/
|
|
1449
|
+
const filterSensitiveLog: (obj: AwsAutoScalingLaunchConfigurationMetadataOptions) => any;
|
|
1450
|
+
}
|
|
1326
1451
|
/**
|
|
1327
1452
|
* <p>Details about a launch configuration.</p>
|
|
1328
1453
|
*/
|
|
@@ -1407,6 +1532,10 @@ export interface AwsAutoScalingLaunchConfigurationDetails {
|
|
|
1407
1532
|
* text.</p>
|
|
1408
1533
|
*/
|
|
1409
1534
|
UserData?: string;
|
|
1535
|
+
/**
|
|
1536
|
+
* <p>The metadata options for the instances.</p>
|
|
1537
|
+
*/
|
|
1538
|
+
MetadataOptions?: AwsAutoScalingLaunchConfigurationMetadataOptions;
|
|
1410
1539
|
}
|
|
1411
1540
|
export declare namespace AwsAutoScalingLaunchConfigurationDetails {
|
|
1412
1541
|
/**
|
|
@@ -7540,2470 +7669,1553 @@ export declare namespace AwsLambdaLayerVersionDetails {
|
|
|
7540
7669
|
const filterSensitiveLog: (obj: AwsLambdaLayerVersionDetails) => any;
|
|
7541
7670
|
}
|
|
7542
7671
|
/**
|
|
7543
|
-
* <p>
|
|
7672
|
+
* <p>A public subnet that Network Firewall uses for the firewall.</p>
|
|
7544
7673
|
*/
|
|
7545
|
-
export interface
|
|
7674
|
+
export interface AwsNetworkFirewallFirewallSubnetMappingsDetails {
|
|
7546
7675
|
/**
|
|
7547
|
-
* <p>The
|
|
7676
|
+
* <p>The identifier of the subnet</p>
|
|
7548
7677
|
*/
|
|
7549
|
-
|
|
7678
|
+
SubnetId?: string;
|
|
7550
7679
|
}
|
|
7551
|
-
export declare namespace
|
|
7680
|
+
export declare namespace AwsNetworkFirewallFirewallSubnetMappingsDetails {
|
|
7552
7681
|
/**
|
|
7553
7682
|
* @internal
|
|
7554
7683
|
*/
|
|
7555
|
-
const filterSensitiveLog: (obj:
|
|
7684
|
+
const filterSensitiveLog: (obj: AwsNetworkFirewallFirewallSubnetMappingsDetails) => any;
|
|
7556
7685
|
}
|
|
7557
7686
|
/**
|
|
7558
|
-
* <p>Details about
|
|
7687
|
+
* <p>Details about an Network Firewall firewall.</p>
|
|
7559
7688
|
*/
|
|
7560
|
-
export interface
|
|
7689
|
+
export interface AwsNetworkFirewallFirewallDetails {
|
|
7561
7690
|
/**
|
|
7562
|
-
* <p>
|
|
7691
|
+
* <p>Whether the firewall is protected from deletion. If set to <code>true</code>, then the firewall cannot be deleted.</p>
|
|
7563
7692
|
*/
|
|
7564
|
-
|
|
7693
|
+
DeleteProtection?: boolean;
|
|
7565
7694
|
/**
|
|
7566
|
-
* <p>
|
|
7695
|
+
* <p>A description of the firewall.</p>
|
|
7567
7696
|
*/
|
|
7568
|
-
|
|
7697
|
+
Description?: string;
|
|
7569
7698
|
/**
|
|
7570
|
-
* <p>The
|
|
7699
|
+
* <p>The ARN of the firewall.</p>
|
|
7571
7700
|
*/
|
|
7572
|
-
|
|
7701
|
+
FirewallArn?: string;
|
|
7573
7702
|
/**
|
|
7574
|
-
* <p>
|
|
7703
|
+
* <p>The identifier of the firewall.</p>
|
|
7575
7704
|
*/
|
|
7576
|
-
|
|
7705
|
+
FirewallId?: string;
|
|
7577
7706
|
/**
|
|
7578
|
-
* <p>
|
|
7707
|
+
* <p>A descriptive name of the firewall.</p>
|
|
7579
7708
|
*/
|
|
7580
|
-
|
|
7709
|
+
FirewallName?: string;
|
|
7581
7710
|
/**
|
|
7582
|
-
* <p>The
|
|
7711
|
+
* <p>The ARN of the firewall policy.</p>
|
|
7583
7712
|
*/
|
|
7584
|
-
|
|
7713
|
+
FirewallPolicyArn?: string;
|
|
7585
7714
|
/**
|
|
7586
|
-
* <p>
|
|
7715
|
+
* <p>Whether the firewall is protected from a change to the firewall policy. If set to <code>true</code>, you cannot associate a different policy with the firewall.</p>
|
|
7587
7716
|
*/
|
|
7588
|
-
|
|
7717
|
+
FirewallPolicyChangeProtection?: boolean;
|
|
7589
7718
|
/**
|
|
7590
|
-
* <p>
|
|
7719
|
+
* <p>Whether the firewall is protected from a change to the subnet associations. If set to <code>true</code>, you cannot map different subnets to the firewall.</p>
|
|
7591
7720
|
*/
|
|
7592
|
-
|
|
7721
|
+
SubnetChangeProtection?: boolean;
|
|
7593
7722
|
/**
|
|
7594
|
-
* <p>
|
|
7723
|
+
* <p>The public subnets that Network Firewall uses for the firewall. Each subnet must belong to a different Availability Zone.</p>
|
|
7595
7724
|
*/
|
|
7596
|
-
|
|
7725
|
+
SubnetMappings?: AwsNetworkFirewallFirewallSubnetMappingsDetails[];
|
|
7597
7726
|
/**
|
|
7598
|
-
* <p>The
|
|
7599
|
-
* <p>If this attribute is specified, then <code>DedicatedMasterEnabled</code> must be <code>true</code>.
|
|
7600
|
-
* </p>
|
|
7727
|
+
* <p>The identifier of the VPC where the firewall is used.</p>
|
|
7601
7728
|
*/
|
|
7602
|
-
|
|
7729
|
+
VpcId?: string;
|
|
7603
7730
|
}
|
|
7604
|
-
export declare namespace
|
|
7731
|
+
export declare namespace AwsNetworkFirewallFirewallDetails {
|
|
7605
7732
|
/**
|
|
7606
7733
|
* @internal
|
|
7607
7734
|
*/
|
|
7608
|
-
const filterSensitiveLog: (obj:
|
|
7735
|
+
const filterSensitiveLog: (obj: AwsNetworkFirewallFirewallDetails) => any;
|
|
7609
7736
|
}
|
|
7610
7737
|
/**
|
|
7611
|
-
* <p>
|
|
7738
|
+
* <p>A stateful rule group that is used by the firewall policy.</p>
|
|
7612
7739
|
*/
|
|
7613
|
-
export interface
|
|
7740
|
+
export interface FirewallPolicyStatefulRuleGroupReferencesDetails {
|
|
7614
7741
|
/**
|
|
7615
|
-
* <p>The ARN
|
|
7742
|
+
* <p>The ARN of the stateful rule group.</p>
|
|
7616
7743
|
*/
|
|
7617
|
-
|
|
7744
|
+
ResourceArn?: string;
|
|
7745
|
+
}
|
|
7746
|
+
export declare namespace FirewallPolicyStatefulRuleGroupReferencesDetails {
|
|
7618
7747
|
/**
|
|
7619
|
-
*
|
|
7748
|
+
* @internal
|
|
7620
7749
|
*/
|
|
7621
|
-
|
|
7750
|
+
const filterSensitiveLog: (obj: FirewallPolicyStatefulRuleGroupReferencesDetails) => any;
|
|
7751
|
+
}
|
|
7752
|
+
/**
|
|
7753
|
+
* <p>Defines a CloudWatch dimension value to publish.</p>
|
|
7754
|
+
*/
|
|
7755
|
+
export interface StatelessCustomPublishMetricActionDimension {
|
|
7622
7756
|
/**
|
|
7623
|
-
* <p>
|
|
7757
|
+
* <p>The value to use for the custom metric dimension.</p>
|
|
7624
7758
|
*/
|
|
7625
|
-
|
|
7759
|
+
Value?: string;
|
|
7760
|
+
}
|
|
7761
|
+
export declare namespace StatelessCustomPublishMetricActionDimension {
|
|
7626
7762
|
/**
|
|
7627
|
-
*
|
|
7763
|
+
* @internal
|
|
7628
7764
|
*/
|
|
7629
|
-
|
|
7765
|
+
const filterSensitiveLog: (obj: StatelessCustomPublishMetricActionDimension) => any;
|
|
7766
|
+
}
|
|
7767
|
+
/**
|
|
7768
|
+
* <p>Information about metrics to publish to CloudWatch.</p>
|
|
7769
|
+
*/
|
|
7770
|
+
export interface StatelessCustomPublishMetricAction {
|
|
7630
7771
|
/**
|
|
7631
|
-
* <p>
|
|
7772
|
+
* <p>Defines CloudWatch dimension values to publish.</p>
|
|
7632
7773
|
*/
|
|
7633
|
-
|
|
7774
|
+
Dimensions?: StatelessCustomPublishMetricActionDimension[];
|
|
7634
7775
|
}
|
|
7635
|
-
export declare namespace
|
|
7776
|
+
export declare namespace StatelessCustomPublishMetricAction {
|
|
7636
7777
|
/**
|
|
7637
7778
|
* @internal
|
|
7638
7779
|
*/
|
|
7639
|
-
const filterSensitiveLog: (obj:
|
|
7780
|
+
const filterSensitiveLog: (obj: StatelessCustomPublishMetricAction) => any;
|
|
7640
7781
|
}
|
|
7641
7782
|
/**
|
|
7642
|
-
* <p>
|
|
7783
|
+
* <p>The definition of a custom action that can be used for stateless packet handling.</p>
|
|
7643
7784
|
*/
|
|
7644
|
-
export interface
|
|
7645
|
-
/**
|
|
7646
|
-
* <p>Whether encryption at rest is enabled.</p>
|
|
7647
|
-
*/
|
|
7648
|
-
Enabled?: boolean;
|
|
7785
|
+
export interface StatelessCustomActionDefinition {
|
|
7649
7786
|
/**
|
|
7650
|
-
* <p>
|
|
7787
|
+
* <p>Information about metrics to publish to CloudWatch.</p>
|
|
7651
7788
|
*/
|
|
7652
|
-
|
|
7789
|
+
PublishMetricAction?: StatelessCustomPublishMetricAction;
|
|
7653
7790
|
}
|
|
7654
|
-
export declare namespace
|
|
7791
|
+
export declare namespace StatelessCustomActionDefinition {
|
|
7655
7792
|
/**
|
|
7656
7793
|
* @internal
|
|
7657
7794
|
*/
|
|
7658
|
-
const filterSensitiveLog: (obj:
|
|
7795
|
+
const filterSensitiveLog: (obj: StatelessCustomActionDefinition) => any;
|
|
7659
7796
|
}
|
|
7660
7797
|
/**
|
|
7661
|
-
* <p>
|
|
7798
|
+
* <p>A custom action that can be used for stateless packet handling.</p>
|
|
7662
7799
|
*/
|
|
7663
|
-
export interface
|
|
7800
|
+
export interface FirewallPolicyStatelessCustomActionsDetails {
|
|
7664
7801
|
/**
|
|
7665
|
-
* <p>The
|
|
7802
|
+
* <p>The definition of the custom action.</p>
|
|
7666
7803
|
*/
|
|
7667
|
-
|
|
7804
|
+
ActionDefinition?: StatelessCustomActionDefinition;
|
|
7668
7805
|
/**
|
|
7669
|
-
* <p>
|
|
7806
|
+
* <p>The name of the custom action.</p>
|
|
7670
7807
|
*/
|
|
7671
|
-
|
|
7808
|
+
ActionName?: string;
|
|
7672
7809
|
}
|
|
7673
|
-
export declare namespace
|
|
7810
|
+
export declare namespace FirewallPolicyStatelessCustomActionsDetails {
|
|
7674
7811
|
/**
|
|
7675
7812
|
* @internal
|
|
7676
7813
|
*/
|
|
7677
|
-
const filterSensitiveLog: (obj:
|
|
7814
|
+
const filterSensitiveLog: (obj: FirewallPolicyStatelessCustomActionsDetails) => any;
|
|
7678
7815
|
}
|
|
7679
7816
|
/**
|
|
7680
|
-
* <p>
|
|
7817
|
+
* <p>A stateless rule group that is used by the firewall policy.</p>
|
|
7681
7818
|
*/
|
|
7682
|
-
export interface
|
|
7683
|
-
/**
|
|
7684
|
-
* <p>Configures the OpenSearch index logs publishing.</p>
|
|
7685
|
-
*/
|
|
7686
|
-
IndexSlowLogs?: AwsOpenSearchServiceDomainLogPublishingOption;
|
|
7819
|
+
export interface FirewallPolicyStatelessRuleGroupReferencesDetails {
|
|
7687
7820
|
/**
|
|
7688
|
-
* <p>
|
|
7821
|
+
* <p>The order in which to run the stateless rule group.</p>
|
|
7689
7822
|
*/
|
|
7690
|
-
|
|
7823
|
+
Priority?: number;
|
|
7691
7824
|
/**
|
|
7692
|
-
* <p>
|
|
7825
|
+
* <p>The ARN of the stateless rule group.</p>
|
|
7693
7826
|
*/
|
|
7694
|
-
|
|
7827
|
+
ResourceArn?: string;
|
|
7695
7828
|
}
|
|
7696
|
-
export declare namespace
|
|
7829
|
+
export declare namespace FirewallPolicyStatelessRuleGroupReferencesDetails {
|
|
7697
7830
|
/**
|
|
7698
7831
|
* @internal
|
|
7699
7832
|
*/
|
|
7700
|
-
const filterSensitiveLog: (obj:
|
|
7833
|
+
const filterSensitiveLog: (obj: FirewallPolicyStatelessRuleGroupReferencesDetails) => any;
|
|
7701
7834
|
}
|
|
7702
7835
|
/**
|
|
7703
|
-
* <p>
|
|
7836
|
+
* <p>Defines the behavior of the firewall.</p>
|
|
7704
7837
|
*/
|
|
7705
|
-
export interface
|
|
7838
|
+
export interface FirewallPolicyDetails {
|
|
7706
7839
|
/**
|
|
7707
|
-
* <p>
|
|
7840
|
+
* <p>The stateful rule groups that are used in the firewall policy.</p>
|
|
7708
7841
|
*/
|
|
7709
|
-
|
|
7842
|
+
StatefulRuleGroupReferences?: FirewallPolicyStatefulRuleGroupReferencesDetails[];
|
|
7843
|
+
/**
|
|
7844
|
+
* <p>The custom action definitions that are available to use in the firewall policy's <code>StatelessDefaultActions</code> setting.</p>
|
|
7845
|
+
*/
|
|
7846
|
+
StatelessCustomActions?: FirewallPolicyStatelessCustomActionsDetails[];
|
|
7847
|
+
/**
|
|
7848
|
+
* <p>The actions to take on a packet if it doesn't match any of the stateless rules in the policy.</p>
|
|
7849
|
+
* <p>You must specify a standard action (<code>aws:pass</code>, <code>aws:drop</code>, <code>aws:forward_to_sfe</code>), and can optionally include a custom action from <code>StatelessCustomActions</code>.
|
|
7850
|
+
* </p>
|
|
7851
|
+
*/
|
|
7852
|
+
StatelessDefaultActions?: string[];
|
|
7853
|
+
/**
|
|
7854
|
+
* <p>The actions to take on a fragmented UDP packet if it doesn't match any of the stateless rules in the policy.</p>
|
|
7855
|
+
* <p>You must specify a standard action (<code>aws:pass</code>, <code>aws:drop</code>, <code>aws:forward_to_sfe</code>), and can optionally include a custom action from <code>StatelessCustomActions</code>.
|
|
7856
|
+
* </p>
|
|
7857
|
+
*/
|
|
7858
|
+
StatelessFragmentDefaultActions?: string[];
|
|
7859
|
+
/**
|
|
7860
|
+
* <p>The stateless rule groups that are used in the firewall policy.</p>
|
|
7861
|
+
*/
|
|
7862
|
+
StatelessRuleGroupReferences?: FirewallPolicyStatelessRuleGroupReferencesDetails[];
|
|
7710
7863
|
}
|
|
7711
|
-
export declare namespace
|
|
7864
|
+
export declare namespace FirewallPolicyDetails {
|
|
7712
7865
|
/**
|
|
7713
7866
|
* @internal
|
|
7714
7867
|
*/
|
|
7715
|
-
const filterSensitiveLog: (obj:
|
|
7868
|
+
const filterSensitiveLog: (obj: FirewallPolicyDetails) => any;
|
|
7716
7869
|
}
|
|
7717
7870
|
/**
|
|
7718
|
-
* <p>
|
|
7871
|
+
* <p>Details about a firewall policy. A firewall policy defines the behavior of a network firewall.</p>
|
|
7719
7872
|
*/
|
|
7720
|
-
export interface
|
|
7873
|
+
export interface AwsNetworkFirewallFirewallPolicyDetails {
|
|
7721
7874
|
/**
|
|
7722
|
-
* <p>The
|
|
7875
|
+
* <p>The firewall policy configuration.</p>
|
|
7723
7876
|
*/
|
|
7724
|
-
|
|
7877
|
+
FirewallPolicy?: FirewallPolicyDetails;
|
|
7725
7878
|
/**
|
|
7726
|
-
* <p>
|
|
7879
|
+
* <p>The ARN of the firewall policy.</p>
|
|
7727
7880
|
*/
|
|
7728
|
-
|
|
7881
|
+
FirewallPolicyArn?: string;
|
|
7729
7882
|
/**
|
|
7730
|
-
* <p>The
|
|
7883
|
+
* <p>The identifier of the firewall policy.</p>
|
|
7731
7884
|
*/
|
|
7732
|
-
|
|
7885
|
+
FirewallPolicyId?: string;
|
|
7733
7886
|
/**
|
|
7734
|
-
* <p>
|
|
7887
|
+
* <p>The name of the firewall policy.</p>
|
|
7888
|
+
*/
|
|
7889
|
+
FirewallPolicyName?: string;
|
|
7890
|
+
/**
|
|
7891
|
+
* <p>A description of the firewall policy.</p>
|
|
7735
7892
|
*/
|
|
7736
7893
|
Description?: string;
|
|
7894
|
+
}
|
|
7895
|
+
export declare namespace AwsNetworkFirewallFirewallPolicyDetails {
|
|
7737
7896
|
/**
|
|
7738
|
-
*
|
|
7897
|
+
* @internal
|
|
7739
7898
|
*/
|
|
7740
|
-
|
|
7899
|
+
const filterSensitiveLog: (obj: AwsNetworkFirewallFirewallPolicyDetails) => any;
|
|
7900
|
+
}
|
|
7901
|
+
/**
|
|
7902
|
+
* <p>Stateful inspection criteria for a domain list rule group.</p>
|
|
7903
|
+
*/
|
|
7904
|
+
export interface RuleGroupSourceListDetails {
|
|
7741
7905
|
/**
|
|
7742
|
-
* <p>
|
|
7906
|
+
* <p>Indicates whether to allow or deny access to the domains listed in <code>Targets</code>.</p>
|
|
7743
7907
|
*/
|
|
7744
|
-
|
|
7908
|
+
GeneratedRulesType?: string;
|
|
7745
7909
|
/**
|
|
7746
|
-
* <p>The
|
|
7910
|
+
* <p>The protocols that you want to inspect. Specify <code>LS_SNI</code> for HTTPS. Specify <code>HTTP_HOST</code> for HTTP. You can specify either or both.</p>
|
|
7747
7911
|
*/
|
|
7748
|
-
|
|
7912
|
+
TargetTypes?: string[];
|
|
7749
7913
|
/**
|
|
7750
|
-
* <p>
|
|
7914
|
+
* <p>The domains that you want to inspect for in your traffic flows. You can provide full domain names, or use the '.' prefix as a wildcard. For example, <code>.example.com</code> matches all domains that end with <code>example.com</code>.</p>
|
|
7751
7915
|
*/
|
|
7752
|
-
|
|
7916
|
+
Targets?: string[];
|
|
7753
7917
|
}
|
|
7754
|
-
export declare namespace
|
|
7918
|
+
export declare namespace RuleGroupSourceListDetails {
|
|
7755
7919
|
/**
|
|
7756
7920
|
* @internal
|
|
7757
7921
|
*/
|
|
7758
|
-
const filterSensitiveLog: (obj:
|
|
7922
|
+
const filterSensitiveLog: (obj: RuleGroupSourceListDetails) => any;
|
|
7759
7923
|
}
|
|
7760
7924
|
/**
|
|
7761
|
-
* <p>
|
|
7925
|
+
* <p>The inspection criteria for a stateful rule.</p>
|
|
7762
7926
|
*/
|
|
7763
|
-
export interface
|
|
7927
|
+
export interface RuleGroupSourceStatefulRulesHeaderDetails {
|
|
7764
7928
|
/**
|
|
7765
|
-
* <p>The
|
|
7929
|
+
* <p>The destination IP address or address range to inspect for, in CIDR notation. To match with any address, specify <code>ANY</code>.</p>
|
|
7766
7930
|
*/
|
|
7767
|
-
|
|
7768
|
-
/**
|
|
7769
|
-
* <p>A list of subnet IDs that are associated with the VPC endpoints for the domain.</p>
|
|
7770
|
-
*/
|
|
7771
|
-
SubnetIds?: string[];
|
|
7772
|
-
}
|
|
7773
|
-
export declare namespace AwsOpenSearchServiceDomainVpcOptionsDetails {
|
|
7774
|
-
/**
|
|
7775
|
-
* @internal
|
|
7776
|
-
*/
|
|
7777
|
-
const filterSensitiveLog: (obj: AwsOpenSearchServiceDomainVpcOptionsDetails) => any;
|
|
7778
|
-
}
|
|
7779
|
-
/**
|
|
7780
|
-
* <p>Information about an Amazon OpenSearch Service domain.</p>
|
|
7781
|
-
*/
|
|
7782
|
-
export interface AwsOpenSearchServiceDomainDetails {
|
|
7783
|
-
/**
|
|
7784
|
-
* <p>The ARN of the OpenSearch Service domain.</p>
|
|
7785
|
-
*/
|
|
7786
|
-
Arn?: string;
|
|
7787
|
-
/**
|
|
7788
|
-
* <p>IAM policy document that specifies the access policies for the OpenSearch Service domain.</p>
|
|
7789
|
-
*/
|
|
7790
|
-
AccessPolicies?: string;
|
|
7791
|
-
/**
|
|
7792
|
-
* <p>The name of the endpoint.</p>
|
|
7793
|
-
*/
|
|
7794
|
-
DomainName?: string;
|
|
7795
|
-
/**
|
|
7796
|
-
* <p>The identifier of the domain.</p>
|
|
7797
|
-
*/
|
|
7798
|
-
Id?: string;
|
|
7799
|
-
/**
|
|
7800
|
-
* <p>The domain endpoint.</p>
|
|
7801
|
-
*/
|
|
7802
|
-
DomainEndpoint?: string;
|
|
7803
|
-
/**
|
|
7804
|
-
* <p>The version of the domain engine.</p>
|
|
7805
|
-
*/
|
|
7806
|
-
EngineVersion?: string;
|
|
7807
|
-
/**
|
|
7808
|
-
* <p>Details about the configuration for encryption at rest.</p>
|
|
7809
|
-
*/
|
|
7810
|
-
EncryptionAtRestOptions?: AwsOpenSearchServiceDomainEncryptionAtRestOptionsDetails;
|
|
7811
|
-
/**
|
|
7812
|
-
* <p>Details about the configuration for node-to-node encryption.</p>
|
|
7813
|
-
*/
|
|
7814
|
-
NodeToNodeEncryptionOptions?: AwsOpenSearchServiceDomainNodeToNodeEncryptionOptionsDetails;
|
|
7815
|
-
/**
|
|
7816
|
-
* <p>Information about the status of a domain relative to the latest service software.</p>
|
|
7817
|
-
*/
|
|
7818
|
-
ServiceSoftwareOptions?: AwsOpenSearchServiceDomainServiceSoftwareOptionsDetails;
|
|
7819
|
-
/**
|
|
7820
|
-
* <p>Details about the configuration of an OpenSearch cluster.</p>
|
|
7821
|
-
*/
|
|
7822
|
-
ClusterConfig?: AwsOpenSearchServiceDomainClusterConfigDetails;
|
|
7823
|
-
/**
|
|
7824
|
-
* <p>Additional options for the domain endpoint.</p>
|
|
7825
|
-
*/
|
|
7826
|
-
DomainEndpointOptions?: AwsOpenSearchServiceDomainDomainEndpointOptionsDetails;
|
|
7827
|
-
/**
|
|
7828
|
-
* <p>Information that OpenSearch Service derives based on <code>VPCOptions</code> for the domain.</p>
|
|
7829
|
-
*/
|
|
7830
|
-
VpcOptions?: AwsOpenSearchServiceDomainVpcOptionsDetails;
|
|
7831
|
-
/**
|
|
7832
|
-
* <p>Configures the CloudWatch Logs to publish for the OpenSearch domain.</p>
|
|
7833
|
-
*/
|
|
7834
|
-
LogPublishingOptions?: AwsOpenSearchServiceDomainLogPublishingOptionsDetails;
|
|
7835
|
-
/**
|
|
7836
|
-
* <p>The domain endpoints. Used if the OpenSearch domain resides in a VPC.</p>
|
|
7837
|
-
* <p>This is a map of key-value pairs. The key is always <code>vpc</code>. The value is the endpoint.</p>
|
|
7838
|
-
*/
|
|
7839
|
-
DomainEndpoints?: {
|
|
7840
|
-
[key: string]: string;
|
|
7841
|
-
};
|
|
7842
|
-
}
|
|
7843
|
-
export declare namespace AwsOpenSearchServiceDomainDetails {
|
|
7844
|
-
/**
|
|
7845
|
-
* @internal
|
|
7846
|
-
*/
|
|
7847
|
-
const filterSensitiveLog: (obj: AwsOpenSearchServiceDomainDetails) => any;
|
|
7848
|
-
}
|
|
7849
|
-
/**
|
|
7850
|
-
* <p>An IAM role that is associated with the Amazon RDS DB cluster.</p>
|
|
7851
|
-
*/
|
|
7852
|
-
export interface AwsRdsDbClusterAssociatedRole {
|
|
7853
|
-
/**
|
|
7854
|
-
* <p>The ARN of the IAM role.</p>
|
|
7855
|
-
*/
|
|
7856
|
-
RoleArn?: string;
|
|
7857
|
-
/**
|
|
7858
|
-
* <p>The status of the association between the IAM role and the DB cluster.</p>
|
|
7859
|
-
*/
|
|
7860
|
-
Status?: string;
|
|
7861
|
-
}
|
|
7862
|
-
export declare namespace AwsRdsDbClusterAssociatedRole {
|
|
7863
|
-
/**
|
|
7864
|
-
* @internal
|
|
7865
|
-
*/
|
|
7866
|
-
const filterSensitiveLog: (obj: AwsRdsDbClusterAssociatedRole) => any;
|
|
7867
|
-
}
|
|
7868
|
-
/**
|
|
7869
|
-
* <p>Information about an instance in the DB cluster.</p>
|
|
7870
|
-
*/
|
|
7871
|
-
export interface AwsRdsDbClusterMember {
|
|
7872
|
-
/**
|
|
7873
|
-
* <p>Whether the cluster member is the primary instance for the DB cluster.</p>
|
|
7874
|
-
*/
|
|
7875
|
-
IsClusterWriter?: boolean;
|
|
7876
|
-
/**
|
|
7877
|
-
* <p>Specifies the order in which an Aurora replica is promoted to the primary instance when
|
|
7878
|
-
* the existing primary instance fails.</p>
|
|
7879
|
-
*/
|
|
7880
|
-
PromotionTier?: number;
|
|
7881
|
-
/**
|
|
7882
|
-
* <p>The instance identifier for this member of the DB cluster.</p>
|
|
7883
|
-
*/
|
|
7884
|
-
DbInstanceIdentifier?: string;
|
|
7885
|
-
/**
|
|
7886
|
-
* <p>The status of the DB cluster parameter group for this member of the DB cluster.</p>
|
|
7887
|
-
*/
|
|
7888
|
-
DbClusterParameterGroupStatus?: string;
|
|
7889
|
-
}
|
|
7890
|
-
export declare namespace AwsRdsDbClusterMember {
|
|
7891
|
-
/**
|
|
7892
|
-
* @internal
|
|
7893
|
-
*/
|
|
7894
|
-
const filterSensitiveLog: (obj: AwsRdsDbClusterMember) => any;
|
|
7895
|
-
}
|
|
7896
|
-
/**
|
|
7897
|
-
* <p>Information about an option group membership for a DB cluster.</p>
|
|
7898
|
-
*/
|
|
7899
|
-
export interface AwsRdsDbClusterOptionGroupMembership {
|
|
7900
|
-
/**
|
|
7901
|
-
* <p>The name of the DB cluster option group.</p>
|
|
7902
|
-
*/
|
|
7903
|
-
DbClusterOptionGroupName?: string;
|
|
7904
|
-
/**
|
|
7905
|
-
* <p>The status of the DB cluster option group.</p>
|
|
7906
|
-
*/
|
|
7907
|
-
Status?: string;
|
|
7908
|
-
}
|
|
7909
|
-
export declare namespace AwsRdsDbClusterOptionGroupMembership {
|
|
7910
|
-
/**
|
|
7911
|
-
* @internal
|
|
7912
|
-
*/
|
|
7913
|
-
const filterSensitiveLog: (obj: AwsRdsDbClusterOptionGroupMembership) => any;
|
|
7914
|
-
}
|
|
7915
|
-
/**
|
|
7916
|
-
* <p>Information about an Active Directory domain membership record associated with the DB
|
|
7917
|
-
* instance.</p>
|
|
7918
|
-
*/
|
|
7919
|
-
export interface AwsRdsDbDomainMembership {
|
|
7920
|
-
/**
|
|
7921
|
-
* <p>The identifier of the Active Directory domain.</p>
|
|
7922
|
-
*/
|
|
7923
|
-
Domain?: string;
|
|
7924
|
-
/**
|
|
7925
|
-
* <p>The status of the Active Directory Domain membership for the DB instance.</p>
|
|
7926
|
-
*/
|
|
7927
|
-
Status?: string;
|
|
7928
|
-
/**
|
|
7929
|
-
* <p>The fully qualified domain name of the Active Directory domain.</p>
|
|
7930
|
-
*/
|
|
7931
|
-
Fqdn?: string;
|
|
7932
|
-
/**
|
|
7933
|
-
* <p>The name of the IAM role to use when making API calls to the Directory Service.</p>
|
|
7934
|
-
*/
|
|
7935
|
-
IamRoleName?: string;
|
|
7936
|
-
}
|
|
7937
|
-
export declare namespace AwsRdsDbDomainMembership {
|
|
7938
|
-
/**
|
|
7939
|
-
* @internal
|
|
7940
|
-
*/
|
|
7941
|
-
const filterSensitiveLog: (obj: AwsRdsDbDomainMembership) => any;
|
|
7942
|
-
}
|
|
7943
|
-
/**
|
|
7944
|
-
* <p>A VPC security groups that the DB instance belongs to.</p>
|
|
7945
|
-
*/
|
|
7946
|
-
export interface AwsRdsDbInstanceVpcSecurityGroup {
|
|
7947
|
-
/**
|
|
7948
|
-
* <p>The name of the VPC security group.</p>
|
|
7949
|
-
*/
|
|
7950
|
-
VpcSecurityGroupId?: string;
|
|
7951
|
-
/**
|
|
7952
|
-
* <p>The status of the VPC security group.</p>
|
|
7953
|
-
*/
|
|
7954
|
-
Status?: string;
|
|
7955
|
-
}
|
|
7956
|
-
export declare namespace AwsRdsDbInstanceVpcSecurityGroup {
|
|
7957
|
-
/**
|
|
7958
|
-
* @internal
|
|
7959
|
-
*/
|
|
7960
|
-
const filterSensitiveLog: (obj: AwsRdsDbInstanceVpcSecurityGroup) => any;
|
|
7961
|
-
}
|
|
7962
|
-
/**
|
|
7963
|
-
* <p>Information about an Amazon RDS DB cluster.</p>
|
|
7964
|
-
*/
|
|
7965
|
-
export interface AwsRdsDbClusterDetails {
|
|
7966
|
-
/**
|
|
7967
|
-
* <p>For all database engines except Aurora, specifies the allocated storage size in
|
|
7968
|
-
* gibibytes (GiB).</p>
|
|
7969
|
-
*/
|
|
7970
|
-
AllocatedStorage?: number;
|
|
7971
|
-
/**
|
|
7972
|
-
* <p>A list of Availability Zones (AZs) where instances in the DB cluster can be
|
|
7973
|
-
* created.</p>
|
|
7974
|
-
*/
|
|
7975
|
-
AvailabilityZones?: string[];
|
|
7976
|
-
/**
|
|
7977
|
-
* <p>The number of days for which automated backups are retained.</p>
|
|
7978
|
-
*/
|
|
7979
|
-
BackupRetentionPeriod?: number;
|
|
7980
|
-
/**
|
|
7981
|
-
* <p>The name of the database.</p>
|
|
7982
|
-
*/
|
|
7983
|
-
DatabaseName?: string;
|
|
7984
|
-
/**
|
|
7985
|
-
* <p>The current status of this DB cluster.</p>
|
|
7986
|
-
*/
|
|
7987
|
-
Status?: string;
|
|
7988
|
-
/**
|
|
7989
|
-
* <p>The connection endpoint for the primary instance of the DB cluster.</p>
|
|
7990
|
-
*/
|
|
7991
|
-
Endpoint?: string;
|
|
7992
|
-
/**
|
|
7993
|
-
* <p>The reader endpoint for the DB cluster.</p>
|
|
7994
|
-
*/
|
|
7995
|
-
ReaderEndpoint?: string;
|
|
7996
|
-
/**
|
|
7997
|
-
* <p>A list of custom endpoints for the DB cluster.</p>
|
|
7998
|
-
*/
|
|
7999
|
-
CustomEndpoints?: string[];
|
|
8000
|
-
/**
|
|
8001
|
-
* <p>Whether the DB cluster has instances in multiple Availability Zones.</p>
|
|
8002
|
-
*/
|
|
8003
|
-
MultiAz?: boolean;
|
|
8004
|
-
/**
|
|
8005
|
-
* <p>The name of the database engine to use for this DB cluster.</p>
|
|
8006
|
-
*/
|
|
8007
|
-
Engine?: string;
|
|
8008
|
-
/**
|
|
8009
|
-
* <p>The version number of the database engine to use.</p>
|
|
8010
|
-
*/
|
|
8011
|
-
EngineVersion?: string;
|
|
8012
|
-
/**
|
|
8013
|
-
* <p>The port number on which the DB instances in the DB cluster accept connections.</p>
|
|
8014
|
-
*/
|
|
8015
|
-
Port?: number;
|
|
8016
|
-
/**
|
|
8017
|
-
* <p>The name of the master user for the DB cluster.</p>
|
|
8018
|
-
*/
|
|
8019
|
-
MasterUsername?: string;
|
|
8020
|
-
/**
|
|
8021
|
-
* <p>The range of time each day when automated backups are created, if automated backups are
|
|
8022
|
-
* enabled.</p>
|
|
8023
|
-
* <p>Uses the format <code>HH:MM-HH:MM</code>. For example, <code>04:52-05:22</code>.</p>
|
|
8024
|
-
*/
|
|
8025
|
-
PreferredBackupWindow?: string;
|
|
8026
|
-
/**
|
|
8027
|
-
* <p>The weekly time range during which system maintenance can occur, in Universal
|
|
8028
|
-
* Coordinated Time (UTC).</p>
|
|
8029
|
-
* <p>Uses the format <code><day>:HH:MM-<day>:HH:MM</code>.</p>
|
|
8030
|
-
* <p>For the day values, use
|
|
8031
|
-
* <code>mon</code>|<code>tue</code>|<code>wed</code>|<code>thu</code>|<code>fri</code>|<code>sat</code>|<code>sun</code>.</p>
|
|
8032
|
-
* <p>For example, <code>sun:09:32-sun:10:02</code>.</p>
|
|
8033
|
-
*/
|
|
8034
|
-
PreferredMaintenanceWindow?: string;
|
|
8035
|
-
/**
|
|
8036
|
-
* <p>The identifiers of the read replicas that are associated with this DB cluster.</p>
|
|
8037
|
-
*/
|
|
8038
|
-
ReadReplicaIdentifiers?: string[];
|
|
8039
|
-
/**
|
|
8040
|
-
* <p>A list of VPC security groups that the DB cluster belongs to.</p>
|
|
8041
|
-
*/
|
|
8042
|
-
VpcSecurityGroups?: AwsRdsDbInstanceVpcSecurityGroup[];
|
|
8043
|
-
/**
|
|
8044
|
-
* <p>Specifies the identifier that Amazon Route 53 assigns when you create a hosted
|
|
8045
|
-
* zone.</p>
|
|
8046
|
-
*/
|
|
8047
|
-
HostedZoneId?: string;
|
|
8048
|
-
/**
|
|
8049
|
-
* <p>Whether the DB cluster is encrypted.</p>
|
|
8050
|
-
*/
|
|
8051
|
-
StorageEncrypted?: boolean;
|
|
8052
|
-
/**
|
|
8053
|
-
* <p>The ARN of the KMS master key that is used to encrypt the database instances in the
|
|
8054
|
-
* DB cluster.</p>
|
|
8055
|
-
*/
|
|
8056
|
-
KmsKeyId?: string;
|
|
8057
|
-
/**
|
|
8058
|
-
* <p>The identifier of the DB cluster. The identifier must be unique within each Amazon Web Services Region
|
|
8059
|
-
* and is immutable.</p>
|
|
8060
|
-
*/
|
|
8061
|
-
DbClusterResourceId?: string;
|
|
8062
|
-
/**
|
|
8063
|
-
* <p>A list of the IAM roles that are associated with the DB cluster.</p>
|
|
8064
|
-
*/
|
|
8065
|
-
AssociatedRoles?: AwsRdsDbClusterAssociatedRole[];
|
|
8066
|
-
/**
|
|
8067
|
-
* <p>Indicates when the DB cluster was created, in Universal Coordinated Time (UTC).</p>
|
|
8068
|
-
* <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
|
|
8069
|
-
* Date/Time Format</a>. The value cannot contain spaces. For example,
|
|
8070
|
-
* <code>2020-03-22T13:22:13.933Z</code>.</p>
|
|
8071
|
-
*/
|
|
8072
|
-
ClusterCreateTime?: string;
|
|
8073
|
-
/**
|
|
8074
|
-
* <p>A list of log types that this DB cluster is configured to export to CloudWatch
|
|
8075
|
-
* Logs.</p>
|
|
8076
|
-
*/
|
|
8077
|
-
EnabledCloudWatchLogsExports?: string[];
|
|
8078
|
-
/**
|
|
8079
|
-
* <p>The database engine mode of the DB cluster.</p>
|
|
8080
|
-
*/
|
|
8081
|
-
EngineMode?: string;
|
|
8082
|
-
/**
|
|
8083
|
-
* <p>Whether the DB cluster has deletion protection enabled.</p>
|
|
8084
|
-
*/
|
|
8085
|
-
DeletionProtection?: boolean;
|
|
8086
|
-
/**
|
|
8087
|
-
* <p>Whether the HTTP endpoint for an Aurora Serverless DB cluster is enabled.</p>
|
|
8088
|
-
*/
|
|
8089
|
-
HttpEndpointEnabled?: boolean;
|
|
8090
|
-
/**
|
|
8091
|
-
* <p>The status of the database activity stream.</p>
|
|
8092
|
-
*/
|
|
8093
|
-
ActivityStreamStatus?: string;
|
|
8094
|
-
/**
|
|
8095
|
-
* <p>Whether tags are copied from the DB cluster to snapshots of the DB cluster.</p>
|
|
8096
|
-
*/
|
|
8097
|
-
CopyTagsToSnapshot?: boolean;
|
|
8098
|
-
/**
|
|
8099
|
-
* <p>Whether the DB cluster is a clone of a DB cluster owned by a different Amazon Web Services
|
|
8100
|
-
* account.</p>
|
|
8101
|
-
*/
|
|
8102
|
-
CrossAccountClone?: boolean;
|
|
8103
|
-
/**
|
|
8104
|
-
* <p>The Active Directory domain membership records that are associated with the DB
|
|
8105
|
-
* cluster.</p>
|
|
8106
|
-
*/
|
|
8107
|
-
DomainMemberships?: AwsRdsDbDomainMembership[];
|
|
8108
|
-
/**
|
|
8109
|
-
* <p>The name of the DB cluster parameter group for the DB cluster.</p>
|
|
8110
|
-
*/
|
|
8111
|
-
DbClusterParameterGroup?: string;
|
|
8112
|
-
/**
|
|
8113
|
-
* <p>The subnet group that is associated with the DB cluster, including the name,
|
|
8114
|
-
* description, and subnets in the subnet group.</p>
|
|
8115
|
-
*/
|
|
8116
|
-
DbSubnetGroup?: string;
|
|
8117
|
-
/**
|
|
8118
|
-
* <p>The list of option group memberships for this DB cluster.</p>
|
|
8119
|
-
*/
|
|
8120
|
-
DbClusterOptionGroupMemberships?: AwsRdsDbClusterOptionGroupMembership[];
|
|
8121
|
-
/**
|
|
8122
|
-
* <p>The DB cluster identifier that the user assigned to the cluster. This identifier is the
|
|
8123
|
-
* unique key that identifies a DB cluster.</p>
|
|
8124
|
-
*/
|
|
8125
|
-
DbClusterIdentifier?: string;
|
|
8126
|
-
/**
|
|
8127
|
-
* <p>The list of instances that make up the DB cluster.</p>
|
|
8128
|
-
*/
|
|
8129
|
-
DbClusterMembers?: AwsRdsDbClusterMember[];
|
|
8130
|
-
/**
|
|
8131
|
-
* <p>Whether the mapping of IAM accounts to database accounts is enabled.</p>
|
|
8132
|
-
*/
|
|
8133
|
-
IamDatabaseAuthenticationEnabled?: boolean;
|
|
8134
|
-
}
|
|
8135
|
-
export declare namespace AwsRdsDbClusterDetails {
|
|
8136
|
-
/**
|
|
8137
|
-
* @internal
|
|
8138
|
-
*/
|
|
8139
|
-
const filterSensitiveLog: (obj: AwsRdsDbClusterDetails) => any;
|
|
8140
|
-
}
|
|
8141
|
-
/**
|
|
8142
|
-
* <p>Information about an Amazon RDS DB cluster snapshot.</p>
|
|
8143
|
-
*/
|
|
8144
|
-
export interface AwsRdsDbClusterSnapshotDetails {
|
|
8145
|
-
/**
|
|
8146
|
-
* <p>A list of Availability Zones where instances in the DB cluster can be created.</p>
|
|
8147
|
-
*/
|
|
8148
|
-
AvailabilityZones?: string[];
|
|
8149
|
-
/**
|
|
8150
|
-
* <p>Indicates when the snapshot was taken.</p>
|
|
8151
|
-
* <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
|
|
8152
|
-
* Date/Time Format</a>. The value cannot contain spaces. For example,
|
|
8153
|
-
* <code>2020-03-22T13:22:13.933Z</code>.</p>
|
|
8154
|
-
*/
|
|
8155
|
-
SnapshotCreateTime?: string;
|
|
8156
|
-
/**
|
|
8157
|
-
* <p>The name of the database engine that you want to use for this DB instance.</p>
|
|
8158
|
-
*/
|
|
8159
|
-
Engine?: string;
|
|
8160
|
-
/**
|
|
8161
|
-
* <p>Specifies the allocated storage size in gibibytes (GiB).</p>
|
|
8162
|
-
*/
|
|
8163
|
-
AllocatedStorage?: number;
|
|
8164
|
-
/**
|
|
8165
|
-
* <p>The status of this DB cluster snapshot.</p>
|
|
8166
|
-
*/
|
|
8167
|
-
Status?: string;
|
|
8168
|
-
/**
|
|
8169
|
-
* <p>The port number on which the DB instances in the DB cluster accept connections.</p>
|
|
8170
|
-
*/
|
|
8171
|
-
Port?: number;
|
|
8172
|
-
/**
|
|
8173
|
-
* <p>The VPC ID that is associated with the DB cluster snapshot.</p>
|
|
8174
|
-
*/
|
|
8175
|
-
VpcId?: string;
|
|
8176
|
-
/**
|
|
8177
|
-
* <p>Indicates when the DB cluster was created, in Universal Coordinated Time (UTC).</p>
|
|
8178
|
-
* <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
|
|
8179
|
-
* Date/Time Format</a>. The value cannot contain spaces. For example,
|
|
8180
|
-
* <code>2020-03-22T13:22:13.933Z</code>.</p>
|
|
8181
|
-
*/
|
|
8182
|
-
ClusterCreateTime?: string;
|
|
8183
|
-
/**
|
|
8184
|
-
* <p>The name of the master user for the DB cluster.</p>
|
|
8185
|
-
*/
|
|
8186
|
-
MasterUsername?: string;
|
|
8187
|
-
/**
|
|
8188
|
-
* <p>The version of the database engine to use.</p>
|
|
8189
|
-
*/
|
|
8190
|
-
EngineVersion?: string;
|
|
8191
|
-
/**
|
|
8192
|
-
* <p>The license model information for this DB cluster snapshot.</p>
|
|
8193
|
-
*/
|
|
8194
|
-
LicenseModel?: string;
|
|
8195
|
-
/**
|
|
8196
|
-
* <p>The type of DB cluster snapshot.</p>
|
|
8197
|
-
*/
|
|
8198
|
-
SnapshotType?: string;
|
|
8199
|
-
/**
|
|
8200
|
-
* <p>Specifies the percentage of the estimated data that has been transferred.</p>
|
|
8201
|
-
*/
|
|
8202
|
-
PercentProgress?: number;
|
|
8203
|
-
/**
|
|
8204
|
-
* <p>Whether the DB cluster is encrypted.</p>
|
|
8205
|
-
*/
|
|
8206
|
-
StorageEncrypted?: boolean;
|
|
8207
|
-
/**
|
|
8208
|
-
* <p>The ARN of the KMS master key that is used to encrypt the database instances in the
|
|
8209
|
-
* DB cluster.</p>
|
|
8210
|
-
*/
|
|
8211
|
-
KmsKeyId?: string;
|
|
8212
|
-
/**
|
|
8213
|
-
* <p>The DB cluster identifier.</p>
|
|
8214
|
-
*/
|
|
8215
|
-
DbClusterIdentifier?: string;
|
|
8216
|
-
/**
|
|
8217
|
-
* <p>The identifier of the DB cluster snapshot.</p>
|
|
8218
|
-
*/
|
|
8219
|
-
DbClusterSnapshotIdentifier?: string;
|
|
8220
|
-
/**
|
|
8221
|
-
* <p>Whether mapping of IAM accounts to database accounts is enabled.</p>
|
|
8222
|
-
*/
|
|
8223
|
-
IamDatabaseAuthenticationEnabled?: boolean;
|
|
8224
|
-
}
|
|
8225
|
-
export declare namespace AwsRdsDbClusterSnapshotDetails {
|
|
8226
|
-
/**
|
|
8227
|
-
* @internal
|
|
8228
|
-
*/
|
|
8229
|
-
const filterSensitiveLog: (obj: AwsRdsDbClusterSnapshotDetails) => any;
|
|
8230
|
-
}
|
|
8231
|
-
/**
|
|
8232
|
-
* <p>An IAM role associated with the DB instance.</p>
|
|
8233
|
-
*/
|
|
8234
|
-
export interface AwsRdsDbInstanceAssociatedRole {
|
|
8235
|
-
/**
|
|
8236
|
-
* <p>The ARN of the IAM role that is associated with the DB
|
|
8237
|
-
* instance.</p>
|
|
8238
|
-
*/
|
|
8239
|
-
RoleArn?: string;
|
|
8240
|
-
/**
|
|
8241
|
-
* <p>The name of the feature associated with the IAM role.</p>
|
|
8242
|
-
*/
|
|
8243
|
-
FeatureName?: string;
|
|
8244
|
-
/**
|
|
8245
|
-
* <p>Describes the state of the association between the IAM role and the DB instance. The
|
|
8246
|
-
* <code>Status</code> property returns one of the following values:</p>
|
|
8247
|
-
* <ul>
|
|
8248
|
-
* <li>
|
|
8249
|
-
* <p>
|
|
8250
|
-
* <code>ACTIVE</code> - The IAM role ARN is associated with the DB instance and can
|
|
8251
|
-
* be used to access other Amazon Web Services services on your behalf.</p>
|
|
8252
|
-
* </li>
|
|
8253
|
-
* <li>
|
|
8254
|
-
* <p>
|
|
8255
|
-
* <code>PENDING</code> - The IAM role ARN is being associated with the DB
|
|
8256
|
-
* instance.</p>
|
|
8257
|
-
* </li>
|
|
8258
|
-
* <li>
|
|
8259
|
-
* <p>
|
|
8260
|
-
* <code>INVALID</code> - The IAM role ARN is associated with the DB instance. But
|
|
8261
|
-
* the DB instance is unable to assume the IAM role in order to access other Amazon Web Services
|
|
8262
|
-
* services on your behalf. </p>
|
|
8263
|
-
* </li>
|
|
8264
|
-
* </ul>
|
|
8265
|
-
*/
|
|
8266
|
-
Status?: string;
|
|
8267
|
-
}
|
|
8268
|
-
export declare namespace AwsRdsDbInstanceAssociatedRole {
|
|
8269
|
-
/**
|
|
8270
|
-
* @internal
|
|
8271
|
-
*/
|
|
8272
|
-
const filterSensitiveLog: (obj: AwsRdsDbInstanceAssociatedRole) => any;
|
|
8273
|
-
}
|
|
8274
|
-
/**
|
|
8275
|
-
* <p>Provides information about a parameter group for a DB instance.</p>
|
|
8276
|
-
*/
|
|
8277
|
-
export interface AwsRdsDbParameterGroup {
|
|
8278
|
-
/**
|
|
8279
|
-
* <p>The name of the parameter group.</p>
|
|
8280
|
-
*/
|
|
8281
|
-
DbParameterGroupName?: string;
|
|
8282
|
-
/**
|
|
8283
|
-
* <p>The status of parameter updates.</p>
|
|
8284
|
-
*/
|
|
8285
|
-
ParameterApplyStatus?: string;
|
|
8286
|
-
}
|
|
8287
|
-
export declare namespace AwsRdsDbParameterGroup {
|
|
8288
|
-
/**
|
|
8289
|
-
* @internal
|
|
8290
|
-
*/
|
|
8291
|
-
const filterSensitiveLog: (obj: AwsRdsDbParameterGroup) => any;
|
|
8292
|
-
}
|
|
8293
|
-
/**
|
|
8294
|
-
* <p>An Availability Zone for a subnet in a subnet group.</p>
|
|
8295
|
-
*/
|
|
8296
|
-
export interface AwsRdsDbSubnetGroupSubnetAvailabilityZone {
|
|
8297
|
-
/**
|
|
8298
|
-
* <p>The name of the Availability Zone for a subnet in the subnet group.</p>
|
|
8299
|
-
*/
|
|
8300
|
-
Name?: string;
|
|
8301
|
-
}
|
|
8302
|
-
export declare namespace AwsRdsDbSubnetGroupSubnetAvailabilityZone {
|
|
8303
|
-
/**
|
|
8304
|
-
* @internal
|
|
8305
|
-
*/
|
|
8306
|
-
const filterSensitiveLog: (obj: AwsRdsDbSubnetGroupSubnetAvailabilityZone) => any;
|
|
8307
|
-
}
|
|
8308
|
-
/**
|
|
8309
|
-
* <p>Information about a subnet in a subnet group.</p>
|
|
8310
|
-
*/
|
|
8311
|
-
export interface AwsRdsDbSubnetGroupSubnet {
|
|
8312
|
-
/**
|
|
8313
|
-
* <p>The identifier of a subnet in the subnet group.</p>
|
|
8314
|
-
*/
|
|
8315
|
-
SubnetIdentifier?: string;
|
|
8316
|
-
/**
|
|
8317
|
-
* <p>Information about the Availability Zone for a subnet in the subnet group.</p>
|
|
8318
|
-
*/
|
|
8319
|
-
SubnetAvailabilityZone?: AwsRdsDbSubnetGroupSubnetAvailabilityZone;
|
|
8320
|
-
/**
|
|
8321
|
-
* <p>The status of a subnet in the subnet group.</p>
|
|
8322
|
-
*/
|
|
8323
|
-
SubnetStatus?: string;
|
|
8324
|
-
}
|
|
8325
|
-
export declare namespace AwsRdsDbSubnetGroupSubnet {
|
|
8326
|
-
/**
|
|
8327
|
-
* @internal
|
|
8328
|
-
*/
|
|
8329
|
-
const filterSensitiveLog: (obj: AwsRdsDbSubnetGroupSubnet) => any;
|
|
8330
|
-
}
|
|
8331
|
-
/**
|
|
8332
|
-
* <p>Information about the subnet group for the database instance.</p>
|
|
8333
|
-
*/
|
|
8334
|
-
export interface AwsRdsDbSubnetGroup {
|
|
8335
|
-
/**
|
|
8336
|
-
* <p>The name of the subnet group.</p>
|
|
8337
|
-
*/
|
|
8338
|
-
DbSubnetGroupName?: string;
|
|
8339
|
-
/**
|
|
8340
|
-
* <p>The description of the subnet group.</p>
|
|
8341
|
-
*/
|
|
8342
|
-
DbSubnetGroupDescription?: string;
|
|
8343
|
-
/**
|
|
8344
|
-
* <p>The VPC ID of the subnet group.</p>
|
|
8345
|
-
*/
|
|
8346
|
-
VpcId?: string;
|
|
8347
|
-
/**
|
|
8348
|
-
* <p>The status of the subnet group.</p>
|
|
8349
|
-
*/
|
|
8350
|
-
SubnetGroupStatus?: string;
|
|
8351
|
-
/**
|
|
8352
|
-
* <p>A list of subnets in the subnet group.</p>
|
|
8353
|
-
*/
|
|
8354
|
-
Subnets?: AwsRdsDbSubnetGroupSubnet[];
|
|
8355
|
-
/**
|
|
8356
|
-
* <p>The ARN of the subnet group.</p>
|
|
8357
|
-
*/
|
|
8358
|
-
DbSubnetGroupArn?: string;
|
|
8359
|
-
}
|
|
8360
|
-
export declare namespace AwsRdsDbSubnetGroup {
|
|
8361
|
-
/**
|
|
8362
|
-
* @internal
|
|
8363
|
-
*/
|
|
8364
|
-
const filterSensitiveLog: (obj: AwsRdsDbSubnetGroup) => any;
|
|
8365
|
-
}
|
|
8366
|
-
/**
|
|
8367
|
-
* <p>Specifies the connection endpoint.</p>
|
|
8368
|
-
*/
|
|
8369
|
-
export interface AwsRdsDbInstanceEndpoint {
|
|
8370
|
-
/**
|
|
8371
|
-
* <p>Specifies the DNS address of the DB instance.</p>
|
|
8372
|
-
*/
|
|
8373
|
-
Address?: string;
|
|
8374
|
-
/**
|
|
8375
|
-
* <p>Specifies the port that the database engine is listening on.</p>
|
|
8376
|
-
*/
|
|
8377
|
-
Port?: number;
|
|
8378
|
-
/**
|
|
8379
|
-
* <p>Specifies the ID that Amazon Route 53 assigns when you create a hosted zone.</p>
|
|
8380
|
-
*/
|
|
8381
|
-
HostedZoneId?: string;
|
|
8382
|
-
}
|
|
8383
|
-
export declare namespace AwsRdsDbInstanceEndpoint {
|
|
8384
|
-
/**
|
|
8385
|
-
* @internal
|
|
8386
|
-
*/
|
|
8387
|
-
const filterSensitiveLog: (obj: AwsRdsDbInstanceEndpoint) => any;
|
|
8388
|
-
}
|
|
8389
|
-
/**
|
|
8390
|
-
* <p>An option group membership.</p>
|
|
8391
|
-
*/
|
|
8392
|
-
export interface AwsRdsDbOptionGroupMembership {
|
|
8393
|
-
/**
|
|
8394
|
-
* <p>The name of the option group.</p>
|
|
8395
|
-
*/
|
|
8396
|
-
OptionGroupName?: string;
|
|
8397
|
-
/**
|
|
8398
|
-
* <p>The status of the option group membership.</p>
|
|
8399
|
-
*/
|
|
8400
|
-
Status?: string;
|
|
8401
|
-
}
|
|
8402
|
-
export declare namespace AwsRdsDbOptionGroupMembership {
|
|
8403
|
-
/**
|
|
8404
|
-
* @internal
|
|
8405
|
-
*/
|
|
8406
|
-
const filterSensitiveLog: (obj: AwsRdsDbOptionGroupMembership) => any;
|
|
8407
|
-
}
|
|
8408
|
-
/**
|
|
8409
|
-
* <p>Identifies the log types to enable and disable.</p>
|
|
8410
|
-
*/
|
|
8411
|
-
export interface AwsRdsPendingCloudWatchLogsExports {
|
|
8412
|
-
/**
|
|
8413
|
-
* <p>A list of log types that are being enabled.</p>
|
|
8414
|
-
*/
|
|
8415
|
-
LogTypesToEnable?: string[];
|
|
8416
|
-
/**
|
|
8417
|
-
* <p>A list of log types that are being disabled.</p>
|
|
8418
|
-
*/
|
|
8419
|
-
LogTypesToDisable?: string[];
|
|
8420
|
-
}
|
|
8421
|
-
export declare namespace AwsRdsPendingCloudWatchLogsExports {
|
|
8422
|
-
/**
|
|
8423
|
-
* @internal
|
|
8424
|
-
*/
|
|
8425
|
-
const filterSensitiveLog: (obj: AwsRdsPendingCloudWatchLogsExports) => any;
|
|
8426
|
-
}
|
|
8427
|
-
/**
|
|
8428
|
-
* <p>A processor feature.</p>
|
|
8429
|
-
*/
|
|
8430
|
-
export interface AwsRdsDbProcessorFeature {
|
|
8431
|
-
/**
|
|
8432
|
-
* <p>The name of the processor feature.</p>
|
|
8433
|
-
*/
|
|
8434
|
-
Name?: string;
|
|
7931
|
+
Destination?: string;
|
|
8435
7932
|
/**
|
|
8436
|
-
* <p>The
|
|
7933
|
+
* <p>The destination port to inspect for. You can specify an individual port, such as <code>1994</code>. You also can specify a port range, such as <code>1990:1994</code>. To match with any port, specify <code>ANY</code>.</p>
|
|
8437
7934
|
*/
|
|
8438
|
-
|
|
8439
|
-
}
|
|
8440
|
-
export declare namespace AwsRdsDbProcessorFeature {
|
|
8441
|
-
/**
|
|
8442
|
-
* @internal
|
|
8443
|
-
*/
|
|
8444
|
-
const filterSensitiveLog: (obj: AwsRdsDbProcessorFeature) => any;
|
|
8445
|
-
}
|
|
8446
|
-
/**
|
|
8447
|
-
* <p>Changes to a DB instance that are currently pending.</p>
|
|
8448
|
-
*/
|
|
8449
|
-
export interface AwsRdsDbPendingModifiedValues {
|
|
8450
|
-
/**
|
|
8451
|
-
* <p>The new DB instance class for the DB instance.</p>
|
|
8452
|
-
*/
|
|
8453
|
-
DbInstanceClass?: string;
|
|
8454
|
-
/**
|
|
8455
|
-
* <p>The new value of the allocated storage for the DB instance.</p>
|
|
8456
|
-
*/
|
|
8457
|
-
AllocatedStorage?: number;
|
|
8458
|
-
/**
|
|
8459
|
-
* <p>The new master user password for the DB instance.</p>
|
|
8460
|
-
*/
|
|
8461
|
-
MasterUserPassword?: string;
|
|
8462
|
-
/**
|
|
8463
|
-
* <p>The new port for the DB instance.</p>
|
|
8464
|
-
*/
|
|
8465
|
-
Port?: number;
|
|
8466
|
-
/**
|
|
8467
|
-
* <p>The new backup retention period for the DB instance.</p>
|
|
8468
|
-
*/
|
|
8469
|
-
BackupRetentionPeriod?: number;
|
|
8470
|
-
/**
|
|
8471
|
-
* <p>Indicates that a single Availability Zone DB instance is changing to a multiple Availability Zone deployment.</p>
|
|
8472
|
-
*/
|
|
8473
|
-
MultiAZ?: boolean;
|
|
8474
|
-
/**
|
|
8475
|
-
* <p>The new engine version for the DB instance.</p>
|
|
8476
|
-
*/
|
|
8477
|
-
EngineVersion?: string;
|
|
8478
|
-
/**
|
|
8479
|
-
* <p>The new license model value for the DB instance.</p>
|
|
8480
|
-
*/
|
|
8481
|
-
LicenseModel?: string;
|
|
8482
|
-
/**
|
|
8483
|
-
* <p>The new provisioned IOPS value for the DB instance.</p>
|
|
8484
|
-
*/
|
|
8485
|
-
Iops?: number;
|
|
8486
|
-
/**
|
|
8487
|
-
* <p>The new DB instance identifier for the DB instance.</p>
|
|
8488
|
-
*/
|
|
8489
|
-
DbInstanceIdentifier?: string;
|
|
8490
|
-
/**
|
|
8491
|
-
* <p>The new storage type for the DB instance.</p>
|
|
8492
|
-
*/
|
|
8493
|
-
StorageType?: string;
|
|
8494
|
-
/**
|
|
8495
|
-
* <p>The new CA certificate identifier for the DB instance.</p>
|
|
8496
|
-
*/
|
|
8497
|
-
CaCertificateIdentifier?: string;
|
|
8498
|
-
/**
|
|
8499
|
-
* <p>The name of the new subnet group for the DB instance.</p>
|
|
8500
|
-
*/
|
|
8501
|
-
DbSubnetGroupName?: string;
|
|
8502
|
-
/**
|
|
8503
|
-
* <p>A list of log types that are being enabled or disabled.</p>
|
|
8504
|
-
*/
|
|
8505
|
-
PendingCloudWatchLogsExports?: AwsRdsPendingCloudWatchLogsExports;
|
|
8506
|
-
/**
|
|
8507
|
-
* <p>Processor features that are being updated.</p>
|
|
8508
|
-
*/
|
|
8509
|
-
ProcessorFeatures?: AwsRdsDbProcessorFeature[];
|
|
8510
|
-
}
|
|
8511
|
-
export declare namespace AwsRdsDbPendingModifiedValues {
|
|
8512
|
-
/**
|
|
8513
|
-
* @internal
|
|
8514
|
-
*/
|
|
8515
|
-
const filterSensitiveLog: (obj: AwsRdsDbPendingModifiedValues) => any;
|
|
8516
|
-
}
|
|
8517
|
-
/**
|
|
8518
|
-
* <p>Information about the status of a read replica.</p>
|
|
8519
|
-
*/
|
|
8520
|
-
export interface AwsRdsDbStatusInfo {
|
|
8521
|
-
/**
|
|
8522
|
-
* <p>The type of status. For a read replica, the status type is read replication.</p>
|
|
8523
|
-
*/
|
|
8524
|
-
StatusType?: string;
|
|
8525
|
-
/**
|
|
8526
|
-
* <p>Whether the read replica instance is operating normally.</p>
|
|
8527
|
-
*/
|
|
8528
|
-
Normal?: boolean;
|
|
8529
|
-
/**
|
|
8530
|
-
* <p>The status of the read replica instance.</p>
|
|
8531
|
-
*/
|
|
8532
|
-
Status?: string;
|
|
8533
|
-
/**
|
|
8534
|
-
* <p>If the read replica is currently in an error state, provides the error details.</p>
|
|
8535
|
-
*/
|
|
8536
|
-
Message?: string;
|
|
8537
|
-
}
|
|
8538
|
-
export declare namespace AwsRdsDbStatusInfo {
|
|
7935
|
+
DestinationPort?: string;
|
|
8539
7936
|
/**
|
|
8540
|
-
*
|
|
8541
|
-
*/
|
|
8542
|
-
const filterSensitiveLog: (obj: AwsRdsDbStatusInfo) => any;
|
|
8543
|
-
}
|
|
8544
|
-
/**
|
|
8545
|
-
* <p>Contains the details of an Amazon RDS DB instance.</p>
|
|
8546
|
-
*/
|
|
8547
|
-
export interface AwsRdsDbInstanceDetails {
|
|
8548
|
-
/**
|
|
8549
|
-
* <p>The IAM roles associated with the DB
|
|
8550
|
-
* instance.</p>
|
|
8551
|
-
*/
|
|
8552
|
-
AssociatedRoles?: AwsRdsDbInstanceAssociatedRole[];
|
|
8553
|
-
/**
|
|
8554
|
-
* <p>The identifier of the CA certificate for this DB instance.</p>
|
|
8555
|
-
*/
|
|
8556
|
-
CACertificateIdentifier?: string;
|
|
8557
|
-
/**
|
|
8558
|
-
* <p>If the DB instance is a member of a DB cluster, contains the name of the DB cluster that
|
|
8559
|
-
* the DB instance is a member of.</p>
|
|
8560
|
-
*/
|
|
8561
|
-
DBClusterIdentifier?: string;
|
|
8562
|
-
/**
|
|
8563
|
-
* <p>Contains a user-supplied database identifier. This identifier is the unique key that
|
|
8564
|
-
* identifies a DB instance.</p>
|
|
8565
|
-
*/
|
|
8566
|
-
DBInstanceIdentifier?: string;
|
|
8567
|
-
/**
|
|
8568
|
-
* <p>Contains the name of the compute and memory capacity class of the DB instance.</p>
|
|
8569
|
-
*/
|
|
8570
|
-
DBInstanceClass?: string;
|
|
8571
|
-
/**
|
|
8572
|
-
* <p>Specifies the port that the DB instance listens on. If the DB instance is part of a DB
|
|
8573
|
-
* cluster, this can be a different port than the DB cluster port.</p>
|
|
8574
|
-
*/
|
|
8575
|
-
DbInstancePort?: number;
|
|
8576
|
-
/**
|
|
8577
|
-
* <p>The Amazon Web Services Region-unique, immutable identifier for the DB instance. This identifier is
|
|
8578
|
-
* found in CloudTrail log entries whenever the KMS key for the DB instance is
|
|
8579
|
-
* accessed. </p>
|
|
8580
|
-
*/
|
|
8581
|
-
DbiResourceId?: string;
|
|
8582
|
-
/**
|
|
8583
|
-
* <p>The meaning of this parameter differs according to the database engine you use.</p>
|
|
8584
|
-
* <p>
|
|
8585
|
-
* <b>MySQL, MariaDB, SQL Server, PostgreSQL</b>
|
|
8586
|
-
* </p>
|
|
8587
|
-
* <p>Contains the name of the initial database of this instance that was provided at create
|
|
8588
|
-
* time, if one was specified when the DB instance was created. This same name is returned for
|
|
8589
|
-
* the life of the DB instance.</p>
|
|
8590
|
-
* <p>
|
|
8591
|
-
* <b>Oracle</b>
|
|
8592
|
-
* </p>
|
|
8593
|
-
* <p>Contains the Oracle System ID (SID) of the created DB instance. Not shown when the
|
|
8594
|
-
* returned parameters do not apply to an Oracle DB instance. </p>
|
|
8595
|
-
*/
|
|
8596
|
-
DBName?: string;
|
|
8597
|
-
/**
|
|
8598
|
-
* <p>Indicates whether the DB instance has deletion protection enabled.</p>
|
|
8599
|
-
* <p>When deletion protection is enabled, the database cannot be deleted.</p>
|
|
8600
|
-
*/
|
|
8601
|
-
DeletionProtection?: boolean;
|
|
8602
|
-
/**
|
|
8603
|
-
* <p>Specifies the connection endpoint.</p>
|
|
8604
|
-
*/
|
|
8605
|
-
Endpoint?: AwsRdsDbInstanceEndpoint;
|
|
8606
|
-
/**
|
|
8607
|
-
* <p>Provides the name of the database engine to use for this DB instance.</p>
|
|
7937
|
+
* <p>The direction of traffic flow to inspect. If set to <code>ANY</code>, the inspection matches bidirectional traffic, both from the source to the destination and from the destination to the source. If set to <code>FORWARD</code>, the inspection only matches traffic going from the source to the destination.</p>
|
|
8608
7938
|
*/
|
|
8609
|
-
|
|
8610
|
-
/**
|
|
8611
|
-
* <p>Indicates the database engine version.</p>
|
|
8612
|
-
*/
|
|
8613
|
-
EngineVersion?: string;
|
|
8614
|
-
/**
|
|
8615
|
-
* <p>True if mapping of IAM accounts to database
|
|
8616
|
-
* accounts is enabled, and otherwise false.</p>
|
|
8617
|
-
* <p>IAM database authentication can be enabled for the following database engines.</p>
|
|
8618
|
-
* <ul>
|
|
8619
|
-
* <li>
|
|
8620
|
-
* <p>For MySQL 5.6, minor version 5.6.34 or higher</p>
|
|
8621
|
-
* </li>
|
|
8622
|
-
* <li>
|
|
8623
|
-
* <p>For MySQL 5.7, minor version 5.7.16 or higher</p>
|
|
8624
|
-
* </li>
|
|
8625
|
-
* <li>
|
|
8626
|
-
* <p>Aurora 5.6 or higher</p>
|
|
8627
|
-
* </li>
|
|
8628
|
-
* </ul>
|
|
8629
|
-
*/
|
|
8630
|
-
IAMDatabaseAuthenticationEnabled?: boolean;
|
|
8631
|
-
/**
|
|
8632
|
-
* <p>Indicates when the DB instance was created.</p>
|
|
8633
|
-
* <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
|
|
8634
|
-
* Date/Time Format</a>. The value cannot contain spaces. For example,
|
|
8635
|
-
* <code>2020-03-22T13:22:13.933Z</code>.</p>
|
|
8636
|
-
*/
|
|
8637
|
-
InstanceCreateTime?: string;
|
|
8638
|
-
/**
|
|
8639
|
-
* <p>If <code>StorageEncrypted</code> is true, the KMS key identifier for the encrypted
|
|
8640
|
-
* DB instance.</p>
|
|
8641
|
-
*/
|
|
8642
|
-
KmsKeyId?: string;
|
|
8643
|
-
/**
|
|
8644
|
-
* <p>Specifies the accessibility options for the DB instance.</p>
|
|
8645
|
-
* <p>A value of true specifies an Internet-facing instance with a publicly resolvable DNS
|
|
8646
|
-
* name, which resolves to a public IP address.</p>
|
|
8647
|
-
* <p>A value of false specifies an internal instance with a DNS name that resolves to a
|
|
8648
|
-
* private IP address. </p>
|
|
8649
|
-
*/
|
|
8650
|
-
PubliclyAccessible?: boolean;
|
|
7939
|
+
Direction?: string;
|
|
8651
7940
|
/**
|
|
8652
|
-
* <p>
|
|
7941
|
+
* <p>The protocol to inspect for. To inspector for all protocols, use <code>IP</code>.</p>
|
|
8653
7942
|
*/
|
|
8654
|
-
|
|
8655
|
-
/**
|
|
8656
|
-
* <p>The ARN from the key store with which the instance is associated for TDE
|
|
8657
|
-
* encryption.</p>
|
|
8658
|
-
*/
|
|
8659
|
-
TdeCredentialArn?: string;
|
|
8660
|
-
/**
|
|
8661
|
-
* <p>A list of VPC security groups that the DB instance belongs to.</p>
|
|
8662
|
-
*/
|
|
8663
|
-
VpcSecurityGroups?: AwsRdsDbInstanceVpcSecurityGroup[];
|
|
7943
|
+
Protocol?: string;
|
|
8664
7944
|
/**
|
|
8665
|
-
* <p>
|
|
7945
|
+
* <p>The source IP address or address range to inspect for, in CIDR notation. To match with any address, specify <code>ANY</code>.</p>
|
|
8666
7946
|
*/
|
|
8667
|
-
|
|
7947
|
+
Source?: string;
|
|
8668
7948
|
/**
|
|
8669
|
-
* <p>The
|
|
8670
|
-
* data for the DB instance.</p>
|
|
7949
|
+
* <p>The source port to inspect for. You can specify an individual port, such as <code>1994</code>. You also can specify a port range, such as <code>1990:1994</code>. To match with any port, specify <code>ANY</code>.</p>
|
|
8671
7950
|
*/
|
|
8672
|
-
|
|
7951
|
+
SourcePort?: string;
|
|
7952
|
+
}
|
|
7953
|
+
export declare namespace RuleGroupSourceStatefulRulesHeaderDetails {
|
|
8673
7954
|
/**
|
|
8674
|
-
*
|
|
7955
|
+
* @internal
|
|
8675
7956
|
*/
|
|
8676
|
-
|
|
7957
|
+
const filterSensitiveLog: (obj: RuleGroupSourceStatefulRulesHeaderDetails) => any;
|
|
7958
|
+
}
|
|
7959
|
+
/**
|
|
7960
|
+
* <p>A rule option for a stateful rule.</p>
|
|
7961
|
+
*/
|
|
7962
|
+
export interface RuleGroupSourceStatefulRulesOptionsDetails {
|
|
8677
7963
|
/**
|
|
8678
|
-
* <p>
|
|
7964
|
+
* <p>A keyword to look for.</p>
|
|
8679
7965
|
*/
|
|
8680
|
-
|
|
7966
|
+
Keyword?: string;
|
|
8681
7967
|
/**
|
|
8682
|
-
* <p>
|
|
7968
|
+
* <p>A list of settings.</p>
|
|
8683
7969
|
*/
|
|
8684
|
-
|
|
7970
|
+
Settings?: string[];
|
|
7971
|
+
}
|
|
7972
|
+
export declare namespace RuleGroupSourceStatefulRulesOptionsDetails {
|
|
8685
7973
|
/**
|
|
8686
|
-
*
|
|
8687
|
-
* enabled.</p>
|
|
8688
|
-
* <p>Uses the format <code>HH:MM-HH:MM</code>. For example, <code>04:52-05:22</code>.</p>
|
|
7974
|
+
* @internal
|
|
8689
7975
|
*/
|
|
8690
|
-
|
|
7976
|
+
const filterSensitiveLog: (obj: RuleGroupSourceStatefulRulesOptionsDetails) => any;
|
|
7977
|
+
}
|
|
7978
|
+
/**
|
|
7979
|
+
* <p>A Suricata rule specification.</p>
|
|
7980
|
+
*/
|
|
7981
|
+
export interface RuleGroupSourceStatefulRulesDetails {
|
|
8691
7982
|
/**
|
|
8692
|
-
* <p>
|
|
7983
|
+
* <p>Defines what Network Firewall should do with the packets in a traffic flow when the flow matches the stateful rule criteria.</p>
|
|
8693
7984
|
*/
|
|
8694
|
-
|
|
7985
|
+
Action?: string;
|
|
8695
7986
|
/**
|
|
8696
|
-
* <p>
|
|
7987
|
+
* <p>The stateful inspection criteria for the rule.</p>
|
|
8697
7988
|
*/
|
|
8698
|
-
|
|
7989
|
+
Header?: RuleGroupSourceStatefulRulesHeaderDetails;
|
|
8699
7990
|
/**
|
|
8700
|
-
* <p>
|
|
7991
|
+
* <p>Additional options for the rule.</p>
|
|
8701
7992
|
*/
|
|
8702
|
-
|
|
7993
|
+
RuleOptions?: RuleGroupSourceStatefulRulesOptionsDetails[];
|
|
7994
|
+
}
|
|
7995
|
+
export declare namespace RuleGroupSourceStatefulRulesDetails {
|
|
8703
7996
|
/**
|
|
8704
|
-
*
|
|
7997
|
+
* @internal
|
|
8705
7998
|
*/
|
|
8706
|
-
|
|
7999
|
+
const filterSensitiveLog: (obj: RuleGroupSourceStatefulRulesDetails) => any;
|
|
8000
|
+
}
|
|
8001
|
+
/**
|
|
8002
|
+
* <p>A custom action definition. A custom action is an optional, non-standard action to use for stateless packet handling.</p>
|
|
8003
|
+
*/
|
|
8004
|
+
export interface RuleGroupSourceCustomActionsDetails {
|
|
8707
8005
|
/**
|
|
8708
|
-
* <p>
|
|
8006
|
+
* <p>The definition of a custom action.</p>
|
|
8709
8007
|
*/
|
|
8710
|
-
|
|
8008
|
+
ActionDefinition?: StatelessCustomActionDefinition;
|
|
8711
8009
|
/**
|
|
8712
|
-
* <p>
|
|
8713
|
-
* Coordinated Time (UTC).</p>
|
|
8714
|
-
* <p>Uses the format <code><day>:HH:MM-<day>:HH:MM</code>.</p>
|
|
8715
|
-
* <p>For the day values, use
|
|
8716
|
-
* <code>mon</code>|<code>tue</code>|<code>wed</code>|<code>thu</code>|<code>fri</code>|<code>sat</code>|<code>sun</code>.</p>
|
|
8717
|
-
* <p>For example, <code>sun:09:32-sun:10:02</code>.</p>
|
|
8010
|
+
* <p>A descriptive name of the custom action.</p>
|
|
8718
8011
|
*/
|
|
8719
|
-
|
|
8012
|
+
ActionName?: string;
|
|
8013
|
+
}
|
|
8014
|
+
export declare namespace RuleGroupSourceCustomActionsDetails {
|
|
8720
8015
|
/**
|
|
8721
|
-
*
|
|
8016
|
+
* @internal
|
|
8722
8017
|
*/
|
|
8723
|
-
|
|
8018
|
+
const filterSensitiveLog: (obj: RuleGroupSourceCustomActionsDetails) => any;
|
|
8019
|
+
}
|
|
8020
|
+
/**
|
|
8021
|
+
* <p>A port range to specify the destination ports to inspect for.</p>
|
|
8022
|
+
*/
|
|
8023
|
+
export interface RuleGroupSourceStatelessRuleMatchAttributesDestinationPorts {
|
|
8724
8024
|
/**
|
|
8725
|
-
* <p>
|
|
8726
|
-
* restore.</p>
|
|
8727
|
-
* <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
|
|
8728
|
-
* Date/Time Format</a>. The value cannot contain spaces. For example,
|
|
8729
|
-
* <code>2020-03-22T13:22:13.933Z</code>.</p>
|
|
8025
|
+
* <p>The starting port value for the port range.</p>
|
|
8730
8026
|
*/
|
|
8731
|
-
|
|
8027
|
+
FromPort?: number;
|
|
8732
8028
|
/**
|
|
8733
|
-
* <p>
|
|
8029
|
+
* <p>The ending port value for the port range.</p>
|
|
8734
8030
|
*/
|
|
8735
|
-
|
|
8031
|
+
ToPort?: number;
|
|
8032
|
+
}
|
|
8033
|
+
export declare namespace RuleGroupSourceStatelessRuleMatchAttributesDestinationPorts {
|
|
8736
8034
|
/**
|
|
8737
|
-
*
|
|
8738
|
-
* instance.</p>
|
|
8035
|
+
* @internal
|
|
8739
8036
|
*/
|
|
8740
|
-
|
|
8037
|
+
const filterSensitiveLog: (obj: RuleGroupSourceStatelessRuleMatchAttributesDestinationPorts) => any;
|
|
8038
|
+
}
|
|
8039
|
+
/**
|
|
8040
|
+
* <p>A destination IP address or range.</p>
|
|
8041
|
+
*/
|
|
8042
|
+
export interface RuleGroupSourceStatelessRuleMatchAttributesDestinations {
|
|
8741
8043
|
/**
|
|
8742
|
-
* <p>
|
|
8044
|
+
* <p>An IP address or a block of IP addresses.</p>
|
|
8743
8045
|
*/
|
|
8744
|
-
|
|
8046
|
+
AddressDefinition?: string;
|
|
8047
|
+
}
|
|
8048
|
+
export declare namespace RuleGroupSourceStatelessRuleMatchAttributesDestinations {
|
|
8745
8049
|
/**
|
|
8746
|
-
*
|
|
8747
|
-
* a read replica.</p>
|
|
8050
|
+
* @internal
|
|
8748
8051
|
*/
|
|
8749
|
-
|
|
8052
|
+
const filterSensitiveLog: (obj: RuleGroupSourceStatelessRuleMatchAttributesDestinations) => any;
|
|
8053
|
+
}
|
|
8054
|
+
/**
|
|
8055
|
+
* <p>A port range to specify the source ports to inspect for.</p>
|
|
8056
|
+
*/
|
|
8057
|
+
export interface RuleGroupSourceStatelessRuleMatchAttributesSourcePorts {
|
|
8750
8058
|
/**
|
|
8751
|
-
* <p>
|
|
8059
|
+
* <p>The starting port value for the port range.</p>
|
|
8752
8060
|
*/
|
|
8753
|
-
|
|
8061
|
+
FromPort?: number;
|
|
8754
8062
|
/**
|
|
8755
|
-
* <p>
|
|
8063
|
+
* <p>The ending port value for the port range.</p>
|
|
8756
8064
|
*/
|
|
8757
|
-
|
|
8065
|
+
ToPort?: number;
|
|
8066
|
+
}
|
|
8067
|
+
export declare namespace RuleGroupSourceStatelessRuleMatchAttributesSourcePorts {
|
|
8758
8068
|
/**
|
|
8759
|
-
*
|
|
8069
|
+
* @internal
|
|
8760
8070
|
*/
|
|
8761
|
-
|
|
8071
|
+
const filterSensitiveLog: (obj: RuleGroupSourceStatelessRuleMatchAttributesSourcePorts) => any;
|
|
8072
|
+
}
|
|
8073
|
+
/**
|
|
8074
|
+
* <p>A source IP addresses and address range to inspect for.</p>
|
|
8075
|
+
*/
|
|
8076
|
+
export interface RuleGroupSourceStatelessRuleMatchAttributesSources {
|
|
8762
8077
|
/**
|
|
8763
|
-
* <p>
|
|
8078
|
+
* <p>An IP address or a block of IP addresses.</p>
|
|
8764
8079
|
*/
|
|
8765
|
-
|
|
8080
|
+
AddressDefinition?: string;
|
|
8081
|
+
}
|
|
8082
|
+
export declare namespace RuleGroupSourceStatelessRuleMatchAttributesSources {
|
|
8766
8083
|
/**
|
|
8767
|
-
*
|
|
8768
|
-
* Availability Zone.</p>
|
|
8084
|
+
* @internal
|
|
8769
8085
|
*/
|
|
8770
|
-
|
|
8086
|
+
const filterSensitiveLog: (obj: RuleGroupSourceStatelessRuleMatchAttributesSources) => any;
|
|
8087
|
+
}
|
|
8088
|
+
/**
|
|
8089
|
+
* <p>A set of TCP flags and masks to inspect for.</p>
|
|
8090
|
+
*/
|
|
8091
|
+
export interface RuleGroupSourceStatelessRuleMatchAttributesTcpFlags {
|
|
8771
8092
|
/**
|
|
8772
|
-
* <p>
|
|
8773
|
-
* empty.</p>
|
|
8093
|
+
* <p>Defines the flags from the <code>Masks</code> setting that must be set in order for the packet to match. Flags that are listed must be set. Flags that are not listed must not be set.</p>
|
|
8774
8094
|
*/
|
|
8775
|
-
|
|
8095
|
+
Flags?: string[];
|
|
8776
8096
|
/**
|
|
8777
|
-
* <p>The
|
|
8097
|
+
* <p>The set of flags to consider in the inspection. If not specified, then all flags are inspected.</p>
|
|
8778
8098
|
*/
|
|
8779
|
-
|
|
8099
|
+
Masks?: string[];
|
|
8100
|
+
}
|
|
8101
|
+
export declare namespace RuleGroupSourceStatelessRuleMatchAttributesTcpFlags {
|
|
8780
8102
|
/**
|
|
8781
|
-
*
|
|
8103
|
+
* @internal
|
|
8782
8104
|
*/
|
|
8783
|
-
|
|
8105
|
+
const filterSensitiveLog: (obj: RuleGroupSourceStatelessRuleMatchAttributesTcpFlags) => any;
|
|
8106
|
+
}
|
|
8107
|
+
/**
|
|
8108
|
+
* <p>Criteria for the stateless rule.</p>
|
|
8109
|
+
*/
|
|
8110
|
+
export interface RuleGroupSourceStatelessRuleMatchAttributes {
|
|
8784
8111
|
/**
|
|
8785
|
-
* <p>
|
|
8112
|
+
* <p>A list of port ranges to specify the destination ports to inspect for.</p>
|
|
8786
8113
|
*/
|
|
8787
|
-
|
|
8114
|
+
DestinationPorts?: RuleGroupSourceStatelessRuleMatchAttributesDestinationPorts[];
|
|
8788
8115
|
/**
|
|
8789
|
-
* <p>The
|
|
8790
|
-
* for the DB instance.</p>
|
|
8116
|
+
* <p>The destination IP addresses and address ranges to inspect for, in CIDR notation.</p>
|
|
8791
8117
|
*/
|
|
8792
|
-
|
|
8118
|
+
Destinations?: RuleGroupSourceStatelessRuleMatchAttributesDestinations[];
|
|
8793
8119
|
/**
|
|
8794
|
-
* <p>The
|
|
8795
|
-
* CloudWatch Logs.</p>
|
|
8120
|
+
* <p>The protocols to inspect for.</p>
|
|
8796
8121
|
*/
|
|
8797
|
-
|
|
8122
|
+
Protocols?: number[];
|
|
8798
8123
|
/**
|
|
8799
|
-
* <p>
|
|
8800
|
-
* of the existing primary instance.</p>
|
|
8124
|
+
* <p>A list of port ranges to specify the source ports to inspect for.</p>
|
|
8801
8125
|
*/
|
|
8802
|
-
|
|
8126
|
+
SourcePorts?: RuleGroupSourceStatelessRuleMatchAttributesSourcePorts[];
|
|
8803
8127
|
/**
|
|
8804
|
-
* <p>The
|
|
8128
|
+
* <p>The source IP addresses and address ranges to inspect for, in CIDR notation.</p>
|
|
8805
8129
|
*/
|
|
8806
|
-
|
|
8130
|
+
Sources?: RuleGroupSourceStatelessRuleMatchAttributesSources[];
|
|
8807
8131
|
/**
|
|
8808
|
-
* <p>
|
|
8132
|
+
* <p>The TCP flags and masks to inspect for.</p>
|
|
8809
8133
|
*/
|
|
8810
|
-
|
|
8134
|
+
TcpFlags?: RuleGroupSourceStatelessRuleMatchAttributesTcpFlags[];
|
|
8135
|
+
}
|
|
8136
|
+
export declare namespace RuleGroupSourceStatelessRuleMatchAttributes {
|
|
8811
8137
|
/**
|
|
8812
|
-
*
|
|
8138
|
+
* @internal
|
|
8813
8139
|
*/
|
|
8814
|
-
|
|
8140
|
+
const filterSensitiveLog: (obj: RuleGroupSourceStatelessRuleMatchAttributes) => any;
|
|
8141
|
+
}
|
|
8142
|
+
/**
|
|
8143
|
+
* <p>The definition of the stateless rule.</p>
|
|
8144
|
+
*/
|
|
8145
|
+
export interface RuleGroupSourceStatelessRuleDefinition {
|
|
8815
8146
|
/**
|
|
8816
|
-
* <p>The
|
|
8147
|
+
* <p>The actions to take on a packet that matches one of the stateless rule definition's match attributes. You must specify a standard action (<code>aws:pass</code>, <code>aws:drop</code>, or <code>aws:forward_to_sfe</code>). You can then add custom actions.</p>
|
|
8817
8148
|
*/
|
|
8818
|
-
|
|
8149
|
+
Actions?: string[];
|
|
8819
8150
|
/**
|
|
8820
|
-
* <p>
|
|
8151
|
+
* <p>The criteria for Network Firewall to use to inspect an individual packet in a stateless rule inspection.</p>
|
|
8821
8152
|
*/
|
|
8822
|
-
|
|
8153
|
+
MatchAttributes?: RuleGroupSourceStatelessRuleMatchAttributes;
|
|
8154
|
+
}
|
|
8155
|
+
export declare namespace RuleGroupSourceStatelessRuleDefinition {
|
|
8823
8156
|
/**
|
|
8824
|
-
*
|
|
8825
|
-
* the DB instance.</p>
|
|
8157
|
+
* @internal
|
|
8826
8158
|
*/
|
|
8827
|
-
|
|
8159
|
+
const filterSensitiveLog: (obj: RuleGroupSourceStatelessRuleDefinition) => any;
|
|
8160
|
+
}
|
|
8161
|
+
/**
|
|
8162
|
+
* <p>A stateless rule in the rule group.</p>
|
|
8163
|
+
*/
|
|
8164
|
+
export interface RuleGroupSourceStatelessRulesDetails {
|
|
8828
8165
|
/**
|
|
8829
|
-
* <p>
|
|
8166
|
+
* <p>Indicates the order in which to run this rule relative to all of the rules in the stateless rule group.</p>
|
|
8830
8167
|
*/
|
|
8831
|
-
|
|
8168
|
+
Priority?: number;
|
|
8832
8169
|
/**
|
|
8833
|
-
* <p>
|
|
8834
|
-
* instance.</p>
|
|
8170
|
+
* <p>Provides the definition of the stateless rule.</p>
|
|
8835
8171
|
*/
|
|
8836
|
-
|
|
8172
|
+
RuleDefinition?: RuleGroupSourceStatelessRuleDefinition;
|
|
8837
8173
|
}
|
|
8838
|
-
export declare namespace
|
|
8174
|
+
export declare namespace RuleGroupSourceStatelessRulesDetails {
|
|
8839
8175
|
/**
|
|
8840
8176
|
* @internal
|
|
8841
8177
|
*/
|
|
8842
|
-
const filterSensitiveLog: (obj:
|
|
8178
|
+
const filterSensitiveLog: (obj: RuleGroupSourceStatelessRulesDetails) => any;
|
|
8843
8179
|
}
|
|
8844
8180
|
/**
|
|
8845
|
-
* <p>
|
|
8181
|
+
* <p>Stateless rules and custom actions for a stateless rule group.</p>
|
|
8846
8182
|
*/
|
|
8847
|
-
export interface
|
|
8183
|
+
export interface RuleGroupSourceStatelessRulesAndCustomActionsDetails {
|
|
8848
8184
|
/**
|
|
8849
|
-
* <p>
|
|
8185
|
+
* <p>Custom actions for the rule group.</p>
|
|
8850
8186
|
*/
|
|
8851
|
-
|
|
8187
|
+
CustomActions?: RuleGroupSourceCustomActionsDetails[];
|
|
8852
8188
|
/**
|
|
8853
|
-
* <p>
|
|
8189
|
+
* <p>Stateless rules for the rule group.</p>
|
|
8854
8190
|
*/
|
|
8855
|
-
|
|
8191
|
+
StatelessRules?: RuleGroupSourceStatelessRulesDetails[];
|
|
8192
|
+
}
|
|
8193
|
+
export declare namespace RuleGroupSourceStatelessRulesAndCustomActionsDetails {
|
|
8856
8194
|
/**
|
|
8857
|
-
*
|
|
8195
|
+
* @internal
|
|
8858
8196
|
*/
|
|
8859
|
-
|
|
8197
|
+
const filterSensitiveLog: (obj: RuleGroupSourceStatelessRulesAndCustomActionsDetails) => any;
|
|
8198
|
+
}
|
|
8199
|
+
/**
|
|
8200
|
+
* <p>The rules and actions for the rule group.</p>
|
|
8201
|
+
*/
|
|
8202
|
+
export interface RuleGroupSource {
|
|
8860
8203
|
/**
|
|
8861
|
-
* <p>
|
|
8204
|
+
* <p>Stateful inspection criteria for a domain list rule group. A domain list rule group determines access by specific protocols to specific domains.</p>
|
|
8862
8205
|
*/
|
|
8863
|
-
|
|
8206
|
+
RulesSourceList?: RuleGroupSourceListDetails;
|
|
8864
8207
|
/**
|
|
8865
|
-
* <p>
|
|
8208
|
+
* <p>Stateful inspection criteria, provided in Suricata compatible intrusion prevention system (IPS) rules.</p>
|
|
8866
8209
|
*/
|
|
8867
|
-
|
|
8210
|
+
RulesString?: string;
|
|
8868
8211
|
/**
|
|
8869
|
-
* <p>
|
|
8212
|
+
* <p>Suricata rule specifications.</p>
|
|
8870
8213
|
*/
|
|
8871
|
-
|
|
8214
|
+
StatefulRules?: RuleGroupSourceStatefulRulesDetails[];
|
|
8872
8215
|
/**
|
|
8873
|
-
* <p>The
|
|
8216
|
+
* <p>The stateless rules and custom actions used by a stateless rule group.</p>
|
|
8874
8217
|
*/
|
|
8875
|
-
|
|
8218
|
+
StatelessRulesAndCustomActions?: RuleGroupSourceStatelessRulesAndCustomActionsDetails;
|
|
8219
|
+
}
|
|
8220
|
+
export declare namespace RuleGroupSource {
|
|
8876
8221
|
/**
|
|
8877
|
-
*
|
|
8222
|
+
* @internal
|
|
8878
8223
|
*/
|
|
8879
|
-
|
|
8224
|
+
const filterSensitiveLog: (obj: RuleGroupSource) => any;
|
|
8225
|
+
}
|
|
8226
|
+
/**
|
|
8227
|
+
* <p>A list of IP addresses and address ranges, in CIDR notation.</p>
|
|
8228
|
+
*/
|
|
8229
|
+
export interface RuleGroupVariablesIpSetsDetails {
|
|
8880
8230
|
/**
|
|
8881
|
-
* <p>The
|
|
8231
|
+
* <p>The list of IP addresses and ranges.</p>
|
|
8882
8232
|
*/
|
|
8883
|
-
|
|
8233
|
+
Definition?: string[];
|
|
8234
|
+
}
|
|
8235
|
+
export declare namespace RuleGroupVariablesIpSetsDetails {
|
|
8884
8236
|
/**
|
|
8885
|
-
*
|
|
8237
|
+
* @internal
|
|
8886
8238
|
*/
|
|
8887
|
-
|
|
8239
|
+
const filterSensitiveLog: (obj: RuleGroupVariablesIpSetsDetails) => any;
|
|
8240
|
+
}
|
|
8241
|
+
/**
|
|
8242
|
+
* <p>A list of port ranges.</p>
|
|
8243
|
+
*/
|
|
8244
|
+
export interface RuleGroupVariablesPortSetsDetails {
|
|
8888
8245
|
/**
|
|
8889
|
-
* <p>The
|
|
8246
|
+
* <p>The list of port ranges.</p>
|
|
8890
8247
|
*/
|
|
8891
|
-
|
|
8248
|
+
Definition?: string[];
|
|
8249
|
+
}
|
|
8250
|
+
export declare namespace RuleGroupVariablesPortSetsDetails {
|
|
8892
8251
|
/**
|
|
8893
|
-
*
|
|
8252
|
+
* @internal
|
|
8894
8253
|
*/
|
|
8895
|
-
|
|
8254
|
+
const filterSensitiveLog: (obj: RuleGroupVariablesPortSetsDetails) => any;
|
|
8255
|
+
}
|
|
8256
|
+
/**
|
|
8257
|
+
* <p>Additional settings to use in the specified rules.</p>
|
|
8258
|
+
*/
|
|
8259
|
+
export interface RuleGroupVariables {
|
|
8896
8260
|
/**
|
|
8897
|
-
* <p>
|
|
8261
|
+
* <p>A list of IP addresses and address ranges, in CIDR notation.</p>
|
|
8898
8262
|
*/
|
|
8899
|
-
|
|
8263
|
+
IpSets?: RuleGroupVariablesIpSetsDetails;
|
|
8900
8264
|
/**
|
|
8901
|
-
* <p>
|
|
8265
|
+
* <p>A list of port ranges.</p>
|
|
8902
8266
|
*/
|
|
8903
|
-
|
|
8267
|
+
PortSets?: RuleGroupVariablesPortSetsDetails;
|
|
8268
|
+
}
|
|
8269
|
+
export declare namespace RuleGroupVariables {
|
|
8904
8270
|
/**
|
|
8905
|
-
*
|
|
8271
|
+
* @internal
|
|
8906
8272
|
*/
|
|
8907
|
-
|
|
8273
|
+
const filterSensitiveLog: (obj: RuleGroupVariables) => any;
|
|
8274
|
+
}
|
|
8275
|
+
/**
|
|
8276
|
+
* <p>Details about the rule group.</p>
|
|
8277
|
+
*/
|
|
8278
|
+
export interface RuleGroupDetails {
|
|
8908
8279
|
/**
|
|
8909
|
-
* <p>
|
|
8280
|
+
* <p>Additional settings to use in the specified rules.</p>
|
|
8910
8281
|
*/
|
|
8911
|
-
|
|
8282
|
+
RuleVariables?: RuleGroupVariables;
|
|
8912
8283
|
/**
|
|
8913
|
-
* <p>The
|
|
8284
|
+
* <p>The rules and actions for the rule group.</p>
|
|
8285
|
+
* <p>For stateful rule groups, can contain <code>RulesString</code>, <code>RulesSourceList</code>, or <code>StatefulRules</code>.</p>
|
|
8286
|
+
* <p>For stateless rule groups, contains <code>StatelessRulesAndCustomActions</code>.</p>
|
|
8914
8287
|
*/
|
|
8915
|
-
|
|
8288
|
+
RulesSource?: RuleGroupSource;
|
|
8289
|
+
}
|
|
8290
|
+
export declare namespace RuleGroupDetails {
|
|
8916
8291
|
/**
|
|
8917
|
-
*
|
|
8292
|
+
* @internal
|
|
8918
8293
|
*/
|
|
8919
|
-
|
|
8294
|
+
const filterSensitiveLog: (obj: RuleGroupDetails) => any;
|
|
8295
|
+
}
|
|
8296
|
+
/**
|
|
8297
|
+
* <p>Details about an Network Firewall rule group. Rule groups are used to inspect and control network traffic. Stateless rule groups apply to individual packets. Stateful rule groups apply to packets in the context of their traffic flow.</p>
|
|
8298
|
+
* <p>Rule groups are referenced in firewall policies.
|
|
8299
|
+
* </p>
|
|
8300
|
+
*/
|
|
8301
|
+
export interface AwsNetworkFirewallRuleGroupDetails {
|
|
8920
8302
|
/**
|
|
8921
|
-
* <p>The
|
|
8303
|
+
* <p>The maximum number of operating resources that this rule group can use.</p>
|
|
8922
8304
|
*/
|
|
8923
|
-
|
|
8305
|
+
Capacity?: number;
|
|
8924
8306
|
/**
|
|
8925
|
-
* <p>
|
|
8307
|
+
* <p>A description of the rule group.</p>
|
|
8926
8308
|
*/
|
|
8927
|
-
|
|
8309
|
+
Description?: string;
|
|
8928
8310
|
/**
|
|
8929
|
-
* <p>
|
|
8311
|
+
* <p>Details about the rule group.</p>
|
|
8930
8312
|
*/
|
|
8931
|
-
|
|
8313
|
+
RuleGroup?: RuleGroupDetails;
|
|
8932
8314
|
/**
|
|
8933
|
-
* <p>
|
|
8315
|
+
* <p>The ARN of the rule group.</p>
|
|
8934
8316
|
*/
|
|
8935
|
-
|
|
8317
|
+
RuleGroupArn?: string;
|
|
8936
8318
|
/**
|
|
8937
|
-
* <p>
|
|
8319
|
+
* <p>The identifier of the rule group.</p>
|
|
8938
8320
|
*/
|
|
8939
|
-
|
|
8321
|
+
RuleGroupId?: string;
|
|
8940
8322
|
/**
|
|
8941
|
-
* <p>The
|
|
8323
|
+
* <p>The descriptive name of the rule group.</p>
|
|
8942
8324
|
*/
|
|
8943
|
-
|
|
8325
|
+
RuleGroupName?: string;
|
|
8944
8326
|
/**
|
|
8945
|
-
* <p>
|
|
8327
|
+
* <p>The type of rule group. A rule group can be stateful or stateless.</p>
|
|
8946
8328
|
*/
|
|
8947
|
-
|
|
8329
|
+
Type?: string;
|
|
8330
|
+
}
|
|
8331
|
+
export declare namespace AwsNetworkFirewallRuleGroupDetails {
|
|
8948
8332
|
/**
|
|
8949
|
-
*
|
|
8333
|
+
* @internal
|
|
8950
8334
|
*/
|
|
8951
|
-
|
|
8335
|
+
const filterSensitiveLog: (obj: AwsNetworkFirewallRuleGroupDetails) => any;
|
|
8336
|
+
}
|
|
8337
|
+
/**
|
|
8338
|
+
* <p>Configuration options for zone awareness.</p>
|
|
8339
|
+
*/
|
|
8340
|
+
export interface AwsOpenSearchServiceDomainClusterConfigZoneAwarenessConfigDetails {
|
|
8952
8341
|
/**
|
|
8953
|
-
* <p>The
|
|
8342
|
+
* <p>The number of Availability Zones that the domain uses. Valid values are 2 and 3. The default is 2.</p>
|
|
8954
8343
|
*/
|
|
8955
|
-
|
|
8344
|
+
AvailabilityZoneCount?: number;
|
|
8956
8345
|
}
|
|
8957
|
-
export declare namespace
|
|
8346
|
+
export declare namespace AwsOpenSearchServiceDomainClusterConfigZoneAwarenessConfigDetails {
|
|
8958
8347
|
/**
|
|
8959
8348
|
* @internal
|
|
8960
8349
|
*/
|
|
8961
|
-
const filterSensitiveLog: (obj:
|
|
8350
|
+
const filterSensitiveLog: (obj: AwsOpenSearchServiceDomainClusterConfigZoneAwarenessConfigDetails) => any;
|
|
8962
8351
|
}
|
|
8963
8352
|
/**
|
|
8964
|
-
* <p>Details about
|
|
8353
|
+
* <p>Details about the configuration of an OpenSearch cluster.</p>
|
|
8965
8354
|
*/
|
|
8966
|
-
export interface
|
|
8355
|
+
export interface AwsOpenSearchServiceDomainClusterConfigDetails {
|
|
8967
8356
|
/**
|
|
8968
|
-
* <p>The
|
|
8357
|
+
* <p>The number of data nodes to use in the OpenSearch domain.</p>
|
|
8969
8358
|
*/
|
|
8970
|
-
|
|
8359
|
+
InstanceCount?: number;
|
|
8971
8360
|
/**
|
|
8972
|
-
* <p>
|
|
8361
|
+
* <p>Whether UltraWarm is enabled.</p>
|
|
8973
8362
|
*/
|
|
8974
|
-
|
|
8363
|
+
WarmEnabled?: boolean;
|
|
8975
8364
|
/**
|
|
8976
|
-
* <p>
|
|
8365
|
+
* <p>The number of UltraWarm instances.</p>
|
|
8977
8366
|
*/
|
|
8978
|
-
|
|
8367
|
+
WarmCount?: number;
|
|
8979
8368
|
/**
|
|
8980
|
-
* <p>
|
|
8369
|
+
* <p>Whether to use a dedicated master node for the OpenSearch domain. A dedicated master node performs cluster management tasks, but does not hold data or respond to data upload requests.</p>
|
|
8981
8370
|
*/
|
|
8982
|
-
|
|
8371
|
+
DedicatedMasterEnabled?: boolean;
|
|
8983
8372
|
/**
|
|
8984
|
-
* <p>
|
|
8373
|
+
* <p>Configuration options for zone awareness. Provided if <code>ZoneAwarenessEnabled</code> is <code>true</code>.</p>
|
|
8985
8374
|
*/
|
|
8986
|
-
|
|
8375
|
+
ZoneAwarenessConfig?: AwsOpenSearchServiceDomainClusterConfigZoneAwarenessConfigDetails;
|
|
8987
8376
|
/**
|
|
8988
|
-
* <p>The
|
|
8377
|
+
* <p>The number of instances to use for the master node. If this attribute is specified, then <code>DedicatedMasterEnabled</code> must be <code>true</code>.</p>
|
|
8989
8378
|
*/
|
|
8990
|
-
|
|
8379
|
+
DedicatedMasterCount?: number;
|
|
8991
8380
|
/**
|
|
8992
|
-
* <p>
|
|
8381
|
+
* <p>The instance type for your data nodes. </p>
|
|
8993
8382
|
*/
|
|
8994
|
-
|
|
8383
|
+
InstanceType?: string;
|
|
8995
8384
|
/**
|
|
8996
|
-
* <p>The
|
|
8385
|
+
* <p>The type of UltraWarm instance.</p>
|
|
8997
8386
|
*/
|
|
8998
|
-
|
|
8387
|
+
WarmType?: string;
|
|
8999
8388
|
/**
|
|
9000
|
-
* <p>
|
|
9001
|
-
* <p>Valid values: <code>creating</code> | <code>modifying</code> | <code>deleting</code> | <code>active</code> | <code>no-permission</code> | <code>topic-not-exist</code>
|
|
9002
|
-
* </p>
|
|
8389
|
+
* <p>Whether to enable zone awareness for the OpenSearch domain. When zone awareness is enabled, OpenSearch Service allocates the cluster's nodes and replica index shards across Availability Zones (AZs) in the same Region. This prevents data loss and minimizes downtime if a node or data center fails.</p>
|
|
9003
8390
|
*/
|
|
9004
|
-
|
|
8391
|
+
ZoneAwarenessEnabled?: boolean;
|
|
9005
8392
|
/**
|
|
9006
|
-
* <p>The
|
|
9007
|
-
* <p>
|
|
9008
|
-
*
|
|
9009
|
-
* <code>2020-03-22T13:22:13.933Z</code>.</p>
|
|
8393
|
+
* <p>The hardware configuration of the computer that hosts the dedicated master node.</p>
|
|
8394
|
+
* <p>If this attribute is specified, then <code>DedicatedMasterEnabled</code> must be <code>true</code>.
|
|
8395
|
+
* </p>
|
|
9010
8396
|
*/
|
|
9011
|
-
|
|
8397
|
+
DedicatedMasterType?: string;
|
|
9012
8398
|
}
|
|
9013
|
-
export declare namespace
|
|
8399
|
+
export declare namespace AwsOpenSearchServiceDomainClusterConfigDetails {
|
|
9014
8400
|
/**
|
|
9015
8401
|
* @internal
|
|
9016
8402
|
*/
|
|
9017
|
-
const filterSensitiveLog: (obj:
|
|
8403
|
+
const filterSensitiveLog: (obj: AwsOpenSearchServiceDomainClusterConfigDetails) => any;
|
|
9018
8404
|
}
|
|
9019
8405
|
/**
|
|
9020
|
-
* <p>
|
|
8406
|
+
* <p>Information about additional options for the domain endpoint.</p>
|
|
9021
8407
|
*/
|
|
9022
|
-
export interface
|
|
8408
|
+
export interface AwsOpenSearchServiceDomainDomainEndpointOptionsDetails {
|
|
8409
|
+
/**
|
|
8410
|
+
* <p>The ARN for the security certificate. The certificate is managed in ACM.</p>
|
|
8411
|
+
*/
|
|
8412
|
+
CustomEndpointCertificateArn?: string;
|
|
9023
8413
|
/**
|
|
9024
|
-
* <p>
|
|
8414
|
+
* <p>Whether to enable a custom endpoint for the domain.</p>
|
|
9025
8415
|
*/
|
|
9026
|
-
|
|
8416
|
+
CustomEndpointEnabled?: boolean;
|
|
9027
8417
|
/**
|
|
9028
|
-
* <p>
|
|
8418
|
+
* <p>Whether to require that all traffic to the domain arrive over HTTPS.</p>
|
|
9029
8419
|
*/
|
|
9030
|
-
|
|
8420
|
+
EnforceHTTPS?: boolean;
|
|
9031
8421
|
/**
|
|
9032
|
-
* <p>The
|
|
8422
|
+
* <p>The fully qualified URL for the custom endpoint.</p>
|
|
8423
|
+
*/
|
|
8424
|
+
CustomEndpoint?: string;
|
|
8425
|
+
/**
|
|
8426
|
+
* <p>The TLS security policy to apply to the HTTPS endpoint of the OpenSearch domain.</p>
|
|
9033
8427
|
*/
|
|
9034
|
-
|
|
8428
|
+
TLSSecurityPolicy?: string;
|
|
9035
8429
|
}
|
|
9036
|
-
export declare namespace
|
|
8430
|
+
export declare namespace AwsOpenSearchServiceDomainDomainEndpointOptionsDetails {
|
|
9037
8431
|
/**
|
|
9038
8432
|
* @internal
|
|
9039
8433
|
*/
|
|
9040
|
-
const filterSensitiveLog: (obj:
|
|
8434
|
+
const filterSensitiveLog: (obj: AwsOpenSearchServiceDomainDomainEndpointOptionsDetails) => any;
|
|
9041
8435
|
}
|
|
9042
8436
|
/**
|
|
9043
|
-
* <p>
|
|
9044
|
-
* cluster.</p>
|
|
8437
|
+
* <p>Details about the configuration for encryption at rest for the OpenSearch domain.</p>
|
|
9045
8438
|
*/
|
|
9046
|
-
export interface
|
|
9047
|
-
/**
|
|
9048
|
-
* <p>The name of the parameter.</p>
|
|
9049
|
-
*/
|
|
9050
|
-
ParameterName?: string;
|
|
8439
|
+
export interface AwsOpenSearchServiceDomainEncryptionAtRestOptionsDetails {
|
|
9051
8440
|
/**
|
|
9052
|
-
* <p>
|
|
9053
|
-
* database, waiting for a cluster reboot, or encountered an error when it was applied.</p>
|
|
9054
|
-
* <p>Valid values: <code>in-sync</code> | <code>pending-reboot</code> | <code>applying</code>
|
|
9055
|
-
* | <code>invalid-parameter</code> | <code>apply-deferred</code> | <code>apply-error</code> |
|
|
9056
|
-
* <code>unknown-error</code>
|
|
9057
|
-
* </p>
|
|
8441
|
+
* <p>Whether encryption at rest is enabled.</p>
|
|
9058
8442
|
*/
|
|
9059
|
-
|
|
8443
|
+
Enabled?: boolean;
|
|
9060
8444
|
/**
|
|
9061
|
-
* <p>The
|
|
8445
|
+
* <p>The KMS key ID.</p>
|
|
9062
8446
|
*/
|
|
9063
|
-
|
|
8447
|
+
KmsKeyId?: string;
|
|
9064
8448
|
}
|
|
9065
|
-
export declare namespace
|
|
8449
|
+
export declare namespace AwsOpenSearchServiceDomainEncryptionAtRestOptionsDetails {
|
|
9066
8450
|
/**
|
|
9067
8451
|
* @internal
|
|
9068
8452
|
*/
|
|
9069
|
-
const filterSensitiveLog: (obj:
|
|
8453
|
+
const filterSensitiveLog: (obj: AwsOpenSearchServiceDomainEncryptionAtRestOptionsDetails) => any;
|
|
9070
8454
|
}
|
|
9071
8455
|
/**
|
|
9072
|
-
* <p>
|
|
8456
|
+
* <p>Configuration details for a log publishing option.</p>
|
|
9073
8457
|
*/
|
|
9074
|
-
export interface
|
|
9075
|
-
/**
|
|
9076
|
-
* <p>The list of parameter statuses.</p>
|
|
9077
|
-
*/
|
|
9078
|
-
ClusterParameterStatusList?: AwsRedshiftClusterClusterParameterStatus[];
|
|
8458
|
+
export interface AwsOpenSearchServiceDomainLogPublishingOption {
|
|
9079
8459
|
/**
|
|
9080
|
-
* <p>The
|
|
8460
|
+
* <p>The ARN of the CloudWatch Logs group to publish the logs to.</p>
|
|
9081
8461
|
*/
|
|
9082
|
-
|
|
8462
|
+
CloudWatchLogsLogGroupArn?: string;
|
|
9083
8463
|
/**
|
|
9084
|
-
* <p>
|
|
8464
|
+
* <p>Whether the log publishing is enabled.</p>
|
|
9085
8465
|
*/
|
|
9086
|
-
|
|
8466
|
+
Enabled?: boolean;
|
|
9087
8467
|
}
|
|
9088
|
-
export declare namespace
|
|
8468
|
+
export declare namespace AwsOpenSearchServiceDomainLogPublishingOption {
|
|
9089
8469
|
/**
|
|
9090
8470
|
* @internal
|
|
9091
8471
|
*/
|
|
9092
|
-
const filterSensitiveLog: (obj:
|
|
8472
|
+
const filterSensitiveLog: (obj: AwsOpenSearchServiceDomainLogPublishingOption) => any;
|
|
9093
8473
|
}
|
|
9094
8474
|
/**
|
|
9095
|
-
* <p>
|
|
8475
|
+
* <p>Configures the CloudWatch Logs to publish for the OpenSearch domain.</p>
|
|
9096
8476
|
*/
|
|
9097
|
-
export interface
|
|
8477
|
+
export interface AwsOpenSearchServiceDomainLogPublishingOptionsDetails {
|
|
9098
8478
|
/**
|
|
9099
|
-
* <p>
|
|
8479
|
+
* <p>Configures the OpenSearch index logs publishing.</p>
|
|
9100
8480
|
*/
|
|
9101
|
-
|
|
8481
|
+
IndexSlowLogs?: AwsOpenSearchServiceDomainLogPublishingOption;
|
|
9102
8482
|
/**
|
|
9103
|
-
* <p>
|
|
8483
|
+
* <p>Configures the OpenSearch search slow log publishing.</p>
|
|
9104
8484
|
*/
|
|
9105
|
-
|
|
8485
|
+
SearchSlowLogs?: AwsOpenSearchServiceDomainLogPublishingOption;
|
|
8486
|
+
/**
|
|
8487
|
+
* <p>Configures the OpenSearch audit logs publishing.</p>
|
|
8488
|
+
*/
|
|
8489
|
+
AuditLogs?: AwsOpenSearchServiceDomainLogPublishingOption;
|
|
9106
8490
|
}
|
|
9107
|
-
export declare namespace
|
|
8491
|
+
export declare namespace AwsOpenSearchServiceDomainLogPublishingOptionsDetails {
|
|
9108
8492
|
/**
|
|
9109
8493
|
* @internal
|
|
9110
8494
|
*/
|
|
9111
|
-
const filterSensitiveLog: (obj:
|
|
8495
|
+
const filterSensitiveLog: (obj: AwsOpenSearchServiceDomainLogPublishingOptionsDetails) => any;
|
|
9112
8496
|
}
|
|
9113
8497
|
/**
|
|
9114
|
-
* <p>
|
|
8498
|
+
* <p>Provides details about the configuration for node-to-node encryption.</p>
|
|
9115
8499
|
*/
|
|
9116
|
-
export interface
|
|
9117
|
-
/**
|
|
9118
|
-
* <p>The destination Region that snapshots are automatically copied to when cross-Region
|
|
9119
|
-
* snapshot copy is enabled.</p>
|
|
9120
|
-
*/
|
|
9121
|
-
DestinationRegion?: string;
|
|
9122
|
-
/**
|
|
9123
|
-
* <p>The number of days that manual snapshots are retained in the destination region after
|
|
9124
|
-
* they are copied from a source region.</p>
|
|
9125
|
-
* <p>If the value is -1, then the manual snapshot is retained indefinitely.</p>
|
|
9126
|
-
* <p>Valid values: Either -1 or an integer between 1 and 3,653</p>
|
|
9127
|
-
*/
|
|
9128
|
-
ManualSnapshotRetentionPeriod?: number;
|
|
9129
|
-
/**
|
|
9130
|
-
* <p>The number of days to retain automated snapshots in the destination Region after they
|
|
9131
|
-
* are copied from a source Region.</p>
|
|
9132
|
-
*/
|
|
9133
|
-
RetentionPeriod?: number;
|
|
8500
|
+
export interface AwsOpenSearchServiceDomainNodeToNodeEncryptionOptionsDetails {
|
|
9134
8501
|
/**
|
|
9135
|
-
* <p>
|
|
8502
|
+
* <p>Whether node-to-node encryption is enabled.</p>
|
|
9136
8503
|
*/
|
|
9137
|
-
|
|
8504
|
+
Enabled?: boolean;
|
|
9138
8505
|
}
|
|
9139
|
-
export declare namespace
|
|
8506
|
+
export declare namespace AwsOpenSearchServiceDomainNodeToNodeEncryptionOptionsDetails {
|
|
9140
8507
|
/**
|
|
9141
8508
|
* @internal
|
|
9142
8509
|
*/
|
|
9143
|
-
const filterSensitiveLog: (obj:
|
|
8510
|
+
const filterSensitiveLog: (obj: AwsOpenSearchServiceDomainNodeToNodeEncryptionOptionsDetails) => any;
|
|
9144
8511
|
}
|
|
9145
8512
|
/**
|
|
9146
|
-
* <p>
|
|
9147
|
-
* cluster.</p>
|
|
8513
|
+
* <p>Provides information about the state of the domain relative to the latest service software.</p>
|
|
9148
8514
|
*/
|
|
9149
|
-
export interface
|
|
9150
|
-
/**
|
|
9151
|
-
* <p>The end of the time window for which maintenance was deferred.</p>
|
|
9152
|
-
* <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
|
|
9153
|
-
* Date/Time Format</a>. The value cannot contain spaces. For example,
|
|
9154
|
-
* <code>2020-03-22T13:22:13.933Z</code>.</p>
|
|
9155
|
-
*/
|
|
9156
|
-
DeferMaintenanceEndTime?: string;
|
|
8515
|
+
export interface AwsOpenSearchServiceDomainServiceSoftwareOptionsDetails {
|
|
9157
8516
|
/**
|
|
9158
|
-
* <p>The
|
|
8517
|
+
* <p>The epoch time when the deployment window closes for required updates. After this time, OpenSearch Service schedules the software upgrade automatically.</p>
|
|
9159
8518
|
*/
|
|
9160
|
-
|
|
8519
|
+
AutomatedUpdateDate?: string;
|
|
9161
8520
|
/**
|
|
9162
|
-
* <p>
|
|
9163
|
-
* <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
|
|
9164
|
-
* Date/Time Format</a>. The value cannot contain spaces. For example,
|
|
9165
|
-
* <code>2020-03-22T13:22:13.933Z</code>.</p>
|
|
8521
|
+
* <p>Whether a request to update the domain can be canceled.</p>
|
|
9166
8522
|
*/
|
|
9167
|
-
|
|
9168
|
-
}
|
|
9169
|
-
export declare namespace AwsRedshiftClusterDeferredMaintenanceWindow {
|
|
8523
|
+
Cancellable?: boolean;
|
|
9170
8524
|
/**
|
|
9171
|
-
*
|
|
8525
|
+
* <p>The version of the service software that is currently installed on the domain.</p>
|
|
9172
8526
|
*/
|
|
9173
|
-
|
|
9174
|
-
}
|
|
9175
|
-
/**
|
|
9176
|
-
* <p>The status of the elastic IP (EIP) address for an Amazon Redshift cluster.</p>
|
|
9177
|
-
*/
|
|
9178
|
-
export interface AwsRedshiftClusterElasticIpStatus {
|
|
8527
|
+
CurrentVersion?: string;
|
|
9179
8528
|
/**
|
|
9180
|
-
* <p>
|
|
8529
|
+
* <p>A more detailed description of the service software status.</p>
|
|
9181
8530
|
*/
|
|
9182
|
-
|
|
8531
|
+
Description?: string;
|
|
9183
8532
|
/**
|
|
9184
|
-
* <p>The
|
|
8533
|
+
* <p>The most recent version of the service software.</p>
|
|
9185
8534
|
*/
|
|
9186
|
-
|
|
9187
|
-
}
|
|
9188
|
-
export declare namespace AwsRedshiftClusterElasticIpStatus {
|
|
8535
|
+
NewVersion?: string;
|
|
9189
8536
|
/**
|
|
9190
|
-
*
|
|
8537
|
+
* <p>Whether a service software update is available for the domain.</p>
|
|
9191
8538
|
*/
|
|
9192
|
-
|
|
9193
|
-
}
|
|
9194
|
-
/**
|
|
9195
|
-
* <p>The connection endpoint for an Amazon Redshift cluster.</p>
|
|
9196
|
-
*/
|
|
9197
|
-
export interface AwsRedshiftClusterEndpoint {
|
|
8539
|
+
UpdateAvailable?: boolean;
|
|
9198
8540
|
/**
|
|
9199
|
-
* <p>The
|
|
8541
|
+
* <p>The status of the service software update.</p>
|
|
9200
8542
|
*/
|
|
9201
|
-
|
|
8543
|
+
UpdateStatus?: string;
|
|
9202
8544
|
/**
|
|
9203
|
-
* <p>
|
|
8545
|
+
* <p>Whether the service software update is optional.</p>
|
|
9204
8546
|
*/
|
|
9205
|
-
|
|
8547
|
+
OptionalDeployment?: boolean;
|
|
9206
8548
|
}
|
|
9207
|
-
export declare namespace
|
|
8549
|
+
export declare namespace AwsOpenSearchServiceDomainServiceSoftwareOptionsDetails {
|
|
9208
8550
|
/**
|
|
9209
8551
|
* @internal
|
|
9210
8552
|
*/
|
|
9211
|
-
const filterSensitiveLog: (obj:
|
|
8553
|
+
const filterSensitiveLog: (obj: AwsOpenSearchServiceDomainServiceSoftwareOptionsDetails) => any;
|
|
9212
8554
|
}
|
|
9213
8555
|
/**
|
|
9214
|
-
* <p>
|
|
9215
|
-
* changes to security module (HSM) settings that were specified in a modify cluster
|
|
9216
|
-
* command.</p>
|
|
8556
|
+
* <p>Contains information that OpenSearch Service derives based on the <code>VPCOptions</code> for the domain.</p>
|
|
9217
8557
|
*/
|
|
9218
|
-
export interface
|
|
9219
|
-
/**
|
|
9220
|
-
* <p>The name of the HSM client certificate that the Amazon Redshift cluster uses to retrieve
|
|
9221
|
-
* the data encryption keys that are stored in an HSM.</p>
|
|
9222
|
-
*/
|
|
9223
|
-
HsmClientCertificateIdentifier?: string;
|
|
8558
|
+
export interface AwsOpenSearchServiceDomainVpcOptionsDetails {
|
|
9224
8559
|
/**
|
|
9225
|
-
* <p>The
|
|
9226
|
-
* cluster can use to retrieve and store keys in an HSM.</p>
|
|
8560
|
+
* <p>The list of security group IDs that are associated with the VPC endpoints for the domain.</p>
|
|
9227
8561
|
*/
|
|
9228
|
-
|
|
8562
|
+
SecurityGroupIds?: string[];
|
|
9229
8563
|
/**
|
|
9230
|
-
* <p>
|
|
9231
|
-
* changes specified in a modify cluster command.</p>
|
|
9232
|
-
* <p>Type: String</p>
|
|
9233
|
-
* <p>Valid values: <code>active</code> | <code>applying</code>
|
|
9234
|
-
* </p>
|
|
8564
|
+
* <p>A list of subnet IDs that are associated with the VPC endpoints for the domain.</p>
|
|
9235
8565
|
*/
|
|
9236
|
-
|
|
8566
|
+
SubnetIds?: string[];
|
|
9237
8567
|
}
|
|
9238
|
-
export declare namespace
|
|
8568
|
+
export declare namespace AwsOpenSearchServiceDomainVpcOptionsDetails {
|
|
9239
8569
|
/**
|
|
9240
8570
|
* @internal
|
|
9241
8571
|
*/
|
|
9242
|
-
const filterSensitiveLog: (obj:
|
|
8572
|
+
const filterSensitiveLog: (obj: AwsOpenSearchServiceDomainVpcOptionsDetails) => any;
|
|
9243
8573
|
}
|
|
9244
8574
|
/**
|
|
9245
|
-
* <p>
|
|
8575
|
+
* <p>Information about an Amazon OpenSearch Service domain.</p>
|
|
9246
8576
|
*/
|
|
9247
|
-
export interface
|
|
8577
|
+
export interface AwsOpenSearchServiceDomainDetails {
|
|
9248
8578
|
/**
|
|
9249
|
-
* <p>The
|
|
9250
|
-
* <p>Valid values: <code>in-sync</code> | <code>adding</code> | <code>removing</code>
|
|
9251
|
-
* </p>
|
|
8579
|
+
* <p>The ARN of the OpenSearch Service domain.</p>
|
|
9252
8580
|
*/
|
|
9253
|
-
|
|
8581
|
+
Arn?: string;
|
|
9254
8582
|
/**
|
|
9255
|
-
* <p>
|
|
8583
|
+
* <p>IAM policy document that specifies the access policies for the OpenSearch Service domain.</p>
|
|
9256
8584
|
*/
|
|
9257
|
-
|
|
9258
|
-
}
|
|
9259
|
-
export declare namespace AwsRedshiftClusterIamRole {
|
|
8585
|
+
AccessPolicies?: string;
|
|
9260
8586
|
/**
|
|
9261
|
-
*
|
|
8587
|
+
* <p>The name of the endpoint.</p>
|
|
9262
8588
|
*/
|
|
9263
|
-
|
|
9264
|
-
}
|
|
9265
|
-
/**
|
|
9266
|
-
* <p>Changes to the Amazon Redshift cluster that are currently pending.</p>
|
|
9267
|
-
*/
|
|
9268
|
-
export interface AwsRedshiftClusterPendingModifiedValues {
|
|
8589
|
+
DomainName?: string;
|
|
9269
8590
|
/**
|
|
9270
|
-
* <p>The
|
|
8591
|
+
* <p>The identifier of the domain.</p>
|
|
9271
8592
|
*/
|
|
9272
|
-
|
|
8593
|
+
Id?: string;
|
|
9273
8594
|
/**
|
|
9274
|
-
* <p>The
|
|
8595
|
+
* <p>The domain endpoint.</p>
|
|
9275
8596
|
*/
|
|
9276
|
-
|
|
8597
|
+
DomainEndpoint?: string;
|
|
9277
8598
|
/**
|
|
9278
|
-
* <p>The
|
|
8599
|
+
* <p>The version of the domain engine.</p>
|
|
9279
8600
|
*/
|
|
9280
|
-
|
|
8601
|
+
EngineVersion?: string;
|
|
9281
8602
|
/**
|
|
9282
|
-
* <p>
|
|
8603
|
+
* <p>Details about the configuration for encryption at rest.</p>
|
|
9283
8604
|
*/
|
|
9284
|
-
|
|
8605
|
+
EncryptionAtRestOptions?: AwsOpenSearchServiceDomainEncryptionAtRestOptionsDetails;
|
|
9285
8606
|
/**
|
|
9286
|
-
* <p>
|
|
8607
|
+
* <p>Details about the configuration for node-to-node encryption.</p>
|
|
9287
8608
|
*/
|
|
9288
|
-
|
|
8609
|
+
NodeToNodeEncryptionOptions?: AwsOpenSearchServiceDomainNodeToNodeEncryptionOptionsDetails;
|
|
9289
8610
|
/**
|
|
9290
|
-
* <p>
|
|
8611
|
+
* <p>Information about the status of a domain relative to the latest service software.</p>
|
|
9291
8612
|
*/
|
|
9292
|
-
|
|
8613
|
+
ServiceSoftwareOptions?: AwsOpenSearchServiceDomainServiceSoftwareOptionsDetails;
|
|
9293
8614
|
/**
|
|
9294
|
-
* <p>
|
|
9295
|
-
* maintenance window.</p>
|
|
8615
|
+
* <p>Details about the configuration of an OpenSearch cluster.</p>
|
|
9296
8616
|
*/
|
|
9297
|
-
|
|
8617
|
+
ClusterConfig?: AwsOpenSearchServiceDomainClusterConfigDetails;
|
|
9298
8618
|
/**
|
|
9299
|
-
* <p>
|
|
8619
|
+
* <p>Additional options for the domain endpoint.</p>
|
|
9300
8620
|
*/
|
|
9301
|
-
|
|
8621
|
+
DomainEndpointOptions?: AwsOpenSearchServiceDomainDomainEndpointOptionsDetails;
|
|
9302
8622
|
/**
|
|
9303
|
-
* <p>
|
|
8623
|
+
* <p>Information that OpenSearch Service derives based on <code>VPCOptions</code> for the domain.</p>
|
|
9304
8624
|
*/
|
|
9305
|
-
|
|
8625
|
+
VpcOptions?: AwsOpenSearchServiceDomainVpcOptionsDetails;
|
|
9306
8626
|
/**
|
|
9307
|
-
* <p>
|
|
8627
|
+
* <p>Configures the CloudWatch Logs to publish for the OpenSearch domain.</p>
|
|
9308
8628
|
*/
|
|
9309
|
-
|
|
8629
|
+
LogPublishingOptions?: AwsOpenSearchServiceDomainLogPublishingOptionsDetails;
|
|
9310
8630
|
/**
|
|
9311
|
-
* <p>The
|
|
9312
|
-
*
|
|
8631
|
+
* <p>The domain endpoints. Used if the OpenSearch domain resides in a VPC.</p>
|
|
8632
|
+
* <p>This is a map of key-value pairs. The key is always <code>vpc</code>. The value is the endpoint.</p>
|
|
9313
8633
|
*/
|
|
9314
|
-
|
|
8634
|
+
DomainEndpoints?: {
|
|
8635
|
+
[key: string]: string;
|
|
8636
|
+
};
|
|
9315
8637
|
}
|
|
9316
|
-
export declare namespace
|
|
8638
|
+
export declare namespace AwsOpenSearchServiceDomainDetails {
|
|
9317
8639
|
/**
|
|
9318
8640
|
* @internal
|
|
9319
8641
|
*/
|
|
9320
|
-
const filterSensitiveLog: (obj:
|
|
8642
|
+
const filterSensitiveLog: (obj: AwsOpenSearchServiceDomainDetails) => any;
|
|
9321
8643
|
}
|
|
9322
8644
|
/**
|
|
9323
|
-
* <p>
|
|
8645
|
+
* <p>An IAM role that is associated with the Amazon RDS DB cluster.</p>
|
|
9324
8646
|
*/
|
|
9325
|
-
export interface
|
|
8647
|
+
export interface AwsRdsDbClusterAssociatedRole {
|
|
9326
8648
|
/**
|
|
9327
|
-
* <p>
|
|
8649
|
+
* <p>The ARN of the IAM role.</p>
|
|
9328
8650
|
*/
|
|
9329
|
-
|
|
8651
|
+
RoleArn?: string;
|
|
9330
8652
|
/**
|
|
9331
|
-
* <p>The
|
|
9332
|
-
* <p>Valid values: <code>ClassicResize</code>
|
|
9333
|
-
* </p>
|
|
8653
|
+
* <p>The status of the association between the IAM role and the DB cluster.</p>
|
|
9334
8654
|
*/
|
|
9335
|
-
|
|
8655
|
+
Status?: string;
|
|
9336
8656
|
}
|
|
9337
|
-
export declare namespace
|
|
8657
|
+
export declare namespace AwsRdsDbClusterAssociatedRole {
|
|
9338
8658
|
/**
|
|
9339
8659
|
* @internal
|
|
9340
8660
|
*/
|
|
9341
|
-
const filterSensitiveLog: (obj:
|
|
8661
|
+
const filterSensitiveLog: (obj: AwsRdsDbClusterAssociatedRole) => any;
|
|
9342
8662
|
}
|
|
9343
8663
|
/**
|
|
9344
|
-
* <p>Information about
|
|
9345
|
-
* was created by restoring a snapshot.</p>
|
|
8664
|
+
* <p>Information about an instance in the DB cluster.</p>
|
|
9346
8665
|
*/
|
|
9347
|
-
export interface
|
|
9348
|
-
/**
|
|
9349
|
-
* <p>The number of megabytes per second being transferred from the backup storage. Returns
|
|
9350
|
-
* the average rate for a completed backup.</p>
|
|
9351
|
-
* <p>This field is only updated when you restore to DC2 and DS2 node types.</p>
|
|
9352
|
-
*/
|
|
9353
|
-
CurrentRestoreRateInMegaBytesPerSecond?: number;
|
|
9354
|
-
/**
|
|
9355
|
-
* <p>The amount of time an in-progress restore has been running, or the amount of time it
|
|
9356
|
-
* took a completed restore to finish.</p>
|
|
9357
|
-
* <p>This field is only updated when you restore to DC2 and DS2 node types.</p>
|
|
9358
|
-
*/
|
|
9359
|
-
ElapsedTimeInSeconds?: number;
|
|
8666
|
+
export interface AwsRdsDbClusterMember {
|
|
9360
8667
|
/**
|
|
9361
|
-
* <p>
|
|
9362
|
-
* completed restore.</p>
|
|
9363
|
-
* <p>This field is only updated when you restore to DC2 and DS2 node types.</p>
|
|
8668
|
+
* <p>Whether the cluster member is the primary instance for the DB cluster.</p>
|
|
9364
8669
|
*/
|
|
9365
|
-
|
|
8670
|
+
IsClusterWriter?: boolean;
|
|
9366
8671
|
/**
|
|
9367
|
-
* <p>
|
|
9368
|
-
*
|
|
8672
|
+
* <p>Specifies the order in which an Aurora replica is promoted to the primary instance when
|
|
8673
|
+
* the existing primary instance fails.</p>
|
|
9369
8674
|
*/
|
|
9370
|
-
|
|
8675
|
+
PromotionTier?: number;
|
|
9371
8676
|
/**
|
|
9372
|
-
* <p>The
|
|
9373
|
-
* <p>This field is only updated when you restore to DC2 and DS2 node types.</p>
|
|
8677
|
+
* <p>The instance identifier for this member of the DB cluster.</p>
|
|
9374
8678
|
*/
|
|
9375
|
-
|
|
8679
|
+
DbInstanceIdentifier?: string;
|
|
9376
8680
|
/**
|
|
9377
|
-
* <p>The status of the
|
|
9378
|
-
* <p>Valid values: <code>starting</code> | <code>restoring</code> | <code>completed</code> |
|
|
9379
|
-
* <code>failed</code>
|
|
9380
|
-
* </p>
|
|
8681
|
+
* <p>The status of the DB cluster parameter group for this member of the DB cluster.</p>
|
|
9381
8682
|
*/
|
|
9382
|
-
|
|
8683
|
+
DbClusterParameterGroupStatus?: string;
|
|
9383
8684
|
}
|
|
9384
|
-
export declare namespace
|
|
8685
|
+
export declare namespace AwsRdsDbClusterMember {
|
|
9385
8686
|
/**
|
|
9386
8687
|
* @internal
|
|
9387
8688
|
*/
|
|
9388
|
-
const filterSensitiveLog: (obj:
|
|
8689
|
+
const filterSensitiveLog: (obj: AwsRdsDbClusterMember) => any;
|
|
9389
8690
|
}
|
|
9390
8691
|
/**
|
|
9391
|
-
* <p>
|
|
8692
|
+
* <p>Information about an option group membership for a DB cluster.</p>
|
|
9392
8693
|
*/
|
|
9393
|
-
export interface
|
|
8694
|
+
export interface AwsRdsDbClusterOptionGroupMembership {
|
|
9394
8695
|
/**
|
|
9395
|
-
* <p>The
|
|
8696
|
+
* <p>The name of the DB cluster option group.</p>
|
|
9396
8697
|
*/
|
|
9397
|
-
|
|
8698
|
+
DbClusterOptionGroupName?: string;
|
|
9398
8699
|
/**
|
|
9399
|
-
* <p>The
|
|
8700
|
+
* <p>The status of the DB cluster option group.</p>
|
|
9400
8701
|
*/
|
|
9401
|
-
|
|
8702
|
+
Status?: string;
|
|
9402
8703
|
}
|
|
9403
|
-
export declare namespace
|
|
8704
|
+
export declare namespace AwsRdsDbClusterOptionGroupMembership {
|
|
9404
8705
|
/**
|
|
9405
8706
|
* @internal
|
|
9406
8707
|
*/
|
|
9407
|
-
const filterSensitiveLog: (obj:
|
|
8708
|
+
const filterSensitiveLog: (obj: AwsRdsDbClusterOptionGroupMembership) => any;
|
|
9408
8709
|
}
|
|
9409
8710
|
/**
|
|
9410
|
-
* <p>
|
|
8711
|
+
* <p>Information about an Active Directory domain membership record associated with the DB
|
|
8712
|
+
* instance.</p>
|
|
9411
8713
|
*/
|
|
9412
|
-
export interface
|
|
8714
|
+
export interface AwsRdsDbDomainMembership {
|
|
9413
8715
|
/**
|
|
9414
|
-
* <p>
|
|
9415
|
-
* the maintenance window.</p>
|
|
8716
|
+
* <p>The identifier of the Active Directory domain.</p>
|
|
9416
8717
|
*/
|
|
9417
|
-
|
|
8718
|
+
Domain?: string;
|
|
9418
8719
|
/**
|
|
9419
|
-
* <p>The
|
|
8720
|
+
* <p>The status of the Active Directory Domain membership for the DB instance.</p>
|
|
9420
8721
|
*/
|
|
9421
|
-
|
|
8722
|
+
Status?: string;
|
|
9422
8723
|
/**
|
|
9423
|
-
* <p>The
|
|
8724
|
+
* <p>The fully qualified domain name of the Active Directory domain.</p>
|
|
9424
8725
|
*/
|
|
9425
|
-
|
|
8726
|
+
Fqdn?: string;
|
|
9426
8727
|
/**
|
|
9427
|
-
* <p>The
|
|
9428
|
-
* following:</p>
|
|
9429
|
-
* <ul>
|
|
9430
|
-
* <li>
|
|
9431
|
-
* <p>
|
|
9432
|
-
* <code>Available</code> - The cluster is available for queries.</p>
|
|
9433
|
-
* </li>
|
|
9434
|
-
* <li>
|
|
9435
|
-
* <p>
|
|
9436
|
-
* <code>Unavailable</code> - The cluster is not available for queries.</p>
|
|
9437
|
-
* </li>
|
|
9438
|
-
* <li>
|
|
9439
|
-
* <p>
|
|
9440
|
-
* <code>Maintenance</code> - The cluster is intermittently available for queries due
|
|
9441
|
-
* to maintenance activities.</p>
|
|
9442
|
-
* </li>
|
|
9443
|
-
* <li>
|
|
9444
|
-
* <p>
|
|
9445
|
-
* <code>Modifying</code> -The cluster is intermittently available for queries due to
|
|
9446
|
-
* changes that modify the cluster.</p>
|
|
9447
|
-
* </li>
|
|
9448
|
-
* <li>
|
|
9449
|
-
* <p>
|
|
9450
|
-
* <code>Failed</code> - The cluster failed and is not available for queries.</p>
|
|
9451
|
-
* </li>
|
|
9452
|
-
* </ul>
|
|
8728
|
+
* <p>The name of the IAM role to use when making API calls to the Directory Service.</p>
|
|
9453
8729
|
*/
|
|
9454
|
-
|
|
8730
|
+
IamRoleName?: string;
|
|
8731
|
+
}
|
|
8732
|
+
export declare namespace AwsRdsDbDomainMembership {
|
|
9455
8733
|
/**
|
|
9456
|
-
*
|
|
9457
|
-
* <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
|
|
9458
|
-
* Date/Time Format</a>. The value cannot contain spaces. For example,
|
|
9459
|
-
* <code>2020-03-22T13:22:13.933Z</code>.</p>
|
|
8734
|
+
* @internal
|
|
9460
8735
|
*/
|
|
9461
|
-
|
|
8736
|
+
const filterSensitiveLog: (obj: AwsRdsDbDomainMembership) => any;
|
|
8737
|
+
}
|
|
8738
|
+
/**
|
|
8739
|
+
* <p>A VPC security groups that the DB instance belongs to.</p>
|
|
8740
|
+
*/
|
|
8741
|
+
export interface AwsRdsDbInstanceVpcSecurityGroup {
|
|
9462
8742
|
/**
|
|
9463
|
-
* <p>The
|
|
8743
|
+
* <p>The name of the VPC security group.</p>
|
|
9464
8744
|
*/
|
|
9465
|
-
|
|
8745
|
+
VpcSecurityGroupId?: string;
|
|
9466
8746
|
/**
|
|
9467
|
-
* <p>The
|
|
8747
|
+
* <p>The status of the VPC security group.</p>
|
|
9468
8748
|
*/
|
|
9469
|
-
|
|
8749
|
+
Status?: string;
|
|
8750
|
+
}
|
|
8751
|
+
export declare namespace AwsRdsDbInstanceVpcSecurityGroup {
|
|
9470
8752
|
/**
|
|
9471
|
-
*
|
|
8753
|
+
* @internal
|
|
9472
8754
|
*/
|
|
9473
|
-
|
|
8755
|
+
const filterSensitiveLog: (obj: AwsRdsDbInstanceVpcSecurityGroup) => any;
|
|
8756
|
+
}
|
|
8757
|
+
/**
|
|
8758
|
+
* <p>Information about an Amazon RDS DB cluster.</p>
|
|
8759
|
+
*/
|
|
8760
|
+
export interface AwsRdsDbClusterDetails {
|
|
9474
8761
|
/**
|
|
9475
|
-
* <p>
|
|
8762
|
+
* <p>For all database engines except Aurora, specifies the allocated storage size in
|
|
8763
|
+
* gibibytes (GiB).</p>
|
|
9476
8764
|
*/
|
|
9477
|
-
|
|
8765
|
+
AllocatedStorage?: number;
|
|
9478
8766
|
/**
|
|
9479
|
-
* <p>
|
|
8767
|
+
* <p>A list of Availability Zones (AZs) where instances in the DB cluster can be
|
|
8768
|
+
* created.</p>
|
|
9480
8769
|
*/
|
|
9481
|
-
|
|
8770
|
+
AvailabilityZones?: string[];
|
|
9482
8771
|
/**
|
|
9483
|
-
* <p>
|
|
8772
|
+
* <p>The number of days for which automated backups are retained.</p>
|
|
9484
8773
|
*/
|
|
9485
|
-
|
|
8774
|
+
BackupRetentionPeriod?: number;
|
|
9486
8775
|
/**
|
|
9487
|
-
* <p>
|
|
9488
|
-
* snapshot copy.</p>
|
|
8776
|
+
* <p>The name of the database.</p>
|
|
9489
8777
|
*/
|
|
9490
|
-
|
|
8778
|
+
DatabaseName?: string;
|
|
9491
8779
|
/**
|
|
9492
|
-
* <p>The current status of
|
|
9493
|
-
* <p>Valid values: <code>available</code> | <code>available, prep-for-resize</code> |
|
|
9494
|
-
* <code>available, resize-cleanup</code> |<code> cancelling-resize</code> |
|
|
9495
|
-
* <code>creating</code> | <code>deleting</code> | <code>final-snapshot</code> |
|
|
9496
|
-
* <code>hardware-failure</code> | <code>incompatible-hsm</code> |<code>
|
|
9497
|
-
* incompatible-network</code> | <code>incompatible-parameters</code> |
|
|
9498
|
-
* <code>incompatible-restore</code> | <code>modifying</code> | <code>paused</code> |
|
|
9499
|
-
* <code>rebooting</code> | <code>renaming</code> | <code>resizing</code> |
|
|
9500
|
-
* <code>rotating-keys</code> | <code>storage-full</code> |
|
|
9501
|
-
* <code>updating-hsm</code>
|
|
9502
|
-
* </p>
|
|
8780
|
+
* <p>The current status of this DB cluster.</p>
|
|
9503
8781
|
*/
|
|
9504
|
-
|
|
8782
|
+
Status?: string;
|
|
9505
8783
|
/**
|
|
9506
|
-
* <p>The
|
|
9507
|
-
* valid only when the cluster is in a VPC.</p>
|
|
8784
|
+
* <p>The connection endpoint for the primary instance of the DB cluster.</p>
|
|
9508
8785
|
*/
|
|
9509
|
-
|
|
8786
|
+
Endpoint?: string;
|
|
9510
8787
|
/**
|
|
9511
|
-
* <p>The
|
|
8788
|
+
* <p>The reader endpoint for the DB cluster.</p>
|
|
9512
8789
|
*/
|
|
9513
|
-
|
|
8790
|
+
ReaderEndpoint?: string;
|
|
9514
8791
|
/**
|
|
9515
|
-
* <p>
|
|
9516
|
-
* <p>The same name is returned for the life of the cluster.</p>
|
|
9517
|
-
* <p>If an initial database is not specified, a database named <code>devdev</code> is created
|
|
9518
|
-
* by default.</p>
|
|
8792
|
+
* <p>A list of custom endpoints for the DB cluster.</p>
|
|
9519
8793
|
*/
|
|
9520
|
-
|
|
8794
|
+
CustomEndpoints?: string[];
|
|
9521
8795
|
/**
|
|
9522
|
-
* <p>
|
|
8796
|
+
* <p>Whether the DB cluster has instances in multiple Availability Zones.</p>
|
|
9523
8797
|
*/
|
|
9524
|
-
|
|
8798
|
+
MultiAz?: boolean;
|
|
9525
8799
|
/**
|
|
9526
|
-
* <p>
|
|
8800
|
+
* <p>The name of the database engine to use for this DB cluster.</p>
|
|
9527
8801
|
*/
|
|
9528
|
-
|
|
8802
|
+
Engine?: string;
|
|
9529
8803
|
/**
|
|
9530
|
-
* <p>The number of
|
|
9531
|
-
* to.</p>
|
|
8804
|
+
* <p>The version number of the database engine to use.</p>
|
|
9532
8805
|
*/
|
|
9533
|
-
|
|
8806
|
+
EngineVersion?: string;
|
|
9534
8807
|
/**
|
|
9535
|
-
* <p>
|
|
8808
|
+
* <p>The port number on which the DB instances in the DB cluster accept connections.</p>
|
|
9536
8809
|
*/
|
|
9537
|
-
|
|
8810
|
+
Port?: number;
|
|
9538
8811
|
/**
|
|
9539
|
-
* <p>The
|
|
8812
|
+
* <p>The name of the master user for the DB cluster.</p>
|
|
9540
8813
|
*/
|
|
9541
|
-
|
|
8814
|
+
MasterUsername?: string;
|
|
9542
8815
|
/**
|
|
9543
|
-
* <p>
|
|
8816
|
+
* <p>The range of time each day when automated backups are created, if automated backups are
|
|
8817
|
+
* enabled.</p>
|
|
8818
|
+
* <p>Uses the format <code>HH:MM-HH:MM</code>. For example, <code>04:52-05:22</code>.</p>
|
|
9544
8819
|
*/
|
|
9545
|
-
|
|
8820
|
+
PreferredBackupWindow?: string;
|
|
9546
8821
|
/**
|
|
9547
|
-
* <p>
|
|
9548
|
-
*
|
|
9549
|
-
* <p>Uses the <code
|
|
9550
|
-
*
|
|
9551
|
-
* <code>
|
|
8822
|
+
* <p>The weekly time range during which system maintenance can occur, in Universal
|
|
8823
|
+
* Coordinated Time (UTC).</p>
|
|
8824
|
+
* <p>Uses the format <code><day>:HH:MM-<day>:HH:MM</code>.</p>
|
|
8825
|
+
* <p>For the day values, use
|
|
8826
|
+
* <code>mon</code>|<code>tue</code>|<code>wed</code>|<code>thu</code>|<code>fri</code>|<code>sat</code>|<code>sun</code>.</p>
|
|
8827
|
+
* <p>For example, <code>sun:09:32-sun:10:02</code>.</p>
|
|
9552
8828
|
*/
|
|
9553
|
-
|
|
8829
|
+
PreferredMaintenanceWindow?: string;
|
|
9554
8830
|
/**
|
|
9555
|
-
* <p>The
|
|
9556
|
-
* <p>Valid values: <code>OnTrack</code> | <code>Pending</code>
|
|
9557
|
-
* </p>
|
|
8831
|
+
* <p>The identifiers of the read replicas that are associated with this DB cluster.</p>
|
|
9558
8832
|
*/
|
|
9559
|
-
|
|
8833
|
+
ReadReplicaIdentifiers?: string[];
|
|
9560
8834
|
/**
|
|
9561
|
-
* <p>
|
|
9562
|
-
* hardware security module (HSM) settings that were specified in a modify cluster
|
|
9563
|
-
* command.</p>
|
|
8835
|
+
* <p>A list of VPC security groups that the DB cluster belongs to.</p>
|
|
9564
8836
|
*/
|
|
9565
|
-
|
|
8837
|
+
VpcSecurityGroups?: AwsRdsDbInstanceVpcSecurityGroup[];
|
|
9566
8838
|
/**
|
|
9567
|
-
* <p>
|
|
8839
|
+
* <p>Specifies the identifier that Amazon Route 53 assigns when you create a hosted
|
|
8840
|
+
* zone.</p>
|
|
9568
8841
|
*/
|
|
9569
|
-
|
|
8842
|
+
HostedZoneId?: string;
|
|
9570
8843
|
/**
|
|
9571
|
-
* <p>
|
|
9572
|
-
* cluster.</p>
|
|
8844
|
+
* <p>Whether the DB cluster is encrypted.</p>
|
|
9573
8845
|
*/
|
|
9574
|
-
|
|
8846
|
+
StorageEncrypted?: boolean;
|
|
9575
8847
|
/**
|
|
9576
|
-
* <p>The
|
|
8848
|
+
* <p>The ARN of the KMS master key that is used to encrypt the database instances in the
|
|
8849
|
+
* DB cluster.</p>
|
|
9577
8850
|
*/
|
|
9578
|
-
|
|
8851
|
+
KmsKeyId?: string;
|
|
9579
8852
|
/**
|
|
9580
|
-
* <p>The
|
|
9581
|
-
*
|
|
9582
|
-
* <p>This setting doesn't change the retention period of existing snapshots.</p>
|
|
9583
|
-
* <p>Valid values: Either -1 or an integer between 1 and 3,653</p>
|
|
8853
|
+
* <p>The identifier of the DB cluster. The identifier must be unique within each Amazon Web Services Region
|
|
8854
|
+
* and is immutable.</p>
|
|
9584
8855
|
*/
|
|
9585
|
-
|
|
8856
|
+
DbClusterResourceId?: string;
|
|
9586
8857
|
/**
|
|
9587
|
-
* <p>
|
|
9588
|
-
* is specified in as the value of <code>DBName</code>.</p>
|
|
8858
|
+
* <p>A list of the IAM roles that are associated with the DB cluster.</p>
|
|
9589
8859
|
*/
|
|
9590
|
-
|
|
8860
|
+
AssociatedRoles?: AwsRdsDbClusterAssociatedRole[];
|
|
9591
8861
|
/**
|
|
9592
|
-
* <p>Indicates the
|
|
8862
|
+
* <p>Indicates when the DB cluster was created, in Universal Coordinated Time (UTC).</p>
|
|
9593
8863
|
* <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
|
|
9594
8864
|
* Date/Time Format</a>. The value cannot contain spaces. For example,
|
|
9595
8865
|
* <code>2020-03-22T13:22:13.933Z</code>.</p>
|
|
9596
8866
|
*/
|
|
9597
|
-
|
|
8867
|
+
ClusterCreateTime?: string;
|
|
8868
|
+
/**
|
|
8869
|
+
* <p>A list of log types that this DB cluster is configured to export to CloudWatch
|
|
8870
|
+
* Logs.</p>
|
|
8871
|
+
*/
|
|
8872
|
+
EnabledCloudWatchLogsExports?: string[];
|
|
8873
|
+
/**
|
|
8874
|
+
* <p>The database engine mode of the DB cluster.</p>
|
|
8875
|
+
*/
|
|
8876
|
+
EngineMode?: string;
|
|
9598
8877
|
/**
|
|
9599
|
-
* <p>
|
|
8878
|
+
* <p>Whether the DB cluster has deletion protection enabled.</p>
|
|
9600
8879
|
*/
|
|
9601
|
-
|
|
8880
|
+
DeletionProtection?: boolean;
|
|
9602
8881
|
/**
|
|
9603
|
-
* <p>
|
|
8882
|
+
* <p>Whether the HTTP endpoint for an Aurora Serverless DB cluster is enabled.</p>
|
|
9604
8883
|
*/
|
|
9605
|
-
|
|
8884
|
+
HttpEndpointEnabled?: boolean;
|
|
9606
8885
|
/**
|
|
9607
|
-
* <p>
|
|
8886
|
+
* <p>The status of the database activity stream.</p>
|
|
9608
8887
|
*/
|
|
9609
|
-
|
|
8888
|
+
ActivityStreamStatus?: string;
|
|
9610
8889
|
/**
|
|
9611
|
-
* <p>
|
|
8890
|
+
* <p>Whether tags are copied from the DB cluster to snapshots of the DB cluster.</p>
|
|
9612
8891
|
*/
|
|
9613
|
-
|
|
8892
|
+
CopyTagsToSnapshot?: boolean;
|
|
9614
8893
|
/**
|
|
9615
|
-
* <p>
|
|
9616
|
-
*
|
|
9617
|
-
* <p>Format:
|
|
9618
|
-
* <code>
|
|
9619
|
-
* <i><day></i>:HH:MM-<i><day></i>:HH:MM</code>
|
|
9620
|
-
* </p>
|
|
9621
|
-
* <p>For the day values, use <code>mon</code> | <code>tue</code> | <code>wed</code> |
|
|
9622
|
-
* <code>thu</code> | <code>fri</code> | <code>sat</code> | <code>sun</code>
|
|
9623
|
-
* </p>
|
|
9624
|
-
* <p>For example, <code>sun:09:32-sun:10:02</code>
|
|
9625
|
-
* </p>
|
|
8894
|
+
* <p>Whether the DB cluster is a clone of a DB cluster owned by a different Amazon Web Services
|
|
8895
|
+
* account.</p>
|
|
9626
8896
|
*/
|
|
9627
|
-
|
|
8897
|
+
CrossAccountClone?: boolean;
|
|
9628
8898
|
/**
|
|
9629
|
-
* <p>
|
|
8899
|
+
* <p>The Active Directory domain membership records that are associated with the DB
|
|
8900
|
+
* cluster.</p>
|
|
9630
8901
|
*/
|
|
9631
|
-
|
|
8902
|
+
DomainMemberships?: AwsRdsDbDomainMembership[];
|
|
9632
8903
|
/**
|
|
9633
|
-
* <p>
|
|
8904
|
+
* <p>The name of the DB cluster parameter group for the DB cluster.</p>
|
|
9634
8905
|
*/
|
|
9635
|
-
|
|
8906
|
+
DbClusterParameterGroup?: string;
|
|
9636
8907
|
/**
|
|
9637
|
-
* <p>
|
|
9638
|
-
*
|
|
8908
|
+
* <p>The subnet group that is associated with the DB cluster, including the name,
|
|
8909
|
+
* description, and subnets in the subnet group.</p>
|
|
9639
8910
|
*/
|
|
9640
|
-
|
|
8911
|
+
DbSubnetGroup?: string;
|
|
9641
8912
|
/**
|
|
9642
|
-
* <p>
|
|
8913
|
+
* <p>The list of option group memberships for this DB cluster.</p>
|
|
9643
8914
|
*/
|
|
9644
|
-
|
|
8915
|
+
DbClusterOptionGroupMemberships?: AwsRdsDbClusterOptionGroupMembership[];
|
|
9645
8916
|
/**
|
|
9646
|
-
* <p>The
|
|
9647
|
-
*
|
|
9648
|
-
* </p>
|
|
8917
|
+
* <p>The DB cluster identifier that the user assigned to the cluster. This identifier is the
|
|
8918
|
+
* unique key that identifies a DB cluster.</p>
|
|
9649
8919
|
*/
|
|
9650
|
-
|
|
8920
|
+
DbClusterIdentifier?: string;
|
|
9651
8921
|
/**
|
|
9652
|
-
* <p>The
|
|
8922
|
+
* <p>The list of instances that make up the DB cluster.</p>
|
|
9653
8923
|
*/
|
|
9654
|
-
|
|
8924
|
+
DbClusterMembers?: AwsRdsDbClusterMember[];
|
|
9655
8925
|
/**
|
|
9656
|
-
* <p>
|
|
9657
|
-
* VPC.</p>
|
|
8926
|
+
* <p>Whether the mapping of IAM accounts to database accounts is enabled.</p>
|
|
9658
8927
|
*/
|
|
9659
|
-
|
|
8928
|
+
IamDatabaseAuthenticationEnabled?: boolean;
|
|
9660
8929
|
}
|
|
9661
|
-
export declare namespace
|
|
8930
|
+
export declare namespace AwsRdsDbClusterDetails {
|
|
9662
8931
|
/**
|
|
9663
8932
|
* @internal
|
|
9664
8933
|
*/
|
|
9665
|
-
const filterSensitiveLog: (obj:
|
|
8934
|
+
const filterSensitiveLog: (obj: AwsRdsDbClusterDetails) => any;
|
|
9666
8935
|
}
|
|
9667
8936
|
/**
|
|
9668
|
-
* <p>
|
|
8937
|
+
* <p>Information about an Amazon RDS DB cluster snapshot.</p>
|
|
9669
8938
|
*/
|
|
9670
|
-
export interface
|
|
8939
|
+
export interface AwsRdsDbClusterSnapshotDetails {
|
|
9671
8940
|
/**
|
|
9672
|
-
* <p>
|
|
8941
|
+
* <p>A list of Availability Zones where instances in the DB cluster can be created.</p>
|
|
9673
8942
|
*/
|
|
9674
|
-
|
|
8943
|
+
AvailabilityZones?: string[];
|
|
9675
8944
|
/**
|
|
9676
|
-
* <p>Indicates
|
|
8945
|
+
* <p>Indicates when the snapshot was taken.</p>
|
|
8946
|
+
* <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
|
|
8947
|
+
* Date/Time Format</a>. The value cannot contain spaces. For example,
|
|
8948
|
+
* <code>2020-03-22T13:22:13.933Z</code>.</p>
|
|
9677
8949
|
*/
|
|
9678
|
-
|
|
8950
|
+
SnapshotCreateTime?: string;
|
|
9679
8951
|
/**
|
|
9680
|
-
* <p>
|
|
8952
|
+
* <p>The name of the database engine that you want to use for this DB instance.</p>
|
|
9681
8953
|
*/
|
|
9682
|
-
|
|
8954
|
+
Engine?: string;
|
|
9683
8955
|
/**
|
|
9684
|
-
* <p>
|
|
8956
|
+
* <p>Specifies the allocated storage size in gibibytes (GiB).</p>
|
|
9685
8957
|
*/
|
|
9686
|
-
|
|
9687
|
-
}
|
|
9688
|
-
export declare namespace AwsS3AccountPublicAccessBlockDetails {
|
|
8958
|
+
AllocatedStorage?: number;
|
|
9689
8959
|
/**
|
|
9690
|
-
*
|
|
8960
|
+
* <p>The status of this DB cluster snapshot.</p>
|
|
9691
8961
|
*/
|
|
9692
|
-
|
|
9693
|
-
}
|
|
9694
|
-
/**
|
|
9695
|
-
* <p>Information about what Amazon S3
|
|
9696
|
-
* does when a multipart upload is incomplete.</p>
|
|
9697
|
-
*/
|
|
9698
|
-
export interface AwsS3BucketBucketLifecycleConfigurationRulesAbortIncompleteMultipartUploadDetails {
|
|
8962
|
+
Status?: string;
|
|
9699
8963
|
/**
|
|
9700
|
-
* <p>The number
|
|
8964
|
+
* <p>The port number on which the DB instances in the DB cluster accept connections.</p>
|
|
9701
8965
|
*/
|
|
9702
|
-
|
|
9703
|
-
}
|
|
9704
|
-
export declare namespace AwsS3BucketBucketLifecycleConfigurationRulesAbortIncompleteMultipartUploadDetails {
|
|
8966
|
+
Port?: number;
|
|
9705
8967
|
/**
|
|
9706
|
-
*
|
|
8968
|
+
* <p>The VPC ID that is associated with the DB cluster snapshot.</p>
|
|
9707
8969
|
*/
|
|
9708
|
-
|
|
9709
|
-
}
|
|
9710
|
-
/**
|
|
9711
|
-
* <p>A tag that is assigned to matching objects.</p>
|
|
9712
|
-
*/
|
|
9713
|
-
export interface AwsS3BucketBucketLifecycleConfigurationRulesFilterPredicateOperandsTagDetails {
|
|
8970
|
+
VpcId?: string;
|
|
9714
8971
|
/**
|
|
9715
|
-
* <p>
|
|
8972
|
+
* <p>Indicates when the DB cluster was created, in Universal Coordinated Time (UTC).</p>
|
|
8973
|
+
* <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
|
|
8974
|
+
* Date/Time Format</a>. The value cannot contain spaces. For example,
|
|
8975
|
+
* <code>2020-03-22T13:22:13.933Z</code>.</p>
|
|
9716
8976
|
*/
|
|
9717
|
-
|
|
8977
|
+
ClusterCreateTime?: string;
|
|
9718
8978
|
/**
|
|
9719
|
-
* <p>The
|
|
8979
|
+
* <p>The name of the master user for the DB cluster.</p>
|
|
9720
8980
|
*/
|
|
9721
|
-
|
|
9722
|
-
}
|
|
9723
|
-
export declare namespace AwsS3BucketBucketLifecycleConfigurationRulesFilterPredicateOperandsTagDetails {
|
|
8981
|
+
MasterUsername?: string;
|
|
9724
8982
|
/**
|
|
9725
|
-
*
|
|
8983
|
+
* <p>The version of the database engine to use.</p>
|
|
9726
8984
|
*/
|
|
9727
|
-
|
|
9728
|
-
}
|
|
9729
|
-
/**
|
|
9730
|
-
* <p>A value to use for the filter.</p>
|
|
9731
|
-
*/
|
|
9732
|
-
export interface AwsS3BucketBucketLifecycleConfigurationRulesFilterPredicateOperandsDetails {
|
|
8985
|
+
EngineVersion?: string;
|
|
9733
8986
|
/**
|
|
9734
|
-
* <p>
|
|
8987
|
+
* <p>The license model information for this DB cluster snapshot.</p>
|
|
9735
8988
|
*/
|
|
9736
|
-
|
|
8989
|
+
LicenseModel?: string;
|
|
9737
8990
|
/**
|
|
9738
|
-
* <p>
|
|
8991
|
+
* <p>The type of DB cluster snapshot.</p>
|
|
9739
8992
|
*/
|
|
9740
|
-
|
|
8993
|
+
SnapshotType?: string;
|
|
9741
8994
|
/**
|
|
9742
|
-
* <p>
|
|
8995
|
+
* <p>Specifies the percentage of the estimated data that has been transferred.</p>
|
|
9743
8996
|
*/
|
|
9744
|
-
|
|
9745
|
-
}
|
|
9746
|
-
export declare namespace AwsS3BucketBucketLifecycleConfigurationRulesFilterPredicateOperandsDetails {
|
|
8997
|
+
PercentProgress?: number;
|
|
9747
8998
|
/**
|
|
9748
|
-
*
|
|
8999
|
+
* <p>Whether the DB cluster is encrypted.</p>
|
|
9749
9000
|
*/
|
|
9750
|
-
|
|
9751
|
-
}
|
|
9752
|
-
/**
|
|
9753
|
-
* <p>A tag filter.</p>
|
|
9754
|
-
*/
|
|
9755
|
-
export interface AwsS3BucketBucketLifecycleConfigurationRulesFilterPredicateTagDetails {
|
|
9001
|
+
StorageEncrypted?: boolean;
|
|
9756
9002
|
/**
|
|
9757
|
-
* <p>The
|
|
9003
|
+
* <p>The ARN of the KMS master key that is used to encrypt the database instances in the
|
|
9004
|
+
* DB cluster.</p>
|
|
9758
9005
|
*/
|
|
9759
|
-
|
|
9006
|
+
KmsKeyId?: string;
|
|
9760
9007
|
/**
|
|
9761
|
-
* <p>The
|
|
9008
|
+
* <p>The DB cluster identifier.</p>
|
|
9762
9009
|
*/
|
|
9763
|
-
|
|
9010
|
+
DbClusterIdentifier?: string;
|
|
9011
|
+
/**
|
|
9012
|
+
* <p>The identifier of the DB cluster snapshot.</p>
|
|
9013
|
+
*/
|
|
9014
|
+
DbClusterSnapshotIdentifier?: string;
|
|
9015
|
+
/**
|
|
9016
|
+
* <p>Whether mapping of IAM accounts to database accounts is enabled.</p>
|
|
9017
|
+
*/
|
|
9018
|
+
IamDatabaseAuthenticationEnabled?: boolean;
|
|
9764
9019
|
}
|
|
9765
|
-
export declare namespace
|
|
9020
|
+
export declare namespace AwsRdsDbClusterSnapshotDetails {
|
|
9766
9021
|
/**
|
|
9767
9022
|
* @internal
|
|
9768
9023
|
*/
|
|
9769
|
-
const filterSensitiveLog: (obj:
|
|
9024
|
+
const filterSensitiveLog: (obj: AwsRdsDbClusterSnapshotDetails) => any;
|
|
9770
9025
|
}
|
|
9771
9026
|
/**
|
|
9772
|
-
* <p>
|
|
9027
|
+
* <p>An IAM role associated with the DB instance.</p>
|
|
9773
9028
|
*/
|
|
9774
|
-
export interface
|
|
9775
|
-
/**
|
|
9776
|
-
* <p>The values to use for the filter.</p>
|
|
9777
|
-
*/
|
|
9778
|
-
Operands?: AwsS3BucketBucketLifecycleConfigurationRulesFilterPredicateOperandsDetails[];
|
|
9029
|
+
export interface AwsRdsDbInstanceAssociatedRole {
|
|
9779
9030
|
/**
|
|
9780
|
-
* <p>
|
|
9031
|
+
* <p>The ARN of the IAM role that is associated with the DB
|
|
9032
|
+
* instance.</p>
|
|
9781
9033
|
*/
|
|
9782
|
-
|
|
9034
|
+
RoleArn?: string;
|
|
9783
9035
|
/**
|
|
9784
|
-
* <p>
|
|
9036
|
+
* <p>The name of the feature associated with the IAM role.</p>
|
|
9785
9037
|
*/
|
|
9786
|
-
|
|
9038
|
+
FeatureName?: string;
|
|
9787
9039
|
/**
|
|
9788
|
-
* <p>
|
|
9040
|
+
* <p>Describes the state of the association between the IAM role and the DB instance. The
|
|
9041
|
+
* <code>Status</code> property returns one of the following values:</p>
|
|
9042
|
+
* <ul>
|
|
9043
|
+
* <li>
|
|
9044
|
+
* <p>
|
|
9045
|
+
* <code>ACTIVE</code> - The IAM role ARN is associated with the DB instance and can
|
|
9046
|
+
* be used to access other Amazon Web Services services on your behalf.</p>
|
|
9047
|
+
* </li>
|
|
9048
|
+
* <li>
|
|
9049
|
+
* <p>
|
|
9050
|
+
* <code>PENDING</code> - The IAM role ARN is being associated with the DB
|
|
9051
|
+
* instance.</p>
|
|
9052
|
+
* </li>
|
|
9053
|
+
* <li>
|
|
9054
|
+
* <p>
|
|
9055
|
+
* <code>INVALID</code> - The IAM role ARN is associated with the DB instance. But
|
|
9056
|
+
* the DB instance is unable to assume the IAM role in order to access other Amazon Web Services
|
|
9057
|
+
* services on your behalf. </p>
|
|
9058
|
+
* </li>
|
|
9059
|
+
* </ul>
|
|
9789
9060
|
*/
|
|
9790
|
-
|
|
9061
|
+
Status?: string;
|
|
9791
9062
|
}
|
|
9792
|
-
export declare namespace
|
|
9063
|
+
export declare namespace AwsRdsDbInstanceAssociatedRole {
|
|
9793
9064
|
/**
|
|
9794
9065
|
* @internal
|
|
9795
9066
|
*/
|
|
9796
|
-
const filterSensitiveLog: (obj:
|
|
9067
|
+
const filterSensitiveLog: (obj: AwsRdsDbInstanceAssociatedRole) => any;
|
|
9797
9068
|
}
|
|
9798
9069
|
/**
|
|
9799
|
-
* <p>
|
|
9070
|
+
* <p>Provides information about a parameter group for a DB instance.</p>
|
|
9800
9071
|
*/
|
|
9801
|
-
export interface
|
|
9072
|
+
export interface AwsRdsDbParameterGroup {
|
|
9073
|
+
/**
|
|
9074
|
+
* <p>The name of the parameter group.</p>
|
|
9075
|
+
*/
|
|
9076
|
+
DbParameterGroupName?: string;
|
|
9802
9077
|
/**
|
|
9803
|
-
* <p>The
|
|
9078
|
+
* <p>The status of parameter updates.</p>
|
|
9804
9079
|
*/
|
|
9805
|
-
|
|
9080
|
+
ParameterApplyStatus?: string;
|
|
9806
9081
|
}
|
|
9807
|
-
export declare namespace
|
|
9082
|
+
export declare namespace AwsRdsDbParameterGroup {
|
|
9808
9083
|
/**
|
|
9809
9084
|
* @internal
|
|
9810
9085
|
*/
|
|
9811
|
-
const filterSensitiveLog: (obj:
|
|
9086
|
+
const filterSensitiveLog: (obj: AwsRdsDbParameterGroup) => any;
|
|
9812
9087
|
}
|
|
9813
9088
|
/**
|
|
9814
|
-
* <p>
|
|
9089
|
+
* <p>An Availability Zone for a subnet in a subnet group.</p>
|
|
9815
9090
|
*/
|
|
9816
|
-
export interface
|
|
9817
|
-
/**
|
|
9818
|
-
* <p>The number of days that an object is noncurrent before Amazon S3 can perform the associated action.</p>
|
|
9819
|
-
*/
|
|
9820
|
-
Days?: number;
|
|
9091
|
+
export interface AwsRdsDbSubnetGroupSubnetAvailabilityZone {
|
|
9821
9092
|
/**
|
|
9822
|
-
* <p>The
|
|
9093
|
+
* <p>The name of the Availability Zone for a subnet in the subnet group.</p>
|
|
9823
9094
|
*/
|
|
9824
|
-
|
|
9095
|
+
Name?: string;
|
|
9825
9096
|
}
|
|
9826
|
-
export declare namespace
|
|
9097
|
+
export declare namespace AwsRdsDbSubnetGroupSubnetAvailabilityZone {
|
|
9827
9098
|
/**
|
|
9828
9099
|
* @internal
|
|
9829
9100
|
*/
|
|
9830
|
-
const filterSensitiveLog: (obj:
|
|
9101
|
+
const filterSensitiveLog: (obj: AwsRdsDbSubnetGroupSubnetAvailabilityZone) => any;
|
|
9831
9102
|
}
|
|
9832
9103
|
/**
|
|
9833
|
-
* <p>
|
|
9104
|
+
* <p>Information about a subnet in a subnet group.</p>
|
|
9834
9105
|
*/
|
|
9835
|
-
export interface
|
|
9106
|
+
export interface AwsRdsDbSubnetGroupSubnet {
|
|
9836
9107
|
/**
|
|
9837
|
-
* <p>
|
|
9838
|
-
* <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
|
|
9839
|
-
* Date/Time Format</a>. The value cannot contain spaces. For example,
|
|
9840
|
-
* <code>2020-03-22T13:22:13.933Z</code>.</p>
|
|
9108
|
+
* <p>The identifier of a subnet in the subnet group.</p>
|
|
9841
9109
|
*/
|
|
9842
|
-
|
|
9110
|
+
SubnetIdentifier?: string;
|
|
9843
9111
|
/**
|
|
9844
|
-
* <p>
|
|
9112
|
+
* <p>Information about the Availability Zone for a subnet in the subnet group.</p>
|
|
9845
9113
|
*/
|
|
9846
|
-
|
|
9114
|
+
SubnetAvailabilityZone?: AwsRdsDbSubnetGroupSubnetAvailabilityZone;
|
|
9847
9115
|
/**
|
|
9848
|
-
* <p>The
|
|
9116
|
+
* <p>The status of a subnet in the subnet group.</p>
|
|
9849
9117
|
*/
|
|
9850
|
-
|
|
9118
|
+
SubnetStatus?: string;
|
|
9851
9119
|
}
|
|
9852
|
-
export declare namespace
|
|
9120
|
+
export declare namespace AwsRdsDbSubnetGroupSubnet {
|
|
9853
9121
|
/**
|
|
9854
9122
|
* @internal
|
|
9855
9123
|
*/
|
|
9856
|
-
const filterSensitiveLog: (obj:
|
|
9124
|
+
const filterSensitiveLog: (obj: AwsRdsDbSubnetGroupSubnet) => any;
|
|
9857
9125
|
}
|
|
9858
9126
|
/**
|
|
9859
|
-
* <p>
|
|
9127
|
+
* <p>Information about the subnet group for the database instance.</p>
|
|
9860
9128
|
*/
|
|
9861
|
-
export interface
|
|
9862
|
-
/**
|
|
9863
|
-
* <p>How Amazon S3 responds when a multipart upload is incomplete. Specifically, provides a number
|
|
9864
|
-
* of days before Amazon S3 cancels the entire upload.</p>
|
|
9865
|
-
*/
|
|
9866
|
-
AbortIncompleteMultipartUpload?: AwsS3BucketBucketLifecycleConfigurationRulesAbortIncompleteMultipartUploadDetails;
|
|
9867
|
-
/**
|
|
9868
|
-
* <p>The date when objects are moved or deleted.</p>
|
|
9869
|
-
* <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
|
|
9870
|
-
* Date/Time Format</a>. The value cannot contain spaces. For example,
|
|
9871
|
-
* <code>2020-03-22T13:22:13.933Z</code>.</p>
|
|
9872
|
-
*/
|
|
9873
|
-
ExpirationDate?: string;
|
|
9874
|
-
/**
|
|
9875
|
-
* <p>The length in days of the lifetime for objects that are subject to the rule.</p>
|
|
9876
|
-
*/
|
|
9877
|
-
ExpirationInDays?: number;
|
|
9878
|
-
/**
|
|
9879
|
-
* <p>Whether Amazon S3 removes a delete marker that has no noncurrent versions. If set to
|
|
9880
|
-
* <code>true</code>, the delete marker is expired. If set to <code>false</code>, the policy
|
|
9881
|
-
* takes no action.</p>
|
|
9882
|
-
* <p>If you provide <code>ExpiredObjectDeleteMarker</code>, you cannot provide
|
|
9883
|
-
* <code>ExpirationInDays</code> or <code>ExpirationDate</code>.</p>
|
|
9884
|
-
*/
|
|
9885
|
-
ExpiredObjectDeleteMarker?: boolean;
|
|
9886
|
-
/**
|
|
9887
|
-
* <p>Identifies the objects that a rule applies to.</p>
|
|
9888
|
-
*/
|
|
9889
|
-
Filter?: AwsS3BucketBucketLifecycleConfigurationRulesFilterDetails;
|
|
9129
|
+
export interface AwsRdsDbSubnetGroup {
|
|
9890
9130
|
/**
|
|
9891
|
-
* <p>The
|
|
9131
|
+
* <p>The name of the subnet group.</p>
|
|
9892
9132
|
*/
|
|
9893
|
-
|
|
9133
|
+
DbSubnetGroupName?: string;
|
|
9894
9134
|
/**
|
|
9895
|
-
* <p>The
|
|
9135
|
+
* <p>The description of the subnet group.</p>
|
|
9896
9136
|
*/
|
|
9897
|
-
|
|
9137
|
+
DbSubnetGroupDescription?: string;
|
|
9898
9138
|
/**
|
|
9899
|
-
* <p>
|
|
9139
|
+
* <p>The VPC ID of the subnet group.</p>
|
|
9900
9140
|
*/
|
|
9901
|
-
|
|
9141
|
+
VpcId?: string;
|
|
9902
9142
|
/**
|
|
9903
|
-
* <p>
|
|
9143
|
+
* <p>The status of the subnet group.</p>
|
|
9904
9144
|
*/
|
|
9905
|
-
|
|
9145
|
+
SubnetGroupStatus?: string;
|
|
9906
9146
|
/**
|
|
9907
|
-
* <p>
|
|
9147
|
+
* <p>A list of subnets in the subnet group.</p>
|
|
9908
9148
|
*/
|
|
9909
|
-
|
|
9149
|
+
Subnets?: AwsRdsDbSubnetGroupSubnet[];
|
|
9910
9150
|
/**
|
|
9911
|
-
* <p>
|
|
9151
|
+
* <p>The ARN of the subnet group.</p>
|
|
9912
9152
|
*/
|
|
9913
|
-
|
|
9153
|
+
DbSubnetGroupArn?: string;
|
|
9914
9154
|
}
|
|
9915
|
-
export declare namespace
|
|
9155
|
+
export declare namespace AwsRdsDbSubnetGroup {
|
|
9916
9156
|
/**
|
|
9917
9157
|
* @internal
|
|
9918
9158
|
*/
|
|
9919
|
-
const filterSensitiveLog: (obj:
|
|
9159
|
+
const filterSensitiveLog: (obj: AwsRdsDbSubnetGroup) => any;
|
|
9920
9160
|
}
|
|
9921
9161
|
/**
|
|
9922
|
-
* <p>
|
|
9162
|
+
* <p>Specifies the connection endpoint.</p>
|
|
9923
9163
|
*/
|
|
9924
|
-
export interface
|
|
9925
|
-
/**
|
|
9926
|
-
* <p>The lifecycle rules.</p>
|
|
9927
|
-
*/
|
|
9928
|
-
Rules?: AwsS3BucketBucketLifecycleConfigurationRulesDetails[];
|
|
9929
|
-
}
|
|
9930
|
-
export declare namespace AwsS3BucketBucketLifecycleConfigurationDetails {
|
|
9164
|
+
export interface AwsRdsDbInstanceEndpoint {
|
|
9931
9165
|
/**
|
|
9932
|
-
*
|
|
9166
|
+
* <p>Specifies the DNS address of the DB instance.</p>
|
|
9933
9167
|
*/
|
|
9934
|
-
|
|
9935
|
-
}
|
|
9936
|
-
/**
|
|
9937
|
-
* <p>Information about logging for
|
|
9938
|
-
* the S3 bucket</p>
|
|
9939
|
-
*/
|
|
9940
|
-
export interface AwsS3BucketLoggingConfiguration {
|
|
9168
|
+
Address?: string;
|
|
9941
9169
|
/**
|
|
9942
|
-
* <p>
|
|
9170
|
+
* <p>Specifies the port that the database engine is listening on.</p>
|
|
9943
9171
|
*/
|
|
9944
|
-
|
|
9172
|
+
Port?: number;
|
|
9945
9173
|
/**
|
|
9946
|
-
* <p>
|
|
9174
|
+
* <p>Specifies the ID that Amazon Route 53 assigns when you create a hosted zone.</p>
|
|
9947
9175
|
*/
|
|
9948
|
-
|
|
9176
|
+
HostedZoneId?: string;
|
|
9949
9177
|
}
|
|
9950
|
-
export declare namespace
|
|
9178
|
+
export declare namespace AwsRdsDbInstanceEndpoint {
|
|
9951
9179
|
/**
|
|
9952
9180
|
* @internal
|
|
9953
9181
|
*/
|
|
9954
|
-
const filterSensitiveLog: (obj:
|
|
9955
|
-
}
|
|
9956
|
-
export declare enum AwsS3BucketNotificationConfigurationS3KeyFilterRuleName {
|
|
9957
|
-
PREFIX = "Prefix",
|
|
9958
|
-
SUFFIX = "Suffix"
|
|
9182
|
+
const filterSensitiveLog: (obj: AwsRdsDbInstanceEndpoint) => any;
|
|
9959
9183
|
}
|
|
9960
9184
|
/**
|
|
9961
|
-
* <p>
|
|
9185
|
+
* <p>An option group membership.</p>
|
|
9962
9186
|
*/
|
|
9963
|
-
export interface
|
|
9187
|
+
export interface AwsRdsDbOptionGroupMembership {
|
|
9964
9188
|
/**
|
|
9965
|
-
* <p>
|
|
9189
|
+
* <p>The name of the option group.</p>
|
|
9966
9190
|
*/
|
|
9967
|
-
|
|
9191
|
+
OptionGroupName?: string;
|
|
9968
9192
|
/**
|
|
9969
|
-
* <p>The
|
|
9193
|
+
* <p>The status of the option group membership.</p>
|
|
9970
9194
|
*/
|
|
9971
|
-
|
|
9195
|
+
Status?: string;
|
|
9972
9196
|
}
|
|
9973
|
-
export declare namespace
|
|
9197
|
+
export declare namespace AwsRdsDbOptionGroupMembership {
|
|
9974
9198
|
/**
|
|
9975
9199
|
* @internal
|
|
9976
9200
|
*/
|
|
9977
|
-
const filterSensitiveLog: (obj:
|
|
9201
|
+
const filterSensitiveLog: (obj: AwsRdsDbOptionGroupMembership) => any;
|
|
9978
9202
|
}
|
|
9979
9203
|
/**
|
|
9980
|
-
* <p>
|
|
9204
|
+
* <p>Identifies the log types to enable and disable.</p>
|
|
9981
9205
|
*/
|
|
9982
|
-
export interface
|
|
9983
|
-
/**
|
|
9984
|
-
* <p>The filter rules for the filter.</p>
|
|
9985
|
-
*/
|
|
9986
|
-
FilterRules?: AwsS3BucketNotificationConfigurationS3KeyFilterRule[];
|
|
9987
|
-
}
|
|
9988
|
-
export declare namespace AwsS3BucketNotificationConfigurationS3KeyFilter {
|
|
9206
|
+
export interface AwsRdsPendingCloudWatchLogsExports {
|
|
9989
9207
|
/**
|
|
9990
|
-
*
|
|
9208
|
+
* <p>A list of log types that are being enabled.</p>
|
|
9991
9209
|
*/
|
|
9992
|
-
|
|
9993
|
-
}
|
|
9994
|
-
/**
|
|
9995
|
-
* <p>Filtering information for the notifications. The
|
|
9996
|
-
* filtering is based on Amazon S3 key names.</p>
|
|
9997
|
-
*/
|
|
9998
|
-
export interface AwsS3BucketNotificationConfigurationFilter {
|
|
9210
|
+
LogTypesToEnable?: string[];
|
|
9999
9211
|
/**
|
|
10000
|
-
* <p>
|
|
9212
|
+
* <p>A list of log types that are being disabled.</p>
|
|
10001
9213
|
*/
|
|
10002
|
-
|
|
9214
|
+
LogTypesToDisable?: string[];
|
|
10003
9215
|
}
|
|
10004
|
-
export declare namespace
|
|
9216
|
+
export declare namespace AwsRdsPendingCloudWatchLogsExports {
|
|
10005
9217
|
/**
|
|
10006
9218
|
* @internal
|
|
10007
9219
|
*/
|
|
10008
|
-
const filterSensitiveLog: (obj:
|
|
9220
|
+
const filterSensitiveLog: (obj: AwsRdsPendingCloudWatchLogsExports) => any;
|
|
10009
9221
|
}
|