cdk-docker-image-deployment 0.0.150 → 0.0.151

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 (43) hide show
  1. package/.jsii +3 -3
  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 +30 -1
  6. package/node_modules/aws-sdk/README.md +1 -1
  7. package/node_modules/aws-sdk/apis/appsync-2017-07-25.min.json +104 -86
  8. package/node_modules/aws-sdk/apis/cloudformation-2010-05-15.min.json +3 -0
  9. package/node_modules/aws-sdk/apis/cloudtrail-2013-11-01.min.json +204 -55
  10. package/node_modules/aws-sdk/apis/cloudtrail-data-2021-08-11.examples.json +5 -0
  11. package/node_modules/aws-sdk/apis/cloudtrail-data-2021-08-11.min.json +94 -0
  12. package/node_modules/aws-sdk/apis/cloudtrail-data-2021-08-11.paginators.json +4 -0
  13. package/node_modules/aws-sdk/apis/codeartifact-2018-09-22.min.json +73 -21
  14. package/node_modules/aws-sdk/apis/ec2-2016-11-15.min.json +1477 -1297
  15. package/node_modules/aws-sdk/apis/groundstation-2019-05-23.min.json +312 -41
  16. package/node_modules/aws-sdk/apis/iot-2015-05-28.min.json +4 -1
  17. package/node_modules/aws-sdk/apis/metadata.json +4 -0
  18. package/node_modules/aws-sdk/apis/opensearch-2021-01-01.min.json +192 -176
  19. package/node_modules/aws-sdk/apis/sagemaker-2017-07-24.min.json +630 -585
  20. package/node_modules/aws-sdk/apis/securityhub-2018-10-26.min.json +173 -157
  21. package/node_modules/aws-sdk/clients/all.d.ts +1 -0
  22. package/node_modules/aws-sdk/clients/all.js +2 -1
  23. package/node_modules/aws-sdk/clients/appsync.d.ts +20 -2
  24. package/node_modules/aws-sdk/clients/cloudformation.d.ts +1 -0
  25. package/node_modules/aws-sdk/clients/cloudtrail.d.ts +234 -40
  26. package/node_modules/aws-sdk/clients/cloudtraildata.d.ts +111 -0
  27. package/node_modules/aws-sdk/clients/cloudtraildata.js +18 -0
  28. package/node_modules/aws-sdk/clients/codeartifact.d.ts +43 -6
  29. package/node_modules/aws-sdk/clients/ec2.d.ts +212 -15
  30. package/node_modules/aws-sdk/clients/groundstation.d.ts +284 -0
  31. package/node_modules/aws-sdk/clients/iot.d.ts +4 -0
  32. package/node_modules/aws-sdk/clients/opensearch.d.ts +31 -0
  33. package/node_modules/aws-sdk/clients/polly.d.ts +1 -1
  34. package/node_modules/aws-sdk/clients/sagemaker.d.ts +57 -1
  35. package/node_modules/aws-sdk/clients/securityhub.d.ts +26 -3
  36. package/node_modules/aws-sdk/dist/aws-sdk-core-react-native.js +2 -2
  37. package/node_modules/aws-sdk/dist/aws-sdk-react-native.js +51 -14
  38. package/node_modules/aws-sdk/dist/aws-sdk.js +1695 -1356
  39. package/node_modules/aws-sdk/dist/aws-sdk.min.js +94 -94
  40. package/node_modules/aws-sdk/lib/config_service_placeholders.d.ts +2 -0
  41. package/node_modules/aws-sdk/lib/core.js +1 -1
  42. package/node_modules/aws-sdk/package.json +1 -1
  43. package/package.json +5 -6
@@ -100,6 +100,14 @@ declare class GroundStation extends Service {
100
100
  * Describes an existing ephemeris.
101
101
  */
102
102
  describeEphemeris(callback?: (err: AWSError, data: GroundStation.Types.DescribeEphemerisResponse) => void): Request<GroundStation.Types.DescribeEphemerisResponse, AWSError>;
103
+ /**
104
+ * Gets the latest configuration information for a registered agent.
105
+ */
106
+ getAgentConfiguration(params: GroundStation.Types.GetAgentConfigurationRequest, callback?: (err: AWSError, data: GroundStation.Types.GetAgentConfigurationResponse) => void): Request<GroundStation.Types.GetAgentConfigurationResponse, AWSError>;
107
+ /**
108
+ * Gets the latest configuration information for a registered agent.
109
+ */
110
+ getAgentConfiguration(callback?: (err: AWSError, data: GroundStation.Types.GetAgentConfigurationResponse) => void): Request<GroundStation.Types.GetAgentConfigurationResponse, AWSError>;
103
111
  /**
104
112
  * Returns Config information. Only one Config response can be returned.
105
113
  */
@@ -204,6 +212,14 @@ declare class GroundStation extends Service {
204
212
  * Returns a list of tags for a specified resource.
205
213
  */
206
214
  listTagsForResource(callback?: (err: AWSError, data: GroundStation.Types.ListTagsForResourceResponse) => void): Request<GroundStation.Types.ListTagsForResourceResponse, AWSError>;
215
+ /**
216
+ * Registers a new agent with AWS Groundstation.
217
+ */
218
+ registerAgent(params: GroundStation.Types.RegisterAgentRequest, callback?: (err: AWSError, data: GroundStation.Types.RegisterAgentResponse) => void): Request<GroundStation.Types.RegisterAgentResponse, AWSError>;
219
+ /**
220
+ * Registers a new agent with AWS Groundstation.
221
+ */
222
+ registerAgent(callback?: (err: AWSError, data: GroundStation.Types.RegisterAgentResponse) => void): Request<GroundStation.Types.RegisterAgentResponse, AWSError>;
207
223
  /**
208
224
  * Reserves a contact using specified parameters.
209
225
  */
@@ -228,6 +244,14 @@ declare class GroundStation extends Service {
228
244
  * Deassigns a resource tag.
229
245
  */
230
246
  untagResource(callback?: (err: AWSError, data: GroundStation.Types.UntagResourceResponse) => void): Request<GroundStation.Types.UntagResourceResponse, AWSError>;
247
+ /**
248
+ * Update the status of the agent.
249
+ */
250
+ updateAgentStatus(params: GroundStation.Types.UpdateAgentStatusRequest, callback?: (err: AWSError, data: GroundStation.Types.UpdateAgentStatusResponse) => void): Request<GroundStation.Types.UpdateAgentStatusResponse, AWSError>;
251
+ /**
252
+ * Update the status of the agent.
253
+ */
254
+ updateAgentStatus(callback?: (err: AWSError, data: GroundStation.Types.UpdateAgentStatusResponse) => void): Request<GroundStation.Types.UpdateAgentStatusResponse, AWSError>;
231
255
  /**
232
256
  * Updates the Config used when scheduling contacts. Updating a Config will not update the execution parameters for existing future contacts scheduled with this Config.
233
257
  */
@@ -263,6 +287,39 @@ declare class GroundStation extends Service {
263
287
  }
264
288
  declare namespace GroundStation {
265
289
  export type AWSRegion = string;
290
+ export interface AgentDetails {
291
+ /**
292
+ * Current agent version.
293
+ */
294
+ agentVersion: VersionString;
295
+ /**
296
+ * List of versions being used by agent components.
297
+ */
298
+ componentVersions: ComponentVersionList;
299
+ /**
300
+ * ID of EC2 instance agent is running on.
301
+ */
302
+ instanceId: InstanceId;
303
+ /**
304
+ * Type of EC2 instance agent is running on.
305
+ */
306
+ instanceType: InstanceType;
307
+ /**
308
+ * Number of Cpu cores reserved for agent.
309
+ */
310
+ reservedCpuCores: ReservedCpuCoresList;
311
+ }
312
+ export type AgentStatus = "SUCCESS"|"FAILED"|"ACTIVE"|"INACTIVE"|string;
313
+ export interface AggregateStatus {
314
+ /**
315
+ * Sparse map of failure signatures.
316
+ */
317
+ signatureMap?: SignatureMap;
318
+ /**
319
+ * Aggregate status.
320
+ */
321
+ status: AgentStatus;
322
+ }
266
323
  export type AngleUnits = "DEGREE_ANGLE"|"RADIAN"|string;
267
324
  export interface AntennaDemodDecodeDetails {
268
325
  /**
@@ -305,6 +362,29 @@ declare namespace GroundStation {
305
362
  transmitDisabled?: Boolean;
306
363
  }
307
364
  export type AnyArn = string;
365
+ export type AuditResults = "HEALTHY"|"UNHEALTHY"|string;
366
+ export interface AwsGroundStationAgentEndpoint {
367
+ /**
368
+ * The status of AgentEndpoint.
369
+ */
370
+ agentStatus?: AgentStatus;
371
+ /**
372
+ * The results of the audit.
373
+ */
374
+ auditResults?: AuditResults;
375
+ /**
376
+ * The egress address of AgentEndpoint.
377
+ */
378
+ egressAddress: ConnectionDetails;
379
+ /**
380
+ * The ingress address of AgentEndpoint.
381
+ */
382
+ ingressAddress: RangedConnectionDetails;
383
+ /**
384
+ * Name string associated with AgentEndpoint. Used as a human-readable identifier for AgentEndpoint.
385
+ */
386
+ name: SafeName;
387
+ }
308
388
  export type BandwidthUnits = "GHz"|"MHz"|"kHz"|string;
309
389
  export type Boolean = boolean;
310
390
  export type BucketArn = string;
@@ -314,6 +394,51 @@ declare namespace GroundStation {
314
394
  */
315
395
  contactId: Uuid;
316
396
  }
397
+ export type CapabilityArn = string;
398
+ export type CapabilityArnList = CapabilityArn[];
399
+ export interface ComponentStatusData {
400
+ /**
401
+ * Bytes received by the component.
402
+ */
403
+ bytesReceived?: Long;
404
+ /**
405
+ * Bytes sent by the component.
406
+ */
407
+ bytesSent?: Long;
408
+ /**
409
+ * Capability ARN of the component.
410
+ */
411
+ capabilityArn: CapabilityArn;
412
+ /**
413
+ * The Component type.
414
+ */
415
+ componentType: ComponentType;
416
+ /**
417
+ * Dataflow UUID associated with the component.
418
+ */
419
+ dataflowId: Uuid;
420
+ /**
421
+ * Packets dropped by component.
422
+ */
423
+ packetsDropped?: Long;
424
+ /**
425
+ * Component status.
426
+ */
427
+ status: AgentStatus;
428
+ }
429
+ export type ComponentStatusList = ComponentStatusData[];
430
+ export type ComponentType = "LAMINAR_FLOW"|"PRISM"|"DIGITIZER"|string;
431
+ export interface ComponentVersion {
432
+ /**
433
+ * Component type.
434
+ */
435
+ componentType: ComponentType;
436
+ /**
437
+ * List of versions.
438
+ */
439
+ versions: VersionStringList;
440
+ }
441
+ export type ComponentVersionList = ComponentVersion[];
317
442
  export type ConfigArn = string;
318
443
  export type ConfigCapabilityType = "antenna-downlink"|"antenna-downlink-demod-decode"|"antenna-uplink"|"dataflow-endpoint"|"tracking"|"uplink-echo"|"s3-recording"|string;
319
444
  export interface ConfigDetails {
@@ -390,6 +515,16 @@ declare namespace GroundStation {
390
515
  */
391
516
  uplinkEchoConfig?: UplinkEchoConfig;
392
517
  }
518
+ export interface ConnectionDetails {
519
+ /**
520
+ * Maximum transmission unit (MTU) size in bytes of a dataflow endpoint.
521
+ */
522
+ mtu?: Integer;
523
+ /**
524
+ * A socket address.
525
+ */
526
+ socketAddress: SocketAddress;
527
+ }
393
528
  export interface ContactData {
394
529
  /**
395
530
  * UUID of a contact.
@@ -539,6 +674,14 @@ declare namespace GroundStation {
539
674
  * Name of a mission profile.
540
675
  */
541
676
  name: SafeName;
677
+ /**
678
+ * KMS key to use for encrypting streams.
679
+ */
680
+ streamsKmsKey?: KmsKey;
681
+ /**
682
+ * Role to use for encrypting streams with KMS key.
683
+ */
684
+ streamsKmsRole?: RoleArn;
542
685
  /**
543
686
  * Tags assigned to a mission profile.
544
687
  */
@@ -779,6 +922,20 @@ declare namespace GroundStation {
779
922
  */
780
923
  dataflowDestinationRegion?: String;
781
924
  }
925
+ export interface DiscoveryData {
926
+ /**
927
+ * List of capabilities to associate with agent.
928
+ */
929
+ capabilityArns: CapabilityArnList;
930
+ /**
931
+ * List of private IP addresses to associate with agent.
932
+ */
933
+ privateIpAddresses: IpAddressList;
934
+ /**
935
+ * List of public IP addresses to associate with agent.
936
+ */
937
+ publicIpAddresses: IpAddressList;
938
+ }
782
939
  export type Double = number;
783
940
  export type DurationInSeconds = number;
784
941
  export interface Eirp {
@@ -803,6 +960,10 @@ declare namespace GroundStation {
803
960
  value: Double;
804
961
  }
805
962
  export interface EndpointDetails {
963
+ /**
964
+ * An agent endpoint.
965
+ */
966
+ awsGroundStationAgentEndpoint?: AwsGroundStationAgentEndpoint;
806
967
  /**
807
968
  * A dataflow endpoint.
808
969
  */
@@ -913,6 +1074,22 @@ declare namespace GroundStation {
913
1074
  value: Double;
914
1075
  }
915
1076
  export type FrequencyUnits = "GHz"|"MHz"|"kHz"|string;
1077
+ export interface GetAgentConfigurationRequest {
1078
+ /**
1079
+ * UUID of agent to get configuration information for.
1080
+ */
1081
+ agentId: Uuid;
1082
+ }
1083
+ export interface GetAgentConfigurationResponse {
1084
+ /**
1085
+ * UUID of agent.
1086
+ */
1087
+ agentId?: Uuid;
1088
+ /**
1089
+ * Tasking document for agent.
1090
+ */
1091
+ taskingDocument?: String;
1092
+ }
916
1093
  export interface GetConfigRequest {
917
1094
  /**
918
1095
  * UUID of a Config.
@@ -1052,6 +1229,14 @@ declare namespace GroundStation {
1052
1229
  * Region of a mission profile.
1053
1230
  */
1054
1231
  region?: AWSRegion;
1232
+ /**
1233
+ * KMS key to use for encrypting streams.
1234
+ */
1235
+ streamsKmsKey?: KmsKey;
1236
+ /**
1237
+ * Role to use for encrypting streams with KMS key.
1238
+ */
1239
+ streamsKmsRole?: RoleArn;
1055
1240
  /**
1056
1241
  * Tags assigned to a mission profile.
1057
1242
  */
@@ -1106,9 +1291,34 @@ declare namespace GroundStation {
1106
1291
  export type GroundStationIdList = GroundStationName[];
1107
1292
  export type GroundStationList = GroundStationData[];
1108
1293
  export type GroundStationName = string;
1294
+ export type InstanceId = string;
1295
+ export type InstanceType = string;
1109
1296
  export type Integer = number;
1297
+ export interface IntegerRange {
1298
+ /**
1299
+ * A maximum value.
1300
+ */
1301
+ maximum: Integer;
1302
+ /**
1303
+ * A minimum value.
1304
+ */
1305
+ minimum: Integer;
1306
+ }
1307
+ export type IpAddressList = IpV4Address[];
1308
+ export type IpV4Address = string;
1110
1309
  export type JsonString = string;
1310
+ export type KeyAliasArn = string;
1111
1311
  export type KeyArn = string;
1312
+ export interface KmsKey {
1313
+ /**
1314
+ * KMS Alias Arn.
1315
+ */
1316
+ kmsAliasArn?: KeyAliasArn;
1317
+ /**
1318
+ * KMS Key Arn.
1319
+ */
1320
+ kmsKeyArn?: KeyArn;
1321
+ }
1112
1322
  export interface ListConfigsRequest {
1113
1323
  /**
1114
1324
  * Maximum number of Configs returned.
@@ -1305,6 +1515,7 @@ declare namespace GroundStation {
1305
1515
  */
1306
1516
  tags?: TagsMap;
1307
1517
  }
1518
+ export type Long = number;
1308
1519
  export type MissionProfileArn = string;
1309
1520
  export interface MissionProfileIdResponse {
1310
1521
  /**
@@ -1346,6 +1557,43 @@ declare namespace GroundStation {
1346
1557
  export type PaginationToken = string;
1347
1558
  export type Polarization = "LEFT_HAND"|"NONE"|"RIGHT_HAND"|string;
1348
1559
  export type PositiveDurationInSeconds = number;
1560
+ export interface RangedConnectionDetails {
1561
+ /**
1562
+ * Maximum transmission unit (MTU) size in bytes of a dataflow endpoint.
1563
+ */
1564
+ mtu?: RangedConnectionDetailsMtuInteger;
1565
+ /**
1566
+ * A ranged socket address.
1567
+ */
1568
+ socketAddress: RangedSocketAddress;
1569
+ }
1570
+ export type RangedConnectionDetailsMtuInteger = number;
1571
+ export interface RangedSocketAddress {
1572
+ /**
1573
+ * IPv4 socket address.
1574
+ */
1575
+ name: IpV4Address;
1576
+ /**
1577
+ * Port range of a socket address.
1578
+ */
1579
+ portRange: IntegerRange;
1580
+ }
1581
+ export interface RegisterAgentRequest {
1582
+ /**
1583
+ * Detailed information about the agent being registered.
1584
+ */
1585
+ agentDetails: AgentDetails;
1586
+ /**
1587
+ * Data for associating and agent with the capabilities it is managing.
1588
+ */
1589
+ discoveryData: DiscoveryData;
1590
+ }
1591
+ export interface RegisterAgentResponse {
1592
+ /**
1593
+ * UUID of registered agent.
1594
+ */
1595
+ agentId?: Uuid;
1596
+ }
1349
1597
  export interface ReserveContactRequest {
1350
1598
  /**
1351
1599
  * End time of a contact in UTC.
@@ -1372,6 +1620,7 @@ declare namespace GroundStation {
1372
1620
  */
1373
1621
  tags?: TagsMap;
1374
1622
  }
1623
+ export type ReservedCpuCoresList = Integer[];
1375
1624
  export type RoleArn = string;
1376
1625
  export type S3BucketName = string;
1377
1626
  export type S3KeyPrefix = string;
@@ -1454,6 +1703,7 @@ declare namespace GroundStation {
1454
1703
  subnetIds: SubnetList;
1455
1704
  }
1456
1705
  export type SecurityGroupIdList = String[];
1706
+ export type SignatureMap = {[key: string]: Boolean};
1457
1707
  export interface SocketAddress {
1458
1708
  /**
1459
1709
  * Name of a socket address.
@@ -1570,6 +1820,30 @@ declare namespace GroundStation {
1570
1820
  }
1571
1821
  export interface UntagResourceResponse {
1572
1822
  }
1823
+ export interface UpdateAgentStatusRequest {
1824
+ /**
1825
+ * UUID of agent to update.
1826
+ */
1827
+ agentId: Uuid;
1828
+ /**
1829
+ * Aggregate status for agent.
1830
+ */
1831
+ aggregateStatus: AggregateStatus;
1832
+ /**
1833
+ * List of component statuses for agent.
1834
+ */
1835
+ componentStatuses: ComponentStatusList;
1836
+ /**
1837
+ * GUID of agent task.
1838
+ */
1839
+ taskId: Uuid;
1840
+ }
1841
+ export interface UpdateAgentStatusResponse {
1842
+ /**
1843
+ * UUID of updated agent.
1844
+ */
1845
+ agentId: Uuid;
1846
+ }
1573
1847
  export interface UpdateConfigRequest {
1574
1848
  /**
1575
1849
  * Parameters of a Config.
@@ -1631,6 +1905,14 @@ declare namespace GroundStation {
1631
1905
  * Name of a mission profile.
1632
1906
  */
1633
1907
  name?: SafeName;
1908
+ /**
1909
+ * KMS key to use for encrypting streams.
1910
+ */
1911
+ streamsKmsKey?: KmsKey;
1912
+ /**
1913
+ * Role to use for encrypting streams with KMS key.
1914
+ */
1915
+ streamsKmsRole?: RoleArn;
1634
1916
  /**
1635
1917
  * ARN of a tracking Config.
1636
1918
  */
@@ -1657,6 +1939,8 @@ declare namespace GroundStation {
1657
1939
  polarization?: Polarization;
1658
1940
  }
1659
1941
  export type Uuid = string;
1942
+ export type VersionString = string;
1943
+ export type VersionStringList = VersionString[];
1660
1944
  export type Year = number;
1661
1945
  export type noradSatelliteID = number;
1662
1946
  export type satelliteArn = string;
@@ -3155,6 +3155,10 @@ declare namespace Iot {
3155
3155
  * The CloudWatch log group to which the action sends data.
3156
3156
  */
3157
3157
  logGroupName: LogGroupName;
3158
+ /**
3159
+ * Indicates whether batches of log records will be extracted and uploaded into CloudWatch. Values include true or false (default).
3160
+ */
3161
+ batchMode?: BatchMode;
3158
3162
  }
3159
3163
  export interface CloudwatchMetricAction {
3160
3164
  /**
@@ -867,6 +867,13 @@ declare namespace OpenSearch {
867
867
  }
868
868
  export type ConnectionAlias = string;
869
869
  export type ConnectionId = string;
870
+ export type ConnectionMode = "DIRECT"|"VPC_ENDPOINT"|string;
871
+ export interface ConnectionProperties {
872
+ /**
873
+ * The endpoint of the remote domain.
874
+ */
875
+ Endpoint?: Endpoint;
876
+ }
870
877
  export type ConnectionStatusMessage = string;
871
878
  export interface CreateDomainRequest {
872
879
  /**
@@ -953,6 +960,10 @@ declare namespace OpenSearch {
953
960
  * Name of the connection.
954
961
  */
955
962
  ConnectionAlias: ConnectionAlias;
963
+ /**
964
+ * The connection mode.
965
+ */
966
+ ConnectionMode?: ConnectionMode;
956
967
  }
957
968
  export interface CreateOutboundConnectionResponse {
958
969
  /**
@@ -975,6 +986,14 @@ declare namespace OpenSearch {
975
986
  * The unique identifier for the created outbound connection, which is used for subsequent operations on the connection.
976
987
  */
977
988
  ConnectionId?: ConnectionId;
989
+ /**
990
+ * The connection mode.
991
+ */
992
+ ConnectionMode?: ConnectionMode;
993
+ /**
994
+ * The ConnectionProperties for the newly created connection.
995
+ */
996
+ ConnectionProperties?: ConnectionProperties;
978
997
  }
979
998
  export interface CreatePackageRequest {
980
999
  /**
@@ -1862,6 +1881,10 @@ declare namespace OpenSearch {
1862
1881
  * The current status of the connection.
1863
1882
  */
1864
1883
  ConnectionStatus?: InboundConnectionStatus;
1884
+ /**
1885
+ * The connection mode.
1886
+ */
1887
+ ConnectionMode?: ConnectionMode;
1865
1888
  }
1866
1889
  export interface InboundConnectionStatus {
1867
1890
  /**
@@ -2230,6 +2253,14 @@ declare namespace OpenSearch {
2230
2253
  * Status of the connection.
2231
2254
  */
2232
2255
  ConnectionStatus?: OutboundConnectionStatus;
2256
+ /**
2257
+ * The connection mode.
2258
+ */
2259
+ ConnectionMode?: ConnectionMode;
2260
+ /**
2261
+ * Properties for the outbound connection.
2262
+ */
2263
+ ConnectionProperties?: ConnectionProperties;
2233
2264
  }
2234
2265
  export interface OutboundConnectionStatus {
2235
2266
  /**
@@ -488,7 +488,7 @@ declare namespace Polly {
488
488
  */
489
489
  SupportedEngines?: EngineList;
490
490
  }
491
- export type VoiceId = "Aditi"|"Amy"|"Astrid"|"Bianca"|"Brian"|"Camila"|"Carla"|"Carmen"|"Celine"|"Chantal"|"Conchita"|"Cristiano"|"Dora"|"Emma"|"Enrique"|"Ewa"|"Filiz"|"Gabrielle"|"Geraint"|"Giorgio"|"Gwyneth"|"Hans"|"Ines"|"Ivy"|"Jacek"|"Jan"|"Joanna"|"Joey"|"Justin"|"Karl"|"Kendra"|"Kevin"|"Kimberly"|"Lea"|"Liv"|"Lotte"|"Lucia"|"Lupe"|"Mads"|"Maja"|"Marlene"|"Mathieu"|"Matthew"|"Maxim"|"Mia"|"Miguel"|"Mizuki"|"Naja"|"Nicole"|"Olivia"|"Penelope"|"Raveena"|"Ricardo"|"Ruben"|"Russell"|"Salli"|"Seoyeon"|"Takumi"|"Tatyana"|"Vicki"|"Vitoria"|"Zeina"|"Zhiyu"|"Aria"|"Ayanda"|"Arlet"|"Hannah"|"Arthur"|"Daniel"|"Liam"|"Pedro"|"Kajal"|"Hiujin"|"Laura"|"Elin"|"Ida"|"Suvi"|"Ola"|"Hala"|"Andres"|"Sergio"|"Remi"|"Adriano"|"Thiago"|string;
491
+ export type VoiceId = "Aditi"|"Amy"|"Astrid"|"Bianca"|"Brian"|"Camila"|"Carla"|"Carmen"|"Celine"|"Chantal"|"Conchita"|"Cristiano"|"Dora"|"Emma"|"Enrique"|"Ewa"|"Filiz"|"Gabrielle"|"Geraint"|"Giorgio"|"Gwyneth"|"Hans"|"Ines"|"Ivy"|"Jacek"|"Jan"|"Joanna"|"Joey"|"Justin"|"Karl"|"Kendra"|"Kevin"|"Kimberly"|"Lea"|"Liv"|"Lotte"|"Lucia"|"Lupe"|"Mads"|"Maja"|"Marlene"|"Mathieu"|"Matthew"|"Maxim"|"Mia"|"Miguel"|"Mizuki"|"Naja"|"Nicole"|"Olivia"|"Penelope"|"Raveena"|"Ricardo"|"Ruben"|"Russell"|"Salli"|"Seoyeon"|"Takumi"|"Tatyana"|"Vicki"|"Vitoria"|"Zeina"|"Zhiyu"|"Aria"|"Ayanda"|"Arlet"|"Hannah"|"Arthur"|"Daniel"|"Liam"|"Pedro"|"Kajal"|"Hiujin"|"Laura"|"Elin"|"Ida"|"Suvi"|"Ola"|"Hala"|"Andres"|"Sergio"|"Remi"|"Adriano"|"Thiago"|"Ruth"|"Stephen"|string;
492
492
  export type VoiceList = Voice[];
493
493
  export type VoiceName = string;
494
494
  /**
@@ -3423,6 +3423,12 @@ declare namespace SageMaker {
3423
3423
  */
3424
3424
  EndTimeOffset?: MonitoringTimeOffsetString;
3425
3425
  }
3426
+ export interface BestObjectiveNotImproving {
3427
+ /**
3428
+ * The number of training jobs that have failed to improve model performance by 1% or greater over prior training jobs as evaluated against an objective function.
3429
+ */
3430
+ MaxNumberOfTrainingJobsNotImproving?: MaxNumberOfTrainingJobsNotImproving;
3431
+ }
3426
3432
  export interface Bias {
3427
3433
  /**
3428
3434
  * The bias report for a model
@@ -3934,6 +3940,7 @@ declare namespace SageMaker {
3934
3940
  CompilationJobStatus: CompilationJobStatus;
3935
3941
  }
3936
3942
  export type CompilerOptions = string;
3943
+ export type CompleteOnConvergence = "Disabled"|"Enabled"|string;
3937
3944
  export type CompressionType = "None"|"Gzip"|string;
3938
3945
  export type CompressionTypes = CompressionType[];
3939
3946
  export type ConditionOutcome = "True"|"False"|string;
@@ -4067,6 +4074,12 @@ declare namespace SageMaker {
4067
4074
  MaxValue: ParameterValue;
4068
4075
  }
4069
4076
  export type ContinuousParameterRanges = ContinuousParameterRange[];
4077
+ export interface ConvergenceDetected {
4078
+ /**
4079
+ * A flag to stop a tuning job once AMT has detected that the job has converged.
4080
+ */
4081
+ CompleteOnConvergence?: CompleteOnConvergence;
4082
+ }
4070
4083
  export interface CreateActionRequest {
4071
4084
  /**
4072
4085
  * The name of the action. Must be unique to your account in an Amazon Web Services Region.
@@ -8098,6 +8111,11 @@ declare namespace SageMaker {
8098
8111
  * If the tuning job failed, the reason it failed.
8099
8112
  */
8100
8113
  FailureReason?: FailureReason;
8114
+ /**
8115
+ * Tuning job completion information returned as the response from a hyperparameter tuning job. This information tells if your tuning job has or has not converged. It also includes the number of training jobs that have not improved model performance as evaluated against the objective function.
8116
+ */
8117
+ TuningJobCompletionDetails?: HyperParameterTuningJobCompletionDetails;
8118
+ ConsumedResources?: HyperParameterTuningJobConsumedResources;
8101
8119
  }
8102
8120
  export interface DescribeImageRequest {
8103
8121
  /**
@@ -11607,6 +11625,16 @@ declare namespace SageMaker {
11607
11625
  }
11608
11626
  export type HyperParameterTuningInstanceConfigs = HyperParameterTuningInstanceConfig[];
11609
11627
  export type HyperParameterTuningJobArn = string;
11628
+ export interface HyperParameterTuningJobCompletionDetails {
11629
+ /**
11630
+ * The number of training jobs launched by a tuning job that are not improving (1% or less) as measured by model performance evaluated against an objective function.
11631
+ */
11632
+ NumberOfTrainingJobsObjectiveNotImproving?: Integer;
11633
+ /**
11634
+ * The time in timestamp format that AMT detected model convergence, as defined by a lack of significant improvement over time based on criteria developed over a wide range of diverse benchmarking tests.
11635
+ */
11636
+ ConvergenceDetectedTime?: Timestamp;
11637
+ }
11610
11638
  export interface HyperParameterTuningJobConfig {
11611
11639
  /**
11612
11640
  * Specifies how hyperparameter tuning chooses the combinations of hyperparameter values to use for the training job it launches. For information about search strategies, see How Hyperparameter Tuning Works.
@@ -11641,6 +11669,12 @@ declare namespace SageMaker {
11641
11669
  */
11642
11670
  RandomSeed?: RandomSeed;
11643
11671
  }
11672
+ export interface HyperParameterTuningJobConsumedResources {
11673
+ /**
11674
+ * The wall clock runtime in seconds used by your hyperparameter tuning job.
11675
+ */
11676
+ RuntimeInSeconds?: Integer;
11677
+ }
11644
11678
  export type HyperParameterTuningJobName = string;
11645
11679
  export interface HyperParameterTuningJobObjective {
11646
11680
  /**
@@ -11698,6 +11732,14 @@ declare namespace SageMaker {
11698
11732
  * The tags associated with a hyperparameter tuning job. For more information see Tagging Amazon Web Services resources.
11699
11733
  */
11700
11734
  Tags?: TagList;
11735
+ /**
11736
+ * Information about either a current or completed hyperparameter tuning job.
11737
+ */
11738
+ TuningJobCompletionDetails?: HyperParameterTuningJobCompletionDetails;
11739
+ /**
11740
+ * The total amount of resources consumed by a hyperparameter tuning job.
11741
+ */
11742
+ ConsumedResources?: HyperParameterTuningJobConsumedResources;
11701
11743
  }
11702
11744
  export type HyperParameterTuningJobSortByOptions = "Name"|"Status"|"CreationTime"|string;
11703
11745
  export type HyperParameterTuningJobStatus = "Completed"|"InProgress"|"Failed"|"Stopped"|"Stopping"|string;
@@ -11762,6 +11804,7 @@ declare namespace SageMaker {
11762
11804
  WarmStartType: HyperParameterTuningJobWarmStartType;
11763
11805
  }
11764
11806
  export type HyperParameterTuningJobWarmStartType = "IdenticalDataAndAlgorithm"|"TransferLearning"|string;
11807
+ export type HyperParameterTuningMaxRuntimeInSeconds = number;
11765
11808
  export interface HyperParameterTuningResourceConfig {
11766
11809
  /**
11767
11810
  * The instance type used to run hyperparameter optimization tuning jobs. See descriptions of instance types for more information.
@@ -15660,6 +15703,7 @@ declare namespace SageMaker {
15660
15703
  export type MaxHumanLabeledObjectCount = number;
15661
15704
  export type MaxNumberOfTests = number;
15662
15705
  export type MaxNumberOfTrainingJobs = number;
15706
+ export type MaxNumberOfTrainingJobsNotImproving = number;
15663
15707
  export type MaxParallelExecutionSteps = number;
15664
15708
  export type MaxParallelOfTests = number;
15665
15709
  export type MaxParallelTrainingJobs = number;
@@ -19033,6 +19077,10 @@ declare namespace SageMaker {
19033
19077
  * The maximum number of concurrent training jobs that a hyperparameter tuning job can launch.
19034
19078
  */
19035
19079
  MaxParallelTrainingJobs: MaxParallelTrainingJobs;
19080
+ /**
19081
+ * The maximum time in seconds that a training job launched by a hyperparameter tuning job can run.
19082
+ */
19083
+ MaxRuntimeInSeconds?: HyperParameterTuningMaxRuntimeInSeconds;
19036
19084
  }
19037
19085
  export type ResourcePolicyString = string;
19038
19086
  export type ResourcePropertyName = string;
@@ -20674,7 +20722,15 @@ declare namespace SageMaker {
20674
20722
  /**
20675
20723
  * The value of the objective metric.
20676
20724
  */
20677
- TargetObjectiveMetricValue: TargetObjectiveMetricValue;
20725
+ TargetObjectiveMetricValue?: TargetObjectiveMetricValue;
20726
+ /**
20727
+ * A flag to stop your hyperparameter tuning job if model performance fails to improve as evaluated against an objective function.
20728
+ */
20729
+ BestObjectiveNotImproving?: BestObjectiveNotImproving;
20730
+ /**
20731
+ * A flag to top your hyperparameter tuning job if automatic model tuning (AMT) has detected that your model has converged as evaluated against your objective function.
20732
+ */
20733
+ ConvergenceDetected?: ConvergenceDetected;
20678
20734
  }
20679
20735
  export interface TuningJobStepMetaData {
20680
20736
  /**