cdk-docker-image-deployment 0.0.164 → 0.0.166

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 (29) hide show
  1. package/.jsii +4 -4
  2. package/lib/destination.js +1 -1
  3. package/lib/docker-image-deployment.js +1 -1
  4. package/lib/source.js +1 -1
  5. package/node_modules/aws-sdk/CHANGELOG.md +13 -1
  6. package/node_modules/aws-sdk/README.md +1 -1
  7. package/node_modules/aws-sdk/apis/appconfig-2019-10-09.min.json +27 -14
  8. package/node_modules/aws-sdk/apis/ec2-2016-11-15.min.json +1321 -1316
  9. package/node_modules/aws-sdk/apis/frauddetector-2019-11-15.min.json +186 -61
  10. package/node_modules/aws-sdk/apis/frauddetector-2019-11-15.paginators.json +10 -0
  11. package/node_modules/aws-sdk/apis/glue-2017-03-31.min.json +329 -311
  12. package/node_modules/aws-sdk/apis/privatenetworks-2021-12-03.min.json +49 -8
  13. package/node_modules/aws-sdk/apis/wafv2-2019-07-29.min.json +234 -111
  14. package/node_modules/aws-sdk/clients/appconfig.d.ts +18 -1
  15. package/node_modules/aws-sdk/clients/datasync.d.ts +32 -32
  16. package/node_modules/aws-sdk/clients/ec2.d.ts +13 -0
  17. package/node_modules/aws-sdk/clients/efs.d.ts +4 -4
  18. package/node_modules/aws-sdk/clients/frauddetector.d.ts +179 -0
  19. package/node_modules/aws-sdk/clients/glue.d.ts +28 -0
  20. package/node_modules/aws-sdk/clients/privatenetworks.d.ts +59 -3
  21. package/node_modules/aws-sdk/clients/rds.d.ts +81 -81
  22. package/node_modules/aws-sdk/clients/wafv2.d.ts +119 -7
  23. package/node_modules/aws-sdk/dist/aws-sdk-core-react-native.js +1 -1
  24. package/node_modules/aws-sdk/dist/aws-sdk-react-native.js +8 -8
  25. package/node_modules/aws-sdk/dist/aws-sdk.js +1324 -1319
  26. package/node_modules/aws-sdk/dist/aws-sdk.min.js +61 -61
  27. package/node_modules/aws-sdk/lib/core.js +1 -1
  28. package/node_modules/aws-sdk/package.json +1 -1
  29. package/package.json +7 -7
@@ -719,6 +719,10 @@ declare namespace AppConfig {
719
719
  * An optional locking token used to prevent race conditions from overwriting configuration updates when creating a new version. To ensure your data is not overwritten when creating multiple hosted configuration versions in rapid succession, specify the version number of the latest hosted configuration version.
720
720
  */
721
721
  LatestVersionNumber?: Integer;
722
+ /**
723
+ * An optional, user-defined label for the AppConfig hosted configuration version. This value must contain at least one non-numeric character. For example, "v2.2.0".
724
+ */
725
+ VersionLabel?: VersionLabel;
722
726
  }
723
727
  export interface DeleteApplicationRequest {
724
728
  /**
@@ -1274,6 +1278,10 @@ declare namespace AppConfig {
1274
1278
  * A standard MIME type describing the format of the configuration content. For more information, see Content-Type.
1275
1279
  */
1276
1280
  ContentType?: StringWithLengthBetween1And255;
1281
+ /**
1282
+ * A user-defined label for an AppConfig hosted configuration version.
1283
+ */
1284
+ VersionLabel?: VersionLabel;
1277
1285
  }
1278
1286
  export interface HostedConfigurationVersionSummary {
1279
1287
  /**
@@ -1296,6 +1304,10 @@ declare namespace AppConfig {
1296
1304
  * A standard MIME type describing the format of the configuration content. For more information, see Content-Type.
1297
1305
  */
1298
1306
  ContentType?: StringWithLengthBetween1And255;
1307
+ /**
1308
+ * A user-defined label for an AppConfig hosted configuration version.
1309
+ */
1310
+ VersionLabel?: VersionLabel;
1299
1311
  }
1300
1312
  export type HostedConfigurationVersionSummaryList = HostedConfigurationVersionSummary[];
1301
1313
  export interface HostedConfigurationVersions {
@@ -1435,6 +1447,10 @@ declare namespace AppConfig {
1435
1447
  * A token to start the list. Use this token to get the next set of results.
1436
1448
  */
1437
1449
  NextToken?: NextToken;
1450
+ /**
1451
+ * An optional filter that can be used to specify the version label of an AppConfig hosted configuration version. This parameter supports filtering by prefix using a wildcard, for example "v2*". If you don't specify an asterisk at the end of the value, only an exact match is returned.
1452
+ */
1453
+ VersionLabel?: QueryName;
1438
1454
  }
1439
1455
  export interface ListTagsForResourceRequest {
1440
1456
  /**
@@ -1498,7 +1514,7 @@ declare namespace AppConfig {
1498
1514
  */
1499
1515
  ConfigurationProfileId: Id;
1500
1516
  /**
1501
- * The configuration version to deploy.
1517
+ * The configuration version to deploy. If deploying an AppConfig hosted configuration version, you can specify either the version number or version label.
1502
1518
  */
1503
1519
  ConfigurationVersion: Version;
1504
1520
  /**
@@ -1707,6 +1723,7 @@ declare namespace AppConfig {
1707
1723
  export type ValidatorType = "JSON_SCHEMA"|"LAMBDA"|string;
1708
1724
  export type ValidatorTypeList = ValidatorType[];
1709
1725
  export type Version = string;
1726
+ export type VersionLabel = string;
1710
1727
  /**
1711
1728
  * 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.
1712
1729
  */
@@ -92,19 +92,19 @@ declare class DataSync extends Service {
92
92
  */
93
93
  createLocationObjectStorage(callback?: (err: AWSError, data: DataSync.Types.CreateLocationObjectStorageResponse) => void): Request<DataSync.Types.CreateLocationObjectStorageResponse, AWSError>;
94
94
  /**
95
- * Creates an endpoint for an Amazon S3 bucket that DataSync can access for a transfer. For more information, see Create an Amazon S3 location in the DataSync User Guide.
95
+ * Creates an endpoint for an Amazon S3 bucket that DataSync can access for a transfer. For more information, see Create an Amazon S3 location.
96
96
  */
97
97
  createLocationS3(params: DataSync.Types.CreateLocationS3Request, callback?: (err: AWSError, data: DataSync.Types.CreateLocationS3Response) => void): Request<DataSync.Types.CreateLocationS3Response, AWSError>;
98
98
  /**
99
- * Creates an endpoint for an Amazon S3 bucket that DataSync can access for a transfer. For more information, see Create an Amazon S3 location in the DataSync User Guide.
99
+ * Creates an endpoint for an Amazon S3 bucket that DataSync can access for a transfer. For more information, see Create an Amazon S3 location.
100
100
  */
101
101
  createLocationS3(callback?: (err: AWSError, data: DataSync.Types.CreateLocationS3Response) => void): Request<DataSync.Types.CreateLocationS3Response, AWSError>;
102
102
  /**
103
- * Defines a file system on a Server Message Block (SMB) server that can be read from or written to.
103
+ * Creates an endpoint for a Server Message Block (SMB) file server that DataSync can access for a transfer. For more information, see Creating an SMB location.
104
104
  */
105
105
  createLocationSmb(params: DataSync.Types.CreateLocationSmbRequest, callback?: (err: AWSError, data: DataSync.Types.CreateLocationSmbResponse) => void): Request<DataSync.Types.CreateLocationSmbResponse, AWSError>;
106
106
  /**
107
- * Defines a file system on a Server Message Block (SMB) server that can be read from or written to.
107
+ * Creates an endpoint for a Server Message Block (SMB) file server that DataSync can access for a transfer. For more information, see Creating an SMB location.
108
108
  */
109
109
  createLocationSmb(callback?: (err: AWSError, data: DataSync.Types.CreateLocationSmbResponse) => void): Request<DataSync.Types.CreateLocationSmbResponse, AWSError>;
110
110
  /**
@@ -140,11 +140,11 @@ declare class DataSync extends Service {
140
140
  */
141
141
  deleteTask(callback?: (err: AWSError, data: DataSync.Types.DeleteTaskResponse) => void): Request<DataSync.Types.DeleteTaskResponse, AWSError>;
142
142
  /**
143
- * Returns metadata such as the name, the network interfaces, and the status (that is, whether the agent is running or not) for an agent. To specify which agent to describe, use the Amazon Resource Name (ARN) of the agent in your request.
143
+ * Returns metadata about an DataSync agent, such as its name, endpoint type, and status.
144
144
  */
145
145
  describeAgent(params: DataSync.Types.DescribeAgentRequest, callback?: (err: AWSError, data: DataSync.Types.DescribeAgentResponse) => void): Request<DataSync.Types.DescribeAgentResponse, AWSError>;
146
146
  /**
147
- * Returns metadata such as the name, the network interfaces, and the status (that is, whether the agent is running or not) for an agent. To specify which agent to describe, use the Amazon Resource Name (ARN) of the agent in your request.
147
+ * Returns metadata about an DataSync agent, such as its name, endpoint type, and status.
148
148
  */
149
149
  describeAgent(callback?: (err: AWSError, data: DataSync.Types.DescribeAgentResponse) => void): Request<DataSync.Types.DescribeAgentResponse, AWSError>;
150
150
  /**
@@ -244,11 +244,11 @@ declare class DataSync extends Service {
244
244
  */
245
245
  describeTaskExecution(callback?: (err: AWSError, data: DataSync.Types.DescribeTaskExecutionResponse) => void): Request<DataSync.Types.DescribeTaskExecutionResponse, AWSError>;
246
246
  /**
247
- * Returns a list of agents owned by an Amazon Web Services account in the Amazon Web Services Region specified in the request. The returned list is ordered by agent Amazon Resource Name (ARN). By default, this operation returns a maximum of 100 agents. This operation supports pagination that enables you to optionally reduce the number of agents returned in a response. If you have more agents than are returned in a response (that is, the response returns only a truncated list of your agents), the response contains a marker that you can specify in your next request to fetch the next page of agents.
247
+ * Returns a list of DataSync agents that belong to an Amazon Web Services account in the Amazon Web Services Region specified in the request. With pagination, you can reduce the number of agents returned in a response. If you get a truncated list of agents in a response, the response contains a marker that you can specify in your next request to fetch the next page of agents. ListAgents is eventually consistent. This means the result of running the operation might not reflect that you just created or deleted an agent. For example, if you create an agent with CreateAgent and then immediately run ListAgents, that agent might not show up in the list right away. In situations like this, you can always confirm whether an agent has been created (or deleted) by using DescribeAgent.
248
248
  */
249
249
  listAgents(params: DataSync.Types.ListAgentsRequest, callback?: (err: AWSError, data: DataSync.Types.ListAgentsResponse) => void): Request<DataSync.Types.ListAgentsResponse, AWSError>;
250
250
  /**
251
- * Returns a list of agents owned by an Amazon Web Services account in the Amazon Web Services Region specified in the request. The returned list is ordered by agent Amazon Resource Name (ARN). By default, this operation returns a maximum of 100 agents. This operation supports pagination that enables you to optionally reduce the number of agents returned in a response. If you have more agents than are returned in a response (that is, the response returns only a truncated list of your agents), the response contains a marker that you can specify in your next request to fetch the next page of agents.
251
+ * Returns a list of DataSync agents that belong to an Amazon Web Services account in the Amazon Web Services Region specified in the request. With pagination, you can reduce the number of agents returned in a response. If you get a truncated list of agents in a response, the response contains a marker that you can specify in your next request to fetch the next page of agents. ListAgents is eventually consistent. This means the result of running the operation might not reflect that you just created or deleted an agent. For example, if you create an agent with CreateAgent and then immediately run ListAgents, that agent might not show up in the list right away. In situations like this, you can always confirm whether an agent has been created (or deleted) by using DescribeAgent.
252
252
  */
253
253
  listAgents(callback?: (err: AWSError, data: DataSync.Types.ListAgentsResponse) => void): Request<DataSync.Types.ListAgentsResponse, AWSError>;
254
254
  /**
@@ -371,15 +371,15 @@ declare namespace DataSync {
371
371
  export type AgentList = AgentListEntry[];
372
372
  export interface AgentListEntry {
373
373
  /**
374
- * The Amazon Resource Name (ARN) of the agent.
374
+ * The Amazon Resource Name (ARN) of a DataSync agent.
375
375
  */
376
376
  AgentArn?: AgentArn;
377
377
  /**
378
- * The name of the agent.
378
+ * The name of an agent.
379
379
  */
380
380
  Name?: TagValue;
381
381
  /**
382
- * The status of the agent.
382
+ * The status of an agent. For more information, see DataSync agent statuses.
383
383
  */
384
384
  Status?: AgentStatus;
385
385
  }
@@ -493,11 +493,11 @@ declare namespace DataSync {
493
493
  */
494
494
  SecurityGroupArns: Ec2SecurityGroupArnList;
495
495
  /**
496
- * Specifies the ARN of the storage virtual machine (SVM) on your file system where you're copying data to or from.
496
+ * Specifies the ARN of the storage virtual machine (SVM) in your file system where you want to copy data to or from.
497
497
  */
498
498
  StorageVirtualMachineArn: StorageVirtualMachineArn;
499
499
  /**
500
- * Specifies the junction path (also known as a mount point) in the SVM volume where you're copying data to or from (for example, /vol1). Don't specify a junction path in the SVM's root volume. For more information, see Managing FSx for ONTAP storage virtual machines in the Amazon FSx for NetApp ONTAP User Guide.
500
+ * Specifies a path to the file share in the SVM where you'll copy your data. You can specify a junction path (also known as a mount point), qtree path (for NFS file shares), or share name (for SMB file shares). For example, your mount path might be /vol1, /vol1/tree1, or /share1. Don't specify a junction path in the SVM's root volume. For more information, see Managing FSx for ONTAP storage virtual machines in the Amazon FSx for NetApp ONTAP User Guide.
501
501
  */
502
502
  Subdirectory?: FsxOntapSubdirectory;
503
503
  /**
@@ -742,41 +742,41 @@ declare namespace DataSync {
742
742
  }
743
743
  export interface CreateLocationSmbRequest {
744
744
  /**
745
- * The subdirectory in the SMB file system that is used to read data from the SMB source location or write data to the SMB destination. The SMB path should be a path that's exported by the SMB server, or a subdirectory of that path. The path should be such that it can be mounted by other SMB clients in your network. Subdirectory must be specified with forward slashes. For example, /path/to/folder. To transfer all the data in the folder you specified, DataSync needs to have permissions to mount the SMB share, as well as to access all the data in that share. To ensure this, either ensure that the user/password specified belongs to the user who can mount the share, and who has the appropriate permissions for all of the files and directories that you want DataSync to access, or use credentials of a member of the Backup Operators group to mount the share. Doing either enables the agent to access the data. For the agent to access directories, you must additionally enable all execute access.
745
+ * Specifies the name of the share exported by your SMB file server where DataSync will read or write data. You can include a subdirectory in the share path (for example, /path/to/subdirectory). Make sure that other SMB clients in your network can also mount this path. To copy all data in the specified subdirectory, DataSync must be able to mount the SMB share and access all of its data. For more information, see required permissions for SMB locations.
746
746
  */
747
747
  Subdirectory: SmbSubdirectory;
748
748
  /**
749
- * The name of the SMB server. This value is the IP address or Domain Name Service (DNS) name of the SMB server. An agent that is installed on-premises uses this hostname to mount the SMB server in a network. This name must either be DNS-compliant or must be an IP version 4 (IPv4) address.
749
+ * Specifies the Domain Name Service (DNS) name or IP address of the SMB file server that your DataSync agent will mount. You can't specify an IP version 6 (IPv6) address.
750
750
  */
751
751
  ServerHostname: ServerHostname;
752
752
  /**
753
- * The user who can mount the share, has the permissions to access files and folders in the SMB share. For information about choosing a user name that ensures sufficient permissions to files, folders, and metadata, see the User setting for SMB locations.
753
+ * Specifies the user name that can mount your SMB file server and has permission to access the files and folders involved in your transfer. For information about choosing a user with the right level of access for your transfer, see required permissions for SMB locations.
754
754
  */
755
755
  User: SmbUser;
756
756
  /**
757
- * The name of the Windows domain that the SMB server belongs to.
757
+ * Specifies the Windows domain name that your SMB file server belongs to. For more information, see required permissions for SMB locations.
758
758
  */
759
759
  Domain?: SmbDomain;
760
760
  /**
761
- * The password of the user who can mount the share, has the permissions to access files and folders in the SMB share.
761
+ * Specifies the password of the user who can mount your SMB file server and has permission to access the files and folders involved in your transfer. For more information, see required permissions for SMB locations.
762
762
  */
763
763
  Password: SmbPassword;
764
764
  /**
765
- * The Amazon Resource Names (ARNs) of agents to use for a Simple Message Block (SMB) location.
765
+ * Specifies the DataSync agent (or agents) which you want to connect to your SMB file server. You specify an agent by using its Amazon Resource Name (ARN).
766
766
  */
767
767
  AgentArns: AgentArnList;
768
768
  /**
769
- * The mount options used by DataSync to access the SMB server.
769
+ * Specifies the version of the SMB protocol that DataSync uses to access your SMB file server.
770
770
  */
771
771
  MountOptions?: SmbMountOptions;
772
772
  /**
773
- * The key-value pair that represents the tag that you want to add to the location. The value can be an empty string. We recommend using tags to name your resources.
773
+ * Specifies labels that help you categorize, filter, and search for your Amazon Web Services resources. We recommend creating at least a name tag for your location.
774
774
  */
775
775
  Tags?: InputTagList;
776
776
  }
777
777
  export interface CreateLocationSmbResponse {
778
778
  /**
779
- * The Amazon Resource Name (ARN) of the source SMB file system location that is created.
779
+ * The ARN of the SMB location that you created.
780
780
  */
781
781
  LocationArn?: LocationArn;
782
782
  }
@@ -850,13 +850,13 @@ declare namespace DataSync {
850
850
  }
851
851
  export interface DescribeAgentRequest {
852
852
  /**
853
- * The Amazon Resource Name (ARN) of the agent to describe.
853
+ * Specifies the Amazon Resource Name (ARN) of the DataSync agent to describe.
854
854
  */
855
855
  AgentArn: AgentArn;
856
856
  }
857
857
  export interface DescribeAgentResponse {
858
858
  /**
859
- * The Amazon Resource Name (ARN) of the agent.
859
+ * The ARN of the agent.
860
860
  */
861
861
  AgentArn?: AgentArn;
862
862
  /**
@@ -1447,21 +1447,21 @@ declare namespace DataSync {
1447
1447
  export type KmsKeyProviderUri = string;
1448
1448
  export interface ListAgentsRequest {
1449
1449
  /**
1450
- * The maximum number of agents to list.
1450
+ * Specifies the maximum number of DataSync agents to list in a response. By default, a response shows a maximum of 100 agents.
1451
1451
  */
1452
1452
  MaxResults?: MaxResults;
1453
1453
  /**
1454
- * An opaque string that indicates the position at which to begin the next list of agents.
1454
+ * Specifies an opaque string that indicates the position to begin the next list of results in the response.
1455
1455
  */
1456
1456
  NextToken?: NextToken;
1457
1457
  }
1458
1458
  export interface ListAgentsResponse {
1459
1459
  /**
1460
- * A list of agents in your account.
1460
+ * A list of DataSync agents in your Amazon Web Services account in the Amazon Web Services Region specified in the request. The list is ordered by the agents' Amazon Resource Names (ARNs).
1461
1461
  */
1462
1462
  Agents?: AgentList;
1463
1463
  /**
1464
- * An opaque string that indicates the position at which to begin returning the next list of agents.
1464
+ * The opaque string that indicates the position to begin the next list of results in the response.
1465
1465
  */
1466
1466
  NextToken?: NextToken;
1467
1467
  }
@@ -1624,7 +1624,7 @@ declare namespace DataSync {
1624
1624
  */
1625
1625
  VerifyMode?: VerifyMode;
1626
1626
  /**
1627
- * Specifies whether data at the destination location should be overwritten or preserved. If set to NEVER, a destination file for example will not be replaced by a source file (even if the destination file differs from the source file). If you modify files in the destination and you sync the files, you can use this value to protect against overwriting those changes. Some storage classes have specific behaviors that can affect your Amazon S3 storage cost. For detailed information, see Considerations when working with Amazon S3 storage classes in DataSync .
1627
+ * Specifies whether data at the destination location should be overwritten or preserved. If set to NEVER, a destination file for example will not be replaced by a source file (even if the destination file differs from the source file). If you modify files in the destination and you sync the files, you can use this value to protect against overwriting those changes. Some storage classes have specific behaviors that can affect your Amazon S3 storage cost. For detailed information, see Considerations when working with Amazon S3 storage classes in DataSync.
1628
1628
  */
1629
1629
  OverwriteMode?: OverwriteMode;
1630
1630
  /**
@@ -1644,7 +1644,7 @@ declare namespace DataSync {
1644
1644
  */
1645
1645
  Gid?: Gid;
1646
1646
  /**
1647
- * Specifies whether files in the destination location that don't exist in the source should be preserved. This option can affect your Amazon S3 storage cost. If your task deletes objects, you might incur minimum storage duration charges for certain storage classes. For detailed information, see Considerations when working with Amazon S3 storage classes in DataSync . Default value: PRESERVE PRESERVE: Ignore such destination files (recommended). REMOVE: Delete destination files that aren’t present in the source.
1647
+ * Specifies whether files in the destination location that don't exist in the source should be preserved. This option can affect your Amazon S3 storage cost. If your task deletes objects, you might incur minimum storage duration charges for certain storage classes. For detailed information, see Considerations when working with Amazon S3 storage classes in DataSync. Default value: PRESERVE PRESERVE: Ignore such destination files (recommended). REMOVE: Delete destination files that aren’t present in the source. If you set this parameter to REMOVE, you can't set TransferMode to ALL. When you transfer all data, DataSync doesn't scan your destination location and doesn't know what to delete.
1648
1648
  */
1649
1649
  PreserveDeletedFiles?: PreserveDeletedFiles;
1650
1650
  /**
@@ -1730,7 +1730,7 @@ declare namespace DataSync {
1730
1730
  export type SmbDomain = string;
1731
1731
  export interface SmbMountOptions {
1732
1732
  /**
1733
- * Specifies the SMB version that you want DataSync to use when mounting your SMB share. If you don't specify a version, DataSync defaults to AUTOMATIC and chooses a version based on negotiation with the SMB server.
1733
+ * By default, DataSync automatically chooses an SMB protocol version based on negotiation with your SMB file server. You also can configure DataSync to use a specific SMB version, but we recommend doing this only if DataSync has trouble negotiating with the SMB file server automatically. These are the following options for configuring the SMB version: AUTOMATIC (default): DataSync and the SMB file server negotiate a protocol version that they mutually support. (DataSync supports SMB versions 1.0 and later.) This is the recommended option. If you instead choose a specific version that your file server doesn't support, you may get an Operation Not Supported error. SMB3: Restricts the protocol negotiation to only SMB version 3.0.2. SMB2: Restricts the protocol negotiation to only SMB version 2.1. SMB2_0: Restricts the protocol negotiation to only SMB version 2.0. SMB1: Restricts the protocol negotiation to only SMB version 1.0. The SMB1 option isn't available when creating an Amazon FSx for NetApp ONTAP location.
1734
1734
  */
1735
1735
  Version?: SmbVersion;
1736
1736
  }
@@ -1738,7 +1738,7 @@ declare namespace DataSync {
1738
1738
  export type SmbSecurityDescriptorCopyFlags = "NONE"|"OWNER_DACL"|"OWNER_DACL_SACL"|string;
1739
1739
  export type SmbSubdirectory = string;
1740
1740
  export type SmbUser = string;
1741
- export type SmbVersion = "AUTOMATIC"|"SMB2"|"SMB3"|string;
1741
+ export type SmbVersion = "AUTOMATIC"|"SMB2"|"SMB3"|"SMB1"|"SMB2_0"|string;
1742
1742
  export type SourceNetworkInterfaceArns = NetworkInterfaceArn[];
1743
1743
  export interface StartTaskExecutionRequest {
1744
1744
  /**
@@ -5548,6 +5548,10 @@ declare namespace EC2 {
5548
5548
  * The Amazon Resource Name (ARN) of the Amazon Web Services Outpost on which to allocate the Dedicated Host.
5549
5549
  */
5550
5550
  OutpostArn?: String;
5551
+ /**
5552
+ * Indicates whether to enable or disable host maintenance for the Dedicated Host. For more information, see Host maintenance in the Amazon EC2 User Guide. Default: on
5553
+ */
5554
+ HostMaintenance?: HostMaintenance;
5551
5555
  }
5552
5556
  export interface AllocateHostsResult {
5553
5557
  /**
@@ -21518,6 +21522,10 @@ declare namespace EC2 {
21518
21522
  * The Amazon Resource Name (ARN) of the Amazon Web Services Outpost on which the Dedicated Host is allocated.
21519
21523
  */
21520
21524
  OutpostArn?: String;
21525
+ /**
21526
+ * Indicates whether host maintenance is enabled or disabled for the Dedicated Host.
21527
+ */
21528
+ HostMaintenance?: HostMaintenance;
21521
21529
  }
21522
21530
  export interface HostInstance {
21523
21531
  /**
@@ -21535,6 +21543,7 @@ declare namespace EC2 {
21535
21543
  }
21536
21544
  export type HostInstanceList = HostInstance[];
21537
21545
  export type HostList = Host[];
21546
+ export type HostMaintenance = "on"|"off"|string;
21538
21547
  export interface HostOffering {
21539
21548
  /**
21540
21549
  * The currency of the offering.
@@ -26428,6 +26437,10 @@ declare namespace EC2 {
26428
26437
  * Specifies the instance family to be supported by the Dedicated Host. Specify this parameter to modify a Dedicated Host to support multiple instance types within its current instance family. If you want to modify a Dedicated Host to support a specific instance type only, omit this parameter and specify InstanceType instead. You cannot specify InstanceFamily and InstanceType in the same request.
26429
26438
  */
26430
26439
  InstanceFamily?: String;
26440
+ /**
26441
+ * Indicates whether to enable or disable host maintenance for the Dedicated Host. For more information, see Host maintenance in the Amazon EC2 User Guide.
26442
+ */
26443
+ HostMaintenance?: HostMaintenance;
26431
26444
  }
26432
26445
  export interface ModifyHostsResult {
26433
26446
  /**
@@ -36,11 +36,11 @@ declare class EFS extends Service {
36
36
  */
37
37
  createMountTarget(callback?: (err: AWSError, data: EFS.Types.MountTargetDescription) => void): Request<EFS.Types.MountTargetDescription, AWSError>;
38
38
  /**
39
- * Creates a replication configuration that replicates an existing EFS file system to a new, read-only file system. For more information, see Amazon EFS replication in the Amazon EFS User Guide. The replication configuration specifies the following: Source file system - An existing EFS file system that you want replicated. The source file system cannot be a destination file system in an existing replication configuration. Destination file system configuration - The configuration of the destination file system to which the source file system will be replicated. There can only be one destination file system in a replication configuration. The destination file system configuration consists of the following properties: Amazon Web Services Region - The Amazon Web Services Region in which the destination file system is created. Amazon EFS replication is available in all Amazon Web Services Regions that Amazon EFS is available in, except Africa (Cape Town), Asia Pacific (Hong Kong), Asia Pacific (Jakarta), Europe (Milan), and Middle East (Bahrain). Availability Zone - If you want the destination file system to use EFS One Zone availability and durability, you must specify the Availability Zone to create the file system in. For more information about EFS storage classes, see Amazon EFS storage classes in the Amazon EFS User Guide. Encryption - All destination file systems are created with encryption at rest enabled. You can specify the Key Management Service (KMS) key that is used to encrypt the destination file system. If you don't specify a KMS key, your service-managed KMS key for Amazon EFS is used. After the file system is created, you cannot change the KMS key. The following properties are set by default: Performance mode - The destination file system's performance mode matches that of the source file system, unless the destination file system uses EFS One Zone storage. In that case, the General Purpose performance mode is used. The performance mode cannot be changed. Throughput mode - The destination file system uses the Bursting Throughput mode by default. After the file system is created, you can modify the throughput mode. The following properties are turned off by default: Lifecycle management - EFS lifecycle management and EFS Intelligent-Tiering are not enabled on the destination file system. After the destination file system is created, you can enable EFS lifecycle management and EFS Intelligent-Tiering. Automatic backups - Automatic daily backups not enabled on the destination file system. After the file system is created, you can change this setting. For more information, see Amazon EFS replication in the Amazon EFS User Guide.
39
+ * Creates a replication configuration that replicates an existing EFS file system to a new, read-only file system. For more information, see Amazon EFS replication in the Amazon EFS User Guide. The replication configuration specifies the following: Source file system - An existing EFS file system that you want replicated. The source file system cannot be a destination file system in an existing replication configuration. Destination file system configuration - The configuration of the destination file system to which the source file system will be replicated. There can only be one destination file system in a replication configuration. The destination file system configuration consists of the following properties: Amazon Web Services Region - The Amazon Web Services Region in which the destination file system is created. Amazon EFS replication is available in all Amazon Web Services Regions that Amazon EFS is available in, except Africa (Cape Town), Asia Pacific (Hong Kong), Asia Pacific (Jakarta), Europe (Milan), and Middle East (Bahrain). Availability Zone - If you want the destination file system to use EFS One Zone availability and durability, you must specify the Availability Zone to create the file system in. For more information about EFS storage classes, see Amazon EFS storage classes in the Amazon EFS User Guide. Encryption - All destination file systems are created with encryption at rest enabled. You can specify the Key Management Service (KMS) key that is used to encrypt the destination file system. If you don't specify a KMS key, your service-managed KMS key for Amazon EFS is used. After the file system is created, you cannot change the KMS key. The following properties are set by default: Performance mode - The destination file system's performance mode matches that of the source file system, unless the destination file system uses EFS One Zone storage. In that case, the General Purpose performance mode is used. The performance mode cannot be changed. Throughput mode - The destination file system's throughput mode matches that of the source file system. After the file system is created, you can modify the throughput mode. The following properties are turned off by default: Lifecycle management - EFS lifecycle management and EFS Intelligent-Tiering are not enabled on the destination file system. After the destination file system is created, you can enable EFS lifecycle management and EFS Intelligent-Tiering. Automatic backups - Automatic daily backups not enabled on the destination file system. After the file system is created, you can change this setting. For more information, see Amazon EFS replication in the Amazon EFS User Guide.
40
40
  */
41
41
  createReplicationConfiguration(params: EFS.Types.CreateReplicationConfigurationRequest, callback?: (err: AWSError, data: EFS.Types.ReplicationConfigurationDescription) => void): Request<EFS.Types.ReplicationConfigurationDescription, AWSError>;
42
42
  /**
43
- * Creates a replication configuration that replicates an existing EFS file system to a new, read-only file system. For more information, see Amazon EFS replication in the Amazon EFS User Guide. The replication configuration specifies the following: Source file system - An existing EFS file system that you want replicated. The source file system cannot be a destination file system in an existing replication configuration. Destination file system configuration - The configuration of the destination file system to which the source file system will be replicated. There can only be one destination file system in a replication configuration. The destination file system configuration consists of the following properties: Amazon Web Services Region - The Amazon Web Services Region in which the destination file system is created. Amazon EFS replication is available in all Amazon Web Services Regions that Amazon EFS is available in, except Africa (Cape Town), Asia Pacific (Hong Kong), Asia Pacific (Jakarta), Europe (Milan), and Middle East (Bahrain). Availability Zone - If you want the destination file system to use EFS One Zone availability and durability, you must specify the Availability Zone to create the file system in. For more information about EFS storage classes, see Amazon EFS storage classes in the Amazon EFS User Guide. Encryption - All destination file systems are created with encryption at rest enabled. You can specify the Key Management Service (KMS) key that is used to encrypt the destination file system. If you don't specify a KMS key, your service-managed KMS key for Amazon EFS is used. After the file system is created, you cannot change the KMS key. The following properties are set by default: Performance mode - The destination file system's performance mode matches that of the source file system, unless the destination file system uses EFS One Zone storage. In that case, the General Purpose performance mode is used. The performance mode cannot be changed. Throughput mode - The destination file system uses the Bursting Throughput mode by default. After the file system is created, you can modify the throughput mode. The following properties are turned off by default: Lifecycle management - EFS lifecycle management and EFS Intelligent-Tiering are not enabled on the destination file system. After the destination file system is created, you can enable EFS lifecycle management and EFS Intelligent-Tiering. Automatic backups - Automatic daily backups not enabled on the destination file system. After the file system is created, you can change this setting. For more information, see Amazon EFS replication in the Amazon EFS User Guide.
43
+ * Creates a replication configuration that replicates an existing EFS file system to a new, read-only file system. For more information, see Amazon EFS replication in the Amazon EFS User Guide. The replication configuration specifies the following: Source file system - An existing EFS file system that you want replicated. The source file system cannot be a destination file system in an existing replication configuration. Destination file system configuration - The configuration of the destination file system to which the source file system will be replicated. There can only be one destination file system in a replication configuration. The destination file system configuration consists of the following properties: Amazon Web Services Region - The Amazon Web Services Region in which the destination file system is created. Amazon EFS replication is available in all Amazon Web Services Regions that Amazon EFS is available in, except Africa (Cape Town), Asia Pacific (Hong Kong), Asia Pacific (Jakarta), Europe (Milan), and Middle East (Bahrain). Availability Zone - If you want the destination file system to use EFS One Zone availability and durability, you must specify the Availability Zone to create the file system in. For more information about EFS storage classes, see Amazon EFS storage classes in the Amazon EFS User Guide. Encryption - All destination file systems are created with encryption at rest enabled. You can specify the Key Management Service (KMS) key that is used to encrypt the destination file system. If you don't specify a KMS key, your service-managed KMS key for Amazon EFS is used. After the file system is created, you cannot change the KMS key. The following properties are set by default: Performance mode - The destination file system's performance mode matches that of the source file system, unless the destination file system uses EFS One Zone storage. In that case, the General Purpose performance mode is used. The performance mode cannot be changed. Throughput mode - The destination file system's throughput mode matches that of the source file system. After the file system is created, you can modify the throughput mode. The following properties are turned off by default: Lifecycle management - EFS lifecycle management and EFS Intelligent-Tiering are not enabled on the destination file system. After the destination file system is created, you can enable EFS lifecycle management and EFS Intelligent-Tiering. Automatic backups - Automatic daily backups not enabled on the destination file system. After the file system is created, you can change this setting. For more information, see Amazon EFS replication in the Amazon EFS User Guide.
44
44
  */
45
45
  createReplicationConfiguration(callback?: (err: AWSError, data: EFS.Types.ReplicationConfigurationDescription) => void): Request<EFS.Types.ReplicationConfigurationDescription, AWSError>;
46
46
  /**
@@ -288,7 +288,7 @@ declare namespace EFS {
288
288
  */
289
289
  RootDirectory?: RootDirectory;
290
290
  /**
291
- * Identified the Amazon Web Services account that owns the access point resource.
291
+ * Identifies the Amazon Web Services account that owns the access point resource.
292
292
  */
293
293
  OwnerId?: AwsAccountId;
294
294
  /**
@@ -705,7 +705,7 @@ declare namespace EFS {
705
705
  export type FileSystemArn = string;
706
706
  export interface FileSystemDescription {
707
707
  /**
708
- * The Amazon Web Services account that created the file system. If the file system was created by an IAM user, the parent account to which the user belongs is the owner.
708
+ * The Amazon Web Services account that created the file system.
709
709
  */
710
710
  OwnerId: AwsAccountId;
711
711
  /**