cdk-comprehend-s3olap 2.0.94 → 2.0.95

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.
@@ -581,11 +581,11 @@ declare class EC2 extends Service {
581
581
  */
582
582
  createLaunchTemplateVersion(callback?: (err: AWSError, data: EC2.Types.CreateLaunchTemplateVersionResult) => void): Request<EC2.Types.CreateLaunchTemplateVersionResult, AWSError>;
583
583
  /**
584
- * Creates a static route for the specified local gateway route table.
584
+ * Creates a static route for the specified local gateway route table. You must specify one of the following targets: LocalGatewayVirtualInterfaceGroupId NetworkInterfaceId
585
585
  */
586
586
  createLocalGatewayRoute(params: EC2.Types.CreateLocalGatewayRouteRequest, callback?: (err: AWSError, data: EC2.Types.CreateLocalGatewayRouteResult) => void): Request<EC2.Types.CreateLocalGatewayRouteResult, AWSError>;
587
587
  /**
588
- * Creates a static route for the specified local gateway route table.
588
+ * Creates a static route for the specified local gateway route table. You must specify one of the following targets: LocalGatewayVirtualInterfaceGroupId NetworkInterfaceId
589
589
  */
590
590
  createLocalGatewayRoute(callback?: (err: AWSError, data: EC2.Types.CreateLocalGatewayRouteResult) => void): Request<EC2.Types.CreateLocalGatewayRouteResult, AWSError>;
591
591
  /**
@@ -3524,6 +3524,14 @@ declare class EC2 extends Service {
3524
3524
  * Modifies a launch template. You can specify which version of the launch template to set as the default version. When launching an instance, the default version applies when a launch template version is not specified.
3525
3525
  */
3526
3526
  modifyLaunchTemplate(callback?: (err: AWSError, data: EC2.Types.ModifyLaunchTemplateResult) => void): Request<EC2.Types.ModifyLaunchTemplateResult, AWSError>;
3527
+ /**
3528
+ * Modifies the specified local gateway route.
3529
+ */
3530
+ modifyLocalGatewayRoute(params: EC2.Types.ModifyLocalGatewayRouteRequest, callback?: (err: AWSError, data: EC2.Types.ModifyLocalGatewayRouteResult) => void): Request<EC2.Types.ModifyLocalGatewayRouteResult, AWSError>;
3531
+ /**
3532
+ * Modifies the specified local gateway route.
3533
+ */
3534
+ modifyLocalGatewayRoute(callback?: (err: AWSError, data: EC2.Types.ModifyLocalGatewayRouteResult) => void): Request<EC2.Types.ModifyLocalGatewayRouteResult, AWSError>;
3527
3535
  /**
3528
3536
  * Modifies the specified managed prefix list. Adding or removing entries in a prefix list creates a new version of the prefix list. Changing the name of the prefix list does not affect the version. If you specify a current version number that does not match the true current version number, the request fails.
3529
3537
  */
@@ -4572,7 +4580,7 @@ declare namespace EC2 {
4572
4580
  }
4573
4581
  export type AcceleratorManufacturer = "nvidia"|"amd"|"amazon-web-services"|"xilinx"|string;
4574
4582
  export type AcceleratorManufacturerSet = AcceleratorManufacturer[];
4575
- export type AcceleratorName = "a100"|"v100"|"k80"|"t4"|"m60"|"radeon-pro-v520"|"vu9p"|string;
4583
+ export type AcceleratorName = "a100"|"v100"|"k80"|"t4"|"m60"|"radeon-pro-v520"|"vu9p"|"inferentia"|"k520"|string;
4576
4584
  export type AcceleratorNameSet = AcceleratorName[];
4577
4585
  export interface AcceleratorTotalMemoryMiB {
4578
4586
  /**
@@ -8523,11 +8531,15 @@ declare namespace EC2 {
8523
8531
  /**
8524
8532
  * The ID of the virtual interface group.
8525
8533
  */
8526
- LocalGatewayVirtualInterfaceGroupId: LocalGatewayVirtualInterfaceGroupId;
8534
+ LocalGatewayVirtualInterfaceGroupId?: LocalGatewayVirtualInterfaceGroupId;
8527
8535
  /**
8528
8536
  * Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.
8529
8537
  */
8530
8538
  DryRun?: Boolean;
8539
+ /**
8540
+ * The ID of the network interface.
8541
+ */
8542
+ NetworkInterfaceId?: NetworkInterfaceId;
8531
8543
  }
8532
8544
  export interface CreateLocalGatewayRouteResult {
8533
8545
  /**
@@ -23513,6 +23525,18 @@ declare namespace EC2 {
23513
23525
  * The ID of the Amazon Web Services account that owns the local gateway route.
23514
23526
  */
23515
23527
  OwnerId?: String;
23528
+ /**
23529
+ * The ID of the subnet.
23530
+ */
23531
+ SubnetId?: SubnetId;
23532
+ /**
23533
+ * The ID of the customer-owned address pool.
23534
+ */
23535
+ CoipPoolId?: CoipPoolId;
23536
+ /**
23537
+ * The ID of the network interface.
23538
+ */
23539
+ NetworkInterfaceId?: NetworkInterfaceId;
23516
23540
  }
23517
23541
  export type LocalGatewayRouteList = LocalGatewayRoute[];
23518
23542
  export type LocalGatewayRouteState = "pending"|"active"|"blackhole"|"deleting"|"deleted"|string;
@@ -23545,8 +23569,13 @@ declare namespace EC2 {
23545
23569
  * The tags assigned to the local gateway route table.
23546
23570
  */
23547
23571
  Tags?: TagList;
23572
+ /**
23573
+ * The mode of the local gateway route table.
23574
+ */
23575
+ Mode?: LocalGatewayRouteTableMode;
23548
23576
  }
23549
23577
  export type LocalGatewayRouteTableIdSet = LocalGatewayRoutetableId[];
23578
+ export type LocalGatewayRouteTableMode = "direct-vpc-routing"|"coip"|string;
23550
23579
  export type LocalGatewayRouteTableSet = LocalGatewayRouteTable[];
23551
23580
  export interface LocalGatewayRouteTableVirtualInterfaceGroupAssociation {
23552
23581
  /**
@@ -24611,6 +24640,27 @@ declare namespace EC2 {
24611
24640
  */
24612
24641
  LaunchTemplate?: LaunchTemplate;
24613
24642
  }
24643
+ export interface ModifyLocalGatewayRouteRequest {
24644
+ /**
24645
+ * The CIDR block used for destination matches. The value that you provide must match the CIDR of an existing route in the table.
24646
+ */
24647
+ DestinationCidrBlock: String;
24648
+ /**
24649
+ * The ID of the local gateway route table.
24650
+ */
24651
+ LocalGatewayRouteTableId: LocalGatewayRoutetableId;
24652
+ /**
24653
+ * The ID of the network interface.
24654
+ */
24655
+ NetworkInterfaceId: NetworkInterfaceId;
24656
+ /**
24657
+ * Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.
24658
+ */
24659
+ DryRun?: Boolean;
24660
+ }
24661
+ export interface ModifyLocalGatewayRouteResult {
24662
+ Route?: LocalGatewayRoute;
24663
+ }
24614
24664
  export interface ModifyManagedPrefixListRequest {
24615
24665
  /**
24616
24666
  * Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.
@@ -52,11 +52,11 @@ declare class Evidently extends Service {
52
52
  */
53
53
  createProject(callback?: (err: AWSError, data: Evidently.Types.CreateProjectResponse) => void): Request<Evidently.Types.CreateProjectResponse, AWSError>;
54
54
  /**
55
- * Use this operation to define a segment of your audience. A segment is a portion of your audience that share one or more characteristics. Examples could be Chrome browser users, users in Europe, or Firefox browser users in Europe who also fit other criteria that your application collects, such as age. Using a segment in an experiment limits that experiment to evaluate only the users who match the segment criteria. Using one or more segments in a launch allow you to define different traffic splits for the different audience segments. &lt;p&gt;For more information about segment pattern syntax, see &lt;a href=&quot;https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/CloudWatch-Evidently-segments-syntax.html&quot;&gt; Segment rule pattern syntax&lt;/a&gt;.&lt;/p&gt; &lt;p&gt;The pattern that you define for a segment is matched against the value of &lt;code&gt;evaluationContext&lt;/code&gt;, which is passed into Evidently in the &lt;a href=&quot;https://docs.aws.amazon.com/cloudwatchevidently/latest/APIReference/API_EvaluateFeature.html&quot;&gt;EvaluateFeature&lt;/a&gt; operation, when Evidently assigns a feature variation to a user.&lt;/p&gt;
55
+ * Use this operation to define a segment of your audience. A segment is a portion of your audience that share one or more characteristics. Examples could be Chrome browser users, users in Europe, or Firefox browser users in Europe who also fit other criteria that your application collects, such as age. Using a segment in an experiment limits that experiment to evaluate only the users who match the segment criteria. Using one or more segments in a launch allows you to define different traffic splits for the different audience segments. &lt;p&gt;For more information about segment pattern syntax, see &lt;a href=&quot;https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/CloudWatch-Evidently-segments.html#CloudWatch-Evidently-segments-syntax.html&quot;&gt; Segment rule pattern syntax&lt;/a&gt;.&lt;/p&gt; &lt;p&gt;The pattern that you define for a segment is matched against the value of &lt;code&gt;evaluationContext&lt;/code&gt;, which is passed into Evidently in the &lt;a href=&quot;https://docs.aws.amazon.com/cloudwatchevidently/latest/APIReference/API_EvaluateFeature.html&quot;&gt;EvaluateFeature&lt;/a&gt; operation, when Evidently assigns a feature variation to a user.&lt;/p&gt;
56
56
  */
57
57
  createSegment(params: Evidently.Types.CreateSegmentRequest, callback?: (err: AWSError, data: Evidently.Types.CreateSegmentResponse) => void): Request<Evidently.Types.CreateSegmentResponse, AWSError>;
58
58
  /**
59
- * Use this operation to define a segment of your audience. A segment is a portion of your audience that share one or more characteristics. Examples could be Chrome browser users, users in Europe, or Firefox browser users in Europe who also fit other criteria that your application collects, such as age. Using a segment in an experiment limits that experiment to evaluate only the users who match the segment criteria. Using one or more segments in a launch allow you to define different traffic splits for the different audience segments. &lt;p&gt;For more information about segment pattern syntax, see &lt;a href=&quot;https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/CloudWatch-Evidently-segments-syntax.html&quot;&gt; Segment rule pattern syntax&lt;/a&gt;.&lt;/p&gt; &lt;p&gt;The pattern that you define for a segment is matched against the value of &lt;code&gt;evaluationContext&lt;/code&gt;, which is passed into Evidently in the &lt;a href=&quot;https://docs.aws.amazon.com/cloudwatchevidently/latest/APIReference/API_EvaluateFeature.html&quot;&gt;EvaluateFeature&lt;/a&gt; operation, when Evidently assigns a feature variation to a user.&lt;/p&gt;
59
+ * Use this operation to define a segment of your audience. A segment is a portion of your audience that share one or more characteristics. Examples could be Chrome browser users, users in Europe, or Firefox browser users in Europe who also fit other criteria that your application collects, such as age. Using a segment in an experiment limits that experiment to evaluate only the users who match the segment criteria. Using one or more segments in a launch allows you to define different traffic splits for the different audience segments. &lt;p&gt;For more information about segment pattern syntax, see &lt;a href=&quot;https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/CloudWatch-Evidently-segments.html#CloudWatch-Evidently-segments-syntax.html&quot;&gt; Segment rule pattern syntax&lt;/a&gt;.&lt;/p&gt; &lt;p&gt;The pattern that you define for a segment is matched against the value of &lt;code&gt;evaluationContext&lt;/code&gt;, which is passed into Evidently in the &lt;a href=&quot;https://docs.aws.amazon.com/cloudwatchevidently/latest/APIReference/API_EvaluateFeature.html&quot;&gt;EvaluateFeature&lt;/a&gt; operation, when Evidently assigns a feature variation to a user.&lt;/p&gt;
60
60
  */
61
61
  createSegment(callback?: (err: AWSError, data: Evidently.Types.CreateSegmentResponse) => void): Request<Evidently.Types.CreateSegmentResponse, AWSError>;
62
62
  /**
@@ -116,11 +116,11 @@ declare class Evidently extends Service {
116
116
  */
117
117
  getExperiment(callback?: (err: AWSError, data: Evidently.Types.GetExperimentResponse) => void): Request<Evidently.Types.GetExperimentResponse, AWSError>;
118
118
  /**
119
- * Retrieves the results of a running or completed experiment. No results are available until there have been 100 events for each variation and at least 10 minutes have passed since the start of the experiment. Experiment results are available up to 63 days after the start of the experiment. They are not available after that because of CloudWatch data retention policies.
119
+ * Retrieves the results of a running or completed experiment. No results are available until there have been 100 events for each variation and at least 10 minutes have passed since the start of the experiment. To increase the statistical power, Evidently performs an additional offline p-value analysis at the end of the experiment. Offline p-value analysis can detect statistical significance in some cases where the anytime p-values used during the experiment do not find statistical significance. Experiment results are available up to 63 days after the start of the experiment. They are not available after that because of CloudWatch data retention policies.
120
120
  */
121
121
  getExperimentResults(params: Evidently.Types.GetExperimentResultsRequest, callback?: (err: AWSError, data: Evidently.Types.GetExperimentResultsResponse) => void): Request<Evidently.Types.GetExperimentResultsResponse, AWSError>;
122
122
  /**
123
- * Retrieves the results of a running or completed experiment. No results are available until there have been 100 events for each variation and at least 10 minutes have passed since the start of the experiment. Experiment results are available up to 63 days after the start of the experiment. They are not available after that because of CloudWatch data retention policies.
123
+ * Retrieves the results of a running or completed experiment. No results are available until there have been 100 events for each variation and at least 10 minutes have passed since the start of the experiment. To increase the statistical power, Evidently performs an additional offline p-value analysis at the end of the experiment. Offline p-value analysis can detect statistical significance in some cases where the anytime p-values used during the experiment do not find statistical significance. Experiment results are available up to 63 days after the start of the experiment. They are not available after that because of CloudWatch data retention policies.
124
124
  */
125
125
  getExperimentResults(callback?: (err: AWSError, data: Evidently.Types.GetExperimentResultsResponse) => void): Request<Evidently.Types.GetExperimentResultsResponse, AWSError>;
126
126
  /**
@@ -317,6 +317,7 @@ declare class Evidently extends Service {
317
317
  updateProjectDataDelivery(callback?: (err: AWSError, data: Evidently.Types.UpdateProjectDataDeliveryResponse) => void): Request<Evidently.Types.UpdateProjectDataDeliveryResponse, AWSError>;
318
318
  }
319
319
  declare namespace Evidently {
320
+ export type AppConfigResourceId = string;
320
321
  export type Arn = string;
321
322
  export interface BatchEvaluateFeatureRequest {
322
323
  /**
@@ -477,6 +478,10 @@ declare namespace Evidently {
477
478
  launch: Launch;
478
479
  }
479
480
  export interface CreateProjectRequest {
481
+ /**
482
+ * Use this parameter if the project will use client-side evaluation powered by AppConfig. Client-side evaluation allows your application to assign variations to user sessions locally instead of by calling the EvaluateFeature operation. This mitigates the latency and availability risks that come with an API call. For more information, see Client-side evaluation - powered by AppConfig. This parameter is a structure that contains information about the AppConfig application and environment that will be used as for client-side evaluation. To create a project that uses client-side evaluation, you must have the evidently:ExportProjectAsConfiguration permission.
483
+ */
484
+ appConfigResource?: ProjectAppConfigResourceConfig;
480
485
  /**
481
486
  * A structure that contains information about where Evidently is to store evaluation events for longer term storage, if you choose to do so. If you choose not to store these events, Evidently deletes them after using them to produce metrics and other experiment results that you can view.
482
487
  */
@@ -1470,6 +1475,10 @@ declare namespace Evidently {
1470
1475
  * The number of ongoing launches currently in the project.
1471
1476
  */
1472
1477
  activeLaunchCount?: Long;
1478
+ /**
1479
+ * This structure defines the configuration of how your application integrates with AppConfig to run client-side evaluation.
1480
+ */
1481
+ appConfigResource?: ProjectAppConfigResource;
1473
1482
  /**
1474
1483
  * The name or ARN of the project.
1475
1484
  */
@@ -1515,6 +1524,30 @@ declare namespace Evidently {
1515
1524
  */
1516
1525
  tags?: TagMap;
1517
1526
  }
1527
+ export interface ProjectAppConfigResource {
1528
+ /**
1529
+ * The ID of the AppConfig application to use for client-side evaluation.
1530
+ */
1531
+ applicationId: AppConfigResourceId;
1532
+ /**
1533
+ * The ID of the AppConfig profile to use for client-side evaluation.
1534
+ */
1535
+ configurationProfileId: AppConfigResourceId;
1536
+ /**
1537
+ * The ID of the AppConfig environment to use for client-side evaluation. This must be an environment that is within the application that you specify for applicationId.
1538
+ */
1539
+ environmentId: AppConfigResourceId;
1540
+ }
1541
+ export interface ProjectAppConfigResourceConfig {
1542
+ /**
1543
+ * The ID of the AppConfig application to use for client-side evaluation.
1544
+ */
1545
+ applicationId?: AppConfigResourceId;
1546
+ /**
1547
+ * The ID of the AppConfig environment to use for client-side evaluation. This must be an environment that is within the application that you specify for applicationId.
1548
+ */
1549
+ environmentId?: AppConfigResourceId;
1550
+ }
1518
1551
  export type ProjectArn = string;
1519
1552
  export interface ProjectDataDelivery {
1520
1553
  /**
@@ -1754,7 +1787,7 @@ declare namespace Evidently {
1754
1787
  */
1755
1788
  name: SegmentName;
1756
1789
  /**
1757
- *
1790
+ * The pattern that defines the attributes to use to evalute whether a user session will be in the segment. For more information about the pattern syntax, see Segment rule pattern syntax.
1758
1791
  */
1759
1792
  pattern: SegmentPattern;
1760
1793
  /**
@@ -2097,6 +2130,10 @@ declare namespace Evidently {
2097
2130
  project: Project;
2098
2131
  }
2099
2132
  export interface UpdateProjectRequest {
2133
+ /**
2134
+ * Use this parameter if the project will use client-side evaluation powered by AppConfig. Client-side evaluation allows your application to assign variations to user sessions locally instead of by calling the EvaluateFeature operation. This mitigates the latency and availability risks that come with an API call. allows you to This parameter is a structure that contains information about the AppConfig application that will be used for client-side evaluation.
2135
+ */
2136
+ appConfigResource?: ProjectAppConfigResourceConfig;
2100
2137
  /**
2101
2138
  * An optional description of the project.
2102
2139
  */
@@ -648,31 +648,31 @@ declare namespace Kendra {
648
648
  */
649
649
  NotFilter?: AttributeFilter;
650
650
  /**
651
- * Performs an equals operation on two document attributes.
651
+ * Performs an equals operation on two document attributes or metadata fields.
652
652
  */
653
653
  EqualsTo?: DocumentAttribute;
654
654
  /**
655
- * Returns true when a document contains all of the specified document attributes. This filter is only applicable to StringListValue metadata.
655
+ * Returns true when a document contains all of the specified document attributes or metadata fields. This filter is only applicable to StringListValue metadata.
656
656
  */
657
657
  ContainsAll?: DocumentAttribute;
658
658
  /**
659
- * Returns true when a document contains any of the specified document attributes. This filter is only applicable to StringListValue metadata.
659
+ * Returns true when a document contains any of the specified document attributes or metadata fields. This filter is only applicable to StringListValue metadata.
660
660
  */
661
661
  ContainsAny?: DocumentAttribute;
662
662
  /**
663
- * Performs a greater than operation on two document attributes. Use with a document attribute of type Date or Long.
663
+ * Performs a greater than operation on two document attributes or metadata fields. Use with a document attribute of type Date or Long.
664
664
  */
665
665
  GreaterThan?: DocumentAttribute;
666
666
  /**
667
- * Performs a greater or equals than operation on two document attributes. Use with a document attribute of type Date or Long.
667
+ * Performs a greater or equals than operation on two document attributes or metadata fields. Use with a document attribute of type Date or Long.
668
668
  */
669
669
  GreaterThanOrEquals?: DocumentAttribute;
670
670
  /**
671
- * Performs a less than operation on two document attributes. Use with a document attribute of type Date or Long.
671
+ * Performs a less than operation on two document attributes or metadata fields. Use with a document attribute of type Date or Long.
672
672
  */
673
673
  LessThan?: DocumentAttribute;
674
674
  /**
675
- * Performs a less than or equals operation on two document attributes. Use with a document attribute of type Date or Long.
675
+ * Performs a less than or equals operation on two document attributes or metadata fields. Use with a document attribute of type Date or Long.
676
676
  */
677
677
  LessThanOrEquals?: DocumentAttribute;
678
678
  }
@@ -4289,7 +4289,7 @@ declare namespace Kendra {
4289
4289
  }
4290
4290
  export type SharePointOnlineAuthenticationType = "HTTP_BASIC"|"OAUTH2"|string;
4291
4291
  export type SharePointUrlList = Url[];
4292
- export type SharePointVersion = "SHAREPOINT_2013"|"SHAREPOINT_2016"|"SHAREPOINT_ONLINE"|string;
4292
+ export type SharePointVersion = "SHAREPOINT_2013"|"SHAREPOINT_2016"|"SHAREPOINT_ONLINE"|"SHAREPOINT_2019"|string;
4293
4293
  export type SharedDriveId = string;
4294
4294
  export type SinceCrawlDate = string;
4295
4295
  export type SiteId = string;
@@ -100,6 +100,14 @@ declare class Transfer extends Service {
100
100
  * Deletes the agreement that's specified in the provided ConnectorId.
101
101
  */
102
102
  deleteConnector(callback?: (err: AWSError, data: {}) => void): Request<{}, AWSError>;
103
+ /**
104
+ * Deletes the host key that's specified in the HoskKeyId parameter.
105
+ */
106
+ deleteHostKey(params: Transfer.Types.DeleteHostKeyRequest, callback?: (err: AWSError, data: {}) => void): Request<{}, AWSError>;
107
+ /**
108
+ * Deletes the host key that's specified in the HoskKeyId parameter.
109
+ */
110
+ deleteHostKey(callback?: (err: AWSError, data: {}) => void): Request<{}, AWSError>;
103
111
  /**
104
112
  * Deletes the profile that's specified in the ProfileId parameter.
105
113
  */
@@ -180,6 +188,14 @@ declare class Transfer extends Service {
180
188
  * You can use DescribeExecution to check the details of the execution of the specified workflow.
181
189
  */
182
190
  describeExecution(callback?: (err: AWSError, data: Transfer.Types.DescribeExecutionResponse) => void): Request<Transfer.Types.DescribeExecutionResponse, AWSError>;
191
+ /**
192
+ * Returns the details of the host key that's specified by the HostKeyId and ServerId.
193
+ */
194
+ describeHostKey(params: Transfer.Types.DescribeHostKeyRequest, callback?: (err: AWSError, data: Transfer.Types.DescribeHostKeyResponse) => void): Request<Transfer.Types.DescribeHostKeyResponse, AWSError>;
195
+ /**
196
+ * Returns the details of the host key that's specified by the HostKeyId and ServerId.
197
+ */
198
+ describeHostKey(callback?: (err: AWSError, data: Transfer.Types.DescribeHostKeyResponse) => void): Request<Transfer.Types.DescribeHostKeyResponse, AWSError>;
183
199
  /**
184
200
  * Returns the details of the profile that's specified by the ProfileId.
185
201
  */
@@ -228,6 +244,14 @@ declare class Transfer extends Service {
228
244
  * Imports the signing and encryption certificates that you need to create local (AS2) profiles and partner profiles.
229
245
  */
230
246
  importCertificate(callback?: (err: AWSError, data: Transfer.Types.ImportCertificateResponse) => void): Request<Transfer.Types.ImportCertificateResponse, AWSError>;
247
+ /**
248
+ * Adds a host key to the server specified by the ServerId parameter.
249
+ */
250
+ importHostKey(params: Transfer.Types.ImportHostKeyRequest, callback?: (err: AWSError, data: Transfer.Types.ImportHostKeyResponse) => void): Request<Transfer.Types.ImportHostKeyResponse, AWSError>;
251
+ /**
252
+ * Adds a host key to the server specified by the ServerId parameter.
253
+ */
254
+ importHostKey(callback?: (err: AWSError, data: Transfer.Types.ImportHostKeyResponse) => void): Request<Transfer.Types.ImportHostKeyResponse, AWSError>;
231
255
  /**
232
256
  * Adds a Secure Shell (SSH) public key to a user account identified by a UserName value assigned to the specific file transfer protocol-enabled server, identified by ServerId. The response returns the UserName value, the ServerId value, and the name of the SshPublicKeyId.
233
257
  */
@@ -276,6 +300,14 @@ declare class Transfer extends Service {
276
300
  * Lists all executions for the specified workflow.
277
301
  */
278
302
  listExecutions(callback?: (err: AWSError, data: Transfer.Types.ListExecutionsResponse) => void): Request<Transfer.Types.ListExecutionsResponse, AWSError>;
303
+ /**
304
+ * Returns a list of host keys for the server specified by the ServerId paramter.
305
+ */
306
+ listHostKeys(params: Transfer.Types.ListHostKeysRequest, callback?: (err: AWSError, data: Transfer.Types.ListHostKeysResponse) => void): Request<Transfer.Types.ListHostKeysResponse, AWSError>;
307
+ /**
308
+ * Returns a list of host keys for the server specified by the ServerId paramter.
309
+ */
310
+ listHostKeys(callback?: (err: AWSError, data: Transfer.Types.ListHostKeysResponse) => void): Request<Transfer.Types.ListHostKeysResponse, AWSError>;
279
311
  /**
280
312
  * Returns a list of the profiles for your system. If you want to limit the results to a certain number, supply a value for the MaxResults parameter. If you ran the command previously and received a value for NextToken, you can supply that value to continue listing profiles from where you left off.
281
313
  */
@@ -412,6 +444,14 @@ declare class Transfer extends Service {
412
444
  * Updates some of the parameters for an existing connector. Provide the ConnectorId for the connector that you want to update, along with the new values for the parameters to update.
413
445
  */
414
446
  updateConnector(callback?: (err: AWSError, data: Transfer.Types.UpdateConnectorResponse) => void): Request<Transfer.Types.UpdateConnectorResponse, AWSError>;
447
+ /**
448
+ * Updates the description for the host key specified by the specified by the ServerId and HostKeyId parameters.
449
+ */
450
+ updateHostKey(params: Transfer.Types.UpdateHostKeyRequest, callback?: (err: AWSError, data: Transfer.Types.UpdateHostKeyResponse) => void): Request<Transfer.Types.UpdateHostKeyResponse, AWSError>;
451
+ /**
452
+ * Updates the description for the host key specified by the specified by the ServerId and HostKeyId parameters.
453
+ */
454
+ updateHostKey(callback?: (err: AWSError, data: Transfer.Types.UpdateHostKeyResponse) => void): Request<Transfer.Types.UpdateHostKeyResponse, AWSError>;
415
455
  /**
416
456
  * Updates some of the parameters for an existing profile. Provide the ProfileId for the profile that you want to update, along with the new values for the parameters to update.
417
457
  */
@@ -858,6 +898,16 @@ declare namespace Transfer {
858
898
  */
859
899
  ConnectorId: ConnectorId;
860
900
  }
901
+ export interface DeleteHostKeyRequest {
902
+ /**
903
+ * Provide the ID of the server that contains the host key that you are deleting.
904
+ */
905
+ ServerId: ServerId;
906
+ /**
907
+ * The ID of the host key that you are deleting.
908
+ */
909
+ HostKeyId: HostKeyId;
910
+ }
861
911
  export interface DeleteProfileRequest {
862
912
  /**
863
913
  * The ID of the profile that you are deleting.
@@ -990,6 +1040,22 @@ declare namespace Transfer {
990
1040
  */
991
1041
  Execution: DescribedExecution;
992
1042
  }
1043
+ export interface DescribeHostKeyRequest {
1044
+ /**
1045
+ * Provide the ID of the server that contains the host key that you want described.
1046
+ */
1047
+ ServerId: ServerId;
1048
+ /**
1049
+ * Provide the ID of the host key that you want described.
1050
+ */
1051
+ HostKeyId: HostKeyId;
1052
+ }
1053
+ export interface DescribeHostKeyResponse {
1054
+ /**
1055
+ * Returns the details for the specified host key.
1056
+ */
1057
+ HostKey: DescribedHostKey;
1058
+ }
993
1059
  export interface DescribeProfileRequest {
994
1060
  /**
995
1061
  * The identifier of the profile that you want described.
@@ -1246,6 +1312,36 @@ declare namespace Transfer {
1246
1312
  */
1247
1313
  Results?: ExecutionResults;
1248
1314
  }
1315
+ export interface DescribedHostKey {
1316
+ /**
1317
+ * The unique Amazon Resource Name (ARN) for the host key.
1318
+ */
1319
+ Arn: Arn;
1320
+ /**
1321
+ * A unique identifier for the host key.
1322
+ */
1323
+ HostKeyId?: HostKeyId;
1324
+ /**
1325
+ * The public key fingerprint, which is a short sequence of bytes used to identify the longer public key.
1326
+ */
1327
+ HostKeyFingerprint?: HostKeyFingerprint;
1328
+ /**
1329
+ * The text description for this host key.
1330
+ */
1331
+ Description?: HostKeyDescription;
1332
+ /**
1333
+ * The encryption algorithm used for the host key. The Type is one of the following values: ssh-rsa ssh-ed25519 ecdsa-sha2-nistp256 ecdsa-sha2-nistp384 ecdsa-sha2-nistp521
1334
+ */
1335
+ Type?: HostKeyType;
1336
+ /**
1337
+ * The date on which the host key was added to the server.
1338
+ */
1339
+ DateImported?: DateImported;
1340
+ /**
1341
+ * Key-value pairs that can be used to group and search for host keys.
1342
+ */
1343
+ Tags?: Tags;
1344
+ }
1249
1345
  export interface DescribedProfile {
1250
1346
  /**
1251
1347
  * The unique Amazon Resource Name (ARN) for the profile.
@@ -1551,7 +1647,10 @@ declare namespace Transfer {
1551
1647
  export type HomeDirectoryMappings = HomeDirectoryMapEntry[];
1552
1648
  export type HomeDirectoryType = "PATH"|"LOGICAL"|string;
1553
1649
  export type HostKey = string;
1650
+ export type HostKeyDescription = string;
1554
1651
  export type HostKeyFingerprint = string;
1652
+ export type HostKeyId = string;
1653
+ export type HostKeyType = string;
1555
1654
  export interface IdentityProviderDetails {
1556
1655
  /**
1557
1656
  * Provides the location of the service endpoint used to authenticate users.
@@ -1611,6 +1710,34 @@ declare namespace Transfer {
1611
1710
  */
1612
1711
  CertificateId: CertificateId;
1613
1712
  }
1713
+ export interface ImportHostKeyRequest {
1714
+ /**
1715
+ * Provide the ID of the server that contains the host key that you are importing.
1716
+ */
1717
+ ServerId: ServerId;
1718
+ /**
1719
+ * The public key portion of an SSH key pair. Transfer Family accepts RSA, ECDSA, and ED25519 keys.
1720
+ */
1721
+ HostKeyBody: HostKey;
1722
+ /**
1723
+ * Enter a text description to identify this host key.
1724
+ */
1725
+ Description?: HostKeyDescription;
1726
+ /**
1727
+ * Key-value pairs that can be used to group and search for host keys.
1728
+ */
1729
+ Tags?: Tags;
1730
+ }
1731
+ export interface ImportHostKeyResponse {
1732
+ /**
1733
+ * Returns the server ID that contains the imported key.
1734
+ */
1735
+ ServerId: ServerId;
1736
+ /**
1737
+ * Returns the host key ID for the imported key.
1738
+ */
1739
+ HostKeyId: HostKeyId;
1740
+ }
1614
1741
  export interface ImportSshPublicKeyRequest {
1615
1742
  /**
1616
1743
  * A system-assigned unique identifier for a server.
@@ -1769,6 +1896,34 @@ declare namespace Transfer {
1769
1896
  */
1770
1897
  Executions: ListedExecutions;
1771
1898
  }
1899
+ export interface ListHostKeysRequest {
1900
+ /**
1901
+ * The maximum number of host keys to return.
1902
+ */
1903
+ MaxResults?: MaxResults;
1904
+ /**
1905
+ * When there are additional results that were not returned, a NextToken parameter is returned. You can use that value for a subsequent call to ListHostKeys to continue listing results.
1906
+ */
1907
+ NextToken?: NextToken;
1908
+ /**
1909
+ * Provide the ID of the server that contains the host keys that you want to view.
1910
+ */
1911
+ ServerId: ServerId;
1912
+ }
1913
+ export interface ListHostKeysResponse {
1914
+ /**
1915
+ * Returns a token that you can use to call ListHostKeys again and receive additional results, if there are any.
1916
+ */
1917
+ NextToken?: NextToken;
1918
+ /**
1919
+ * Returns the server ID that contains the listed host keys.
1920
+ */
1921
+ ServerId: ServerId;
1922
+ /**
1923
+ * Returns an array, where each item contains the details of a host key.
1924
+ */
1925
+ HostKeys: ListedHostKeys;
1926
+ }
1772
1927
  export interface ListProfilesRequest {
1773
1928
  /**
1774
1929
  * The maximum number of profiles to return.
@@ -2028,6 +2183,33 @@ declare namespace Transfer {
2028
2183
  Status?: ExecutionStatus;
2029
2184
  }
2030
2185
  export type ListedExecutions = ListedExecution[];
2186
+ export interface ListedHostKey {
2187
+ /**
2188
+ * Specifies the unique Amazon Resource Name (ARN) of the host key.
2189
+ */
2190
+ Arn: Arn;
2191
+ /**
2192
+ *
2193
+ */
2194
+ HostKeyId?: HostKeyId;
2195
+ /**
2196
+ * The public key fingerprint, which is a short sequence of bytes used to identify the longer public key.
2197
+ */
2198
+ Fingerprint?: HostKeyFingerprint;
2199
+ /**
2200
+ * The current description for the host key. You can change it by calling the UpdateHostKey operation and providing a new description.
2201
+ */
2202
+ Description?: HostKeyDescription;
2203
+ /**
2204
+ * The encryption algorithm used for the host key. The Type is one of the following values: ssh-rsa ssh-ed25519 ecdsa-sha2-nistp256 ecdsa-sha2-nistp384 ecdsa-sha2-nistp521
2205
+ */
2206
+ Type?: HostKeyType;
2207
+ /**
2208
+ * The date on which the host key was added to the server.
2209
+ */
2210
+ DateImported?: DateImported;
2211
+ }
2212
+ export type ListedHostKeys = ListedHostKey[];
2031
2213
  export interface ListedProfile {
2032
2214
  /**
2033
2215
  * The Amazon Resource Name (ARN) of the specified profile.
@@ -2548,6 +2730,30 @@ declare namespace Transfer {
2548
2730
  */
2549
2731
  ConnectorId: ConnectorId;
2550
2732
  }
2733
+ export interface UpdateHostKeyRequest {
2734
+ /**
2735
+ * Provide the ID of the server that contains the host key that you are updating.
2736
+ */
2737
+ ServerId: ServerId;
2738
+ /**
2739
+ * Provide the ID of the host key that you are updating.
2740
+ */
2741
+ HostKeyId: HostKeyId;
2742
+ /**
2743
+ * Provide an updated description for the host key.
2744
+ */
2745
+ Description: HostKeyDescription;
2746
+ }
2747
+ export interface UpdateHostKeyResponse {
2748
+ /**
2749
+ * Returns the server ID for the server that contains the updated host key.
2750
+ */
2751
+ ServerId: ServerId;
2752
+ /**
2753
+ * Returns the host key ID for the updated host key.
2754
+ */
2755
+ HostKeyId: HostKeyId;
2756
+ }
2551
2757
  export interface UpdateProfileRequest {
2552
2758
  /**
2553
2759
  * The identifier of the profile object that you are updating.
@@ -83,7 +83,7 @@ return /******/ (function(modules) { // webpackBootstrap
83
83
  /**
84
84
  * @constant
85
85
  */
86
- VERSION: '2.1214.0',
86
+ VERSION: '2.1215.0',
87
87
 
88
88
  /**
89
89
  * @api private
@@ -9640,7 +9640,7 @@ return /******/ (function(modules) { // webpackBootstrap
9640
9640
  throw new $TypeError('"allowMissing" argument must be a boolean');
9641
9641
  }
9642
9642
 
9643
- if ($exec(/^%?[^%]*%?$/g, name) === null) {
9643
+ if ($exec(/^%?[^%]*%?$/, name) === null) {
9644
9644
  throw new $SyntaxError('`%` may not be present anywhere but at the beginning and end of the intrinsic name');
9645
9645
  }
9646
9646
  var parts = stringToPath(name);