aws-sdk 2.1623.0 → 2.1625.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 (36) hide show
  1. package/README.md +1 -1
  2. package/apis/bedrock-agent-2023-06-05.min.json +115 -90
  3. package/apis/bedrock-agent-runtime-2023-07-26.min.json +168 -43
  4. package/apis/cloudfront-2020-05-31.min.json +3 -0
  5. package/apis/controltower-2018-05-10.min.json +97 -4
  6. package/apis/controltower-2018-05-10.paginators.json +6 -0
  7. package/apis/glue-2017-03-31.min.json +350 -343
  8. package/apis/lightsail-2016-11-28.min.json +7 -1
  9. package/apis/mailmanager-2023-10-17.examples.json +5 -0
  10. package/apis/mailmanager-2023-10-17.min.json +1836 -0
  11. package/apis/mailmanager-2023-10-17.paginators.json +58 -0
  12. package/apis/metadata.json +3 -0
  13. package/apis/osis-2022-01-01.min.json +70 -26
  14. package/apis/pi-2018-02-27.min.json +24 -17
  15. package/apis/rds-2014-10-31.min.json +21 -9
  16. package/clients/all.d.ts +1 -0
  17. package/clients/all.js +2 -1
  18. package/clients/bedrockagent.d.ts +38 -2
  19. package/clients/bedrockagentruntime.d.ts +173 -0
  20. package/clients/controltower.d.ts +158 -22
  21. package/clients/glue.d.ts +20 -3
  22. package/clients/lightsail.d.ts +29 -25
  23. package/clients/mailmanager.d.ts +2320 -0
  24. package/clients/mailmanager.js +18 -0
  25. package/clients/osis.d.ts +80 -5
  26. package/clients/pi.d.ts +15 -8
  27. package/clients/rds.d.ts +58 -10
  28. package/clients/secretsmanager.d.ts +3 -3
  29. package/clients/storagegateway.d.ts +7 -7
  30. package/dist/aws-sdk-core-react-native.js +2 -2
  31. package/dist/aws-sdk-react-native.js +51 -14
  32. package/dist/aws-sdk.js +30 -12
  33. package/dist/aws-sdk.min.js +40 -40
  34. package/lib/config_service_placeholders.d.ts +2 -0
  35. package/lib/core.js +1 -1
  36. package/package.json +1 -1
@@ -0,0 +1,18 @@
1
+ require('../lib/node_loader');
2
+ var AWS = require('../lib/core');
3
+ var Service = AWS.Service;
4
+ var apiLoader = AWS.apiLoader;
5
+
6
+ apiLoader.services['mailmanager'] = {};
7
+ AWS.MailManager = Service.defineService('mailmanager', ['2023-10-17']);
8
+ Object.defineProperty(apiLoader.services['mailmanager'], '2023-10-17', {
9
+ get: function get() {
10
+ var model = require('../apis/mailmanager-2023-10-17.min.json');
11
+ model.paginators = require('../apis/mailmanager-2023-10-17.paginators.json').pagination;
12
+ return model;
13
+ },
14
+ enumerable: true,
15
+ configurable: true
16
+ });
17
+
18
+ module.exports = AWS.MailManager;
package/clients/osis.d.ts CHANGED
@@ -125,6 +125,7 @@ declare class OSIS extends Service {
125
125
  validatePipeline(callback?: (err: AWSError, data: OSIS.Types.ValidatePipelineResponse) => void): Request<OSIS.Types.ValidatePipelineResponse, AWSError>;
126
126
  }
127
127
  declare namespace OSIS {
128
+ export type BlueprintFormat = string;
128
129
  export type Boolean = boolean;
129
130
  export interface BufferOptions {
130
131
  /**
@@ -172,9 +173,10 @@ declare namespace OSIS {
172
173
  }
173
174
  export type ChangeProgressStatusList = ChangeProgressStatus[];
174
175
  export type ChangeProgressStatuses = "PENDING"|"IN_PROGRESS"|"COMPLETED"|"FAILED"|string;
176
+ export type CidrBlock = string;
175
177
  export interface CloudWatchLogDestination {
176
178
  /**
177
- * The name of the CloudWatch Logs group to send pipeline logs to. You can specify an existing log group or create a new one. For example, /aws/OpenSearchService/IngestionService/my-pipeline.
179
+ * The name of the CloudWatch Logs group to send pipeline logs to. You can specify an existing log group or create a new one. For example, /aws/vendedlogs/OpenSearchService/pipelines.
178
180
  */
179
181
  LogGroup: LogGroup;
180
182
  }
@@ -232,7 +234,7 @@ declare namespace OSIS {
232
234
  }
233
235
  export interface EncryptionAtRestOptions {
234
236
  /**
235
- * The ARN of the KMS key used to encrypt data-at-rest in OpenSearch Ingestion. By default, data is encrypted using an AWS owned key.
237
+ * The ARN of the KMS key used to encrypt buffer data. By default, data is encrypted using an Amazon Web Services owned key.
236
238
  */
237
239
  KmsKeyArn: KmsKeyArn;
238
240
  }
@@ -241,12 +243,20 @@ declare namespace OSIS {
241
243
  * The name of the blueprint to retrieve.
242
244
  */
243
245
  BlueprintName: String;
246
+ /**
247
+ * The format format of the blueprint to retrieve.
248
+ */
249
+ Format?: BlueprintFormat;
244
250
  }
245
251
  export interface GetPipelineBlueprintResponse {
246
252
  /**
247
253
  * The requested blueprint in YAML format.
248
254
  */
249
255
  Blueprint?: PipelineBlueprint;
256
+ /**
257
+ * The format of the blueprint.
258
+ */
259
+ Format?: String;
250
260
  }
251
261
  export interface GetPipelineChangeProgressRequest {
252
262
  /**
@@ -262,7 +272,7 @@ declare namespace OSIS {
262
272
  }
263
273
  export interface GetPipelineRequest {
264
274
  /**
265
- * The name of the pipeline to get information about.
275
+ * The name of the pipeline.
266
276
  */
267
277
  PipelineName: PipelineName;
268
278
  }
@@ -380,9 +390,13 @@ declare namespace OSIS {
380
390
  BufferOptions?: BufferOptions;
381
391
  EncryptionAtRestOptions?: EncryptionAtRestOptions;
382
392
  /**
383
- * A list of VPC endpoints that OpenSearch Ingestion has created to other AWS services.
393
+ * A list of VPC endpoints that OpenSearch Ingestion has created to other Amazon Web Services services.
384
394
  */
385
395
  ServiceVpcEndpoints?: ServiceVpcEndpointsList;
396
+ /**
397
+ * Destinations to which the pipeline writes data.
398
+ */
399
+ Destinations?: PipelineDestinationList;
386
400
  /**
387
401
  * A list of tags associated with the given pipeline.
388
402
  */
@@ -398,15 +412,58 @@ declare namespace OSIS {
398
412
  * The YAML configuration of the blueprint.
399
413
  */
400
414
  PipelineConfigurationBody?: String;
415
+ /**
416
+ * The display name of the blueprint.
417
+ */
418
+ DisplayName?: String;
419
+ /**
420
+ * A description of the blueprint.
421
+ */
422
+ DisplayDescription?: String;
423
+ /**
424
+ * The name of the service that the blueprint is associated with.
425
+ */
426
+ Service?: String;
427
+ /**
428
+ * The use case that the blueprint relates to.
429
+ */
430
+ UseCase?: String;
401
431
  }
402
432
  export interface PipelineBlueprintSummary {
403
433
  /**
404
434
  * The name of the blueprint.
405
435
  */
406
436
  BlueprintName?: String;
437
+ /**
438
+ * The display name of the blueprint.
439
+ */
440
+ DisplayName?: String;
441
+ /**
442
+ * A description of the blueprint.
443
+ */
444
+ DisplayDescription?: String;
445
+ /**
446
+ * The name of the service that the blueprint is associated with.
447
+ */
448
+ Service?: String;
449
+ /**
450
+ * The use case that the blueprint relates to.
451
+ */
452
+ UseCase?: String;
407
453
  }
408
454
  export type PipelineBlueprintsSummaryList = PipelineBlueprintSummary[];
409
455
  export type PipelineConfigurationBody = string;
456
+ export interface PipelineDestination {
457
+ /**
458
+ * The name of the service receiving data from the pipeline.
459
+ */
460
+ ServiceName?: String;
461
+ /**
462
+ * The endpoint receiving data from the pipeline.
463
+ */
464
+ Endpoint?: String;
465
+ }
466
+ export type PipelineDestinationList = PipelineDestination[];
410
467
  export type PipelineName = string;
411
468
  export type PipelineStatus = "CREATING"|"ACTIVE"|"UPDATING"|"DELETING"|"CREATE_FAILED"|"UPDATE_FAILED"|"STARTING"|"START_FAILED"|"STOPPING"|"STOPPED"|string;
412
469
  export interface PipelineStatusReason {
@@ -445,6 +502,10 @@ declare namespace OSIS {
445
502
  * The date and time when the pipeline was last updated.
446
503
  */
447
504
  LastUpdatedAt?: Timestamp;
505
+ /**
506
+ * A list of destinations to which the pipeline writes data.
507
+ */
508
+ Destinations?: PipelineDestinationList;
448
509
  /**
449
510
  * A list of tags associated with the given pipeline.
450
511
  */
@@ -460,7 +521,7 @@ declare namespace OSIS {
460
521
  */
461
522
  ServiceName?: VpcEndpointServiceName;
462
523
  /**
463
- * The ID of the VPC endpoint that was created.
524
+ * The unique identifier of the VPC endpoint that was created.
464
525
  */
465
526
  VpcEndpointId?: String;
466
527
  }
@@ -584,6 +645,16 @@ declare namespace OSIS {
584
645
  Message?: String;
585
646
  }
586
647
  export type ValidationMessageList = ValidationMessage[];
648
+ export interface VpcAttachmentOptions {
649
+ /**
650
+ * Whether a VPC is attached to the pipeline.
651
+ */
652
+ AttachToVpc: Boolean;
653
+ /**
654
+ * The CIDR block to be reserved for OpenSearch Ingestion to create elastic network interfaces (ENIs).
655
+ */
656
+ CidrBlock?: CidrBlock;
657
+ }
587
658
  export interface VpcEndpoint {
588
659
  /**
589
660
  * The unique identifier of the endpoint.
@@ -609,6 +680,10 @@ declare namespace OSIS {
609
680
  * A list of security groups associated with the VPC endpoint.
610
681
  */
611
682
  SecurityGroupIds?: SecurityGroupIds;
683
+ /**
684
+ * Options for attaching a VPC to a pipeline.
685
+ */
686
+ VpcAttachmentOptions?: VpcAttachmentOptions;
612
687
  }
613
688
  /**
614
689
  * A string in YYYY-MM-DD format that represents the latest possible API version that can be used in this service. Specify 'latest' to use the latest possible version.
package/clients/pi.d.ts CHANGED
@@ -118,7 +118,7 @@ declare class PI extends Service {
118
118
  }
119
119
  declare namespace PI {
120
120
  export type AcceptLanguage = "EN_US"|string;
121
- export type AdditionalMetricsList = RequestString[];
121
+ export type AdditionalMetricsList = SanitizedString[];
122
122
  export type AdditionalMetricsMap = {[key: string]: Double};
123
123
  export type AmazonResourceName = string;
124
124
  export interface AnalysisReport {
@@ -184,6 +184,7 @@ declare namespace PI {
184
184
  }
185
185
  export type AnalysisReportSummaryList = AnalysisReportSummary[];
186
186
  export type AnalysisStatus = "RUNNING"|"SUCCEEDED"|"FAILED"|string;
187
+ export type AuthorizedActionsList = FineGrainedAction[];
187
188
  export type Boolean = boolean;
188
189
  export type ContextType = "CAUSAL"|"CONTEXTUAL"|string;
189
190
  export interface CreatePerformanceAnalysisReportRequest {
@@ -335,11 +336,11 @@ declare namespace PI {
335
336
  /**
336
337
  * The name of the dimension group. Valid values are as follows: db - The name of the database to which the client is connected. The following values are permitted: Aurora PostgreSQL Amazon RDS PostgreSQL Aurora MySQL Amazon RDS MySQL Amazon RDS MariaDB Amazon DocumentDB db.application - The name of the application that is connected to the database. The following values are permitted: Aurora PostgreSQL Amazon RDS PostgreSQL Amazon DocumentDB db.host - The host name of the connected client (all engines). db.query - The query that is currently running (only Amazon DocumentDB). db.query_tokenized - The digest query (only Amazon DocumentDB). db.session_type - The type of the current session (only Aurora PostgreSQL and RDS PostgreSQL). db.sql - The text of the SQL statement that is currently running (all engines except Amazon DocumentDB). db.sql_tokenized - The SQL digest (all engines except Amazon DocumentDB). db.user - The user logged in to the database (all engines except Amazon DocumentDB). db.wait_event - The event for which the database backend is waiting (all engines except Amazon DocumentDB). db.wait_event_type - The type of event for which the database backend is waiting (all engines except Amazon DocumentDB). db.wait_state - The event for which the database backend is waiting (only Amazon DocumentDB).
337
338
  */
338
- Group: RequestString;
339
+ Group: SanitizedString;
339
340
  /**
340
341
  * A list of specific dimensions from a dimension group. If this parameter is not present, then it signifies that all of the dimensions in the group were requested, or are present in the response. Valid values for elements in the Dimensions array are: db.application.name - The name of the application that is connected to the database. Valid values are as follows: Aurora PostgreSQL Amazon RDS PostgreSQL Amazon DocumentDB db.host.id - The host ID of the connected client (all engines). db.host.name - The host name of the connected client (all engines). db.name - The name of the database to which the client is connected. Valid values are as follows: Aurora PostgreSQL Amazon RDS PostgreSQL Aurora MySQL Amazon RDS MySQL Amazon RDS MariaDB Amazon DocumentDB db.query.id - The query ID generated by Performance Insights (only Amazon DocumentDB). db.query.db_id - The query ID generated by the database (only Amazon DocumentDB). db.query.statement - The text of the query that is being run (only Amazon DocumentDB). db.query.tokenized_id db.query.tokenized.id - The query digest ID generated by Performance Insights (only Amazon DocumentDB). db.query.tokenized.db_id - The query digest ID generated by Performance Insights (only Amazon DocumentDB). db.query.tokenized.statement - The text of the query digest (only Amazon DocumentDB). db.session_type.name - The type of the current session (only Amazon DocumentDB). db.sql.id - The hash of the full, non-tokenized SQL statement generated by Performance Insights (all engines except Amazon DocumentDB). db.sql.db_id - Either the SQL ID generated by the database engine, or a value generated by Performance Insights that begins with pi- (all engines except Amazon DocumentDB). db.sql.statement - The full text of the SQL statement that is running, as in SELECT * FROM employees (all engines except Amazon DocumentDB) db.sql.tokenized_id db.sql_tokenized.id - The hash of the SQL digest generated by Performance Insights (all engines except Amazon DocumentDB). In the console, db.sql_tokenized.id is called the Support ID because Amazon Web Services Support can look at this data to help you troubleshoot database issues. db.sql_tokenized.db_id - Either the native database ID used to refer to the SQL statement, or a synthetic ID such as pi-2372568224 that Performance Insights generates if the native database ID isn't available (all engines except Amazon DocumentDB). db.sql_tokenized.statement - The text of the SQL digest, as in SELECT * FROM employees WHERE employee_id = ? (all engines except Amazon DocumentDB) db.user.id - The ID of the user logged in to the database (all engines except Amazon DocumentDB). db.user.name - The name of the user logged in to the database (all engines except Amazon DocumentDB). db.wait_event.name - The event for which the backend is waiting (all engines except Amazon DocumentDB). db.wait_event.type - The type of event for which the backend is waiting (all engines except Amazon DocumentDB). db.wait_event_type.name - The name of the event type for which the backend is waiting (all engines except Amazon DocumentDB). db.wait_state.name - The event for which the backend is waiting (only Amazon DocumentDB).
341
342
  */
342
- Dimensions?: RequestStringList;
343
+ Dimensions?: SanitizedStringList;
343
344
  /**
344
345
  * The maximum number of items to fetch for this dimension group.
345
346
  */
@@ -391,7 +392,7 @@ declare namespace PI {
391
392
  }
392
393
  export type DimensionKeyDetailList = DimensionKeyDetail[];
393
394
  export type DimensionMap = {[key: string]: RequestString};
394
- export type DimensionsMetricList = RequestString[];
395
+ export type DimensionsMetricList = SanitizedString[];
395
396
  export type Double = number;
396
397
  export interface FeatureMetadata {
397
398
  /**
@@ -401,6 +402,7 @@ declare namespace PI {
401
402
  }
402
403
  export type FeatureMetadataMap = {[key: string]: FeatureMetadata};
403
404
  export type FeatureStatus = "ENABLED"|"DISABLED"|"UNSUPPORTED"|"ENABLED_PENDING_REBOOT"|"DISABLED_PENDING_REBOOT"|"UNKNOWN"|string;
405
+ export type FineGrainedAction = "DescribeDimensionKeys"|"GetDimensionKeyDetails"|"GetResourceMetrics"|string;
404
406
  export interface GetDimensionKeyDetailsRequest {
405
407
  /**
406
408
  * The Amazon Web Services service for which Performance Insights returns data. The only valid value is RDS.
@@ -609,6 +611,10 @@ declare namespace PI {
609
611
  * An optional pagination token provided by a previous request. If this parameter is specified, the response includes only records beyond the token, up to the value specified by MaxRecords.
610
612
  */
611
613
  NextToken?: NextToken;
614
+ /**
615
+ * The actions to discover the dimensions you are authorized to access. If you specify multiple actions, then the response will contain the dimensions common for all the actions. When you don't specify this request parameter or provide an empty list, the response contains all the available dimensions for the target database engine whether or not you are authorized to access them.
616
+ */
617
+ AuthorizedActions?: AuthorizedActionsList;
612
618
  }
613
619
  export interface ListAvailableResourceDimensionsResponse {
614
620
  /**
@@ -728,7 +734,7 @@ declare namespace PI {
728
734
  /**
729
735
  * The name of a Performance Insights metric to be measured. Valid values for Metric are: db.load.avg - A scaled representation of the number of active sessions for the database engine. db.sampledload.avg - The raw number of active sessions for the database engine. The counter metrics listed in Performance Insights operating system counters in the Amazon Aurora User Guide. The counter metrics listed in Performance Insights operating system counters in the Amazon RDS User Guide. If the number of active sessions is less than an internal Performance Insights threshold, db.load.avg and db.sampledload.avg are the same value. If the number of active sessions is greater than the internal threshold, Performance Insights samples the active sessions, with db.load.avg showing the scaled values, db.sampledload.avg showing the raw values, and db.sampledload.avg less than db.load.avg. For most use cases, you can query db.load.avg only.
730
736
  */
731
- Metric: RequestString;
737
+ Metric: SanitizedString;
732
738
  /**
733
739
  * A specification for how to aggregate the data points from a query result. You must specify a valid dimension group. Performance Insights will return all of the dimensions within that group, unless you provide the names of specific dimensions within that group. You can also request that Performance Insights return a limited number of values for a dimension.
734
740
  */
@@ -740,7 +746,7 @@ declare namespace PI {
740
746
  }
741
747
  export type MetricQueryFilterMap = {[key: string]: RequestString};
742
748
  export type MetricQueryList = MetricQuery[];
743
- export type MetricTypeList = RequestString[];
749
+ export type MetricTypeList = SanitizedString[];
744
750
  export type MetricValuesList = Double[];
745
751
  export type NextToken = string;
746
752
  export interface PerformanceInsightsMetric {
@@ -774,8 +780,7 @@ declare namespace PI {
774
780
  }
775
781
  export type RecommendationList = Recommendation[];
776
782
  export type RequestString = string;
777
- export type RequestStringList = RequestString[];
778
- export type RequestedDimensionList = RequestString[];
783
+ export type RequestedDimensionList = SanitizedString[];
779
784
  export interface ResponsePartitionKey {
780
785
  /**
781
786
  * A dimension map that contains the dimensions for this partition.
@@ -808,6 +813,8 @@ declare namespace PI {
808
813
  Dimensions?: DimensionMap;
809
814
  }
810
815
  export type ResponseResourceMetricList = ResponseResourceMetric[];
816
+ export type SanitizedString = string;
817
+ export type SanitizedStringList = SanitizedString[];
811
818
  export type ServiceType = "RDS"|"DOCDB"|string;
812
819
  export type Severity = "LOW"|"MEDIUM"|"HIGH"|string;
813
820
  export type String = string;
package/clients/rds.d.ts CHANGED
@@ -2040,7 +2040,7 @@ declare namespace RDS {
2040
2040
  }
2041
2041
  export interface CreateDBClusterMessage {
2042
2042
  /**
2043
- * A list of Availability Zones (AZs) where DB instances in the DB cluster can be created. For information on Amazon Web Services Regions and Availability Zones, see Choosing the Regions and Availability Zones in the Amazon Aurora User Guide. Valid for Cluster Type: Aurora DB clusters only
2043
+ * A list of Availability Zones (AZs) where you specifically want to create DB instances in the DB cluster. For information on AZs, see Availability Zones in the Amazon Aurora User Guide. Valid for Cluster Type: Aurora DB clusters only Constraints: Can't specify more than three AZs.
2044
2044
  */
2045
2045
  AvailabilityZones?: AvailabilityZones;
2046
2046
  /**
@@ -2072,7 +2072,7 @@ declare namespace RDS {
2072
2072
  */
2073
2073
  DBSubnetGroupName?: String;
2074
2074
  /**
2075
- * The database engine to use for this DB cluster. Valid for Cluster Type: Aurora DB clusters and Multi-AZ DB clusters Valid Values: aurora-mysql | aurora-postgresql | mysql | postgres
2075
+ * The database engine to use for this DB cluster. Valid for Cluster Type: Aurora DB clusters and Multi-AZ DB clusters Valid Values: aurora-mysql aurora-postgresql mysql postgres neptune - For information about using Amazon Neptune, see the Amazon Neptune User Guide .
2076
2076
  */
2077
2077
  Engine: String;
2078
2078
  /**
@@ -2248,6 +2248,10 @@ declare namespace RDS {
2248
2248
  * The CA certificate identifier to use for the DB cluster's server certificate. For more information, see Using SSL/TLS to encrypt a connection to a DB instance in the Amazon RDS User Guide. Valid for Cluster Type: Multi-AZ DB clusters
2249
2249
  */
2250
2250
  CACertificateIdentifier?: String;
2251
+ /**
2252
+ * The life cycle type for this DB cluster. By default, this value is set to open-source-rds-extended-support, which enrolls your DB cluster into Amazon RDS Extended Support. At the end of standard support, you can avoid charges for Extended Support by setting the value to open-source-rds-extended-support-disabled. In this case, creating the DB cluster will fail if the DB major version is past its end of standard support date. You can use this setting to enroll your DB cluster into Amazon RDS Extended Support. With RDS Extended Support, you can run the selected major engine version on your DB cluster past the end of standard support for that engine version. For more information, see the following sections: Amazon Aurora (PostgreSQL only) - Using Amazon RDS Extended Support in the Amazon Aurora User Guide Amazon RDS - Using Amazon RDS Extended Support in the Amazon RDS User Guide Valid for Cluster Type: Aurora DB clusters and Multi-AZ DB clusters Valid Values: open-source-rds-extended-support | open-source-rds-extended-support-disabled Default: open-source-rds-extended-support
2253
+ */
2254
+ EngineLifecycleSupport?: String;
2251
2255
  /**
2252
2256
  * The ID of the region that contains the source for the read replica.
2253
2257
  */
@@ -2372,7 +2376,7 @@ declare namespace RDS {
2372
2376
  */
2373
2377
  AutoMinorVersionUpgrade?: BooleanOptional;
2374
2378
  /**
2375
- * The license model information for this DB instance. This setting doesn't apply to Amazon Aurora or RDS Custom DB instances. Valid Values: RDS for Db2 - bring-your-own-license RDS for MariaDB - general-public-license RDS for Microsoft SQL Server - license-included RDS for MySQL - general-public-license RDS for Oracle - bring-your-own-license | license-included RDS for PostgreSQL - postgresql-license
2379
+ * The license model information for this DB instance. License models for RDS for Db2 require additional configuration. The Bring Your Own License (BYOL) model requires a custom parameter group. The Db2 license through Amazon Web Services Marketplace model requires an Amazon Web Services Marketplace subscription. For more information, see RDS for Db2 licensing options in the Amazon RDS User Guide. The default for RDS for Db2 is bring-your-own-license. This setting doesn't apply to Amazon Aurora or RDS Custom DB instances. Valid Values: RDS for Db2 - bring-your-own-license | marketplace-license RDS for MariaDB - general-public-license RDS for Microsoft SQL Server - license-included RDS for MySQL - general-public-license RDS for Oracle - bring-your-own-license | license-included RDS for PostgreSQL - postgresql-license
2376
2380
  */
2377
2381
  LicenseModel?: String;
2378
2382
  /**
@@ -2543,6 +2547,10 @@ declare namespace RDS {
2543
2547
  * Specifies whether to use the multi-tenant configuration or the single-tenant configuration (default). This parameter only applies to RDS for Oracle container database (CDB) engines. Note the following restrictions: The DB engine that you specify in the request must support the multi-tenant configuration. If you attempt to enable the multi-tenant configuration on a DB engine that doesn't support it, the request fails. If you specify the multi-tenant configuration when you create your DB instance, you can't later modify this DB instance to use the single-tenant configuration.
2544
2548
  */
2545
2549
  MultiTenant?: BooleanOptional;
2550
+ /**
2551
+ * The life cycle type for this DB instance. By default, this value is set to open-source-rds-extended-support, which enrolls your DB instance into Amazon RDS Extended Support. At the end of standard support, you can avoid charges for Extended Support by setting the value to open-source-rds-extended-support-disabled. In this case, creating the DB instance will fail if the DB major version is past its end of standard support date. This setting applies only to RDS for MySQL and RDS for PostgreSQL. For Amazon Aurora DB instances, the life cycle type is managed by the DB cluster. You can use this setting to enroll your DB instance into Amazon RDS Extended Support. With RDS Extended Support, you can run the selected major engine version on your DB instance past the end of standard support for that engine version. For more information, see Using Amazon RDS Extended Support in the Amazon RDS User Guide. Valid Values: open-source-rds-extended-support | open-source-rds-extended-support-disabled Default: open-source-rds-extended-support
2552
+ */
2553
+ EngineLifecycleSupport?: String;
2546
2554
  }
2547
2555
  export interface CreateDBInstanceReadReplicaMessage {
2548
2556
  /**
@@ -2915,7 +2923,7 @@ declare namespace RDS {
2915
2923
  */
2916
2924
  SnsTopicArn: String;
2917
2925
  /**
2918
- * The type of source that is generating the events. For example, if you want to be notified of events generated by a DB instance, you set this parameter to db-instance. For RDS Proxy events, specify db-proxy. If this value isn't specified, all events are returned. Valid Values: db-instance | db-cluster | db-parameter-group | db-security-group | db-snapshot | db-cluster-snapshot | db-proxy
2926
+ * The type of source that is generating the events. For example, if you want to be notified of events generated by a DB instance, you set this parameter to db-instance. For RDS Proxy events, specify db-proxy. If this value isn't specified, all events are returned. Valid Values: db-instance | db-cluster | db-parameter-group | db-security-group | db-snapshot | db-cluster-snapshot | db-proxy | zero-etl | custom-engine-version | blue-green-deployment
2919
2927
  */
2920
2928
  SourceType?: String;
2921
2929
  /**
@@ -2952,6 +2960,10 @@ declare namespace RDS {
2952
2960
  * The engine version to use for this global database cluster. Constraints: Can't be specified if SourceDBClusterIdentifier is specified. In this case, Amazon Aurora uses the engine version of the source DB cluster.
2953
2961
  */
2954
2962
  EngineVersion?: String;
2963
+ /**
2964
+ * The life cycle type for this global database cluster. By default, this value is set to open-source-rds-extended-support, which enrolls your global cluster into Amazon RDS Extended Support. At the end of standard support, you can avoid charges for Extended Support by setting the value to open-source-rds-extended-support-disabled. In this case, creating the global cluster will fail if the DB major version is past its end of standard support date. This setting only applies to Aurora PostgreSQL-based global databases. You can use this setting to enroll your global cluster into Amazon RDS Extended Support. With RDS Extended Support, you can run the selected major engine version on your global cluster past the end of standard support for that engine version. For more information, see Using Amazon RDS Extended Support in the Amazon Aurora User Guide. Valid Values: open-source-rds-extended-support | open-source-rds-extended-support-disabled Default: open-source-rds-extended-support
2965
+ */
2966
+ EngineLifecycleSupport?: String;
2955
2967
  /**
2956
2968
  * Specifies whether to enable deletion protection for the new global database cluster. The global database can't be deleted when deletion protection is enabled.
2957
2969
  */
@@ -3373,6 +3385,10 @@ declare namespace RDS {
3373
3385
  */
3374
3386
  StorageThroughput?: IntegerOptional;
3375
3387
  CertificateDetails?: CertificateDetails;
3388
+ /**
3389
+ * The life cycle type for the DB cluster. For more information, see CreateDBCluster.
3390
+ */
3391
+ EngineLifecycleSupport?: String;
3376
3392
  }
3377
3393
  export interface DBClusterAutomatedBackup {
3378
3394
  /**
@@ -4108,7 +4124,7 @@ declare namespace RDS {
4108
4124
  */
4109
4125
  ReplicaMode?: ReplicaMode;
4110
4126
  /**
4111
- * The license model information for this DB instance. This setting doesn't apply to RDS Custom DB instances.
4127
+ * The license model information for this DB instance. This setting doesn't apply to Amazon Aurora or RDS Custom DB instances.
4112
4128
  */
4113
4129
  LicenseModel?: String;
4114
4130
  /**
@@ -4336,6 +4352,10 @@ declare namespace RDS {
4336
4352
  * Specifies whether the DB instance is in the multi-tenant configuration (TRUE) or the single-tenant configuration (FALSE).
4337
4353
  */
4338
4354
  MultiTenant?: BooleanOptional;
4355
+ /**
4356
+ * The life cycle type for the DB instance. For more information, see CreateDBInstance.
4357
+ */
4358
+ EngineLifecycleSupport?: String;
4339
4359
  }
4340
4360
  export interface DBInstanceAutomatedBackup {
4341
4361
  /**
@@ -7025,6 +7045,10 @@ declare namespace RDS {
7025
7045
  * Indicates the database engine version.
7026
7046
  */
7027
7047
  EngineVersion?: String;
7048
+ /**
7049
+ * The life cycle type for the global cluster. For more information, see CreateGlobalCluster.
7050
+ */
7051
+ EngineLifecycleSupport?: String;
7028
7052
  /**
7029
7053
  * The default database name within the new global database cluster.
7030
7054
  */
@@ -8004,7 +8028,7 @@ declare namespace RDS {
8004
8028
  */
8005
8029
  SnsTopicArn?: String;
8006
8030
  /**
8007
- * The type of source that is generating the events. For example, if you want to be notified of events generated by a DB instance, you would set this parameter to db-instance. For RDS Proxy events, specify db-proxy. If this value isn't specified, all events are returned. Valid Values: db-instance | db-cluster | db-parameter-group | db-security-group | db-snapshot | db-cluster-snapshot | db-proxy
8031
+ * The type of source that is generating the events. For example, if you want to be notified of events generated by a DB instance, you would set this parameter to db-instance. For RDS Proxy events, specify db-proxy. If this value isn't specified, all events are returned. Valid Values: db-instance | db-cluster | db-parameter-group | db-security-group | db-snapshot | db-cluster-snapshot | db-proxy | zero-etl | custom-engine-version | blue-green-deployment
8008
8032
  */
8009
8033
  SourceType?: String;
8010
8034
  /**
@@ -8627,7 +8651,7 @@ declare namespace RDS {
8627
8651
  }
8628
8652
  export interface PendingMaintenanceAction {
8629
8653
  /**
8630
- * The type of pending maintenance action that is available for the resource. Valid actions are system-update, db-upgrade, hardware-maintenance, and ca-certificate-rotation.
8654
+ * The type of pending maintenance action that is available for the resource. For more information about maintenance actions, see Maintaining a DB instance. Valid Values: system-update | db-upgrade | hardware-maintenance | ca-certificate-rotation
8631
8655
  */
8632
8656
  Action?: String;
8633
8657
  /**
@@ -9382,6 +9406,10 @@ declare namespace RDS {
9382
9406
  * Specifies the storage type to be associated with the DB cluster. Valid Values: aurora, aurora-iopt1 Default: aurora Valid for: Aurora DB clusters only
9383
9407
  */
9384
9408
  StorageType?: String;
9409
+ /**
9410
+ * The life cycle type for this DB cluster. By default, this value is set to open-source-rds-extended-support, which enrolls your DB cluster into Amazon RDS Extended Support. At the end of standard support, you can avoid charges for Extended Support by setting the value to open-source-rds-extended-support-disabled. In this case, RDS automatically upgrades your restored DB cluster to a higher engine version, if the major engine version is past its end of standard support date. You can use this setting to enroll your DB cluster into Amazon RDS Extended Support. With RDS Extended Support, you can run the selected major engine version on your DB cluster past the end of standard support for that engine version. For more information, see the following sections: Amazon Aurora (PostgreSQL only) - Using Amazon RDS Extended Support in the Amazon Aurora User Guide Amazon RDS - Using Amazon RDS Extended Support in the Amazon RDS User Guide Valid for Cluster Type: Aurora DB clusters and Multi-AZ DB clusters Valid Values: open-source-rds-extended-support | open-source-rds-extended-support-disabled Default: open-source-rds-extended-support
9411
+ */
9412
+ EngineLifecycleSupport?: String;
9385
9413
  }
9386
9414
  export interface RestoreDBClusterFromS3Result {
9387
9415
  DBCluster?: DBCluster;
@@ -9500,6 +9528,10 @@ declare namespace RDS {
9500
9528
  * Reserved for future use.
9501
9529
  */
9502
9530
  RdsCustomClusterConfiguration?: RdsCustomClusterConfiguration;
9531
+ /**
9532
+ * The life cycle type for this DB cluster. By default, this value is set to open-source-rds-extended-support, which enrolls your DB cluster into Amazon RDS Extended Support. At the end of standard support, you can avoid charges for Extended Support by setting the value to open-source-rds-extended-support-disabled. In this case, RDS automatically upgrades your restored DB cluster to a higher engine version, if the major engine version is past its end of standard support date. You can use this setting to enroll your DB cluster into Amazon RDS Extended Support. With RDS Extended Support, you can run the selected major engine version on your DB cluster past the end of standard support for that engine version. For more information, see the following sections: Amazon Aurora (PostgreSQL only) - Using Amazon RDS Extended Support in the Amazon Aurora User Guide Amazon RDS - Using Amazon RDS Extended Support in the Amazon RDS User Guide Valid for Cluster Type: Aurora DB clusters and Multi-AZ DB clusters Valid Values: open-source-rds-extended-support | open-source-rds-extended-support-disabled Default: open-source-rds-extended-support
9533
+ */
9534
+ EngineLifecycleSupport?: String;
9503
9535
  }
9504
9536
  export interface RestoreDBClusterFromSnapshotResult {
9505
9537
  DBCluster?: DBCluster;
@@ -9615,6 +9647,10 @@ declare namespace RDS {
9615
9647
  * Reserved for future use.
9616
9648
  */
9617
9649
  RdsCustomClusterConfiguration?: RdsCustomClusterConfiguration;
9650
+ /**
9651
+ * The life cycle type for this DB cluster. By default, this value is set to open-source-rds-extended-support, which enrolls your DB cluster into Amazon RDS Extended Support. At the end of standard support, you can avoid charges for Extended Support by setting the value to open-source-rds-extended-support-disabled. In this case, RDS automatically upgrades your restored DB cluster to a higher engine version, if the major engine version is past its end of standard support date. You can use this setting to enroll your DB cluster into Amazon RDS Extended Support. With RDS Extended Support, you can run the selected major engine version on your DB cluster past the end of standard support for that engine version. For more information, see the following sections: Amazon Aurora (PostgreSQL only) - Using Amazon RDS Extended Support in the Amazon Aurora User Guide Amazon RDS - Using Amazon RDS Extended Support in the Amazon RDS User Guide Valid for Cluster Type: Aurora DB clusters and Multi-AZ DB clusters Valid Values: open-source-rds-extended-support | open-source-rds-extended-support-disabled Default: open-source-rds-extended-support
9652
+ */
9653
+ EngineLifecycleSupport?: String;
9618
9654
  }
9619
9655
  export interface RestoreDBClusterToPointInTimeResult {
9620
9656
  DBCluster?: DBCluster;
@@ -9657,7 +9693,7 @@ declare namespace RDS {
9657
9693
  */
9658
9694
  AutoMinorVersionUpgrade?: BooleanOptional;
9659
9695
  /**
9660
- * License model information for the restored DB instance. This setting doesn't apply to RDS Custom. Default: Same as source. Valid Values: license-included | bring-your-own-license | general-public-license
9696
+ * License model information for the restored DB instance. License models for RDS for Db2 require additional configuration. The Bring Your Own License (BYOL) model requires a custom parameter group. The Db2 license through Amazon Web Services Marketplace model requires an Amazon Web Services Marketplace subscription. For more information, see RDS for Db2 licensing options in the Amazon RDS User Guide. This setting doesn't apply to Amazon Aurora or RDS Custom DB instances. Valid Values: RDS for Db2 - bring-your-own-license | marketplace-license RDS for MariaDB - general-public-license RDS for Microsoft SQL Server - license-included RDS for MySQL - general-public-license RDS for Oracle - bring-your-own-license | license-included RDS for PostgreSQL - postgresql-license Default: Same as the source.
9661
9697
  */
9662
9698
  LicenseModel?: String;
9663
9699
  /**
@@ -9781,6 +9817,10 @@ declare namespace RDS {
9781
9817
  * The CA certificate identifier to use for the DB instance's server certificate. This setting doesn't apply to RDS Custom DB instances. For more information, see Using SSL/TLS to encrypt a connection to a DB instance in the Amazon RDS User Guide and Using SSL/TLS to encrypt a connection to a DB cluster in the Amazon Aurora User Guide.
9782
9818
  */
9783
9819
  CACertificateIdentifier?: String;
9820
+ /**
9821
+ * The life cycle type for this DB instance. By default, this value is set to open-source-rds-extended-support, which enrolls your DB instance into Amazon RDS Extended Support. At the end of standard support, you can avoid charges for Extended Support by setting the value to open-source-rds-extended-support-disabled. In this case, RDS automatically upgrades your restored DB instance to a higher engine version, if the major engine version is past its end of standard support date. You can use this setting to enroll your DB instance into Amazon RDS Extended Support. With RDS Extended Support, you can run the selected major engine version on your DB instance past the end of standard support for that engine version. For more information, see Using Amazon RDS Extended Support in the Amazon RDS User Guide. This setting applies only to RDS for MySQL and RDS for PostgreSQL. For Amazon Aurora DB instances, the life cycle type is managed by the DB cluster. Valid Values: open-source-rds-extended-support | open-source-rds-extended-support-disabled Default: open-source-rds-extended-support
9822
+ */
9823
+ EngineLifecycleSupport?: String;
9784
9824
  }
9785
9825
  export interface RestoreDBInstanceFromDBSnapshotResult {
9786
9826
  DBInstance?: DBInstance;
@@ -9986,6 +10026,10 @@ declare namespace RDS {
9986
10026
  * The CA certificate identifier to use for the DB instance's server certificate. This setting doesn't apply to RDS Custom DB instances. For more information, see Using SSL/TLS to encrypt a connection to a DB instance in the Amazon RDS User Guide and Using SSL/TLS to encrypt a connection to a DB cluster in the Amazon Aurora User Guide.
9987
10027
  */
9988
10028
  CACertificateIdentifier?: String;
10029
+ /**
10030
+ * The life cycle type for this DB instance. By default, this value is set to open-source-rds-extended-support, which enrolls your DB instance into Amazon RDS Extended Support. At the end of standard support, you can avoid charges for Extended Support by setting the value to open-source-rds-extended-support-disabled. In this case, RDS automatically upgrades your restored DB instance to a higher engine version, if the major engine version is past its end of standard support date. You can use this setting to enroll your DB instance into Amazon RDS Extended Support. With RDS Extended Support, you can run the selected major engine version on your DB instance past the end of standard support for that engine version. For more information, see Using Amazon RDS Extended Support in the Amazon RDS User Guide. This setting applies only to RDS for MySQL and RDS for PostgreSQL. For Amazon Aurora DB instances, the life cycle type is managed by the DB cluster. Valid Values: open-source-rds-extended-support | open-source-rds-extended-support-disabled Default: open-source-rds-extended-support
10031
+ */
10032
+ EngineLifecycleSupport?: String;
9989
10033
  }
9990
10034
  export interface RestoreDBInstanceFromS3Result {
9991
10035
  DBInstance?: DBInstance;
@@ -10036,7 +10080,7 @@ declare namespace RDS {
10036
10080
  */
10037
10081
  AutoMinorVersionUpgrade?: BooleanOptional;
10038
10082
  /**
10039
- * The license model information for the restored DB instance. This setting doesn't apply to RDS Custom. Valid Values: license-included | bring-your-own-license | general-public-license Default: Same as the source.
10083
+ * The license model information for the restored DB instance. License models for RDS for Db2 require additional configuration. The Bring Your Own License (BYOL) model requires a custom parameter group. The Db2 license through Amazon Web Services Marketplace model requires an Amazon Web Services Marketplace subscription. For more information, see RDS for Db2 licensing options in the Amazon RDS User Guide. This setting doesn't apply to Amazon Aurora or RDS Custom DB instances. Valid Values: RDS for Db2 - bring-your-own-license | marketplace-license RDS for MariaDB - general-public-license RDS for Microsoft SQL Server - license-included RDS for MySQL - general-public-license RDS for Oracle - bring-your-own-license | license-included RDS for PostgreSQL - postgresql-license Default: Same as the source.
10040
10084
  */
10041
10085
  LicenseModel?: String;
10042
10086
  /**
@@ -10168,6 +10212,10 @@ declare namespace RDS {
10168
10212
  * The CA certificate identifier to use for the DB instance's server certificate. This setting doesn't apply to RDS Custom DB instances. For more information, see Using SSL/TLS to encrypt a connection to a DB instance in the Amazon RDS User Guide and Using SSL/TLS to encrypt a connection to a DB cluster in the Amazon Aurora User Guide.
10169
10213
  */
10170
10214
  CACertificateIdentifier?: String;
10215
+ /**
10216
+ * The life cycle type for this DB instance. By default, this value is set to open-source-rds-extended-support, which enrolls your DB instance into Amazon RDS Extended Support. At the end of standard support, you can avoid charges for Extended Support by setting the value to open-source-rds-extended-support-disabled. In this case, RDS automatically upgrades your restored DB instance to a higher engine version, if the major engine version is past its end of standard support date. You can use this setting to enroll your DB instance into Amazon RDS Extended Support. With RDS Extended Support, you can run the selected major engine version on your DB instance past the end of standard support for that engine version. For more information, see Using Amazon RDS Extended Support in the Amazon RDS User Guide. This setting applies only to RDS for MySQL and RDS for PostgreSQL. For Amazon Aurora DB instances, the life cycle type is managed by the DB cluster. Valid Values: open-source-rds-extended-support | open-source-rds-extended-support-disabled Default: open-source-rds-extended-support
10217
+ */
10218
+ EngineLifecycleSupport?: String;
10171
10219
  }
10172
10220
  export interface RestoreDBInstanceToPointInTimeResult {
10173
10221
  DBInstance?: DBInstance;
@@ -10698,7 +10746,7 @@ declare namespace RDS {
10698
10746
  */
10699
10747
  Description?: String;
10700
10748
  /**
10701
- * Indicates whether the target version is applied to any source DB instances that have AutoMinorVersionUpgrade set to true.
10749
+ * Indicates whether the target version is applied to any source DB instances that have AutoMinorVersionUpgrade set to true. This parameter is dynamic, and is set by RDS.
10702
10750
  */
10703
10751
  AutoUpgrade?: Boolean;
10704
10752
  /**
@@ -395,7 +395,7 @@ declare namespace SecretsManager {
395
395
  */
396
396
  KmsKeyId?: KmsKeyIdType;
397
397
  /**
398
- * Specifies whether automatic rotation is turned on for this secret. If the secret has never been configured for rotation, Secrets Manager returns null. To turn on rotation, use RotateSecret. To turn off rotation, use CancelRotateSecret.
398
+ * Specifies whether automatic rotation is turned on for this secret. To turn on rotation, use RotateSecret. To turn off rotation, use CancelRotateSecret.
399
399
  */
400
400
  RotationEnabled?: RotationEnabledType;
401
401
  /**
@@ -536,7 +536,7 @@ declare namespace SecretsManager {
536
536
  }
537
537
  export interface GetSecretValueRequest {
538
538
  /**
539
- * The ARN or name of the secret to retrieve. To retrieve a secret from another account, you must use an ARN. For an ARN, we recommend that you specify a complete ARN rather than a partial ARN. See Finding a secret from a partial ARN.
539
+ * The ARN or name of the secret to retrieve. For an ARN, we recommend that you specify a complete ARN rather than a partial ARN. See Finding a secret from a partial ARN.
540
540
  */
541
541
  SecretId: SecretIdType;
542
542
  /**
@@ -1130,7 +1130,7 @@ declare namespace SecretsManager {
1130
1130
  }
1131
1131
  export interface ValidateResourcePolicyRequest {
1132
1132
  /**
1133
- * The ARN or name of the secret with the resource-based policy you want to validate.
1133
+ * This field is reserved for internal use.
1134
1134
  */
1135
1135
  SecretId?: SecretIdType;
1136
1136
  /**
@@ -743,7 +743,7 @@ declare namespace StorageGateway {
743
743
  */
744
744
  GatewayName: GatewayName;
745
745
  /**
746
- * A value that indicates the time zone you want to set for the gateway. The time zone is of the format "GMT-hr:mm" or "GMT+hr:mm". For example, GMT-4:00 indicates the time is 4 hours behind GMT. GMT+2:00 indicates the time is 2 hours ahead of GMT. The time zone is used, for example, for scheduling snapshots and your gateway's maintenance schedule.
746
+ * A value that indicates the time zone you want to set for the gateway. The time zone is of the format "GMT", "GMT-hr:mm", or "GMT+hr:mm". For example, GMT indicates Greenwich Mean Time without any offset. GMT-4:00 indicates the time is 4 hours behind GMT. GMT+2:00 indicates the time is 2 hours ahead of GMT. The time zone is used, for example, for scheduling snapshots and your gateway's maintenance schedule.
747
747
  */
748
748
  GatewayTimezone: GatewayTimezone;
749
749
  /**
@@ -751,7 +751,7 @@ declare namespace StorageGateway {
751
751
  */
752
752
  GatewayRegion: RegionId;
753
753
  /**
754
- * A value that defines the type of gateway to activate. The type specified is critical to all later functions of the gateway and cannot be changed after activation. The default value is CACHED. Valid Values: STORED | CACHED | VTL | VTL_SNOW | FILE_S3 | FILE_FSX_SMB
754
+ * A value that defines the type of gateway to activate. The type specified is critical to all later functions of the gateway and cannot be changed after activation. The default value is CACHED. Valid Values: STORED | CACHED | VTL | FILE_S3 | FILE_FSX_SMB
755
755
  */
756
756
  GatewayType?: GatewayType;
757
757
  /**
@@ -1853,7 +1853,7 @@ declare namespace StorageGateway {
1853
1853
  */
1854
1854
  CloudWatchLogGroupARN?: CloudWatchLogGroupARN;
1855
1855
  /**
1856
- * The type of hardware or software platform on which the gateway is running.
1856
+ * The type of hardware or software platform on which the gateway is running. Tape Gateway is no longer available on Snow Family devices.
1857
1857
  */
1858
1858
  HostEnvironment?: HostEnvironment;
1859
1859
  /**
@@ -1953,7 +1953,7 @@ declare namespace StorageGateway {
1953
1953
  */
1954
1954
  SMBGuestPasswordSet?: Boolean;
1955
1955
  /**
1956
- * The type of security strategy that was specified for file gateway. ClientSpecified: If you use this option, requests are established based on what is negotiated by the client. This option is recommended when you want to maximize compatibility across different clients in your environment. Only supported for S3 File Gateways. MandatorySigning: If you use this option, file gateway only allows connections from SMBv2 or SMBv3 clients that have signing enabled. This option works with SMB clients on Microsoft Windows Vista, Windows Server 2008 or newer. MandatoryEncryption: If you use this option, file gateway only allows connections from SMBv3 clients that have encryption enabled. This option is highly recommended for environments that handle sensitive data. This option works with SMB clients on Microsoft Windows 8, Windows Server 2012 or newer.
1956
+ * The type of security strategy that was specified for file gateway. ClientSpecified: If you choose this option, requests are established based on what is negotiated by the client. This option is recommended when you want to maximize compatibility across different clients in your environment. Supported only for S3 File Gateway. MandatorySigning: If you use this option, File Gateway only allows connections from SMBv2 or SMBv3 clients that have signing turned on. This option works with SMB clients on Microsoft Windows Vista, Windows Server 2008, or later. MandatoryEncryption: If you use this option, File Gateway only allows connections from SMBv3 clients that have encryption turned on. Both 256-bit and 128-bit algorithms are allowed. This option is recommended for environments that handle sensitive data. It works with SMB clients on Microsoft Windows 8, Windows Server 2012, or later. EnforceEncryption: If you use this option, File Gateway only allows connections from SMBv3 clients that use 256-bit AES encryption algorithms. 128-bit algorithms are not allowed. This option is recommended for environments that handle sensitive data. It works with SMB clients on Microsoft Windows 8, Windows Server 2012, or later.
1957
1957
  */
1958
1958
  SMBSecurityStrategy?: SMBSecurityStrategy;
1959
1959
  /**
@@ -2362,7 +2362,7 @@ declare namespace StorageGateway {
2362
2362
  */
2363
2363
  Ec2InstanceRegion?: Ec2InstanceRegion;
2364
2364
  /**
2365
- * The type of hardware or software platform on which the gateway is running.
2365
+ * The type of hardware or software platform on which the gateway is running. Tape Gateway is no longer available on Snow Family devices.
2366
2366
  */
2367
2367
  HostEnvironment?: HostEnvironment;
2368
2368
  /**
@@ -2802,7 +2802,7 @@ declare namespace StorageGateway {
2802
2802
  */
2803
2803
  FileShareARN: FileShareARN;
2804
2804
  /**
2805
- * A comma-separated list of the paths of folders to refresh in the cache. The default is ["/"]. The default refreshes objects and folders at the root of the Amazon S3 bucket. If Recursive is set to true, the entire S3 bucket that the file share has access to is refreshed.
2805
+ * A comma-separated list of the paths of folders to refresh in the cache. The default is ["/"]. The default refreshes objects and folders at the root of the Amazon S3 bucket. If Recursive is set to true, the entire S3 bucket that the file share has access to is refreshed. Do not include / when specifying folder names. For example, you would specify samplefolder rather than samplefolder/.
2806
2806
  */
2807
2807
  FolderList?: FolderList;
2808
2808
  /**
@@ -2969,7 +2969,7 @@ declare namespace StorageGateway {
2969
2969
  */
2970
2970
  GatewayAdmins?: UserList;
2971
2971
  }
2972
- export type SMBSecurityStrategy = "ClientSpecified"|"MandatorySigning"|"MandatoryEncryption"|string;
2972
+ export type SMBSecurityStrategy = "ClientSpecified"|"MandatorySigning"|"MandatoryEncryption"|"MandatoryEncryptionNoAes128"|string;
2973
2973
  export interface SetLocalConsolePasswordInput {
2974
2974
  GatewayARN: GatewayARN;
2975
2975
  /**