@aws-sdk/client-securityhub 3.109.0 → 3.118.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.
Files changed (56) hide show
  1. package/CHANGELOG.md +27 -0
  2. package/dist-cjs/commands/TagResourceCommand.js +3 -3
  3. package/dist-cjs/commands/UntagResourceCommand.js +3 -3
  4. package/dist-cjs/commands/UpdateActionTargetCommand.js +3 -3
  5. package/dist-cjs/commands/UpdateFindingAggregatorCommand.js +3 -3
  6. package/dist-cjs/commands/UpdateFindingsCommand.js +3 -3
  7. package/dist-cjs/commands/UpdateInsightCommand.js +3 -3
  8. package/dist-cjs/commands/UpdateOrganizationConfigurationCommand.js +3 -3
  9. package/dist-cjs/commands/UpdateSecurityHubConfigurationCommand.js +3 -3
  10. package/dist-cjs/commands/UpdateStandardsControlCommand.js +3 -3
  11. package/dist-cjs/models/index.js +1 -0
  12. package/dist-cjs/models/models_0.js +161 -161
  13. package/dist-cjs/models/models_1.js +276 -114
  14. package/dist-cjs/models/models_2.js +111 -0
  15. package/dist-cjs/protocols/Aws_restJson1.js +1490 -33
  16. package/dist-es/commands/TagResourceCommand.js +1 -1
  17. package/dist-es/commands/UntagResourceCommand.js +1 -1
  18. package/dist-es/commands/UpdateActionTargetCommand.js +1 -1
  19. package/dist-es/commands/UpdateFindingAggregatorCommand.js +1 -1
  20. package/dist-es/commands/UpdateFindingsCommand.js +1 -1
  21. package/dist-es/commands/UpdateInsightCommand.js +1 -1
  22. package/dist-es/commands/UpdateOrganizationConfigurationCommand.js +1 -1
  23. package/dist-es/commands/UpdateSecurityHubConfigurationCommand.js +1 -1
  24. package/dist-es/commands/UpdateStandardsControlCommand.js +1 -1
  25. package/dist-es/models/index.js +1 -0
  26. package/dist-es/models/models_0.js +104 -104
  27. package/dist-es/models/models_1.js +180 -72
  28. package/dist-es/models/models_2.js +73 -0
  29. package/dist-es/protocols/Aws_restJson1.js +1207 -19
  30. package/dist-types/commands/TagResourceCommand.d.ts +1 -1
  31. package/dist-types/commands/UntagResourceCommand.d.ts +1 -1
  32. package/dist-types/commands/UpdateActionTargetCommand.d.ts +1 -1
  33. package/dist-types/commands/UpdateFindingAggregatorCommand.d.ts +1 -1
  34. package/dist-types/commands/UpdateFindingsCommand.d.ts +1 -1
  35. package/dist-types/commands/UpdateInsightCommand.d.ts +1 -1
  36. package/dist-types/commands/UpdateOrganizationConfigurationCommand.d.ts +1 -1
  37. package/dist-types/commands/UpdateSecurityHubConfigurationCommand.d.ts +1 -1
  38. package/dist-types/commands/UpdateStandardsControlCommand.d.ts +1 -1
  39. package/dist-types/models/index.d.ts +1 -0
  40. package/dist-types/models/models_0.d.ts +1104 -975
  41. package/dist-types/models/models_1.d.ts +3525 -2223
  42. package/dist-types/models/models_2.d.ts +285 -0
  43. package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +1 -1
  44. package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +1 -1
  45. package/dist-types/ts3.4/commands/UpdateActionTargetCommand.d.ts +1 -1
  46. package/dist-types/ts3.4/commands/UpdateFindingAggregatorCommand.d.ts +1 -1
  47. package/dist-types/ts3.4/commands/UpdateFindingsCommand.d.ts +1 -1
  48. package/dist-types/ts3.4/commands/UpdateInsightCommand.d.ts +1 -1
  49. package/dist-types/ts3.4/commands/UpdateOrganizationConfigurationCommand.d.ts +1 -1
  50. package/dist-types/ts3.4/commands/UpdateSecurityHubConfigurationCommand.d.ts +1 -1
  51. package/dist-types/ts3.4/commands/UpdateStandardsControlCommand.d.ts +1 -1
  52. package/dist-types/ts3.4/models/index.d.ts +1 -0
  53. package/dist-types/ts3.4/models/models_0.d.ts +509 -519
  54. package/dist-types/ts3.4/models/models_1.d.ts +839 -228
  55. package/dist-types/ts3.4/models/models_2.d.ts +164 -0
  56. package/package.json +26 -26
@@ -1921,6 +1921,138 @@ export declare namespace AwsCertificateManagerCertificateDetails {
1921
1921
  */
1922
1922
  const filterSensitiveLog: (obj: AwsCertificateManagerCertificateDetails) => any;
1923
1923
  }
1924
+ /**
1925
+ * <p>Provides information about the stack's conformity to its expected template configuration.
1926
+ * </p>
1927
+ */
1928
+ export interface AwsCloudFormationStackDriftInformationDetails {
1929
+ /**
1930
+ * <p>Status of the stack's actual configuration compared to its expected template configuration.
1931
+ * </p>
1932
+ */
1933
+ StackDriftStatus?: string;
1934
+ }
1935
+ export declare namespace AwsCloudFormationStackDriftInformationDetails {
1936
+ /**
1937
+ * @internal
1938
+ */
1939
+ const filterSensitiveLog: (obj: AwsCloudFormationStackDriftInformationDetails) => any;
1940
+ }
1941
+ /**
1942
+ * <p>Provides information about the CloudFormation stack output.
1943
+ * </p>
1944
+ */
1945
+ export interface AwsCloudFormationStackOutputsDetails {
1946
+ /**
1947
+ * <p>A user-defined description associated with the output.
1948
+ * </p>
1949
+ */
1950
+ Description?: string;
1951
+ /**
1952
+ * <p>The key associated with the output.
1953
+ * </p>
1954
+ */
1955
+ OutputKey?: string;
1956
+ /**
1957
+ * <p>The value associated with the output.
1958
+ * </p>
1959
+ */
1960
+ OutputValue?: string;
1961
+ }
1962
+ export declare namespace AwsCloudFormationStackOutputsDetails {
1963
+ /**
1964
+ * @internal
1965
+ */
1966
+ const filterSensitiveLog: (obj: AwsCloudFormationStackOutputsDetails) => any;
1967
+ }
1968
+ /**
1969
+ * <p>Nests a stack as a resource in a top-level template. Nested stacks are stacks created as resources for
1970
+ * another stack.</p>
1971
+ */
1972
+ export interface AwsCloudFormationStackDetails {
1973
+ /**
1974
+ * <p>The capabilities allowed in the stack.
1975
+ * </p>
1976
+ */
1977
+ Capabilities?: string[];
1978
+ /**
1979
+ * <p>The time at which the stack was created. </p>
1980
+ */
1981
+ CreationTime?: string;
1982
+ /**
1983
+ * <p>A user-defined description associated with the stack.
1984
+ * </p>
1985
+ */
1986
+ Description?: string;
1987
+ /**
1988
+ * <p>Boolean to enable or disable rollback on stack creation failures.
1989
+ * </p>
1990
+ */
1991
+ DisableRollback?: boolean;
1992
+ /**
1993
+ * <p>Information about whether a stack's actual configuration differs, or has drifted, from its expected
1994
+ * configuration, as defined in the stack template and any values specified as template parameters.
1995
+ * </p>
1996
+ */
1997
+ DriftInformation?: AwsCloudFormationStackDriftInformationDetails;
1998
+ /**
1999
+ * <p>Whether termination protection is enabled for the stack.
2000
+ * </p>
2001
+ */
2002
+ EnableTerminationProtection?: boolean;
2003
+ /**
2004
+ * <p>The time the nested stack was last updated. This field will only be returned if the stack has been
2005
+ * updated at least once.</p>
2006
+ */
2007
+ LastUpdatedTime?: string;
2008
+ /**
2009
+ * <p>The Amazon Resource Names (ARNs) of the Amazon SNS topic to which stack-related events are published.
2010
+ * </p>
2011
+ */
2012
+ NotificationArns?: string[];
2013
+ /**
2014
+ * <p>A list of output structures.
2015
+ * </p>
2016
+ */
2017
+ Outputs?: AwsCloudFormationStackOutputsDetails[];
2018
+ /**
2019
+ * <p>The ARN of an IAM role that's associated with the stack.
2020
+ * </p>
2021
+ */
2022
+ RoleArn?: string;
2023
+ /**
2024
+ * <p>Unique identifier of the stack.
2025
+ * </p>
2026
+ */
2027
+ StackId?: string;
2028
+ /**
2029
+ * <p>The name associated with the stack.
2030
+ * </p>
2031
+ */
2032
+ StackName?: string;
2033
+ /**
2034
+ * <p>Current status of the stack.
2035
+ * </p>
2036
+ */
2037
+ StackStatus?: string;
2038
+ /**
2039
+ * <p>Success or failure message associated with the stack status.
2040
+ * </p>
2041
+ */
2042
+ StackStatusReason?: string;
2043
+ /**
2044
+ * <p>The length of time, in minutes, that CloudFormation waits for the nested stack to reach
2045
+ * the <code>CREATE_COMPLETE</code> state.
2046
+ * </p>
2047
+ */
2048
+ TimeoutInMinutes?: number;
2049
+ }
2050
+ export declare namespace AwsCloudFormationStackDetails {
2051
+ /**
2052
+ * @internal
2053
+ */
2054
+ const filterSensitiveLog: (obj: AwsCloudFormationStackDetails) => any;
2055
+ }
1924
2056
  /**
1925
2057
  * <p>Information about a cache behavior for the distribution.</p>
1926
2058
  */
@@ -1955,7 +2087,7 @@ export declare namespace AwsCloudFrontDistributionCacheBehavior {
1955
2087
  const filterSensitiveLog: (obj: AwsCloudFrontDistributionCacheBehavior) => any;
1956
2088
  }
1957
2089
  /**
1958
- * <p>Provides information about caching for the distribution.</p>
2090
+ * <p>Provides information about caching for the CloudFront distribution.</p>
1959
2091
  */
1960
2092
  export interface AwsCloudFrontDistributionCacheBehaviors {
1961
2093
  /**
@@ -1970,7 +2102,7 @@ export declare namespace AwsCloudFrontDistributionCacheBehaviors {
1970
2102
  const filterSensitiveLog: (obj: AwsCloudFrontDistributionCacheBehaviors) => any;
1971
2103
  }
1972
2104
  /**
1973
- * <p>Contains information about the default cache configuration for the distribution.</p>
2105
+ * <p>Contains information about the default cache configuration for the CloudFront distribution.</p>
1974
2106
  */
1975
2107
  export interface AwsCloudFrontDistributionDefaultCacheBehavior {
1976
2108
  /**
@@ -2003,7 +2135,7 @@ export declare namespace AwsCloudFrontDistributionDefaultCacheBehavior {
2003
2135
  const filterSensitiveLog: (obj: AwsCloudFrontDistributionDefaultCacheBehavior) => any;
2004
2136
  }
2005
2137
  /**
2006
- * <p>A complex type that controls whether access logs are written for the distribution.</p>
2138
+ * <p>A complex type that controls whether access logs are written for the CloudFront distribution.</p>
2007
2139
  */
2008
2140
  export interface AwsCloudFrontDistributionLogging {
2009
2141
  /**
@@ -2065,7 +2197,7 @@ export declare namespace AwsCloudFrontDistributionOriginGroupFailover {
2065
2197
  const filterSensitiveLog: (obj: AwsCloudFrontDistributionOriginGroupFailover) => any;
2066
2198
  }
2067
2199
  /**
2068
- * <p>Information about an origin group for the distribution.</p>
2200
+ * <p>Information about an origin group for the CloudFront distribution.</p>
2069
2201
  */
2070
2202
  export interface AwsCloudFrontDistributionOriginGroup {
2071
2203
  /**
@@ -2080,8 +2212,7 @@ export declare namespace AwsCloudFrontDistributionOriginGroup {
2080
2212
  const filterSensitiveLog: (obj: AwsCloudFrontDistributionOriginGroup) => any;
2081
2213
  }
2082
2214
  /**
2083
- * <p>Provides information about origin groups that are associated with the
2084
- * distribution.</p>
2215
+ * <p>Provides information about origin groups that are associated with the CloudFront distribution.</p>
2085
2216
  */
2086
2217
  export interface AwsCloudFrontDistributionOriginGroups {
2087
2218
  /**
@@ -2096,8 +2227,74 @@ export declare namespace AwsCloudFrontDistributionOriginGroups {
2096
2227
  const filterSensitiveLog: (obj: AwsCloudFrontDistributionOriginGroups) => any;
2097
2228
  }
2098
2229
  /**
2099
- * <p>Information about an origin that is an S3 bucket that is not configured with static
2100
- * website hosting.</p>
2230
+ * <p>A complex type that contains information about the SSL/TLS protocols that CloudFront can use
2231
+ * when establishing an HTTPS connection with your origin.
2232
+ * </p>
2233
+ */
2234
+ export interface AwsCloudFrontDistributionOriginSslProtocols {
2235
+ /**
2236
+ * <p>A list that contains allowed SSL/TLS protocols for this distribution.
2237
+ * </p>
2238
+ */
2239
+ Items?: string[];
2240
+ /**
2241
+ * <p>The number of SSL/TLS protocols that you want to allow CloudFront to use when establishing
2242
+ * an HTTPS connection with this origin.
2243
+ * </p>
2244
+ */
2245
+ Quantity?: number;
2246
+ }
2247
+ export declare namespace AwsCloudFrontDistributionOriginSslProtocols {
2248
+ /**
2249
+ * @internal
2250
+ */
2251
+ const filterSensitiveLog: (obj: AwsCloudFrontDistributionOriginSslProtocols) => any;
2252
+ }
2253
+ /**
2254
+ * <p>A custom origin. A custom origin is any origin that is not an Amazon S3 bucket, with one exception. An Amazon S3 bucket that is <a href="https://docs.aws.amazon.com/AmazonS3/latest/dev/WebsiteHosting.html">configured with
2255
+ * static website hosting</a> is a custom origin. </p>
2256
+ */
2257
+ export interface AwsCloudFrontDistributionOriginCustomOriginConfig {
2258
+ /**
2259
+ * <p>The HTTP port that CloudFront uses to connect to the origin.
2260
+ * </p>
2261
+ */
2262
+ HttpPort?: number;
2263
+ /**
2264
+ * <p>The HTTPS port that CloudFront uses to connect to the origin.
2265
+ * </p>
2266
+ */
2267
+ HttpsPort?: number;
2268
+ /**
2269
+ * <p>Specifies how long, in seconds, CloudFront persists its connection to the origin.
2270
+ * </p>
2271
+ */
2272
+ OriginKeepaliveTimeout?: number;
2273
+ /**
2274
+ * <p>Specifies the protocol (HTTP or HTTPS) that CloudFront uses to connect to the origin.
2275
+ * </p>
2276
+ */
2277
+ OriginProtocolPolicy?: string;
2278
+ /**
2279
+ * <p>Specifies how long, in seconds, CloudFront waits for a response from the origin.
2280
+ * </p>
2281
+ */
2282
+ OriginReadTimeout?: number;
2283
+ /**
2284
+ * <p>Specifies the minimum SSL/TLS protocol that CloudFront uses when connecting to your origin over HTTPS.
2285
+ * </p>
2286
+ */
2287
+ OriginSslProtocols?: AwsCloudFrontDistributionOriginSslProtocols;
2288
+ }
2289
+ export declare namespace AwsCloudFrontDistributionOriginCustomOriginConfig {
2290
+ /**
2291
+ * @internal
2292
+ */
2293
+ const filterSensitiveLog: (obj: AwsCloudFrontDistributionOriginCustomOriginConfig) => any;
2294
+ }
2295
+ /**
2296
+ * <p>Information about an origin that is an Amazon S3 bucket that is not configured with static website
2297
+ * hosting.</p>
2101
2298
  */
2102
2299
  export interface AwsCloudFrontDistributionOriginS3OriginConfig {
2103
2300
  /**
@@ -2112,13 +2309,13 @@ export declare namespace AwsCloudFrontDistributionOriginS3OriginConfig {
2112
2309
  const filterSensitiveLog: (obj: AwsCloudFrontDistributionOriginS3OriginConfig) => any;
2113
2310
  }
2114
2311
  /**
2115
- * <p>A complex type that describes the S3 bucket, HTTP server (for example, a web
2116
- * server), AWS Elemental MediaStore, or other server from which CloudFront gets your
2117
- * files.</p>
2312
+ * <p>A complex type that describes the
2313
+ * Amazon S3 bucket, HTTP server (for example, a web server), AWS Elemental MediaStore, or other server from which CloudFront gets your files.</p>
2118
2314
  */
2119
2315
  export interface AwsCloudFrontDistributionOriginItem {
2120
2316
  /**
2121
- * <p>Amazon S3 origins: The DNS name of the S3 bucket from which you want CloudFront to get objects for this origin.</p>
2317
+ * <p>Amazon S3 origins: The DNS name of the S3 bucket from which you want
2318
+ * CloudFront to get objects for this origin.</p>
2122
2319
  */
2123
2320
  DomainName?: string;
2124
2321
  /**
@@ -2126,7 +2323,8 @@ export interface AwsCloudFrontDistributionOriginItem {
2126
2323
  */
2127
2324
  Id?: string;
2128
2325
  /**
2129
- * <p>An optional element that causes CloudFront to request your content from a directory in your Amazon S3 bucket or your custom origin.</p>
2326
+ * <p>An optional element that causes CloudFront to request your content from a
2327
+ * directory in your Amazon S3 bucket or your custom origin.</p>
2130
2328
  */
2131
2329
  OriginPath?: string;
2132
2330
  /**
@@ -2134,6 +2332,13 @@ export interface AwsCloudFrontDistributionOriginItem {
2134
2332
  * hosting.</p>
2135
2333
  */
2136
2334
  S3OriginConfig?: AwsCloudFrontDistributionOriginS3OriginConfig;
2335
+ /**
2336
+ * <p>An origin that is not an Amazon S3 bucket, with one exception.
2337
+ * If the Amazon S3 bucket is configured with static website hosting, use this attribute.
2338
+ * If the Amazon S3 bucket is not configured with static website hosting, use the <code>S3OriginConfig</code> type instead.
2339
+ * </p>
2340
+ */
2341
+ CustomOriginConfig?: AwsCloudFrontDistributionOriginCustomOriginConfig;
2137
2342
  }
2138
2343
  export declare namespace AwsCloudFrontDistributionOriginItem {
2139
2344
  /**
@@ -2142,7 +2347,7 @@ export declare namespace AwsCloudFrontDistributionOriginItem {
2142
2347
  const filterSensitiveLog: (obj: AwsCloudFrontDistributionOriginItem) => any;
2143
2348
  }
2144
2349
  /**
2145
- * <p>A complex type that contains information about origins and origin groups for this distribution.</p>
2350
+ * <p>A complex type that contains information about origins and origin groups for this CloudFront distribution.</p>
2146
2351
  */
2147
2352
  export interface AwsCloudFrontDistributionOrigins {
2148
2353
  /**
@@ -2157,7 +2362,7 @@ export declare namespace AwsCloudFrontDistributionOrigins {
2157
2362
  const filterSensitiveLog: (obj: AwsCloudFrontDistributionOrigins) => any;
2158
2363
  }
2159
2364
  /**
2160
- * <p>Provides information about the TLS/SSL configuration that the distribution uses to communicate with viewers.</p>
2365
+ * <p>Provides information about the TLS/SSL configuration that the CloudFront distribution uses to communicate with viewers.</p>
2161
2366
  */
2162
2367
  export interface AwsCloudFrontDistributionViewerCertificate {
2163
2368
  /**
@@ -2196,7 +2401,7 @@ export declare namespace AwsCloudFrontDistributionViewerCertificate {
2196
2401
  const filterSensitiveLog: (obj: AwsCloudFrontDistributionViewerCertificate) => any;
2197
2402
  }
2198
2403
  /**
2199
- * <p>A distribution configuration.</p>
2404
+ * <p>A CloudFront distribution configuration.</p>
2200
2405
  */
2201
2406
  export interface AwsCloudFrontDistributionDetails {
2202
2407
  /**
@@ -2335,6 +2540,161 @@ export declare namespace AwsCloudTrailTrailDetails {
2335
2540
  */
2336
2541
  const filterSensitiveLog: (obj: AwsCloudTrailTrailDetails) => any;
2337
2542
  }
2543
+ /**
2544
+ * <p>Details about the dimensions for the metric associated with the alarm.
2545
+ * </p>
2546
+ */
2547
+ export interface AwsCloudWatchAlarmDimensionsDetails {
2548
+ /**
2549
+ * <p>The name of a dimension.
2550
+ * </p>
2551
+ */
2552
+ Name?: string;
2553
+ /**
2554
+ * <p>The value of a dimension.
2555
+ * </p>
2556
+ */
2557
+ Value?: string;
2558
+ }
2559
+ export declare namespace AwsCloudWatchAlarmDimensionsDetails {
2560
+ /**
2561
+ * @internal
2562
+ */
2563
+ const filterSensitiveLog: (obj: AwsCloudWatchAlarmDimensionsDetails) => any;
2564
+ }
2565
+ /**
2566
+ * <p>Specifies an alarm and associates it with the specified metric or metric math expression.
2567
+ * </p>
2568
+ */
2569
+ export interface AwsCloudWatchAlarmDetails {
2570
+ /**
2571
+ * <p>Indicates whether actions should be executed during any changes to the alarm state.
2572
+ * </p>
2573
+ */
2574
+ ActionsEnabled?: boolean;
2575
+ /**
2576
+ * <p>The list of actions, specified as Amazon Resource Names (ARNs) to execute when this alarm transitions into an <code>ALARM</code> state from any other
2577
+ * state. </p>
2578
+ */
2579
+ AlarmActions?: string[];
2580
+ /**
2581
+ * <p>The ARN of the alarm.
2582
+ * </p>
2583
+ */
2584
+ AlarmArn?: string;
2585
+ /**
2586
+ * <p>The time stamp of the last update to the alarm configuration.
2587
+ * </p>
2588
+ */
2589
+ AlarmConfigurationUpdatedTimestamp?: string;
2590
+ /**
2591
+ * <p>The description of the alarm.
2592
+ * </p>
2593
+ */
2594
+ AlarmDescription?: string;
2595
+ /**
2596
+ * <p>The name of the alarm. If you don't specify a name, CloudFront generates a unique physical ID
2597
+ * and uses that ID for the alarm name.
2598
+ * </p>
2599
+ */
2600
+ AlarmName?: string;
2601
+ /**
2602
+ * <p>The arithmetic operation to use when comparing the specified statistic and threshold. The specified
2603
+ * statistic value is used as the first operand.
2604
+ * </p>
2605
+ */
2606
+ ComparisonOperator?: string;
2607
+ /**
2608
+ * <p>The number of datapoints that must be breaching to trigger the alarm.
2609
+ * </p>
2610
+ */
2611
+ DatapointsToAlarm?: number;
2612
+ /**
2613
+ * <p>The dimensions for the metric associated with the alarm.
2614
+ * </p>
2615
+ */
2616
+ Dimensions?: AwsCloudWatchAlarmDimensionsDetails[];
2617
+ /**
2618
+ * <p>Used only for alarms based on percentiles. If <code>ignore</code>, the alarm state does not change during
2619
+ * periods with too few data points to be statistically significant. If <code>evaluate</code> or this parameter is not used,
2620
+ * the alarm is always evaluated and possibly changes state no matter how many data points are available.
2621
+ * </p>
2622
+ */
2623
+ EvaluateLowSampleCountPercentile?: string;
2624
+ /**
2625
+ * <p>The number of periods over which data is compared to the specified threshold.
2626
+ * </p>
2627
+ */
2628
+ EvaluationPeriods?: number;
2629
+ /**
2630
+ * <p>The percentile statistic for the metric associated with the alarm.
2631
+ * </p>
2632
+ */
2633
+ ExtendedStatistic?: string;
2634
+ /**
2635
+ * <p>The actions to execute when this alarm transitions to the <code>INSUFFICIENT_DATA</code> state from
2636
+ * any other state. Each action is specified as an ARN.
2637
+ * </p>
2638
+ */
2639
+ InsufficientDataActions?: string[];
2640
+ /**
2641
+ * <p>The name of the metric associated with the alarm. This is required for an alarm based on a metric.
2642
+ * For an alarm based on a math expression, you use <code>Metrics</code> instead and you can't specify <code>MetricName</code>.
2643
+ * </p>
2644
+ */
2645
+ MetricName?: string;
2646
+ /**
2647
+ * <p>The namespace of the metric associated with the alarm. This is required for an alarm based on a
2648
+ * metric. For an alarm based on a math expression, you can't specify <code>Namespace</code> and you use
2649
+ * <code>Metrics</code> instead.
2650
+ * </p>
2651
+ */
2652
+ Namespace?: string;
2653
+ /**
2654
+ * <p>The actions to execute when this alarm transitions to the <code>OK</code> state from any other state.
2655
+ * Each action is specified as an ARN.
2656
+ * </p>
2657
+ */
2658
+ OkActions?: string[];
2659
+ /**
2660
+ * <p>The period, in seconds, over which the statistic is applied. This is required for an alarm based on a
2661
+ * metric.
2662
+ * </p>
2663
+ */
2664
+ Period?: number;
2665
+ /**
2666
+ * <p>The statistic for the metric associated with the alarm, other than percentile. For percentile statistics, use <code>ExtendedStatistic</code>.</p>
2667
+ * <p>For an alarm based on a metric, you must specify either <code>Statistic</code> or <code>ExtendedStatistic</code> but not both.</p>
2668
+ * <p>For an alarm based on a math expression, you can't specify <code>Statistic</code>. Instead, you use <code>Metrics</code>.</p>
2669
+ */
2670
+ Statistic?: string;
2671
+ /**
2672
+ * <p>The value to compare with the specified statistic.
2673
+ * </p>
2674
+ */
2675
+ Threshold?: number;
2676
+ /**
2677
+ * <p>n an alarm based on an anomaly detection model, this is the ID of the <code>ANOMALY_DETECTION_BAND</code> function used as the threshold for the alarm.
2678
+ * </p>
2679
+ */
2680
+ ThresholdMetricId?: string;
2681
+ /**
2682
+ * <p>Sets how this alarm is to handle missing data points.
2683
+ * </p>
2684
+ */
2685
+ TreatMissingData?: string;
2686
+ /**
2687
+ * <p>The unit of the metric associated with the alarm.
2688
+ * </p>
2689
+ */
2690
+ Unit?: string;
2691
+ }
2692
+ export declare namespace AwsCloudWatchAlarmDetails {
2693
+ /**
2694
+ * @internal
2695
+ */
2696
+ const filterSensitiveLog: (obj: AwsCloudWatchAlarmDetails) => any;
2697
+ }
2338
2698
  /**
2339
2699
  * <p>Information about the build artifacts for the CodeBuild project.</p>
2340
2700
  */
@@ -3229,7 +3589,44 @@ export declare namespace AwsEc2EipDetails {
3229
3589
  const filterSensitiveLog: (obj: AwsEc2EipDetails) => any;
3230
3590
  }
3231
3591
  /**
3232
- * <p>Identifies a network interface for the EC2 instance.</p>
3592
+ * <p>Metadata options that allow you to configure and secure the Amazon EC2 instance.</p>
3593
+ */
3594
+ export interface AwsEc2InstanceMetadataOptions {
3595
+ /**
3596
+ * <p>Enables or disables the HTTP metadata endpoint on the instance.
3597
+ * </p>
3598
+ */
3599
+ HttpEndpoint?: string;
3600
+ /**
3601
+ * <p>Enables or disables the IPv6 endpoint for the instance metadata service.
3602
+ * </p>
3603
+ */
3604
+ HttpProtocolIpv6?: string;
3605
+ /**
3606
+ * <p>The desired HTTP PUT response hop limit for instance metadata requests.
3607
+ * The larger the number, the further instance metadata requests can travel.
3608
+ * </p>
3609
+ */
3610
+ HttpPutResponseHopLimit?: number;
3611
+ /**
3612
+ * <p>The state of token usage for your instance metadata requests.
3613
+ * </p>
3614
+ */
3615
+ HttpTokens?: string;
3616
+ /**
3617
+ * <p>Specifies whether to allow access to instance tags from the instance metadata.
3618
+ * </p>
3619
+ */
3620
+ InstanceMetadataTags?: string;
3621
+ }
3622
+ export declare namespace AwsEc2InstanceMetadataOptions {
3623
+ /**
3624
+ * @internal
3625
+ */
3626
+ const filterSensitiveLog: (obj: AwsEc2InstanceMetadataOptions) => any;
3627
+ }
3628
+ /**
3629
+ * <p>Identifies a network interface for the Amazon EC2 instance.</p>
3233
3630
  */
3234
3631
  export interface AwsEc2InstanceNetworkInterfacesDetails {
3235
3632
  /**
@@ -3244,7 +3641,7 @@ export declare namespace AwsEc2InstanceNetworkInterfacesDetails {
3244
3641
  const filterSensitiveLog: (obj: AwsEc2InstanceNetworkInterfacesDetails) => any;
3245
3642
  }
3246
3643
  /**
3247
- * <p>The details of an EC2 instance.</p>
3644
+ * <p>The details of an Amazon EC2 instance.</p>
3248
3645
  */
3249
3646
  export interface AwsEc2InstanceDetails {
3250
3647
  /**
@@ -3290,6 +3687,16 @@ export interface AwsEc2InstanceDetails {
3290
3687
  * <p>The identifiers of the network interfaces for the EC2 instance. The details for each network interface are in a corresponding <code>AwsEc2NetworkInterfacesDetails</code> object.</p>
3291
3688
  */
3292
3689
  NetworkInterfaces?: AwsEc2InstanceNetworkInterfacesDetails[];
3690
+ /**
3691
+ * <p>The virtualization type of the Amazon Machine Image (AMI) required to launch the instance.
3692
+ * </p>
3693
+ */
3694
+ VirtualizationType?: string;
3695
+ /**
3696
+ * <p>Details about the metadata options for the Amazon EC2 instance.
3697
+ * </p>
3698
+ */
3699
+ MetadataOptions?: AwsEc2InstanceMetadataOptions;
3293
3700
  }
3294
3701
  export declare namespace AwsEc2InstanceDetails {
3295
3702
  /**
@@ -3325,11 +3732,13 @@ export declare namespace AwsEc2NetworkAclAssociation {
3325
3732
  */
3326
3733
  export interface IcmpTypeCode {
3327
3734
  /**
3328
- * <p>The ICMP code for which to deny or allow access. To deny or allow all codes, use the value -1.</p>
3735
+ * <p>The ICMP code for which to deny or allow access. To deny or allow all codes, use the
3736
+ * value <code>-1</code>.</p>
3329
3737
  */
3330
3738
  Code?: number;
3331
3739
  /**
3332
- * <p>The ICMP type for which to deny or allow access. To deny or allow all types, use the value -1.</p>
3740
+ * <p>The ICMP type for which to deny or allow access. To deny or allow all types, use the
3741
+ * value <code>-1</code>.</p>
3333
3742
  */
3334
3743
  Type?: number;
3335
3744
  }
@@ -3383,7 +3792,8 @@ export interface AwsEc2NetworkAclEntry {
3383
3792
  */
3384
3793
  PortRange?: PortRangeFromTo;
3385
3794
  /**
3386
- * <p>The protocol that the rule applies to. To deny or allow access to all protocols, use the value -1.</p>
3795
+ * <p>The protocol that the rule applies to. To deny or allow access to all protocols, use the
3796
+ * value <code>-1</code>.</p>
3387
3797
  */
3388
3798
  Protocol?: string;
3389
3799
  /**
@@ -3402,7 +3812,7 @@ export declare namespace AwsEc2NetworkAclEntry {
3402
3812
  const filterSensitiveLog: (obj: AwsEc2NetworkAclEntry) => any;
3403
3813
  }
3404
3814
  /**
3405
- * <p>Contains details about an EC2 network access control list (ACL).</p>
3815
+ * <p>Contains details about an Amazon EC2 network access control list (ACL).</p>
3406
3816
  */
3407
3817
  export interface AwsEc2NetworkAclDetails {
3408
3818
  /**
@@ -3675,9 +4085,10 @@ export interface AwsEc2SecurityGroupIpPermission {
3675
4085
  * <p>The IP protocol name (<code>tcp</code>, <code>udp</code>, <code>icmp</code>,
3676
4086
  * <code>icmpv6</code>) or number.</p>
3677
4087
  * <p>[VPC only] Use <code>-1</code> to specify all protocols.</p>
3678
- * <p>When authorizing security group rules, specifying -1 or a protocol number other than
3679
- * <code>tcp</code>, <code>udp</code>, <code>icmp</code>, or <code>icmpv6</code> allows
3680
- * traffic on all ports, regardless of any port range you specify.</p>
4088
+ * <p>When authorizing security group rules, specifying <code>-1</code>
4089
+ * or a protocol number other than <code>tcp</code>, <code>udp</code>, <code>icmp</code>, or
4090
+ * <code>icmpv6</code> allows traffic on all ports, regardless of any port range you
4091
+ * specify.</p>
3681
4092
  * <p>For <code>tcp</code>, <code>udp</code>, and <code>icmp</code>, you must specify a port
3682
4093
  * range.</p>
3683
4094
  * <p>For <code>icmpv6</code>, the port range is optional. If you omit the port range, traffic
@@ -3693,8 +4104,8 @@ export interface AwsEc2SecurityGroupIpPermission {
3693
4104
  FromPort?: number;
3694
4105
  /**
3695
4106
  * <p>The end of the port range for the TCP and UDP protocols, or an ICMP/ICMPv6 code.</p>
3696
- * <p>A value of -1 indicates all ICMP/ICMPv6 codes. If you specify all ICMP/ICMPv6 types, you
3697
- * must specify all codes.</p>
4107
+ * <p>A value of <code>-1</code> indicates all ICMP/ICMPv6 codes. If you specify all ICMP/ICMPv6 types, you must specify all
4108
+ * codes.</p>
3698
4109
  */
3699
4110
  ToPort?: number;
3700
4111
  /**
@@ -3723,7 +4134,7 @@ export declare namespace AwsEc2SecurityGroupIpPermission {
3723
4134
  const filterSensitiveLog: (obj: AwsEc2SecurityGroupIpPermission) => any;
3724
4135
  }
3725
4136
  /**
3726
- * <p>Details about an EC2 security group.</p>
4137
+ * <p>Details about an Amazon EC2 security group.</p>
3727
4138
  */
3728
4139
  export interface AwsEc2SecurityGroupDetails {
3729
4140
  /**
@@ -3844,19 +4255,92 @@ export declare namespace AwsEc2SubnetDetails {
3844
4255
  const filterSensitiveLog: (obj: AwsEc2SubnetDetails) => any;
3845
4256
  }
3846
4257
  /**
3847
- * <p>An attachment to an Amazon EC2 volume.</p>
4258
+ * <p>Information about an Amazon Web Services Amazon EC2 Transit Gateway that interconnects
4259
+ * virtual private clouds (VPCs) and on-premises networks.
4260
+ * </p>
3848
4261
  */
3849
- export interface AwsEc2VolumeAttachment {
4262
+ export interface AwsEc2TransitGatewayDetails {
3850
4263
  /**
3851
- * <p>The datetime when the attachment initiated.</p>
4264
+ * <p>The ID of the transit gateway.
4265
+ * </p>
3852
4266
  */
3853
- AttachTime?: string;
4267
+ Id?: string;
3854
4268
  /**
3855
- * <p>Whether the EBS volume is deleted when the EC2 instance is terminated.</p>
4269
+ * <p>The description of the transit gateway.
4270
+ * </p>
3856
4271
  */
3857
- DeleteOnTermination?: boolean;
4272
+ Description?: string;
3858
4273
  /**
3859
- * <p>The identifier of the EC2 instance.</p>
4274
+ * <p>Turn on or turn off automatic propagation of routes to the default propagation route table.
4275
+ * </p>
4276
+ */
4277
+ DefaultRouteTablePropagation?: string;
4278
+ /**
4279
+ * <p>Turn on or turn off automatic acceptance of attachment requests.
4280
+ * </p>
4281
+ */
4282
+ AutoAcceptSharedAttachments?: string;
4283
+ /**
4284
+ * <p>Turn on or turn off automatic association with the default association route table.
4285
+ * </p>
4286
+ */
4287
+ DefaultRouteTableAssociation?: string;
4288
+ /**
4289
+ * <p>The transit gateway Classless Inter-Domain Routing (CIDR) blocks.
4290
+ * </p>
4291
+ */
4292
+ TransitGatewayCidrBlocks?: string[];
4293
+ /**
4294
+ * <p>The ID of the default association route table.
4295
+ * </p>
4296
+ */
4297
+ AssociationDefaultRouteTableId?: string;
4298
+ /**
4299
+ * <p>The ID of the default propagation route table.
4300
+ * </p>
4301
+ */
4302
+ PropagationDefaultRouteTableId?: string;
4303
+ /**
4304
+ * <p>Turn on or turn off Equal Cost Multipath Protocol (ECMP) support.
4305
+ * </p>
4306
+ */
4307
+ VpnEcmpSupport?: string;
4308
+ /**
4309
+ * <p>Turn on or turn off DNS support.
4310
+ * </p>
4311
+ */
4312
+ DnsSupport?: string;
4313
+ /**
4314
+ * <p>Indicates whether multicast is supported on the transit gateway.
4315
+ * </p>
4316
+ */
4317
+ MulticastSupport?: string;
4318
+ /**
4319
+ * <p>A private Autonomous System Number (ASN) for the Amazon side of a BGP session.
4320
+ * </p>
4321
+ */
4322
+ AmazonSideAsn?: number;
4323
+ }
4324
+ export declare namespace AwsEc2TransitGatewayDetails {
4325
+ /**
4326
+ * @internal
4327
+ */
4328
+ const filterSensitiveLog: (obj: AwsEc2TransitGatewayDetails) => any;
4329
+ }
4330
+ /**
4331
+ * <p>An attachment to an Amazon EC2 volume.</p>
4332
+ */
4333
+ export interface AwsEc2VolumeAttachment {
4334
+ /**
4335
+ * <p>The datetime when the attachment initiated.</p>
4336
+ */
4337
+ AttachTime?: string;
4338
+ /**
4339
+ * <p>Whether the EBS volume is deleted when the EC2 instance is terminated.</p>
4340
+ */
4341
+ DeleteOnTermination?: boolean;
4342
+ /**
4343
+ * <p>The identifier of the EC2 instance.</p>
3860
4344
  */
3861
4345
  InstanceId?: string;
3862
4346
  /**
@@ -3882,7 +4366,12 @@ export interface AwsEc2VolumeDetails {
3882
4366
  */
3883
4367
  CreateTime?: string;
3884
4368
  /**
3885
- * <p>Whether the volume is encrypted.</p>
4369
+ * <p>The device name for the volume that is attached to the instance.
4370
+ * </p>
4371
+ */
4372
+ DeviceName?: string;
4373
+ /**
4374
+ * <p>Specifies whether the volume is encrypted.</p>
3886
4375
  */
3887
4376
  Encrypted?: boolean;
3888
4377
  /**
@@ -3906,6 +4395,21 @@ export interface AwsEc2VolumeDetails {
3906
4395
  * <p>The volume attachments.</p>
3907
4396
  */
3908
4397
  Attachments?: AwsEc2VolumeAttachment[];
4398
+ /**
4399
+ * <p>The ID of the volume.
4400
+ * </p>
4401
+ */
4402
+ VolumeId?: string;
4403
+ /**
4404
+ * <p>The volume type.
4405
+ * </p>
4406
+ */
4407
+ VolumeType?: string;
4408
+ /**
4409
+ * <p>Indicates whether the volume was scanned or skipped.
4410
+ * </p>
4411
+ */
4412
+ VolumeScanStatus?: string;
3909
4413
  }
3910
4414
  export declare namespace AwsEc2VolumeDetails {
3911
4415
  /**
@@ -4035,6 +4539,174 @@ export declare namespace AwsEc2VpcEndpointServiceDetails {
4035
4539
  */
4036
4540
  const filterSensitiveLog: (obj: AwsEc2VpcEndpointServiceDetails) => any;
4037
4541
  }
4542
+ /**
4543
+ * <p>Provides details about the IPv4 CIDR blocks for the VPC.
4544
+ * </p>
4545
+ */
4546
+ export interface VpcInfoCidrBlockSetDetails {
4547
+ /**
4548
+ * <p>The IPv4 CIDR block for the VPC.
4549
+ * </p>
4550
+ */
4551
+ CidrBlock?: string;
4552
+ }
4553
+ export declare namespace VpcInfoCidrBlockSetDetails {
4554
+ /**
4555
+ * @internal
4556
+ */
4557
+ const filterSensitiveLog: (obj: VpcInfoCidrBlockSetDetails) => any;
4558
+ }
4559
+ /**
4560
+ * <p>Provides details about the IPv6 CIDR blocks for the VPC.
4561
+ * </p>
4562
+ */
4563
+ export interface VpcInfoIpv6CidrBlockSetDetails {
4564
+ /**
4565
+ * <p>The IPv6 CIDR block for the VPC.
4566
+ * </p>
4567
+ */
4568
+ Ipv6CidrBlock?: string;
4569
+ }
4570
+ export declare namespace VpcInfoIpv6CidrBlockSetDetails {
4571
+ /**
4572
+ * @internal
4573
+ */
4574
+ const filterSensitiveLog: (obj: VpcInfoIpv6CidrBlockSetDetails) => any;
4575
+ }
4576
+ /**
4577
+ * <p>Provides information about the VPC peering connection options for the accepter or requester VPC.
4578
+ * </p>
4579
+ */
4580
+ export interface VpcInfoPeeringOptionsDetails {
4581
+ /**
4582
+ * <p>Indicates whether a local VPC can resolve public DNS hostnames to private IP addresses when queried from instances in a peer VPC.
4583
+ * </p>
4584
+ */
4585
+ AllowDnsResolutionFromRemoteVpc?: boolean;
4586
+ /**
4587
+ * <p>Indicates whether a local ClassicLink connection can communicate with the peer VPC over the VPC peering connection.
4588
+ * </p>
4589
+ */
4590
+ AllowEgressFromLocalClassicLinkToRemoteVpc?: boolean;
4591
+ /**
4592
+ * <p>Indicates whether a local VPC can communicate with a ClassicLink connection in the peer VPC over the VPC peering connection.
4593
+ * </p>
4594
+ */
4595
+ AllowEgressFromLocalVpcToRemoteClassicLink?: boolean;
4596
+ }
4597
+ export declare namespace VpcInfoPeeringOptionsDetails {
4598
+ /**
4599
+ * @internal
4600
+ */
4601
+ const filterSensitiveLog: (obj: VpcInfoPeeringOptionsDetails) => any;
4602
+ }
4603
+ /**
4604
+ * <p>Describes a VPC in a VPC peering connection.
4605
+ * </p>
4606
+ */
4607
+ export interface AwsEc2VpcPeeringConnectionVpcInfoDetails {
4608
+ /**
4609
+ * <p>The IPv4 CIDR block for the VPC.
4610
+ * </p>
4611
+ */
4612
+ CidrBlock?: string;
4613
+ /**
4614
+ * <p>Information about the IPv4 CIDR blocks for the VPC.
4615
+ * </p>
4616
+ */
4617
+ CidrBlockSet?: VpcInfoCidrBlockSetDetails[];
4618
+ /**
4619
+ * <p>The IPv6 CIDR block for the VPC.
4620
+ * </p>
4621
+ */
4622
+ Ipv6CidrBlockSet?: VpcInfoIpv6CidrBlockSetDetails[];
4623
+ /**
4624
+ * <p>The ID of the Amazon Web Services account that owns the VPC.
4625
+ * </p>
4626
+ */
4627
+ OwnerId?: string;
4628
+ /**
4629
+ * <p>Information about the VPC peering connection options for the accepter or requester VPC.
4630
+ * </p>
4631
+ */
4632
+ PeeringOptions?: VpcInfoPeeringOptionsDetails;
4633
+ /**
4634
+ * <p>The Amazon Web Services Region in which the VPC is located.
4635
+ * </p>
4636
+ */
4637
+ Region?: string;
4638
+ /**
4639
+ * <p>The ID of the VPC.
4640
+ * </p>
4641
+ */
4642
+ VpcId?: string;
4643
+ }
4644
+ export declare namespace AwsEc2VpcPeeringConnectionVpcInfoDetails {
4645
+ /**
4646
+ * @internal
4647
+ */
4648
+ const filterSensitiveLog: (obj: AwsEc2VpcPeeringConnectionVpcInfoDetails) => any;
4649
+ }
4650
+ /**
4651
+ * <p>Details about the status of the VPC peering connection.
4652
+ * </p>
4653
+ */
4654
+ export interface AwsEc2VpcPeeringConnectionStatusDetails {
4655
+ /**
4656
+ * <p>The status of the VPC peering connection.
4657
+ * </p>
4658
+ */
4659
+ Code?: string;
4660
+ /**
4661
+ * <p>A message that provides more information about the status, if applicable.
4662
+ * </p>
4663
+ */
4664
+ Message?: string;
4665
+ }
4666
+ export declare namespace AwsEc2VpcPeeringConnectionStatusDetails {
4667
+ /**
4668
+ * @internal
4669
+ */
4670
+ const filterSensitiveLog: (obj: AwsEc2VpcPeeringConnectionStatusDetails) => any;
4671
+ }
4672
+ /**
4673
+ * <p>Provides information about a VPC peering connection between two VPCs: a requester VPC that you own and an
4674
+ * accepter VPC with which to create the connection.
4675
+ * </p>
4676
+ */
4677
+ export interface AwsEc2VpcPeeringConnectionDetails {
4678
+ /**
4679
+ * <p>Information about the accepter VPC.
4680
+ * </p>
4681
+ */
4682
+ AccepterVpcInfo?: AwsEc2VpcPeeringConnectionVpcInfoDetails;
4683
+ /**
4684
+ * <p>The time at which an unaccepted VPC peering connection will expire.
4685
+ * </p>
4686
+ */
4687
+ ExpirationTime?: string;
4688
+ /**
4689
+ * <p>Information about the requester VPC.
4690
+ * </p>
4691
+ */
4692
+ RequesterVpcInfo?: AwsEc2VpcPeeringConnectionVpcInfoDetails;
4693
+ /**
4694
+ * <p>The status of the VPC peering connection.
4695
+ * </p>
4696
+ */
4697
+ Status?: AwsEc2VpcPeeringConnectionStatusDetails;
4698
+ /**
4699
+ * <p>The ID of the VPC peering connection.
4700
+ * </p>
4701
+ */
4702
+ VpcPeeringConnectionId?: string;
4703
+ }
4704
+ export declare namespace AwsEc2VpcPeeringConnectionDetails {
4705
+ /**
4706
+ * @internal
4707
+ */
4708
+ const filterSensitiveLog: (obj: AwsEc2VpcPeeringConnectionDetails) => any;
4709
+ }
4038
4710
  /**
4039
4711
  * <p>The VPN tunnel options.</p>
4040
4712
  */
@@ -4476,9 +5148,21 @@ export declare namespace AwsEcsClusterDefaultCapacityProviderStrategyDetails {
4476
5148
  const filterSensitiveLog: (obj: AwsEcsClusterDefaultCapacityProviderStrategyDetails) => any;
4477
5149
  }
4478
5150
  /**
4479
- * <p>provides details about an ECS cluster.</p>
5151
+ * <p>Provides details about an Amazon ECS cluster.</p>
4480
5152
  */
4481
5153
  export interface AwsEcsClusterDetails {
5154
+ /**
5155
+ * <p>The Amazon Resource Name (ARN) that identifies the cluster.
5156
+ * </p>
5157
+ */
5158
+ ClusterArn?: string;
5159
+ /**
5160
+ * <p>The number of services that are running on the cluster in an <code>ACTIVE</code> state. You can view these services with the Amazon ECS <a href="https://docs.aws.amazon.com/AmazonECS/latest/APIReference/API_ListServices.html">
5161
+ * <code>ListServices</code>
5162
+ * </a> API operation.
5163
+ * </p>
5164
+ */
5165
+ ActiveServicesCount?: number;
4482
5166
  /**
4483
5167
  * <p>The short name of one or more capacity providers to associate with the cluster.</p>
4484
5168
  */
@@ -4495,6 +5179,26 @@ export interface AwsEcsClusterDetails {
4495
5179
  * <p>The default capacity provider strategy for the cluster. The default capacity provider strategy is used when services or tasks are run without a specified launch type or capacity provider strategy.</p>
4496
5180
  */
4497
5181
  DefaultCapacityProviderStrategy?: AwsEcsClusterDefaultCapacityProviderStrategyDetails[];
5182
+ /**
5183
+ * <p>A name that you use to identify your cluster.
5184
+ * </p>
5185
+ */
5186
+ ClusterName?: string;
5187
+ /**
5188
+ * <p>The number of container instances registered into the cluster. This includes container instances in both <code>ACTIVE</code> and <code>DRAINING</code> status.
5189
+ * </p>
5190
+ */
5191
+ RegisteredContainerInstancesCount?: number;
5192
+ /**
5193
+ * <p>The number of tasks in the cluster that are in the <code>RUNNING</code> state.
5194
+ * </p>
5195
+ */
5196
+ RunningTasksCount?: number;
5197
+ /**
5198
+ * <p>The status of the cluster.
5199
+ * </p>
5200
+ */
5201
+ Status?: string;
4498
5202
  }
4499
5203
  export declare namespace AwsEcsClusterDetails {
4500
5204
  /**
@@ -4502,6 +5206,62 @@ export declare namespace AwsEcsClusterDetails {
4502
5206
  */
4503
5207
  const filterSensitiveLog: (obj: AwsEcsClusterDetails) => any;
4504
5208
  }
5209
+ /**
5210
+ * <p>Details for a volume mount point that's used in a container definition.
5211
+ * </p>
5212
+ */
5213
+ export interface AwsMountPoint {
5214
+ /**
5215
+ * <p>The name of the volume to mount. Must be a volume name referenced in the <code>name</code> parameter
5216
+ * of task definition <code>volume</code>.
5217
+ * </p>
5218
+ */
5219
+ SourceVolume?: string;
5220
+ /**
5221
+ * <p>The path on the container to mount the host volume at.
5222
+ * </p>
5223
+ */
5224
+ ContainerPath?: string;
5225
+ }
5226
+ export declare namespace AwsMountPoint {
5227
+ /**
5228
+ * @internal
5229
+ */
5230
+ const filterSensitiveLog: (obj: AwsMountPoint) => any;
5231
+ }
5232
+ /**
5233
+ * <p>Provides information about an Amazon ECS container.
5234
+ * </p>
5235
+ */
5236
+ export interface AwsEcsContainerDetails {
5237
+ /**
5238
+ * <p>The name of the container.
5239
+ * </p>
5240
+ */
5241
+ Name?: string;
5242
+ /**
5243
+ * <p>The image used for the container.
5244
+ * </p>
5245
+ */
5246
+ Image?: string;
5247
+ /**
5248
+ * <p>The mount points for data volumes in your container.
5249
+ * </p>
5250
+ */
5251
+ MountPoints?: AwsMountPoint[];
5252
+ /**
5253
+ * <p>When this parameter is true, the container is given elevated privileges on the host container instance
5254
+ * (similar to the root user).
5255
+ * </p>
5256
+ */
5257
+ Privileged?: boolean;
5258
+ }
5259
+ export declare namespace AwsEcsContainerDetails {
5260
+ /**
5261
+ * @internal
5262
+ */
5263
+ const filterSensitiveLog: (obj: AwsEcsContainerDetails) => any;
5264
+ }
4505
5265
  /**
4506
5266
  * <p>Strategy item for the capacity provider strategy that the service uses.</p>
4507
5267
  */
@@ -5735,7 +6495,8 @@ export declare namespace AwsEcsTaskDefinitionVolumesDetails {
5735
6495
  const filterSensitiveLog: (obj: AwsEcsTaskDefinitionVolumesDetails) => any;
5736
6496
  }
5737
6497
  /**
5738
- * <p>details about a task definition. A task definition describes the container and volume definitions of an Amazon Elastic Container Service task.</p>
6498
+ * <p>Details about a task definition. A task definition describes the container and volume definitions
6499
+ * of an Amazon Elastic Container Service task.</p>
5739
6500
  */
5740
6501
  export interface AwsEcsTaskDefinitionDetails {
5741
6502
  /**
@@ -5802,36 +6563,262 @@ export declare namespace AwsEcsTaskDefinitionDetails {
5802
6563
  const filterSensitiveLog: (obj: AwsEcsTaskDefinitionDetails) => any;
5803
6564
  }
5804
6565
  /**
5805
- * <p>Details for a cluster logging configuration.</p>
6566
+ * <p>Provides details on a container instance bind mount host volume.
6567
+ * </p>
5806
6568
  */
5807
- export interface AwsEksClusterLoggingClusterLoggingDetails {
5808
- /**
5809
- * <p>Whether the logging types that are listed in <code>Types</code> are enabled.</p>
5810
- */
5811
- Enabled?: boolean;
6569
+ export interface AwsEcsTaskVolumeHostDetails {
5812
6570
  /**
5813
- * <p>A list of logging types.</p>
6571
+ * <p>When the <code>host</code> parameter is used, specify a <code>sourcePath</code> to declare the path
6572
+ * on the host container instance that's presented to the container.
6573
+ * </p>
5814
6574
  */
5815
- Types?: string[];
6575
+ SourcePath?: string;
5816
6576
  }
5817
- export declare namespace AwsEksClusterLoggingClusterLoggingDetails {
6577
+ export declare namespace AwsEcsTaskVolumeHostDetails {
5818
6578
  /**
5819
6579
  * @internal
5820
6580
  */
5821
- const filterSensitiveLog: (obj: AwsEksClusterLoggingClusterLoggingDetails) => any;
6581
+ const filterSensitiveLog: (obj: AwsEcsTaskVolumeHostDetails) => any;
5822
6582
  }
5823
6583
  /**
5824
- * <p>The logging configuration for an Amazon EKS cluster.</p>
6584
+ * <p>Provides information about a data volume that's used in a task definition.
6585
+ * </p>
5825
6586
  */
5826
- export interface AwsEksClusterLoggingDetails {
6587
+ export interface AwsEcsTaskVolumeDetails {
5827
6588
  /**
5828
- * <p>Cluster logging configurations.</p>
6589
+ * <p>The name of the volume. Up to 255 letters (uppercase and lowercase), numbers, underscores, and
6590
+ * hyphens are allowed. This name is referenced in the <code>sourceVolume</code> parameter of container definition <code>mountPoints</code>.
6591
+ * </p>
5829
6592
  */
5830
- ClusterLogging?: AwsEksClusterLoggingClusterLoggingDetails[];
5831
- }
5832
- export declare namespace AwsEksClusterLoggingDetails {
6593
+ Name?: string;
5833
6594
  /**
5834
- * @internal
6595
+ * <p>This parameter is specified when you use bind mount host volumes. The contents of the <code>host</code> parameter
6596
+ * determine whether your bind mount host volume persists on the host container instance and where it's stored.
6597
+ * </p>
6598
+ */
6599
+ Host?: AwsEcsTaskVolumeHostDetails;
6600
+ }
6601
+ export declare namespace AwsEcsTaskVolumeDetails {
6602
+ /**
6603
+ * @internal
6604
+ */
6605
+ const filterSensitiveLog: (obj: AwsEcsTaskVolumeDetails) => any;
6606
+ }
6607
+ /**
6608
+ * <p>Provides details about a task in a cluster.
6609
+ * </p>
6610
+ */
6611
+ export interface AwsEcsTaskDetails {
6612
+ /**
6613
+ * <p>The Amazon Resource Name (ARN) of the cluster that hosts the task.
6614
+ * </p>
6615
+ */
6616
+ ClusterArn?: string;
6617
+ /**
6618
+ * <p>The ARN of the task definition that creates the task.
6619
+ * </p>
6620
+ */
6621
+ TaskDefinitionArn?: string;
6622
+ /**
6623
+ * <p>The version counter for the task.
6624
+ * </p>
6625
+ */
6626
+ Version?: string;
6627
+ /**
6628
+ * <p>The Unix timestamp for the time when the task was created. More specifically, it's for the time when
6629
+ * the task entered the <code>PENDING</code> state.
6630
+ * </p>
6631
+ */
6632
+ CreatedAt?: string;
6633
+ /**
6634
+ * <p>The Unix timestamp for the time when the task started. More specifically, it's for the time when the
6635
+ * task transitioned from the <code>PENDING</code> state to the <code>RUNNING</code> state.
6636
+ * </p>
6637
+ */
6638
+ StartedAt?: string;
6639
+ /**
6640
+ * <p>The tag specified when a task is started. If an Amazon ECS service started the task, the
6641
+ * <code>startedBy</code> parameter contains the deployment ID of that service.
6642
+ * </p>
6643
+ */
6644
+ StartedBy?: string;
6645
+ /**
6646
+ * <p>The name of the task group that's associated with the task.
6647
+ * </p>
6648
+ */
6649
+ Group?: string;
6650
+ /**
6651
+ * <p>Details about the data volume that is used in a task definition.
6652
+ * </p>
6653
+ */
6654
+ Volumes?: AwsEcsTaskVolumeDetails[];
6655
+ /**
6656
+ * <p>The containers that are associated with the task.
6657
+ * </p>
6658
+ */
6659
+ Containers?: AwsEcsContainerDetails[];
6660
+ }
6661
+ export declare namespace AwsEcsTaskDetails {
6662
+ /**
6663
+ * @internal
6664
+ */
6665
+ const filterSensitiveLog: (obj: AwsEcsTaskDetails) => any;
6666
+ }
6667
+ /**
6668
+ * <p>Provides details for all file system operations using this Amazon EFS access point.
6669
+ * </p>
6670
+ */
6671
+ export interface AwsEfsAccessPointPosixUserDetails {
6672
+ /**
6673
+ * <p>The POSIX group ID used for all file system operations using this access point.
6674
+ * </p>
6675
+ */
6676
+ Gid?: string;
6677
+ /**
6678
+ * <p>Secondary POSIX group IDs used for all file system operations using this access point.
6679
+ * </p>
6680
+ */
6681
+ SecondaryGids?: string[];
6682
+ /**
6683
+ * <p>The POSIX user ID used for all file system operations using this access point.
6684
+ * </p>
6685
+ */
6686
+ Uid?: string;
6687
+ }
6688
+ export declare namespace AwsEfsAccessPointPosixUserDetails {
6689
+ /**
6690
+ * @internal
6691
+ */
6692
+ const filterSensitiveLog: (obj: AwsEfsAccessPointPosixUserDetails) => any;
6693
+ }
6694
+ /**
6695
+ * <p>Provides information about the settings that Amazon EFS uses to create the root directory
6696
+ * when a client connects to an access point.
6697
+ * </p>
6698
+ */
6699
+ export interface AwsEfsAccessPointRootDirectoryCreationInfoDetails {
6700
+ /**
6701
+ * <p>Specifies the POSIX group ID to apply to the root directory.
6702
+ * </p>
6703
+ */
6704
+ OwnerGid?: string;
6705
+ /**
6706
+ * <p>Specifies the POSIX user ID to apply to the root directory.
6707
+ * </p>
6708
+ */
6709
+ OwnerUid?: string;
6710
+ /**
6711
+ * <p>Specifies the POSIX permissions to apply to the root directory, in the format of an octal number
6712
+ * representing the file's mode bits.
6713
+ * </p>
6714
+ */
6715
+ Permissions?: string;
6716
+ }
6717
+ export declare namespace AwsEfsAccessPointRootDirectoryCreationInfoDetails {
6718
+ /**
6719
+ * @internal
6720
+ */
6721
+ const filterSensitiveLog: (obj: AwsEfsAccessPointRootDirectoryCreationInfoDetails) => any;
6722
+ }
6723
+ /**
6724
+ * <p>Provides information about the directory on the Amazon EFS file system that the access point exposes
6725
+ * as the root directory to NFS clients using the access point.
6726
+ * </p>
6727
+ */
6728
+ export interface AwsEfsAccessPointRootDirectoryDetails {
6729
+ /**
6730
+ * <p>Specifies the POSIX IDs and permissions to apply to the access point's root directory.
6731
+ * </p>
6732
+ */
6733
+ CreationInfo?: AwsEfsAccessPointRootDirectoryCreationInfoDetails;
6734
+ /**
6735
+ * <p>Specifies the path on the Amazon EFS file system to expose as the root directory to NFS clients
6736
+ * using the access point to access the EFS file system. A path can have up to four subdirectories. If the specified
6737
+ * path does not exist, you are required to provide <code>CreationInfo</code>.
6738
+ * </p>
6739
+ */
6740
+ Path?: string;
6741
+ }
6742
+ export declare namespace AwsEfsAccessPointRootDirectoryDetails {
6743
+ /**
6744
+ * @internal
6745
+ */
6746
+ const filterSensitiveLog: (obj: AwsEfsAccessPointRootDirectoryDetails) => any;
6747
+ }
6748
+ /**
6749
+ * <p>Provides information about an Amazon EFS access point.
6750
+ * </p>
6751
+ */
6752
+ export interface AwsEfsAccessPointDetails {
6753
+ /**
6754
+ * <p>The ID of the Amazon EFS access point.
6755
+ * </p>
6756
+ */
6757
+ AccessPointId?: string;
6758
+ /**
6759
+ * <p>The Amazon Resource Name (ARN) of the Amazon EFS access point. </p>
6760
+ */
6761
+ Arn?: string;
6762
+ /**
6763
+ * <p>The opaque string specified in the request to ensure idempotent creation.
6764
+ * </p>
6765
+ */
6766
+ ClientToken?: string;
6767
+ /**
6768
+ * <p>The ID of the Amazon EFS file system that the access point applies to.
6769
+ * </p>
6770
+ */
6771
+ FileSystemId?: string;
6772
+ /**
6773
+ * <p>The full POSIX identity, including the user ID, group ID, and secondary group IDs on the access point,
6774
+ * that is used for all file operations by NFS clients using the access point.
6775
+ * </p>
6776
+ */
6777
+ PosixUser?: AwsEfsAccessPointPosixUserDetails;
6778
+ /**
6779
+ * <p>The directory on the Amazon EFS file system that the access point exposes as the root
6780
+ * directory to NFS clients using the access point.
6781
+ * </p>
6782
+ */
6783
+ RootDirectory?: AwsEfsAccessPointRootDirectoryDetails;
6784
+ }
6785
+ export declare namespace AwsEfsAccessPointDetails {
6786
+ /**
6787
+ * @internal
6788
+ */
6789
+ const filterSensitiveLog: (obj: AwsEfsAccessPointDetails) => any;
6790
+ }
6791
+ /**
6792
+ * <p>Details for a cluster logging configuration.</p>
6793
+ */
6794
+ export interface AwsEksClusterLoggingClusterLoggingDetails {
6795
+ /**
6796
+ * <p>Whether the logging types that are listed in <code>Types</code> are enabled.</p>
6797
+ */
6798
+ Enabled?: boolean;
6799
+ /**
6800
+ * <p>A list of logging types.</p>
6801
+ */
6802
+ Types?: string[];
6803
+ }
6804
+ export declare namespace AwsEksClusterLoggingClusterLoggingDetails {
6805
+ /**
6806
+ * @internal
6807
+ */
6808
+ const filterSensitiveLog: (obj: AwsEksClusterLoggingClusterLoggingDetails) => any;
6809
+ }
6810
+ /**
6811
+ * <p>The logging configuration for an Amazon EKS cluster.</p>
6812
+ */
6813
+ export interface AwsEksClusterLoggingDetails {
6814
+ /**
6815
+ * <p>Cluster logging configurations.</p>
6816
+ */
6817
+ ClusterLogging?: AwsEksClusterLoggingClusterLoggingDetails[];
6818
+ }
6819
+ export declare namespace AwsEksClusterLoggingDetails {
6820
+ /**
6821
+ * @internal
5835
6822
  */
5836
6823
  const filterSensitiveLog: (obj: AwsEksClusterLoggingDetails) => any;
5837
6824
  }
@@ -6140,7 +7127,7 @@ export interface AwsElasticsearchDomainEncryptionAtRestOptions {
6140
7127
  */
6141
7128
  Enabled?: boolean;
6142
7129
  /**
6143
- * <p>The KMS key ID. Takes the form 1a2a3a4-1a2a-3a4a-5a6a-1a2a3a4a5a6a.</p>
7130
+ * <p>The KMS key ID. Takes the form <code>1a2a3a4-1a2a-3a4a-5a6a-1a2a3a4a5a6a</code>.</p>
6144
7131
  */
6145
7132
  KmsKeyId?: string;
6146
7133
  }
@@ -7429,6 +8416,66 @@ export declare namespace AwsIamUserDetails {
7429
8416
  */
7430
8417
  const filterSensitiveLog: (obj: AwsIamUserDetails) => any;
7431
8418
  }
8419
+ /**
8420
+ * <p>Provides information about stream encryption.
8421
+ * </p>
8422
+ */
8423
+ export interface AwsKinesisStreamStreamEncryptionDetails {
8424
+ /**
8425
+ * <p>The encryption type to use.
8426
+ * </p>
8427
+ */
8428
+ EncryptionType?: string;
8429
+ /**
8430
+ * <p>The globally unique identifier for the customer-managed KMS key to use for encryption. </p>
8431
+ */
8432
+ KeyId?: string;
8433
+ }
8434
+ export declare namespace AwsKinesisStreamStreamEncryptionDetails {
8435
+ /**
8436
+ * @internal
8437
+ */
8438
+ const filterSensitiveLog: (obj: AwsKinesisStreamStreamEncryptionDetails) => any;
8439
+ }
8440
+ /**
8441
+ * <p>Provides information about an Amazon Kinesis data stream.
8442
+ * </p>
8443
+ */
8444
+ export interface AwsKinesisStreamDetails {
8445
+ /**
8446
+ * <p>The name of the Kinesis stream. If you don't specify a name, CloudFront generates a unique
8447
+ * physical ID and uses that ID for the stream name.
8448
+ * </p>
8449
+ */
8450
+ Name?: string;
8451
+ /**
8452
+ * <p>The Amazon Resource Name (ARN) of the Kinesis data stream.
8453
+ * </p>
8454
+ */
8455
+ Arn?: string;
8456
+ /**
8457
+ * <p>When specified, enables or updates server-side encryption using an KMS key for a specified stream.
8458
+ * Removing this property from your stack template and updating your stack disables encryption.
8459
+ * </p>
8460
+ */
8461
+ StreamEncryption?: AwsKinesisStreamStreamEncryptionDetails;
8462
+ /**
8463
+ * <p>The number of shards that the stream uses.
8464
+ * </p>
8465
+ */
8466
+ ShardCount?: number;
8467
+ /**
8468
+ * <p>The number of hours for the data records that are stored in shards to remain accessible.
8469
+ * </p>
8470
+ */
8471
+ RetentionPeriodHours?: number;
8472
+ }
8473
+ export declare namespace AwsKinesisStreamDetails {
8474
+ /**
8475
+ * @internal
8476
+ */
8477
+ const filterSensitiveLog: (obj: AwsKinesisStreamDetails) => any;
8478
+ }
7432
8479
  /**
7433
8480
  * <p>Contains metadata about an KMS key.</p>
7434
8481
  */
@@ -7465,7 +8512,7 @@ export interface AwsKmsKeyDetails {
7465
8512
  */
7466
8513
  Origin?: string;
7467
8514
  /**
7468
- * <p>A description of the key.</p>
8515
+ * <p>A description of the KMS key.</p>
7469
8516
  */
7470
8517
  Description?: string;
7471
8518
  /**
@@ -8304,921 +9351,3 @@ export declare namespace RuleGroupVariablesIpSetsDetails {
8304
9351
  */
8305
9352
  const filterSensitiveLog: (obj: RuleGroupVariablesIpSetsDetails) => any;
8306
9353
  }
8307
- /**
8308
- * <p>A list of port ranges.</p>
8309
- */
8310
- export interface RuleGroupVariablesPortSetsDetails {
8311
- /**
8312
- * <p>The list of port ranges.</p>
8313
- */
8314
- Definition?: string[];
8315
- }
8316
- export declare namespace RuleGroupVariablesPortSetsDetails {
8317
- /**
8318
- * @internal
8319
- */
8320
- const filterSensitiveLog: (obj: RuleGroupVariablesPortSetsDetails) => any;
8321
- }
8322
- /**
8323
- * <p>Additional settings to use in the specified rules.</p>
8324
- */
8325
- export interface RuleGroupVariables {
8326
- /**
8327
- * <p>A list of IP addresses and address ranges, in CIDR notation.</p>
8328
- */
8329
- IpSets?: RuleGroupVariablesIpSetsDetails;
8330
- /**
8331
- * <p>A list of port ranges.</p>
8332
- */
8333
- PortSets?: RuleGroupVariablesPortSetsDetails;
8334
- }
8335
- export declare namespace RuleGroupVariables {
8336
- /**
8337
- * @internal
8338
- */
8339
- const filterSensitiveLog: (obj: RuleGroupVariables) => any;
8340
- }
8341
- /**
8342
- * <p>Details about the rule group.</p>
8343
- */
8344
- export interface RuleGroupDetails {
8345
- /**
8346
- * <p>Additional settings to use in the specified rules.</p>
8347
- */
8348
- RuleVariables?: RuleGroupVariables;
8349
- /**
8350
- * <p>The rules and actions for the rule group.</p>
8351
- * <p>For stateful rule groups, can contain <code>RulesString</code>, <code>RulesSourceList</code>, or <code>StatefulRules</code>.</p>
8352
- * <p>For stateless rule groups, contains <code>StatelessRulesAndCustomActions</code>.</p>
8353
- */
8354
- RulesSource?: RuleGroupSource;
8355
- }
8356
- export declare namespace RuleGroupDetails {
8357
- /**
8358
- * @internal
8359
- */
8360
- const filterSensitiveLog: (obj: RuleGroupDetails) => any;
8361
- }
8362
- /**
8363
- * <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>
8364
- * <p>Rule groups are referenced in firewall policies.
8365
- * </p>
8366
- */
8367
- export interface AwsNetworkFirewallRuleGroupDetails {
8368
- /**
8369
- * <p>The maximum number of operating resources that this rule group can use.</p>
8370
- */
8371
- Capacity?: number;
8372
- /**
8373
- * <p>A description of the rule group.</p>
8374
- */
8375
- Description?: string;
8376
- /**
8377
- * <p>Details about the rule group.</p>
8378
- */
8379
- RuleGroup?: RuleGroupDetails;
8380
- /**
8381
- * <p>The ARN of the rule group.</p>
8382
- */
8383
- RuleGroupArn?: string;
8384
- /**
8385
- * <p>The identifier of the rule group.</p>
8386
- */
8387
- RuleGroupId?: string;
8388
- /**
8389
- * <p>The descriptive name of the rule group.</p>
8390
- */
8391
- RuleGroupName?: string;
8392
- /**
8393
- * <p>The type of rule group. A rule group can be stateful or stateless.</p>
8394
- */
8395
- Type?: string;
8396
- }
8397
- export declare namespace AwsNetworkFirewallRuleGroupDetails {
8398
- /**
8399
- * @internal
8400
- */
8401
- const filterSensitiveLog: (obj: AwsNetworkFirewallRuleGroupDetails) => any;
8402
- }
8403
- /**
8404
- * <p>Configuration options for zone awareness.</p>
8405
- */
8406
- export interface AwsOpenSearchServiceDomainClusterConfigZoneAwarenessConfigDetails {
8407
- /**
8408
- * <p>The number of Availability Zones that the domain uses. Valid values are 2 and 3. The default is 2.</p>
8409
- */
8410
- AvailabilityZoneCount?: number;
8411
- }
8412
- export declare namespace AwsOpenSearchServiceDomainClusterConfigZoneAwarenessConfigDetails {
8413
- /**
8414
- * @internal
8415
- */
8416
- const filterSensitiveLog: (obj: AwsOpenSearchServiceDomainClusterConfigZoneAwarenessConfigDetails) => any;
8417
- }
8418
- /**
8419
- * <p>Details about the configuration of an OpenSearch cluster.</p>
8420
- */
8421
- export interface AwsOpenSearchServiceDomainClusterConfigDetails {
8422
- /**
8423
- * <p>The number of data nodes to use in the OpenSearch domain.</p>
8424
- */
8425
- InstanceCount?: number;
8426
- /**
8427
- * <p>Whether UltraWarm is enabled.</p>
8428
- */
8429
- WarmEnabled?: boolean;
8430
- /**
8431
- * <p>The number of UltraWarm instances.</p>
8432
- */
8433
- WarmCount?: number;
8434
- /**
8435
- * <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>
8436
- */
8437
- DedicatedMasterEnabled?: boolean;
8438
- /**
8439
- * <p>Configuration options for zone awareness. Provided if <code>ZoneAwarenessEnabled</code> is <code>true</code>.</p>
8440
- */
8441
- ZoneAwarenessConfig?: AwsOpenSearchServiceDomainClusterConfigZoneAwarenessConfigDetails;
8442
- /**
8443
- * <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>
8444
- */
8445
- DedicatedMasterCount?: number;
8446
- /**
8447
- * <p>The instance type for your data nodes. </p>
8448
- */
8449
- InstanceType?: string;
8450
- /**
8451
- * <p>The type of UltraWarm instance.</p>
8452
- */
8453
- WarmType?: string;
8454
- /**
8455
- * <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>
8456
- */
8457
- ZoneAwarenessEnabled?: boolean;
8458
- /**
8459
- * <p>The hardware configuration of the computer that hosts the dedicated master node.</p>
8460
- * <p>If this attribute is specified, then <code>DedicatedMasterEnabled</code> must be <code>true</code>.
8461
- * </p>
8462
- */
8463
- DedicatedMasterType?: string;
8464
- }
8465
- export declare namespace AwsOpenSearchServiceDomainClusterConfigDetails {
8466
- /**
8467
- * @internal
8468
- */
8469
- const filterSensitiveLog: (obj: AwsOpenSearchServiceDomainClusterConfigDetails) => any;
8470
- }
8471
- /**
8472
- * <p>Information about additional options for the domain endpoint.</p>
8473
- */
8474
- export interface AwsOpenSearchServiceDomainDomainEndpointOptionsDetails {
8475
- /**
8476
- * <p>The ARN for the security certificate. The certificate is managed in ACM.</p>
8477
- */
8478
- CustomEndpointCertificateArn?: string;
8479
- /**
8480
- * <p>Whether to enable a custom endpoint for the domain.</p>
8481
- */
8482
- CustomEndpointEnabled?: boolean;
8483
- /**
8484
- * <p>Whether to require that all traffic to the domain arrive over HTTPS.</p>
8485
- */
8486
- EnforceHTTPS?: boolean;
8487
- /**
8488
- * <p>The fully qualified URL for the custom endpoint.</p>
8489
- */
8490
- CustomEndpoint?: string;
8491
- /**
8492
- * <p>The TLS security policy to apply to the HTTPS endpoint of the OpenSearch domain.</p>
8493
- */
8494
- TLSSecurityPolicy?: string;
8495
- }
8496
- export declare namespace AwsOpenSearchServiceDomainDomainEndpointOptionsDetails {
8497
- /**
8498
- * @internal
8499
- */
8500
- const filterSensitiveLog: (obj: AwsOpenSearchServiceDomainDomainEndpointOptionsDetails) => any;
8501
- }
8502
- /**
8503
- * <p>Details about the configuration for encryption at rest for the OpenSearch domain.</p>
8504
- */
8505
- export interface AwsOpenSearchServiceDomainEncryptionAtRestOptionsDetails {
8506
- /**
8507
- * <p>Whether encryption at rest is enabled.</p>
8508
- */
8509
- Enabled?: boolean;
8510
- /**
8511
- * <p>The KMS key ID.</p>
8512
- */
8513
- KmsKeyId?: string;
8514
- }
8515
- export declare namespace AwsOpenSearchServiceDomainEncryptionAtRestOptionsDetails {
8516
- /**
8517
- * @internal
8518
- */
8519
- const filterSensitiveLog: (obj: AwsOpenSearchServiceDomainEncryptionAtRestOptionsDetails) => any;
8520
- }
8521
- /**
8522
- * <p>Configuration details for a log publishing option.</p>
8523
- */
8524
- export interface AwsOpenSearchServiceDomainLogPublishingOption {
8525
- /**
8526
- * <p>The ARN of the CloudWatch Logs group to publish the logs to.</p>
8527
- */
8528
- CloudWatchLogsLogGroupArn?: string;
8529
- /**
8530
- * <p>Whether the log publishing is enabled.</p>
8531
- */
8532
- Enabled?: boolean;
8533
- }
8534
- export declare namespace AwsOpenSearchServiceDomainLogPublishingOption {
8535
- /**
8536
- * @internal
8537
- */
8538
- const filterSensitiveLog: (obj: AwsOpenSearchServiceDomainLogPublishingOption) => any;
8539
- }
8540
- /**
8541
- * <p>Configures the CloudWatch Logs to publish for the OpenSearch domain.</p>
8542
- */
8543
- export interface AwsOpenSearchServiceDomainLogPublishingOptionsDetails {
8544
- /**
8545
- * <p>Configures the OpenSearch index logs publishing.</p>
8546
- */
8547
- IndexSlowLogs?: AwsOpenSearchServiceDomainLogPublishingOption;
8548
- /**
8549
- * <p>Configures the OpenSearch search slow log publishing.</p>
8550
- */
8551
- SearchSlowLogs?: AwsOpenSearchServiceDomainLogPublishingOption;
8552
- /**
8553
- * <p>Configures the OpenSearch audit logs publishing.</p>
8554
- */
8555
- AuditLogs?: AwsOpenSearchServiceDomainLogPublishingOption;
8556
- }
8557
- export declare namespace AwsOpenSearchServiceDomainLogPublishingOptionsDetails {
8558
- /**
8559
- * @internal
8560
- */
8561
- const filterSensitiveLog: (obj: AwsOpenSearchServiceDomainLogPublishingOptionsDetails) => any;
8562
- }
8563
- /**
8564
- * <p>Provides details about the configuration for node-to-node encryption.</p>
8565
- */
8566
- export interface AwsOpenSearchServiceDomainNodeToNodeEncryptionOptionsDetails {
8567
- /**
8568
- * <p>Whether node-to-node encryption is enabled.</p>
8569
- */
8570
- Enabled?: boolean;
8571
- }
8572
- export declare namespace AwsOpenSearchServiceDomainNodeToNodeEncryptionOptionsDetails {
8573
- /**
8574
- * @internal
8575
- */
8576
- const filterSensitiveLog: (obj: AwsOpenSearchServiceDomainNodeToNodeEncryptionOptionsDetails) => any;
8577
- }
8578
- /**
8579
- * <p>Provides information about the state of the domain relative to the latest service software.</p>
8580
- */
8581
- export interface AwsOpenSearchServiceDomainServiceSoftwareOptionsDetails {
8582
- /**
8583
- * <p>The epoch time when the deployment window closes for required updates. After this time, OpenSearch Service schedules the software upgrade automatically.</p>
8584
- */
8585
- AutomatedUpdateDate?: string;
8586
- /**
8587
- * <p>Whether a request to update the domain can be canceled.</p>
8588
- */
8589
- Cancellable?: boolean;
8590
- /**
8591
- * <p>The version of the service software that is currently installed on the domain.</p>
8592
- */
8593
- CurrentVersion?: string;
8594
- /**
8595
- * <p>A more detailed description of the service software status.</p>
8596
- */
8597
- Description?: string;
8598
- /**
8599
- * <p>The most recent version of the service software.</p>
8600
- */
8601
- NewVersion?: string;
8602
- /**
8603
- * <p>Whether a service software update is available for the domain.</p>
8604
- */
8605
- UpdateAvailable?: boolean;
8606
- /**
8607
- * <p>The status of the service software update.</p>
8608
- */
8609
- UpdateStatus?: string;
8610
- /**
8611
- * <p>Whether the service software update is optional.</p>
8612
- */
8613
- OptionalDeployment?: boolean;
8614
- }
8615
- export declare namespace AwsOpenSearchServiceDomainServiceSoftwareOptionsDetails {
8616
- /**
8617
- * @internal
8618
- */
8619
- const filterSensitiveLog: (obj: AwsOpenSearchServiceDomainServiceSoftwareOptionsDetails) => any;
8620
- }
8621
- /**
8622
- * <p>Contains information that OpenSearch Service derives based on the <code>VPCOptions</code> for the domain.</p>
8623
- */
8624
- export interface AwsOpenSearchServiceDomainVpcOptionsDetails {
8625
- /**
8626
- * <p>The list of security group IDs that are associated with the VPC endpoints for the domain.</p>
8627
- */
8628
- SecurityGroupIds?: string[];
8629
- /**
8630
- * <p>A list of subnet IDs that are associated with the VPC endpoints for the domain.</p>
8631
- */
8632
- SubnetIds?: string[];
8633
- }
8634
- export declare namespace AwsOpenSearchServiceDomainVpcOptionsDetails {
8635
- /**
8636
- * @internal
8637
- */
8638
- const filterSensitiveLog: (obj: AwsOpenSearchServiceDomainVpcOptionsDetails) => any;
8639
- }
8640
- /**
8641
- * <p>Information about an Amazon OpenSearch Service domain.</p>
8642
- */
8643
- export interface AwsOpenSearchServiceDomainDetails {
8644
- /**
8645
- * <p>The ARN of the OpenSearch Service domain.</p>
8646
- */
8647
- Arn?: string;
8648
- /**
8649
- * <p>IAM policy document that specifies the access policies for the OpenSearch Service domain.</p>
8650
- */
8651
- AccessPolicies?: string;
8652
- /**
8653
- * <p>The name of the endpoint.</p>
8654
- */
8655
- DomainName?: string;
8656
- /**
8657
- * <p>The identifier of the domain.</p>
8658
- */
8659
- Id?: string;
8660
- /**
8661
- * <p>The domain endpoint.</p>
8662
- */
8663
- DomainEndpoint?: string;
8664
- /**
8665
- * <p>The version of the domain engine.</p>
8666
- */
8667
- EngineVersion?: string;
8668
- /**
8669
- * <p>Details about the configuration for encryption at rest.</p>
8670
- */
8671
- EncryptionAtRestOptions?: AwsOpenSearchServiceDomainEncryptionAtRestOptionsDetails;
8672
- /**
8673
- * <p>Details about the configuration for node-to-node encryption.</p>
8674
- */
8675
- NodeToNodeEncryptionOptions?: AwsOpenSearchServiceDomainNodeToNodeEncryptionOptionsDetails;
8676
- /**
8677
- * <p>Information about the status of a domain relative to the latest service software.</p>
8678
- */
8679
- ServiceSoftwareOptions?: AwsOpenSearchServiceDomainServiceSoftwareOptionsDetails;
8680
- /**
8681
- * <p>Details about the configuration of an OpenSearch cluster.</p>
8682
- */
8683
- ClusterConfig?: AwsOpenSearchServiceDomainClusterConfigDetails;
8684
- /**
8685
- * <p>Additional options for the domain endpoint.</p>
8686
- */
8687
- DomainEndpointOptions?: AwsOpenSearchServiceDomainDomainEndpointOptionsDetails;
8688
- /**
8689
- * <p>Information that OpenSearch Service derives based on <code>VPCOptions</code> for the domain.</p>
8690
- */
8691
- VpcOptions?: AwsOpenSearchServiceDomainVpcOptionsDetails;
8692
- /**
8693
- * <p>Configures the CloudWatch Logs to publish for the OpenSearch domain.</p>
8694
- */
8695
- LogPublishingOptions?: AwsOpenSearchServiceDomainLogPublishingOptionsDetails;
8696
- /**
8697
- * <p>The domain endpoints. Used if the OpenSearch domain resides in a VPC.</p>
8698
- * <p>This is a map of key-value pairs. The key is always <code>vpc</code>. The value is the endpoint.</p>
8699
- */
8700
- DomainEndpoints?: Record<string, string>;
8701
- }
8702
- export declare namespace AwsOpenSearchServiceDomainDetails {
8703
- /**
8704
- * @internal
8705
- */
8706
- const filterSensitiveLog: (obj: AwsOpenSearchServiceDomainDetails) => any;
8707
- }
8708
- /**
8709
- * <p>An IAM role that is associated with the Amazon RDS DB cluster.</p>
8710
- */
8711
- export interface AwsRdsDbClusterAssociatedRole {
8712
- /**
8713
- * <p>The ARN of the IAM role.</p>
8714
- */
8715
- RoleArn?: string;
8716
- /**
8717
- * <p>The status of the association between the IAM role and the DB cluster.</p>
8718
- */
8719
- Status?: string;
8720
- }
8721
- export declare namespace AwsRdsDbClusterAssociatedRole {
8722
- /**
8723
- * @internal
8724
- */
8725
- const filterSensitiveLog: (obj: AwsRdsDbClusterAssociatedRole) => any;
8726
- }
8727
- /**
8728
- * <p>Information about an instance in the DB cluster.</p>
8729
- */
8730
- export interface AwsRdsDbClusterMember {
8731
- /**
8732
- * <p>Whether the cluster member is the primary instance for the DB cluster.</p>
8733
- */
8734
- IsClusterWriter?: boolean;
8735
- /**
8736
- * <p>Specifies the order in which an Aurora replica is promoted to the primary instance when
8737
- * the existing primary instance fails.</p>
8738
- */
8739
- PromotionTier?: number;
8740
- /**
8741
- * <p>The instance identifier for this member of the DB cluster.</p>
8742
- */
8743
- DbInstanceIdentifier?: string;
8744
- /**
8745
- * <p>The status of the DB cluster parameter group for this member of the DB cluster.</p>
8746
- */
8747
- DbClusterParameterGroupStatus?: string;
8748
- }
8749
- export declare namespace AwsRdsDbClusterMember {
8750
- /**
8751
- * @internal
8752
- */
8753
- const filterSensitiveLog: (obj: AwsRdsDbClusterMember) => any;
8754
- }
8755
- /**
8756
- * <p>Information about an option group membership for a DB cluster.</p>
8757
- */
8758
- export interface AwsRdsDbClusterOptionGroupMembership {
8759
- /**
8760
- * <p>The name of the DB cluster option group.</p>
8761
- */
8762
- DbClusterOptionGroupName?: string;
8763
- /**
8764
- * <p>The status of the DB cluster option group.</p>
8765
- */
8766
- Status?: string;
8767
- }
8768
- export declare namespace AwsRdsDbClusterOptionGroupMembership {
8769
- /**
8770
- * @internal
8771
- */
8772
- const filterSensitiveLog: (obj: AwsRdsDbClusterOptionGroupMembership) => any;
8773
- }
8774
- /**
8775
- * <p>Information about an Active Directory domain membership record associated with the DB
8776
- * instance.</p>
8777
- */
8778
- export interface AwsRdsDbDomainMembership {
8779
- /**
8780
- * <p>The identifier of the Active Directory domain.</p>
8781
- */
8782
- Domain?: string;
8783
- /**
8784
- * <p>The status of the Active Directory Domain membership for the DB instance.</p>
8785
- */
8786
- Status?: string;
8787
- /**
8788
- * <p>The fully qualified domain name of the Active Directory domain.</p>
8789
- */
8790
- Fqdn?: string;
8791
- /**
8792
- * <p>The name of the IAM role to use when making API calls to the Directory Service.</p>
8793
- */
8794
- IamRoleName?: string;
8795
- }
8796
- export declare namespace AwsRdsDbDomainMembership {
8797
- /**
8798
- * @internal
8799
- */
8800
- const filterSensitiveLog: (obj: AwsRdsDbDomainMembership) => any;
8801
- }
8802
- /**
8803
- * <p>A VPC security groups that the DB instance belongs to.</p>
8804
- */
8805
- export interface AwsRdsDbInstanceVpcSecurityGroup {
8806
- /**
8807
- * <p>The name of the VPC security group.</p>
8808
- */
8809
- VpcSecurityGroupId?: string;
8810
- /**
8811
- * <p>The status of the VPC security group.</p>
8812
- */
8813
- Status?: string;
8814
- }
8815
- export declare namespace AwsRdsDbInstanceVpcSecurityGroup {
8816
- /**
8817
- * @internal
8818
- */
8819
- const filterSensitiveLog: (obj: AwsRdsDbInstanceVpcSecurityGroup) => any;
8820
- }
8821
- /**
8822
- * <p>Information about an Amazon RDS DB cluster.</p>
8823
- */
8824
- export interface AwsRdsDbClusterDetails {
8825
- /**
8826
- * <p>For all database engines except Aurora, specifies the allocated storage size in
8827
- * gibibytes (GiB).</p>
8828
- */
8829
- AllocatedStorage?: number;
8830
- /**
8831
- * <p>A list of Availability Zones (AZs) where instances in the DB cluster can be
8832
- * created.</p>
8833
- */
8834
- AvailabilityZones?: string[];
8835
- /**
8836
- * <p>The number of days for which automated backups are retained.</p>
8837
- */
8838
- BackupRetentionPeriod?: number;
8839
- /**
8840
- * <p>The name of the database.</p>
8841
- */
8842
- DatabaseName?: string;
8843
- /**
8844
- * <p>The current status of this DB cluster.</p>
8845
- */
8846
- Status?: string;
8847
- /**
8848
- * <p>The connection endpoint for the primary instance of the DB cluster.</p>
8849
- */
8850
- Endpoint?: string;
8851
- /**
8852
- * <p>The reader endpoint for the DB cluster.</p>
8853
- */
8854
- ReaderEndpoint?: string;
8855
- /**
8856
- * <p>A list of custom endpoints for the DB cluster.</p>
8857
- */
8858
- CustomEndpoints?: string[];
8859
- /**
8860
- * <p>Whether the DB cluster has instances in multiple Availability Zones.</p>
8861
- */
8862
- MultiAz?: boolean;
8863
- /**
8864
- * <p>The name of the database engine to use for this DB cluster.</p>
8865
- */
8866
- Engine?: string;
8867
- /**
8868
- * <p>The version number of the database engine to use.</p>
8869
- */
8870
- EngineVersion?: string;
8871
- /**
8872
- * <p>The port number on which the DB instances in the DB cluster accept connections.</p>
8873
- */
8874
- Port?: number;
8875
- /**
8876
- * <p>The name of the master user for the DB cluster.</p>
8877
- */
8878
- MasterUsername?: string;
8879
- /**
8880
- * <p>The range of time each day when automated backups are created, if automated backups are
8881
- * enabled.</p>
8882
- * <p>Uses the format <code>HH:MM-HH:MM</code>. For example, <code>04:52-05:22</code>.</p>
8883
- */
8884
- PreferredBackupWindow?: string;
8885
- /**
8886
- * <p>The weekly time range during which system maintenance can occur, in Universal
8887
- * Coordinated Time (UTC).</p>
8888
- * <p>Uses the format <code><day>:HH:MM-<day>:HH:MM</code>.</p>
8889
- * <p>For the day values, use
8890
- * <code>mon</code>|<code>tue</code>|<code>wed</code>|<code>thu</code>|<code>fri</code>|<code>sat</code>|<code>sun</code>.</p>
8891
- * <p>For example, <code>sun:09:32-sun:10:02</code>.</p>
8892
- */
8893
- PreferredMaintenanceWindow?: string;
8894
- /**
8895
- * <p>The identifiers of the read replicas that are associated with this DB cluster.</p>
8896
- */
8897
- ReadReplicaIdentifiers?: string[];
8898
- /**
8899
- * <p>A list of VPC security groups that the DB cluster belongs to.</p>
8900
- */
8901
- VpcSecurityGroups?: AwsRdsDbInstanceVpcSecurityGroup[];
8902
- /**
8903
- * <p>Specifies the identifier that Amazon Route 53 assigns when you create a hosted
8904
- * zone.</p>
8905
- */
8906
- HostedZoneId?: string;
8907
- /**
8908
- * <p>Whether the DB cluster is encrypted.</p>
8909
- */
8910
- StorageEncrypted?: boolean;
8911
- /**
8912
- * <p>The ARN of the KMS master key that is used to encrypt the database instances in the
8913
- * DB cluster.</p>
8914
- */
8915
- KmsKeyId?: string;
8916
- /**
8917
- * <p>The identifier of the DB cluster. The identifier must be unique within each Amazon Web Services Region
8918
- * and is immutable.</p>
8919
- */
8920
- DbClusterResourceId?: string;
8921
- /**
8922
- * <p>A list of the IAM roles that are associated with the DB cluster.</p>
8923
- */
8924
- AssociatedRoles?: AwsRdsDbClusterAssociatedRole[];
8925
- /**
8926
- * <p>Indicates when the DB cluster was created, in Universal Coordinated Time (UTC).</p>
8927
- * <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
8928
- * Date/Time Format</a>. The value cannot contain spaces. For example,
8929
- * <code>2020-03-22T13:22:13.933Z</code>.</p>
8930
- */
8931
- ClusterCreateTime?: string;
8932
- /**
8933
- * <p>A list of log types that this DB cluster is configured to export to CloudWatch
8934
- * Logs.</p>
8935
- */
8936
- EnabledCloudWatchLogsExports?: string[];
8937
- /**
8938
- * <p>The database engine mode of the DB cluster.</p>
8939
- */
8940
- EngineMode?: string;
8941
- /**
8942
- * <p>Whether the DB cluster has deletion protection enabled.</p>
8943
- */
8944
- DeletionProtection?: boolean;
8945
- /**
8946
- * <p>Whether the HTTP endpoint for an Aurora Serverless DB cluster is enabled.</p>
8947
- */
8948
- HttpEndpointEnabled?: boolean;
8949
- /**
8950
- * <p>The status of the database activity stream.</p>
8951
- */
8952
- ActivityStreamStatus?: string;
8953
- /**
8954
- * <p>Whether tags are copied from the DB cluster to snapshots of the DB cluster.</p>
8955
- */
8956
- CopyTagsToSnapshot?: boolean;
8957
- /**
8958
- * <p>Whether the DB cluster is a clone of a DB cluster owned by a different Amazon Web Services
8959
- * account.</p>
8960
- */
8961
- CrossAccountClone?: boolean;
8962
- /**
8963
- * <p>The Active Directory domain membership records that are associated with the DB
8964
- * cluster.</p>
8965
- */
8966
- DomainMemberships?: AwsRdsDbDomainMembership[];
8967
- /**
8968
- * <p>The name of the DB cluster parameter group for the DB cluster.</p>
8969
- */
8970
- DbClusterParameterGroup?: string;
8971
- /**
8972
- * <p>The subnet group that is associated with the DB cluster, including the name,
8973
- * description, and subnets in the subnet group.</p>
8974
- */
8975
- DbSubnetGroup?: string;
8976
- /**
8977
- * <p>The list of option group memberships for this DB cluster.</p>
8978
- */
8979
- DbClusterOptionGroupMemberships?: AwsRdsDbClusterOptionGroupMembership[];
8980
- /**
8981
- * <p>The DB cluster identifier that the user assigned to the cluster. This identifier is the
8982
- * unique key that identifies a DB cluster.</p>
8983
- */
8984
- DbClusterIdentifier?: string;
8985
- /**
8986
- * <p>The list of instances that make up the DB cluster.</p>
8987
- */
8988
- DbClusterMembers?: AwsRdsDbClusterMember[];
8989
- /**
8990
- * <p>Whether the mapping of IAM accounts to database accounts is enabled.</p>
8991
- */
8992
- IamDatabaseAuthenticationEnabled?: boolean;
8993
- }
8994
- export declare namespace AwsRdsDbClusterDetails {
8995
- /**
8996
- * @internal
8997
- */
8998
- const filterSensitiveLog: (obj: AwsRdsDbClusterDetails) => any;
8999
- }
9000
- /**
9001
- * <p>Information about an Amazon RDS DB cluster snapshot.</p>
9002
- */
9003
- export interface AwsRdsDbClusterSnapshotDetails {
9004
- /**
9005
- * <p>A list of Availability Zones where instances in the DB cluster can be created.</p>
9006
- */
9007
- AvailabilityZones?: string[];
9008
- /**
9009
- * <p>Indicates when the snapshot was taken.</p>
9010
- * <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
9011
- * Date/Time Format</a>. The value cannot contain spaces. For example,
9012
- * <code>2020-03-22T13:22:13.933Z</code>.</p>
9013
- */
9014
- SnapshotCreateTime?: string;
9015
- /**
9016
- * <p>The name of the database engine that you want to use for this DB instance.</p>
9017
- */
9018
- Engine?: string;
9019
- /**
9020
- * <p>Specifies the allocated storage size in gibibytes (GiB).</p>
9021
- */
9022
- AllocatedStorage?: number;
9023
- /**
9024
- * <p>The status of this DB cluster snapshot.</p>
9025
- */
9026
- Status?: string;
9027
- /**
9028
- * <p>The port number on which the DB instances in the DB cluster accept connections.</p>
9029
- */
9030
- Port?: number;
9031
- /**
9032
- * <p>The VPC ID that is associated with the DB cluster snapshot.</p>
9033
- */
9034
- VpcId?: string;
9035
- /**
9036
- * <p>Indicates when the DB cluster was created, in Universal Coordinated Time (UTC).</p>
9037
- * <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
9038
- * Date/Time Format</a>. The value cannot contain spaces. For example,
9039
- * <code>2020-03-22T13:22:13.933Z</code>.</p>
9040
- */
9041
- ClusterCreateTime?: string;
9042
- /**
9043
- * <p>The name of the master user for the DB cluster.</p>
9044
- */
9045
- MasterUsername?: string;
9046
- /**
9047
- * <p>The version of the database engine to use.</p>
9048
- */
9049
- EngineVersion?: string;
9050
- /**
9051
- * <p>The license model information for this DB cluster snapshot.</p>
9052
- */
9053
- LicenseModel?: string;
9054
- /**
9055
- * <p>The type of DB cluster snapshot.</p>
9056
- */
9057
- SnapshotType?: string;
9058
- /**
9059
- * <p>Specifies the percentage of the estimated data that has been transferred.</p>
9060
- */
9061
- PercentProgress?: number;
9062
- /**
9063
- * <p>Whether the DB cluster is encrypted.</p>
9064
- */
9065
- StorageEncrypted?: boolean;
9066
- /**
9067
- * <p>The ARN of the KMS master key that is used to encrypt the database instances in the
9068
- * DB cluster.</p>
9069
- */
9070
- KmsKeyId?: string;
9071
- /**
9072
- * <p>The DB cluster identifier.</p>
9073
- */
9074
- DbClusterIdentifier?: string;
9075
- /**
9076
- * <p>The identifier of the DB cluster snapshot.</p>
9077
- */
9078
- DbClusterSnapshotIdentifier?: string;
9079
- /**
9080
- * <p>Whether mapping of IAM accounts to database accounts is enabled.</p>
9081
- */
9082
- IamDatabaseAuthenticationEnabled?: boolean;
9083
- }
9084
- export declare namespace AwsRdsDbClusterSnapshotDetails {
9085
- /**
9086
- * @internal
9087
- */
9088
- const filterSensitiveLog: (obj: AwsRdsDbClusterSnapshotDetails) => any;
9089
- }
9090
- /**
9091
- * <p>An IAM role associated with the DB instance.</p>
9092
- */
9093
- export interface AwsRdsDbInstanceAssociatedRole {
9094
- /**
9095
- * <p>The ARN of the IAM role that is associated with the DB
9096
- * instance.</p>
9097
- */
9098
- RoleArn?: string;
9099
- /**
9100
- * <p>The name of the feature associated with the IAM role.</p>
9101
- */
9102
- FeatureName?: string;
9103
- /**
9104
- * <p>Describes the state of the association between the IAM role and the DB instance. The
9105
- * <code>Status</code> property returns one of the following values:</p>
9106
- * <ul>
9107
- * <li>
9108
- * <p>
9109
- * <code>ACTIVE</code> - The IAM role ARN is associated with the DB instance and can
9110
- * be used to access other Amazon Web Services services on your behalf.</p>
9111
- * </li>
9112
- * <li>
9113
- * <p>
9114
- * <code>PENDING</code> - The IAM role ARN is being associated with the DB
9115
- * instance.</p>
9116
- * </li>
9117
- * <li>
9118
- * <p>
9119
- * <code>INVALID</code> - The IAM role ARN is associated with the DB instance. But
9120
- * the DB instance is unable to assume the IAM role in order to access other Amazon Web Services
9121
- * services on your behalf. </p>
9122
- * </li>
9123
- * </ul>
9124
- */
9125
- Status?: string;
9126
- }
9127
- export declare namespace AwsRdsDbInstanceAssociatedRole {
9128
- /**
9129
- * @internal
9130
- */
9131
- const filterSensitiveLog: (obj: AwsRdsDbInstanceAssociatedRole) => any;
9132
- }
9133
- /**
9134
- * <p>Provides information about a parameter group for a DB instance.</p>
9135
- */
9136
- export interface AwsRdsDbParameterGroup {
9137
- /**
9138
- * <p>The name of the parameter group.</p>
9139
- */
9140
- DbParameterGroupName?: string;
9141
- /**
9142
- * <p>The status of parameter updates.</p>
9143
- */
9144
- ParameterApplyStatus?: string;
9145
- }
9146
- export declare namespace AwsRdsDbParameterGroup {
9147
- /**
9148
- * @internal
9149
- */
9150
- const filterSensitiveLog: (obj: AwsRdsDbParameterGroup) => any;
9151
- }
9152
- /**
9153
- * <p>An Availability Zone for a subnet in a subnet group.</p>
9154
- */
9155
- export interface AwsRdsDbSubnetGroupSubnetAvailabilityZone {
9156
- /**
9157
- * <p>The name of the Availability Zone for a subnet in the subnet group.</p>
9158
- */
9159
- Name?: string;
9160
- }
9161
- export declare namespace AwsRdsDbSubnetGroupSubnetAvailabilityZone {
9162
- /**
9163
- * @internal
9164
- */
9165
- const filterSensitiveLog: (obj: AwsRdsDbSubnetGroupSubnetAvailabilityZone) => any;
9166
- }
9167
- /**
9168
- * <p>Information about a subnet in a subnet group.</p>
9169
- */
9170
- export interface AwsRdsDbSubnetGroupSubnet {
9171
- /**
9172
- * <p>The identifier of a subnet in the subnet group.</p>
9173
- */
9174
- SubnetIdentifier?: string;
9175
- /**
9176
- * <p>Information about the Availability Zone for a subnet in the subnet group.</p>
9177
- */
9178
- SubnetAvailabilityZone?: AwsRdsDbSubnetGroupSubnetAvailabilityZone;
9179
- /**
9180
- * <p>The status of a subnet in the subnet group.</p>
9181
- */
9182
- SubnetStatus?: string;
9183
- }
9184
- export declare namespace AwsRdsDbSubnetGroupSubnet {
9185
- /**
9186
- * @internal
9187
- */
9188
- const filterSensitiveLog: (obj: AwsRdsDbSubnetGroupSubnet) => any;
9189
- }
9190
- /**
9191
- * <p>Information about the subnet group for the database instance.</p>
9192
- */
9193
- export interface AwsRdsDbSubnetGroup {
9194
- /**
9195
- * <p>The name of the subnet group.</p>
9196
- */
9197
- DbSubnetGroupName?: string;
9198
- /**
9199
- * <p>The description of the subnet group.</p>
9200
- */
9201
- DbSubnetGroupDescription?: string;
9202
- /**
9203
- * <p>The VPC ID of the subnet group.</p>
9204
- */
9205
- VpcId?: string;
9206
- /**
9207
- * <p>The status of the subnet group.</p>
9208
- */
9209
- SubnetGroupStatus?: string;
9210
- /**
9211
- * <p>A list of subnets in the subnet group.</p>
9212
- */
9213
- Subnets?: AwsRdsDbSubnetGroupSubnet[];
9214
- /**
9215
- * <p>The ARN of the subnet group.</p>
9216
- */
9217
- DbSubnetGroupArn?: string;
9218
- }
9219
- export declare namespace AwsRdsDbSubnetGroup {
9220
- /**
9221
- * @internal
9222
- */
9223
- const filterSensitiveLog: (obj: AwsRdsDbSubnetGroup) => any;
9224
- }