cdk-comprehend-s3olap 2.0.29 → 2.0.32

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 (31) hide show
  1. package/.jsii +16 -3
  2. package/lib/cdk-comprehend-s3olap.js +2 -2
  3. package/lib/comprehend-lambdas.js +2 -2
  4. package/lib/iam-roles.js +4 -4
  5. package/node_modules/aws-sdk/CHANGELOG.md +15 -1
  6. package/node_modules/aws-sdk/README.md +1 -1
  7. package/node_modules/aws-sdk/apis/backup-2018-11-15.min.json +1 -2
  8. package/node_modules/aws-sdk/apis/chime-sdk-meetings-2021-07-15.min.json +20 -7
  9. package/node_modules/aws-sdk/apis/cloudformation-2010-05-15.min.json +50 -49
  10. package/node_modules/aws-sdk/apis/dms-2016-01-01.min.json +16 -0
  11. package/node_modules/aws-sdk/apis/iot-2015-05-28.min.json +9 -8
  12. package/node_modules/aws-sdk/apis/iotwireless-2020-11-22.min.json +319 -73
  13. package/node_modules/aws-sdk/apis/iotwireless-2020-11-22.paginators.json +5 -0
  14. package/node_modules/aws-sdk/apis/sagemaker-2017-07-24.min.json +787 -767
  15. package/node_modules/aws-sdk/apis/synthetics-2017-10-11.min.json +272 -39
  16. package/node_modules/aws-sdk/apis/synthetics-2017-10-11.paginators.json +15 -0
  17. package/node_modules/aws-sdk/clients/backup.d.ts +11 -11
  18. package/node_modules/aws-sdk/clients/chimesdkmeetings.d.ts +24 -7
  19. package/node_modules/aws-sdk/clients/cloudformation.d.ts +5 -0
  20. package/node_modules/aws-sdk/clients/dms.d.ts +20 -0
  21. package/node_modules/aws-sdk/clients/iot.d.ts +24 -10
  22. package/node_modules/aws-sdk/clients/iotwireless.d.ts +270 -18
  23. package/node_modules/aws-sdk/clients/sagemaker.d.ts +27 -2
  24. package/node_modules/aws-sdk/clients/synthetics.d.ts +270 -30
  25. package/node_modules/aws-sdk/dist/aws-sdk-core-react-native.js +1 -1
  26. package/node_modules/aws-sdk/dist/aws-sdk-react-native.js +11 -11
  27. package/node_modules/aws-sdk/dist/aws-sdk.js +62 -60
  28. package/node_modules/aws-sdk/dist/aws-sdk.min.js +38 -38
  29. package/node_modules/aws-sdk/lib/core.js +1 -1
  30. package/node_modules/aws-sdk/package.json +1 -1
  31. package/package.json +4 -4
@@ -316,11 +316,11 @@ declare class IoTWireless extends Service {
316
316
  */
317
317
  getDeviceProfile(callback?: (err: AWSError, data: IoTWireless.Types.GetDeviceProfileResponse) => void): Request<IoTWireless.Types.GetDeviceProfileResponse, AWSError>;
318
318
  /**
319
- * Get the event configuration by resource types.
319
+ * Get the event configuration based on resource types.
320
320
  */
321
321
  getEventConfigurationByResourceTypes(params: IoTWireless.Types.GetEventConfigurationByResourceTypesRequest, callback?: (err: AWSError, data: IoTWireless.Types.GetEventConfigurationByResourceTypesResponse) => void): Request<IoTWireless.Types.GetEventConfigurationByResourceTypesResponse, AWSError>;
322
322
  /**
323
- * Get the event configuration by resource types.
323
+ * Get the event configuration based on resource types.
324
324
  */
325
325
  getEventConfigurationByResourceTypes(callback?: (err: AWSError, data: IoTWireless.Types.GetEventConfigurationByResourceTypesResponse) => void): Request<IoTWireless.Types.GetEventConfigurationByResourceTypesResponse, AWSError>;
326
326
  /**
@@ -371,6 +371,22 @@ declare class IoTWireless extends Service {
371
371
  * Gets information about a partner account. If PartnerAccountId and PartnerType are null, returns all partner accounts.
372
372
  */
373
373
  getPartnerAccount(callback?: (err: AWSError, data: IoTWireless.Types.GetPartnerAccountResponse) => void): Request<IoTWireless.Types.GetPartnerAccountResponse, AWSError>;
374
+ /**
375
+ * Get the position information for a given resource.
376
+ */
377
+ getPosition(params: IoTWireless.Types.GetPositionRequest, callback?: (err: AWSError, data: IoTWireless.Types.GetPositionResponse) => void): Request<IoTWireless.Types.GetPositionResponse, AWSError>;
378
+ /**
379
+ * Get the position information for a given resource.
380
+ */
381
+ getPosition(callback?: (err: AWSError, data: IoTWireless.Types.GetPositionResponse) => void): Request<IoTWireless.Types.GetPositionResponse, AWSError>;
382
+ /**
383
+ * Get position configuration for a given resource.
384
+ */
385
+ getPositionConfiguration(params: IoTWireless.Types.GetPositionConfigurationRequest, callback?: (err: AWSError, data: IoTWireless.Types.GetPositionConfigurationResponse) => void): Request<IoTWireless.Types.GetPositionConfigurationResponse, AWSError>;
386
+ /**
387
+ * Get position configuration for a given resource.
388
+ */
389
+ getPositionConfiguration(callback?: (err: AWSError, data: IoTWireless.Types.GetPositionConfigurationResponse) => void): Request<IoTWireless.Types.GetPositionConfigurationResponse, AWSError>;
374
390
  /**
375
391
  * Get the event configuration for a particular resource identifier.
376
392
  */
@@ -531,6 +547,14 @@ declare class IoTWireless extends Service {
531
547
  * Lists the partner accounts associated with your AWS account.
532
548
  */
533
549
  listPartnerAccounts(callback?: (err: AWSError, data: IoTWireless.Types.ListPartnerAccountsResponse) => void): Request<IoTWireless.Types.ListPartnerAccountsResponse, AWSError>;
550
+ /**
551
+ * List position configurations for a given resource, such as positioning solvers.
552
+ */
553
+ listPositionConfigurations(params: IoTWireless.Types.ListPositionConfigurationsRequest, callback?: (err: AWSError, data: IoTWireless.Types.ListPositionConfigurationsResponse) => void): Request<IoTWireless.Types.ListPositionConfigurationsResponse, AWSError>;
554
+ /**
555
+ * List position configurations for a given resource, such as positioning solvers.
556
+ */
557
+ listPositionConfigurations(callback?: (err: AWSError, data: IoTWireless.Types.ListPositionConfigurationsResponse) => void): Request<IoTWireless.Types.ListPositionConfigurationsResponse, AWSError>;
534
558
  /**
535
559
  * List queued messages in the downlink queue.
536
560
  */
@@ -579,6 +603,14 @@ declare class IoTWireless extends Service {
579
603
  * Lists the wireless gateways registered to your AWS account.
580
604
  */
581
605
  listWirelessGateways(callback?: (err: AWSError, data: IoTWireless.Types.ListWirelessGatewaysResponse) => void): Request<IoTWireless.Types.ListWirelessGatewaysResponse, AWSError>;
606
+ /**
607
+ * Put position configuration for a given resource.
608
+ */
609
+ putPositionConfiguration(params: IoTWireless.Types.PutPositionConfigurationRequest, callback?: (err: AWSError, data: IoTWireless.Types.PutPositionConfigurationResponse) => void): Request<IoTWireless.Types.PutPositionConfigurationResponse, AWSError>;
610
+ /**
611
+ * Put position configuration for a given resource.
612
+ */
613
+ putPositionConfiguration(callback?: (err: AWSError, data: IoTWireless.Types.PutPositionConfigurationResponse) => void): Request<IoTWireless.Types.PutPositionConfigurationResponse, AWSError>;
582
614
  /**
583
615
  * Sets the log-level override for a resource-ID and resource-type. This option can be specified for a wireless gateway or a wireless device. A limit of 200 log level override can be set per account.
584
616
  */
@@ -684,11 +716,11 @@ declare class IoTWireless extends Service {
684
716
  */
685
717
  updateDestination(callback?: (err: AWSError, data: IoTWireless.Types.UpdateDestinationResponse) => void): Request<IoTWireless.Types.UpdateDestinationResponse, AWSError>;
686
718
  /**
687
- * Update the event configuration by resource types.
719
+ * Update the event configuration based on resource types.
688
720
  */
689
721
  updateEventConfigurationByResourceTypes(params: IoTWireless.Types.UpdateEventConfigurationByResourceTypesRequest, callback?: (err: AWSError, data: IoTWireless.Types.UpdateEventConfigurationByResourceTypesResponse) => void): Request<IoTWireless.Types.UpdateEventConfigurationByResourceTypesResponse, AWSError>;
690
722
  /**
691
- * Update the event configuration by resource types.
723
+ * Update the event configuration based on resource types.
692
724
  */
693
725
  updateEventConfigurationByResourceTypes(callback?: (err: AWSError, data: IoTWireless.Types.UpdateEventConfigurationByResourceTypesResponse) => void): Request<IoTWireless.Types.UpdateEventConfigurationByResourceTypesResponse, AWSError>;
694
726
  /**
@@ -731,6 +763,14 @@ declare class IoTWireless extends Service {
731
763
  * Updates properties of a partner account.
732
764
  */
733
765
  updatePartnerAccount(callback?: (err: AWSError, data: IoTWireless.Types.UpdatePartnerAccountResponse) => void): Request<IoTWireless.Types.UpdatePartnerAccountResponse, AWSError>;
766
+ /**
767
+ * Update the position information of a resource.
768
+ */
769
+ updatePosition(params: IoTWireless.Types.UpdatePositionRequest, callback?: (err: AWSError, data: IoTWireless.Types.UpdatePositionResponse) => void): Request<IoTWireless.Types.UpdatePositionResponse, AWSError>;
770
+ /**
771
+ * Update the position information of a resource.
772
+ */
773
+ updatePosition(callback?: (err: AWSError, data: IoTWireless.Types.UpdatePositionResponse) => void): Request<IoTWireless.Types.UpdatePositionResponse, AWSError>;
734
774
  /**
735
775
  * Update the event configuration for a particular resource identifier.
736
776
  */
@@ -786,6 +826,16 @@ declare namespace IoTWireless {
786
826
  FCntStart?: FCntStart;
787
827
  }
788
828
  export type AccountLinked = boolean;
829
+ export interface Accuracy {
830
+ /**
831
+ * The horizontal accuracy of the estimated position in meters.
832
+ */
833
+ HorizontalAccuracy?: HorizontalAccuracy;
834
+ /**
835
+ * The vertical accuracy of the estimated position in meters.
836
+ */
837
+ VerticalAccuracy?: VerticalAccuracy;
838
+ }
789
839
  export type AddGwMetadata = boolean;
790
840
  export type AmazonId = string;
791
841
  export type AmazonResourceName = string;
@@ -905,7 +955,7 @@ declare namespace IoTWireless {
905
955
  */
906
956
  LoRaWAN?: LoRaWANConnectionStatusEventNotificationConfigurations;
907
957
  /**
908
- * Enum to denote whether the wireless gateway id connection status event topic is enabled or disabled .
958
+ * Enum to denote whether the wireless gateway ID connection status event topic is enabled or disabled.
909
959
  */
910
960
  WirelessGatewayIdEventTopic?: EventNotificationTopicStatus;
911
961
  }
@@ -1472,6 +1522,10 @@ declare namespace IoTWireless {
1472
1522
  Fuota?: FPort;
1473
1523
  Multicast?: FPort;
1474
1524
  ClockSync?: FPort;
1525
+ /**
1526
+ * FPort values for the GNSS, stream, and ClockSync functions of the positioning information.
1527
+ */
1528
+ Positioning?: Positioning;
1475
1529
  }
1476
1530
  export type FactoryPresetFreqsList = PresetFreq[];
1477
1531
  export type Fingerprint = string;
@@ -1550,19 +1604,19 @@ declare namespace IoTWireless {
1550
1604
  }
1551
1605
  export interface GetEventConfigurationByResourceTypesResponse {
1552
1606
  /**
1553
- * Resource type event configuration for the device registration state event
1607
+ * Resource type event configuration for the device registration state event.
1554
1608
  */
1555
1609
  DeviceRegistrationState?: DeviceRegistrationStateResourceTypeEventConfiguration;
1556
1610
  /**
1557
- * Resource type event configuration for the proximity event
1611
+ * Resource type event configuration for the proximity event.
1558
1612
  */
1559
1613
  Proximity?: ProximityResourceTypeEventConfiguration;
1560
1614
  /**
1561
- * Resource type event configuration for the join event
1615
+ * Resource type event configuration for the join event.
1562
1616
  */
1563
1617
  Join?: JoinResourceTypeEventConfiguration;
1564
1618
  /**
1565
- * Resource type event configuration for the connection status event
1619
+ * Resource type event configuration for the connection status event.
1566
1620
  */
1567
1621
  ConnectionStatus?: ConnectionStatusResourceTypeEventConfiguration;
1568
1622
  }
@@ -1645,6 +1699,62 @@ declare namespace IoTWireless {
1645
1699
  */
1646
1700
  AccountLinked?: AccountLinked;
1647
1701
  }
1702
+ export interface GetPositionConfigurationRequest {
1703
+ /**
1704
+ * Resource identifier used in a position configuration.
1705
+ */
1706
+ ResourceIdentifier: PositionResourceIdentifier;
1707
+ /**
1708
+ * Resource type of the resource for which position configuration is retrieved.
1709
+ */
1710
+ ResourceType: PositionResourceType;
1711
+ }
1712
+ export interface GetPositionConfigurationResponse {
1713
+ /**
1714
+ * The wrapper for the solver configuration details object.
1715
+ */
1716
+ Solvers?: PositionSolverDetails;
1717
+ /**
1718
+ * The position data destination that describes the AWS IoT rule that processes the device's position data for use by AWS IoT Core for LoRaWAN.
1719
+ */
1720
+ Destination?: DestinationName;
1721
+ }
1722
+ export interface GetPositionRequest {
1723
+ /**
1724
+ * Resource identifier used to retrieve the position information.
1725
+ */
1726
+ ResourceIdentifier: PositionResourceIdentifier;
1727
+ /**
1728
+ * Resource type of the resource for which position information is retrieved.
1729
+ */
1730
+ ResourceType: PositionResourceType;
1731
+ }
1732
+ export interface GetPositionResponse {
1733
+ /**
1734
+ * The position information of the resource.
1735
+ */
1736
+ Position?: PositionCoordinate;
1737
+ /**
1738
+ * The accuracy of the estimated position in meters. An empty value indicates that no position data is available. A value of ‘0.0’ value indicates that position data is available. This data corresponds to the position information that you specified instead of the position computed by solver.
1739
+ */
1740
+ Accuracy?: Accuracy;
1741
+ /**
1742
+ * The type of solver used to identify the position of the resource.
1743
+ */
1744
+ SolverType?: PositionSolverType;
1745
+ /**
1746
+ * The vendor of the positioning solver.
1747
+ */
1748
+ SolverProvider?: PositionSolverProvider;
1749
+ /**
1750
+ * The version of the positioning solver.
1751
+ */
1752
+ SolverVersion?: PositionSolverVersion;
1753
+ /**
1754
+ * The timestamp at which the device's position was determined.
1755
+ */
1756
+ Timestamp?: ISODateTimeString;
1757
+ }
1648
1758
  export interface GetResourceEventConfigurationRequest {
1649
1759
  /**
1650
1760
  * Resource identifier to opt in for event messaging.
@@ -1661,11 +1771,11 @@ declare namespace IoTWireless {
1661
1771
  }
1662
1772
  export interface GetResourceEventConfigurationResponse {
1663
1773
  /**
1664
- * Event configuration for the device registration state event
1774
+ * Event configuration for the device registration state event.
1665
1775
  */
1666
1776
  DeviceRegistrationState?: DeviceRegistrationStateEventConfiguration;
1667
1777
  /**
1668
- * Event configuration for the Proximity event
1778
+ * Event configuration for the proximity event.
1669
1779
  */
1670
1780
  Proximity?: ProximityEventConfiguration;
1671
1781
  /**
@@ -1947,6 +2057,7 @@ declare namespace IoTWireless {
1947
2057
  */
1948
2058
  Status?: WirelessGatewayTaskStatus;
1949
2059
  }
2060
+ export type HorizontalAccuracy = number;
1950
2061
  export type HrAllowed = boolean;
1951
2062
  export type ISODateTimeString = string;
1952
2063
  export type Identifier = string;
@@ -2113,6 +2224,27 @@ declare namespace IoTWireless {
2113
2224
  */
2114
2225
  Sidewalk?: SidewalkAccountList;
2115
2226
  }
2227
+ export interface ListPositionConfigurationsRequest {
2228
+ /**
2229
+ * Resource type for which position configurations are listed.
2230
+ */
2231
+ ResourceType?: PositionResourceType;
2232
+ MaxResults?: MaxResults;
2233
+ /**
2234
+ * To retrieve the next set of results, the nextToken value from a previous response; otherwise null to receive the first set of results.
2235
+ */
2236
+ NextToken?: NextToken;
2237
+ }
2238
+ export interface ListPositionConfigurationsResponse {
2239
+ /**
2240
+ * A list of position configurations.
2241
+ */
2242
+ PositionConfigurationList?: PositionConfigurationList;
2243
+ /**
2244
+ * The token to use to get the next set of results, or null if there are no additional results.
2245
+ */
2246
+ NextToken?: NextToken;
2247
+ }
2116
2248
  export interface ListQueuedMessagesRequest {
2117
2249
  /**
2118
2250
  * The ID of a given wireless device which the downlink message packets are being sent.
@@ -2257,7 +2389,7 @@ declare namespace IoTWireless {
2257
2389
  }
2258
2390
  export interface LoRaWANConnectionStatusEventNotificationConfigurations {
2259
2391
  /**
2260
- * Enum to denote whether the gateway eui connection status event topic is enabled or disabled.
2392
+ * Enum to denote whether the gateway EUI connection status event topic is enabled or disabled.
2261
2393
  */
2262
2394
  GatewayEuiEventTopic?: EventNotificationTopicStatus;
2263
2395
  }
@@ -2537,7 +2669,7 @@ declare namespace IoTWireless {
2537
2669
  }
2538
2670
  export interface LoRaWANJoinEventNotificationConfigurations {
2539
2671
  /**
2540
- * Enum to denote whether the dev eui join event topic is enabled or disabled.
2672
+ * Enum to denote whether the Dev EUI join event topic is enabled or disabled.
2541
2673
  */
2542
2674
  DevEuiEventTopic?: EventNotificationTopicStatus;
2543
2675
  }
@@ -2601,6 +2733,10 @@ declare namespace IoTWireless {
2601
2733
  * ABP device object for update APIs for v1.0.x
2602
2734
  */
2603
2735
  AbpV1_0_x?: UpdateAbpV1_0_x;
2736
+ /**
2737
+ * FPorts object for the positioning information of the device.
2738
+ */
2739
+ FPorts?: UpdateFPorts;
2604
2740
  }
2605
2741
  export interface LoRaWANUpdateGatewayTaskCreate {
2606
2742
  /**
@@ -2714,6 +2850,51 @@ declare namespace IoTWireless {
2714
2850
  export type PingSlotDr = number;
2715
2851
  export type PingSlotFreq = number;
2716
2852
  export type PingSlotPeriod = number;
2853
+ export type PositionConfigurationFec = "ROSE"|"NONE"|string;
2854
+ export interface PositionConfigurationItem {
2855
+ /**
2856
+ * Resource identifier for the position configuration.
2857
+ */
2858
+ ResourceIdentifier?: PositionResourceIdentifier;
2859
+ /**
2860
+ * Resource type of the resource for the position configuration.
2861
+ */
2862
+ ResourceType?: PositionResourceType;
2863
+ /**
2864
+ * The details of the positioning solver object used to compute the location.
2865
+ */
2866
+ Solvers?: PositionSolverDetails;
2867
+ /**
2868
+ * The position data destination that describes the AWS IoT rule that processes the device's position data for use by AWS IoT Core for LoRaWAN.
2869
+ */
2870
+ Destination?: DestinationName;
2871
+ }
2872
+ export type PositionConfigurationList = PositionConfigurationItem[];
2873
+ export type PositionConfigurationStatus = "Enabled"|"Disabled"|string;
2874
+ export type PositionCoordinate = PositionCoordinateValue[];
2875
+ export type PositionCoordinateValue = number;
2876
+ export type PositionResourceIdentifier = string;
2877
+ export type PositionResourceType = "WirelessDevice"|"WirelessGateway"|string;
2878
+ export interface PositionSolverConfigurations {
2879
+ /**
2880
+ * The Semtech GNSS solver configuration object.
2881
+ */
2882
+ SemtechGnss?: SemtechGnssConfiguration;
2883
+ }
2884
+ export interface PositionSolverDetails {
2885
+ /**
2886
+ * The Semtech GNSS solver object details.
2887
+ */
2888
+ SemtechGnss?: SemtechGnssDetail;
2889
+ }
2890
+ export type PositionSolverProvider = "Semtech"|string;
2891
+ export type PositionSolverType = "GNSS"|string;
2892
+ export type PositionSolverVersion = string;
2893
+ export interface Positioning {
2894
+ ClockSync?: FPort;
2895
+ Stream?: FPort;
2896
+ Gnss?: FPort;
2897
+ }
2717
2898
  export type PrAllowed = boolean;
2718
2899
  export type PresetFreq = number;
2719
2900
  export interface ProximityEventConfiguration {
@@ -2732,6 +2913,26 @@ declare namespace IoTWireless {
2732
2913
  */
2733
2914
  Sidewalk?: SidewalkResourceTypeEventConfiguration;
2734
2915
  }
2916
+ export interface PutPositionConfigurationRequest {
2917
+ /**
2918
+ * Resource identifier used to update the position configuration.
2919
+ */
2920
+ ResourceIdentifier: PositionResourceIdentifier;
2921
+ /**
2922
+ * Resource type of the resource for which you want to update the position configuration.
2923
+ */
2924
+ ResourceType: PositionResourceType;
2925
+ /**
2926
+ * The positioning solvers used to update the position configuration of the resource.
2927
+ */
2928
+ Solvers?: PositionSolverConfigurations;
2929
+ /**
2930
+ * The position data destination that describes the AWS IoT rule that processes the device's position data for use by AWS IoT Core for LoRaWAN.
2931
+ */
2932
+ Destination?: DestinationName;
2933
+ }
2934
+ export interface PutPositionConfigurationResponse {
2935
+ }
2735
2936
  export interface PutResourceLogLevelRequest {
2736
2937
  ResourceIdentifier: ResourceIdentifier;
2737
2938
  /**
@@ -2770,6 +2971,34 @@ declare namespace IoTWireless {
2770
2971
  export type RxDrOffset1 = number;
2771
2972
  export type RxFreq2 = number;
2772
2973
  export type SNwkSIntKey = string;
2974
+ export interface SemtechGnssConfiguration {
2975
+ /**
2976
+ * The status indicating whether the solver is enabled.
2977
+ */
2978
+ Status: PositionConfigurationStatus;
2979
+ /**
2980
+ * Whether forward error correction is enabled.
2981
+ */
2982
+ Fec: PositionConfigurationFec;
2983
+ }
2984
+ export interface SemtechGnssDetail {
2985
+ /**
2986
+ * The vendor of the solver object.
2987
+ */
2988
+ Provider?: PositionSolverProvider;
2989
+ /**
2990
+ * The type of positioning solver used.
2991
+ */
2992
+ Type?: PositionSolverType;
2993
+ /**
2994
+ * The status indicating whether the solver is enabled.
2995
+ */
2996
+ Status?: PositionConfigurationStatus;
2997
+ /**
2998
+ * Whether forward error correction is enabled.
2999
+ */
3000
+ Fec?: PositionConfigurationFec;
3001
+ }
2773
3002
  export interface SendDataToMulticastGroupRequest {
2774
3003
  Id: MulticastGroupId;
2775
3004
  PayloadData: PayloadData;
@@ -3105,6 +3334,12 @@ declare namespace IoTWireless {
3105
3334
  }
3106
3335
  export interface UpdateEventConfigurationByResourceTypesResponse {
3107
3336
  }
3337
+ export interface UpdateFPorts {
3338
+ /**
3339
+ * Positioning FPorts for the ClockSync, Stream, and GNSS functions.
3340
+ */
3341
+ Positioning?: Positioning;
3342
+ }
3108
3343
  export interface UpdateFuotaTaskRequest {
3109
3344
  Id: FuotaTaskId;
3110
3345
  Name?: FuotaTaskName;
@@ -3169,6 +3404,22 @@ declare namespace IoTWireless {
3169
3404
  }
3170
3405
  export interface UpdatePartnerAccountResponse {
3171
3406
  }
3407
+ export interface UpdatePositionRequest {
3408
+ /**
3409
+ * Resource identifier of the resource for which position is updated.
3410
+ */
3411
+ ResourceIdentifier: PositionResourceIdentifier;
3412
+ /**
3413
+ * Resource type of the resource for which position is updated.
3414
+ */
3415
+ ResourceType: PositionResourceType;
3416
+ /**
3417
+ * The position information of the resource.
3418
+ */
3419
+ Position: PositionCoordinate;
3420
+ }
3421
+ export interface UpdatePositionResponse {
3422
+ }
3172
3423
  export interface UpdateResourceEventConfigurationRequest {
3173
3424
  /**
3174
3425
  * Resource identifier to opt in for event messaging.
@@ -3179,23 +3430,23 @@ declare namespace IoTWireless {
3179
3430
  */
3180
3431
  IdentifierType: IdentifierType;
3181
3432
  /**
3182
- * Partner type of the resource if the identifier type is PartnerAccountId
3433
+ * Partner type of the resource if the identifier type is PartnerAccountId
3183
3434
  */
3184
3435
  PartnerType?: EventNotificationPartnerType;
3185
3436
  /**
3186
- * Event configuration for the device registration state event
3437
+ * Event configuration for the device registration state event.
3187
3438
  */
3188
3439
  DeviceRegistrationState?: DeviceRegistrationStateEventConfiguration;
3189
3440
  /**
3190
- * Event configuration for the Proximity event
3441
+ * Event configuration for the proximity event.
3191
3442
  */
3192
3443
  Proximity?: ProximityEventConfiguration;
3193
3444
  /**
3194
- * Event configuration for the join event
3445
+ * Event configuration for the join event.
3195
3446
  */
3196
3447
  Join?: JoinEventConfiguration;
3197
3448
  /**
3198
- * Event configuration for the connection status event
3449
+ * Event configuration for the connection status event.
3199
3450
  */
3200
3451
  ConnectionStatus?: ConnectionStatusEventConfiguration;
3201
3452
  }
@@ -3272,6 +3523,7 @@ declare namespace IoTWireless {
3272
3523
  */
3273
3524
  Arn?: WirelessGatewayTaskDefinitionArn;
3274
3525
  }
3526
+ export type VerticalAccuracy = number;
3275
3527
  export type WirelessDeviceArn = string;
3276
3528
  export type WirelessDeviceEvent = "Join"|"Rejoin"|"Uplink_Data"|"Downlink_Data"|"Registration"|string;
3277
3529
  export interface WirelessDeviceEventLogOption {
@@ -10098,6 +10098,23 @@ declare namespace SageMaker {
10098
10098
  export type InputDataConfig = Channel[];
10099
10099
  export type InputMode = "Pipe"|"File"|string;
10100
10100
  export type InputModes = TrainingInputMode[];
10101
+ export interface InstanceGroup {
10102
+ /**
10103
+ * Specifies the instance type of the instance group.
10104
+ */
10105
+ InstanceType: TrainingInstanceType;
10106
+ /**
10107
+ * Specifies the number of instances of the instance group.
10108
+ */
10109
+ InstanceCount: TrainingInstanceCount;
10110
+ /**
10111
+ * Specifies the name of the instance group.
10112
+ */
10113
+ InstanceGroupName: InstanceGroupName;
10114
+ }
10115
+ export type InstanceGroupName = string;
10116
+ export type InstanceGroupNames = InstanceGroupName[];
10117
+ export type InstanceGroups = InstanceGroup[];
10101
10118
  export interface InstanceMetadataServiceConfiguration {
10102
10119
  /**
10103
10120
  * Indicates the minimum IMDS version that the notebook instance supports. When passed as part of CreateNotebookInstance, if no value is selected, then it defaults to IMDSv1. This means that both IMDSv1 and IMDSv2 are supported. If passed as part of UpdateNotebookInstance, there is no default.
@@ -15646,11 +15663,11 @@ declare namespace SageMaker {
15646
15663
  /**
15647
15664
  * The ML compute instance type.
15648
15665
  */
15649
- InstanceType: TrainingInstanceType;
15666
+ InstanceType?: TrainingInstanceType;
15650
15667
  /**
15651
15668
  * The number of ML compute instances to use. For distributed training, provide a value greater than 1.
15652
15669
  */
15653
- InstanceCount: TrainingInstanceCount;
15670
+ InstanceCount?: TrainingInstanceCount;
15654
15671
  /**
15655
15672
  * The size of the ML storage volume that you want to provision. ML storage volumes store model artifacts and incremental states. Training algorithms might also use the ML storage volume for scratch space. If you want to store the training data in the ML storage volume, choose File as the TrainingInputMode in the algorithm specification. You must specify sufficient ML storage for your scenario. SageMaker supports only the General Purpose SSD (gp2) ML storage volume type. Certain Nitro-based instances include local storage with a fixed total size, dependent on the instance type. When using these instances for training, SageMaker mounts the local instance storage instead of Amazon EBS gp2 storage. You can't request a VolumeSizeInGB greater than the total size of the local instance storage. For a list of instance types that support local instance storage, including the total size per instance type, see Instance Store Volumes.
15656
15673
  */
@@ -15659,6 +15676,10 @@ declare namespace SageMaker {
15659
15676
  * The Amazon Web Services KMS key that SageMaker uses to encrypt data on the storage volume attached to the ML compute instance(s) that run the training job. Certain Nitro-based instances include local storage, dependent on the instance type. Local storage volumes are encrypted using a hardware module on the instance. You can't request a VolumeKmsKeyId when using an instance type with local storage. For a list of instance types that support local instance storage, see Instance Store Volumes. For more information about local instance storage encryption, see SSD Instance Store Volumes. The VolumeKmsKeyId can be in any of the following formats: // KMS Key ID "1234abcd-12ab-34cd-56ef-1234567890ab" // Amazon Resource Name (ARN) of a KMS Key "arn:aws:kms:us-west-2:111122223333:key/1234abcd-12ab-34cd-56ef-1234567890ab"
15660
15677
  */
15661
15678
  VolumeKmsKeyId?: KmsKeyId;
15679
+ /**
15680
+ * The configuration of a heterogeneous cluster in JSON format.
15681
+ */
15682
+ InstanceGroups?: InstanceGroups;
15662
15683
  }
15663
15684
  export type ResourceId = string;
15664
15685
  export interface ResourceLimits {
@@ -15750,6 +15771,10 @@ declare namespace SageMaker {
15750
15771
  * A list of one or more attribute names to use that are found in a specified augmented manifest file.
15751
15772
  */
15752
15773
  AttributeNames?: AttributeNames;
15774
+ /**
15775
+ * A list of names of instance groups that get data from the S3 data source.
15776
+ */
15777
+ InstanceGroupNames?: InstanceGroupNames;
15753
15778
  }
15754
15779
  export type S3DataType = "ManifestFile"|"S3Prefix"|"AugmentedManifestFile"|string;
15755
15780
  export interface S3StorageConfig {