aws-sdk 2.1386.0 → 2.1388.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (43) hide show
  1. package/CHANGELOG.md +21 -1
  2. package/README.md +1 -1
  3. package/apis/chime-sdk-voice-2022-08-03.min.json +2 -1
  4. package/apis/config-2014-11-12.min.json +129 -112
  5. package/apis/frauddetector-2019-11-15.min.json +29 -12
  6. package/apis/glue-2017-03-31.min.json +510 -509
  7. package/apis/healthlake-2017-07-01.min.json +43 -17
  8. package/apis/iotfleetwise-2021-06-17.min.json +86 -43
  9. package/apis/location-2020-11-19.min.json +23 -16
  10. package/apis/m2-2021-04-28.min.json +90 -40
  11. package/apis/personalize-2018-05-22.min.json +32 -13
  12. package/apis/rds-2014-10-31.min.json +4 -2
  13. package/apis/securityhub-2018-10-26.examples.json +140 -3
  14. package/apis/securityhub-2018-10-26.min.json +465 -158
  15. package/apis/securitylake-2018-05-10.min.json +457 -447
  16. package/apis/securitylake-2018-05-10.paginators.json +7 -7
  17. package/apis/wafv2-2019-07-29.min.json +168 -159
  18. package/apis/workspaces-web-2020-07-08.min.json +360 -71
  19. package/apis/workspaces-web-2020-07-08.paginators.json +5 -0
  20. package/clients/chimesdkvoice.d.ts +5 -0
  21. package/clients/configservice.d.ts +34 -13
  22. package/clients/frauddetector.d.ts +18 -4
  23. package/clients/glue.d.ts +29 -24
  24. package/clients/groundstation.d.ts +2 -2
  25. package/clients/healthlake.d.ts +40 -10
  26. package/clients/iotfleetwise.d.ts +98 -13
  27. package/clients/location.d.ts +24 -8
  28. package/clients/m2.d.ts +81 -2
  29. package/clients/memorydb.d.ts +2 -2
  30. package/clients/personalize.d.ts +34 -17
  31. package/clients/polly.d.ts +2 -2
  32. package/clients/rds.d.ts +10 -2
  33. package/clients/securityhub.d.ts +539 -1
  34. package/clients/securitylake.d.ts +560 -541
  35. package/clients/servicecatalog.d.ts +8 -8
  36. package/clients/wafv2.d.ts +16 -6
  37. package/clients/workspacesweb.d.ts +254 -0
  38. package/dist/aws-sdk-core-react-native.js +1 -1
  39. package/dist/aws-sdk-react-native.js +17 -17
  40. package/dist/aws-sdk.js +191 -146
  41. package/dist/aws-sdk.min.js +63 -63
  42. package/lib/core.js +1 -1
  43. package/package.json +1 -1
@@ -100,11 +100,11 @@ declare class HealthLake extends Service {
100
100
  */
101
101
  startFHIRImportJob(callback?: (err: AWSError, data: HealthLake.Types.StartFHIRImportJobResponse) => void): Request<HealthLake.Types.StartFHIRImportJobResponse, AWSError>;
102
102
  /**
103
- * Adds a user specifed key and value tag to a Data Store.
103
+ * Adds a user specified key and value tag to a Data Store.
104
104
  */
105
105
  tagResource(params: HealthLake.Types.TagResourceRequest, callback?: (err: AWSError, data: HealthLake.Types.TagResourceResponse) => void): Request<HealthLake.Types.TagResourceResponse, AWSError>;
106
106
  /**
107
- * Adds a user specifed key and value tag to a Data Store.
107
+ * Adds a user specified key and value tag to a Data Store.
108
108
  */
109
109
  tagResource(callback?: (err: AWSError, data: HealthLake.Types.TagResourceResponse) => void): Request<HealthLake.Types.TagResourceResponse, AWSError>;
110
110
  /**
@@ -118,9 +118,12 @@ declare class HealthLake extends Service {
118
118
  }
119
119
  declare namespace HealthLake {
120
120
  export type AmazonResourceName = string;
121
+ export type AuthorizationStrategy = "SMART_ON_FHIR_V1"|"AWS_AUTH"|string;
122
+ export type Boolean = boolean;
121
123
  export type BoundedLengthString = string;
122
124
  export type ClientTokenString = string;
123
125
  export type CmkType = "CUSTOMER_MANAGED_KMS_KEY"|"AWS_OWNED_KMS_KEY"|string;
126
+ export type ConfigurationMetadata = string;
124
127
  export interface CreateFHIRDatastoreRequest {
125
128
  /**
126
129
  * The user generated name for the Data Store.
@@ -146,6 +149,10 @@ declare namespace HealthLake {
146
149
  * Resource tags that are applied to a Data Store when it is created.
147
150
  */
148
151
  Tags?: TagList;
152
+ /**
153
+ * The configuration of the identity provider that you want to use for your Data Store.
154
+ */
155
+ IdentityProviderConfiguration?: IdentityProviderConfiguration;
149
156
  }
150
157
  export interface CreateFHIRDatastoreResponse {
151
158
  /**
@@ -153,7 +160,7 @@ declare namespace HealthLake {
153
160
  */
154
161
  DatastoreId: DatastoreId;
155
162
  /**
156
- * The datastore ARN is generated during the creation of the Data Store and can be found in the output from the initial Data Store creation call.
163
+ * The Data Store ARN is generated during the creation of the Data Store and can be found in the output from the initial Data Store creation call.
157
164
  */
158
165
  DatastoreArn: DatastoreArn;
159
166
  /**
@@ -161,7 +168,7 @@ declare namespace HealthLake {
161
168
  */
162
169
  DatastoreStatus: DatastoreStatus;
163
170
  /**
164
- * The AWS endpoint for the created Data Store. For preview, only US-east-1 endpoints are supported.
171
+ * The AWS endpoint for the created Data Store.
165
172
  */
166
173
  DatastoreEndpoint: BoundedLengthString;
167
174
  }
@@ -223,6 +230,10 @@ declare namespace HealthLake {
223
230
  * The preloaded data configuration for the Data Store. Only data preloaded from Synthea is supported.
224
231
  */
225
232
  PreloadDataConfig?: PreloadDataConfig;
233
+ /**
234
+ * The identity provider that you selected when you created the Data Store.
235
+ */
236
+ IdentityProviderConfiguration?: IdentityProviderConfiguration;
226
237
  }
227
238
  export type DatastorePropertiesList = DatastoreProperties[];
228
239
  export type DatastoreStatus = "CREATING"|"ACTIVE"|"DELETING"|"DELETED"|string;
@@ -230,7 +241,7 @@ declare namespace HealthLake {
230
241
  /**
231
242
  * The AWS-generated ID for the Data Store to be deleted.
232
243
  */
233
- DatastoreId?: DatastoreId;
244
+ DatastoreId: DatastoreId;
234
245
  }
235
246
  export interface DeleteFHIRDatastoreResponse {
236
247
  /**
@@ -252,9 +263,9 @@ declare namespace HealthLake {
252
263
  }
253
264
  export interface DescribeFHIRDatastoreRequest {
254
265
  /**
255
- * The AWS-generated Data Store id. This is part of the ‘CreateFHIRDatastore’ output.
266
+ * The AWS-generated Data Store ID.
256
267
  */
257
- DatastoreId?: DatastoreId;
268
+ DatastoreId: DatastoreId;
258
269
  }
259
270
  export interface DescribeFHIRDatastoreResponse {
260
271
  /**
@@ -336,6 +347,24 @@ declare namespace HealthLake {
336
347
  export type ExportJobPropertiesList = ExportJobProperties[];
337
348
  export type FHIRVersion = "R4"|string;
338
349
  export type IamRoleArn = string;
350
+ export interface IdentityProviderConfiguration {
351
+ /**
352
+ * The authorization strategy that you selected when you created the Data Store.
353
+ */
354
+ AuthorizationStrategy: AuthorizationStrategy;
355
+ /**
356
+ * If you enabled fine-grained authorization when you created the Data Store.
357
+ */
358
+ FineGrainedAuthorizationEnabled?: Boolean;
359
+ /**
360
+ * The JSON metadata elements that you want to use in your identity provider configuration. Required elements are listed based on the launch specification of the SMART application. For more information on all possible elements, see Metadata in SMART's App Launch specification. authorization_endpoint: The URL to the OAuth2 authorization endpoint. grant_types_supported: An array of grant types that are supported at the token endpoint. You must provide at least one grant type option. Valid options are authorization_code and client_credentials. token_endpoint: The URL to the OAuth2 token endpoint. capabilities: An array of strings of the SMART capabilities that the authorization server supports. code_challenge_methods_supported: An array of strings of supported PKCE code challenge methods. You must include the S256 method in the array of PKCE code challenge methods.
361
+ */
362
+ Metadata?: ConfigurationMetadata;
363
+ /**
364
+ * The Amazon Resource Name (ARN) of the Lambda function that you want to use to decode the access token created by the authorization server.
365
+ */
366
+ IdpLambdaArn?: LambdaArn;
367
+ }
339
368
  export interface ImportJobProperties {
340
369
  /**
341
370
  * The AWS-generated id number for the Import job.
@@ -346,7 +375,7 @@ declare namespace HealthLake {
346
375
  */
347
376
  JobName?: JobName;
348
377
  /**
349
- * The job status for an Import job. Possible statuses are SUBMITTED, IN_PROGRESS, COMPLETED, FAILED.
378
+ * The job status for an Import job. Possible statuses are SUBMITTED, IN_PROGRESS, COMPLETED_WITH_ERRORS, COMPLETED, FAILED.
350
379
  */
351
380
  JobStatus: JobStatus;
352
381
  /**
@@ -384,7 +413,7 @@ declare namespace HealthLake {
384
413
  }
385
414
  export type JobId = string;
386
415
  export type JobName = string;
387
- export type JobStatus = "SUBMITTED"|"IN_PROGRESS"|"COMPLETED_WITH_ERRORS"|"COMPLETED"|"FAILED"|string;
416
+ export type JobStatus = "SUBMITTED"|"IN_PROGRESS"|"COMPLETED_WITH_ERRORS"|"COMPLETED"|"FAILED"|"CANCEL_SUBMITTED"|"CANCEL_IN_PROGRESS"|"CANCEL_COMPLETED"|"CANCEL_FAILED"|string;
388
417
  export interface KmsEncryptionConfig {
389
418
  /**
390
419
  * The type of customer-managed-key(CMK) used for encyrption. The two types of supported CMKs are customer owned CMKs and AWS owned CMKs.
@@ -395,6 +424,7 @@ declare namespace HealthLake {
395
424
  */
396
425
  KmsKeyId?: EncryptionKeyID;
397
426
  }
427
+ export type LambdaArn = string;
398
428
  export interface ListFHIRDatastoresRequest {
399
429
  /**
400
430
  * Lists all filters associated with a FHIR Data Store request.
@@ -624,7 +654,7 @@ declare namespace HealthLake {
624
654
  */
625
655
  Key: TagKey;
626
656
  /**
627
- * The value portion of tag. Tag values are case sensitive.
657
+ * The value portion of a tag. Tag values are case sensitive.
628
658
  */
629
659
  Value: TagValue;
630
660
  }
@@ -76,11 +76,11 @@ declare class IoTFleetWise extends Service {
76
76
  */
77
77
  createSignalCatalog(callback?: (err: AWSError, data: IoTFleetWise.Types.CreateSignalCatalogResponse) => void): Request<IoTFleetWise.Types.CreateSignalCatalogResponse, AWSError>;
78
78
  /**
79
- * Creates a vehicle, which is an instance of a vehicle model (model manifest). Vehicles created from the same vehicle model consist of the same signals inherited from the vehicle model. If you have an existing Amazon Web Services IoT Thing, you can use Amazon Web Services IoT FleetWise to create a vehicle and collect data from your thing. For more information, see Create a vehicle (AWS CLI) in the Amazon Web Services IoT FleetWise Developer Guide.
79
+ * Creates a vehicle, which is an instance of a vehicle model (model manifest). Vehicles created from the same vehicle model consist of the same signals inherited from the vehicle model. If you have an existing Amazon Web Services IoT thing, you can use Amazon Web Services IoT FleetWise to create a vehicle and collect data from your thing. For more information, see Create a vehicle (AWS CLI) in the Amazon Web Services IoT FleetWise Developer Guide.
80
80
  */
81
81
  createVehicle(params: IoTFleetWise.Types.CreateVehicleRequest, callback?: (err: AWSError, data: IoTFleetWise.Types.CreateVehicleResponse) => void): Request<IoTFleetWise.Types.CreateVehicleResponse, AWSError>;
82
82
  /**
83
- * Creates a vehicle, which is an instance of a vehicle model (model manifest). Vehicles created from the same vehicle model consist of the same signals inherited from the vehicle model. If you have an existing Amazon Web Services IoT Thing, you can use Amazon Web Services IoT FleetWise to create a vehicle and collect data from your thing. For more information, see Create a vehicle (AWS CLI) in the Amazon Web Services IoT FleetWise Developer Guide.
83
+ * Creates a vehicle, which is an instance of a vehicle model (model manifest). Vehicles created from the same vehicle model consist of the same signals inherited from the vehicle model. If you have an existing Amazon Web Services IoT thing, you can use Amazon Web Services IoT FleetWise to create a vehicle and collect data from your thing. For more information, see Create a vehicle (AWS CLI) in the Amazon Web Services IoT FleetWise Developer Guide.
84
84
  */
85
85
  createVehicle(callback?: (err: AWSError, data: IoTFleetWise.Types.CreateVehicleResponse) => void): Request<IoTFleetWise.Types.CreateVehicleResponse, AWSError>;
86
86
  /**
@@ -340,11 +340,11 @@ declare class IoTFleetWise extends Service {
340
340
  */
341
341
  putLoggingOptions(callback?: (err: AWSError, data: IoTFleetWise.Types.PutLoggingOptionsResponse) => void): Request<IoTFleetWise.Types.PutLoggingOptionsResponse, AWSError>;
342
342
  /**
343
- * Registers your Amazon Web Services account, IAM, and Amazon Timestream resources so Amazon Web Services IoT FleetWise can transfer your vehicle data to the Amazon Web Services Cloud. For more information, including step-by-step procedures, see Setting up Amazon Web Services IoT FleetWise. An Amazon Web Services account is not the same thing as a "user account". An Amazon Web Services user is an identity that you create using Identity and Access Management (IAM) and takes the form of either an IAM user or an IAM role, both with credentials. A single Amazon Web Services account can, and typically does, contain many users and roles.
343
+ * This API operation contains deprecated parameters. Register your account again without the Timestream resources parameter so that Amazon Web Services IoT FleetWise can remove the Timestream metadata stored. You should then pass the data destination into the CreateCampaign API operation. You must delete any existing campaigns that include an empty data destination before you register your account again. For more information, see the DeleteCampaign API operation. If you want to delete the Timestream inline policy from the service-linked role, such as to mitigate an overly permissive policy, you must first delete any existing campaigns. Then delete the service-linked role and register your account again to enable CloudWatch metrics. For more information, see DeleteServiceLinkedRole in the Identity and Access Management API Reference. &lt;p&gt;Registers your Amazon Web Services account, IAM, and Amazon Timestream resources so Amazon Web Services IoT FleetWise can transfer your vehicle data to the Amazon Web Services Cloud. For more information, including step-by-step procedures, see &lt;a href=&quot;https://docs.aws.amazon.com/iot-fleetwise/latest/developerguide/setting-up.html&quot;&gt;Setting up Amazon Web Services IoT FleetWise&lt;/a&gt;. &lt;/p&gt; &lt;note&gt; &lt;p&gt;An Amazon Web Services account is &lt;b&gt;not&lt;/b&gt; the same thing as a &quot;user.&quot; An &lt;a href=&quot;https://docs.aws.amazon.com/IAM/latest/UserGuide/introduction_identity-management.html#intro-identity-users&quot;&gt;Amazon Web Services user&lt;/a&gt; is an identity that you create using Identity and Access Management (IAM) and takes the form of either an &lt;a href=&quot;https://docs.aws.amazon.com/IAM/latest/UserGuide/id_users.html&quot;&gt;IAM user&lt;/a&gt; or an &lt;a href=&quot;https://docs.aws.amazon.com/IAM/latest/UserGuide/id_roles.html&quot;&gt;IAM role, both with credentials&lt;/a&gt;. A single Amazon Web Services account can, and typically does, contain many users and roles.&lt;/p&gt; &lt;/note&gt;
344
344
  */
345
345
  registerAccount(params: IoTFleetWise.Types.RegisterAccountRequest, callback?: (err: AWSError, data: IoTFleetWise.Types.RegisterAccountResponse) => void): Request<IoTFleetWise.Types.RegisterAccountResponse, AWSError>;
346
346
  /**
347
- * Registers your Amazon Web Services account, IAM, and Amazon Timestream resources so Amazon Web Services IoT FleetWise can transfer your vehicle data to the Amazon Web Services Cloud. For more information, including step-by-step procedures, see Setting up Amazon Web Services IoT FleetWise. An Amazon Web Services account is not the same thing as a "user account". An Amazon Web Services user is an identity that you create using Identity and Access Management (IAM) and takes the form of either an IAM user or an IAM role, both with credentials. A single Amazon Web Services account can, and typically does, contain many users and roles.
347
+ * This API operation contains deprecated parameters. Register your account again without the Timestream resources parameter so that Amazon Web Services IoT FleetWise can remove the Timestream metadata stored. You should then pass the data destination into the CreateCampaign API operation. You must delete any existing campaigns that include an empty data destination before you register your account again. For more information, see the DeleteCampaign API operation. If you want to delete the Timestream inline policy from the service-linked role, such as to mitigate an overly permissive policy, you must first delete any existing campaigns. Then delete the service-linked role and register your account again to enable CloudWatch metrics. For more information, see DeleteServiceLinkedRole in the Identity and Access Management API Reference. &lt;p&gt;Registers your Amazon Web Services account, IAM, and Amazon Timestream resources so Amazon Web Services IoT FleetWise can transfer your vehicle data to the Amazon Web Services Cloud. For more information, including step-by-step procedures, see &lt;a href=&quot;https://docs.aws.amazon.com/iot-fleetwise/latest/developerguide/setting-up.html&quot;&gt;Setting up Amazon Web Services IoT FleetWise&lt;/a&gt;. &lt;/p&gt; &lt;note&gt; &lt;p&gt;An Amazon Web Services account is &lt;b&gt;not&lt;/b&gt; the same thing as a &quot;user.&quot; An &lt;a href=&quot;https://docs.aws.amazon.com/IAM/latest/UserGuide/introduction_identity-management.html#intro-identity-users&quot;&gt;Amazon Web Services user&lt;/a&gt; is an identity that you create using Identity and Access Management (IAM) and takes the form of either an &lt;a href=&quot;https://docs.aws.amazon.com/IAM/latest/UserGuide/id_users.html&quot;&gt;IAM user&lt;/a&gt; or an &lt;a href=&quot;https://docs.aws.amazon.com/IAM/latest/UserGuide/id_roles.html&quot;&gt;IAM role, both with credentials&lt;/a&gt;. A single Amazon Web Services account can, and typically does, contain many users and roles.&lt;/p&gt; &lt;/note&gt;
348
348
  */
349
349
  registerAccount(callback?: (err: AWSError, data: IoTFleetWise.Types.RegisterAccountResponse) => void): Request<IoTFleetWise.Types.RegisterAccountResponse, AWSError>;
350
350
  /**
@@ -446,6 +446,14 @@ declare namespace IoTFleetWise {
446
446
  * A specified value for the actuator.
447
447
  */
448
448
  assignedValue?: string;
449
+ /**
450
+ * The deprecation message for the node or the branch that was moved or deleted.
451
+ */
452
+ deprecationMessage?: message;
453
+ /**
454
+ * A comment in addition to the description.
455
+ */
456
+ comment?: message;
449
457
  }
450
458
  export type AmazonResourceName = string;
451
459
  export interface AssociateVehicleFleetRequest {
@@ -497,6 +505,14 @@ declare namespace IoTFleetWise {
497
505
  * The default value of the attribute.
498
506
  */
499
507
  defaultValue?: string;
508
+ /**
509
+ * The deprecation message for the node or the branch that was moved or deleted.
510
+ */
511
+ deprecationMessage?: message;
512
+ /**
513
+ * A comment in addition to the description.
514
+ */
515
+ comment?: message;
500
516
  }
501
517
  export interface BatchCreateVehicleRequest {
502
518
  /**
@@ -539,6 +555,14 @@ declare namespace IoTFleetWise {
539
555
  * A brief description of the branch.
540
556
  */
541
557
  description?: description;
558
+ /**
559
+ * The deprecation message for the node or the branch that was moved or deleted.
560
+ */
561
+ deprecationMessage?: message;
562
+ /**
563
+ * A comment in addition to the description.
564
+ */
565
+ comment?: message;
542
566
  }
543
567
  export type CampaignStatus = "CREATING"|"WAITING_FOR_APPROVAL"|"RUNNING"|"SUSPENDED"|string;
544
568
  export interface CampaignSummary {
@@ -618,11 +642,11 @@ declare namespace IoTFleetWise {
618
642
  */
619
643
  isSigned: boolean;
620
644
  /**
621
- * Indicates the beginning of the CAN message.
645
+ * Indicates the beginning of the CAN signal. This should always be the least significant bit (LSB). This value might be different from the value in a DBC file. For little endian signals, startBit is the same value as in the DBC file. For big endian signals in a DBC file, the start bit is the most significant bit (MSB). You will have to calculate the LSB instead and pass it as the startBit.
622
646
  */
623
647
  startBit: nonNegativeInteger;
624
648
  /**
625
- * Indicates where data appears in the CAN message.
649
+ * The offset used to calculate the signal value. Combined with factor, the calculation is value = raw_value * factor + offset.
626
650
  */
627
651
  offset: double;
628
652
  /**
@@ -701,7 +725,7 @@ declare namespace IoTFleetWise {
701
725
  */
702
726
  startTime?: timestamp;
703
727
  /**
704
- * (Optional) The time the campaign expires, in seconds since epoch (January 1, 1970 at midnight UTC time). Vehicle data won't be collected after the campaign expires. Default: 253402214400 (December 31, 9999, 00:00:00 UTC)
728
+ * (Optional) The time the campaign expires, in seconds since epoch (January 1, 1970 at midnight UTC time). Vehicle data isn't collected after the campaign expires. Default: 253402214400 (December 31, 9999, 00:00:00 UTC)
705
729
  */
706
730
  expiryTime?: timestamp;
707
731
  /**
@@ -740,6 +764,10 @@ declare namespace IoTFleetWise {
740
764
  * Metadata that can be used to manage the campaign.
741
765
  */
742
766
  tags?: TagList;
767
+ /**
768
+ * The destination where the campaign sends data. You can choose to send data to be stored in Amazon S3 or Amazon Timestream. Amazon S3 optimizes the cost of data storage and provides additional mechanisms to use vehicle data, such as data lakes, centralized data storage, data processing pipelines, and analytics. You can use Amazon Timestream to access and analyze time series data, and Timestream to query vehicle data so that you can identify trends and patterns.
769
+ */
770
+ dataDestinationConfigs?: DataDestinationConfigs;
743
771
  }
744
772
  export interface CreateCampaignResponse {
745
773
  /**
@@ -903,7 +931,7 @@ declare namespace IoTFleetWise {
903
931
  */
904
932
  decoderManifestArn: arn;
905
933
  /**
906
- * Static information about a vehicle in a key-value pair. For example: "engineType" : "1.3 L R2"
934
+ * Static information about a vehicle in a key-value pair. For example: "engineType" : "1.3 L R2" A campaign must include the keys (attribute names) in dataExtraDimensions for them to display in Amazon Timestream.
907
935
  */
908
936
  attributes?: attributesMap;
909
937
  /**
@@ -969,7 +997,19 @@ declare namespace IoTFleetWise {
969
997
  */
970
998
  thingArn?: arn;
971
999
  }
1000
+ export interface DataDestinationConfig {
1001
+ /**
1002
+ * The Amazon S3 bucket where the Amazon Web Services IoT FleetWise campaign sends data.
1003
+ */
1004
+ s3Config?: S3Config;
1005
+ /**
1006
+ * The Amazon Timestream table where the campaign sends data.
1007
+ */
1008
+ timestreamConfig?: TimestreamConfig;
1009
+ }
1010
+ export type DataDestinationConfigs = DataDestinationConfig[];
972
1011
  export type DataExtraDimensionNodePathList = NodePath[];
1012
+ export type DataFormat = "JSON"|"PARQUET"|string;
973
1013
  export interface DecoderManifestSummary {
974
1014
  /**
975
1015
  * The name of the decoder manifest.
@@ -1222,6 +1262,10 @@ declare namespace IoTFleetWise {
1222
1262
  * The last time the campaign was modified.
1223
1263
  */
1224
1264
  lastModificationTime?: timestamp;
1265
+ /**
1266
+ * The destination where the campaign sends data. You can choose to send data to be stored in Amazon S3 or Amazon Timestream. Amazon S3 optimizes the cost of data storage and provides additional mechanisms to use vehicle data, such as data lakes, centralized data storage, data processing pipelines, and analytics. You can use Amazon Timestream to access and analyze time series data, and Timestream to query vehicle data so that you can identify trends and patterns.
1267
+ */
1268
+ dataDestinationConfigs?: DataDestinationConfigs;
1225
1269
  }
1226
1270
  export interface GetDecoderManifestRequest {
1227
1271
  /**
@@ -1349,7 +1393,7 @@ declare namespace IoTFleetWise {
1349
1393
  /**
1350
1394
  * Information about the registered Amazon Timestream resources or errors, if any.
1351
1395
  */
1352
- timestreamRegistrationResponse: TimestreamRegistrationResponse;
1396
+ timestreamRegistrationResponse?: TimestreamRegistrationResponse;
1353
1397
  /**
1354
1398
  * Information about the registered IAM resources or errors, if any.
1355
1399
  */
@@ -1972,7 +2016,7 @@ declare namespace IoTFleetWise {
1972
2016
  */
1973
2017
  scaling: double;
1974
2018
  /**
1975
- * Indicates where data appears in the message.
2019
+ * The offset used to calculate the signal value. Combined with scaling, the calculation is value = raw_value * scaling + offset.
1976
2020
  */
1977
2021
  offset: double;
1978
2022
  /**
@@ -1993,6 +2037,7 @@ declare namespace IoTFleetWise {
1993
2037
  bitMaskLength?: ObdBitmaskLength;
1994
2038
  }
1995
2039
  export type ObdStandard = string;
2040
+ export type Prefix = string;
1996
2041
  export type ProtocolName = string;
1997
2042
  export type ProtocolVersion = string;
1998
2043
  export interface PutLoggingOptionsRequest {
@@ -2004,7 +2049,7 @@ declare namespace IoTFleetWise {
2004
2049
  export interface PutLoggingOptionsResponse {
2005
2050
  }
2006
2051
  export interface RegisterAccountRequest {
2007
- timestreamResources: TimestreamResources;
2052
+ timestreamResources?: TimestreamResources;
2008
2053
  /**
2009
2054
  * The IAM resource that allows Amazon Web Services IoT FleetWise to send data to Amazon Timestream.
2010
2055
  */
@@ -2015,7 +2060,7 @@ declare namespace IoTFleetWise {
2015
2060
  * The status of registering your Amazon Web Services account, IAM role, and Timestream resources.
2016
2061
  */
2017
2062
  registerAccountStatus: RegistrationStatus;
2018
- timestreamResources: TimestreamResources;
2063
+ timestreamResources?: TimestreamResources;
2019
2064
  /**
2020
2065
  * The registered IAM resource that allows Amazon Web Services IoT FleetWise to send data to Amazon Timestream.
2021
2066
  */
@@ -2030,6 +2075,25 @@ declare namespace IoTFleetWise {
2030
2075
  lastModificationTime: timestamp;
2031
2076
  }
2032
2077
  export type RegistrationStatus = "REGISTRATION_PENDING"|"REGISTRATION_SUCCESS"|"REGISTRATION_FAILURE"|string;
2078
+ export type S3BucketArn = string;
2079
+ export interface S3Config {
2080
+ /**
2081
+ * The Amazon Resource Name (ARN) of the Amazon S3 bucket.
2082
+ */
2083
+ bucketArn: S3BucketArn;
2084
+ /**
2085
+ * Specify the format that files are saved in the Amazon S3 bucket. You can save files in an Apache Parquet or JSON format. Parquet - Store data in a columnar storage file format. Parquet is optimal for fast data retrieval and can reduce costs. This option is selected by default. JSON - Store data in a standard text-based JSON file format.
2086
+ */
2087
+ dataFormat?: DataFormat;
2088
+ /**
2089
+ * By default, stored data is compressed as a .gzip file. Compressed files have a reduced file size, which can optimize the cost of data storage.
2090
+ */
2091
+ storageCompressionFormat?: StorageCompressionFormat;
2092
+ /**
2093
+ * (Optional) Enter an S3 bucket prefix. The prefix is the string of characters after the bucket name and before the object name. You can use the prefix to organize data stored in Amazon S3 buckets. For more information, see Organizing objects using prefixes in the Amazon Simple Storage Service User Guide. By default, Amazon Web Services IoT FleetWise sets the prefix processed-data/year=YY/month=MM/date=DD/hour=HH/ (in UTC) to data it delivers to Amazon S3. You can enter a prefix to append it to this default prefix. For example, if you enter the prefix vehicles, the prefix will be vehicles/processed-data/year=YY/month=MM/date=DD/hour=HH/.
2094
+ */
2095
+ prefix?: Prefix;
2096
+ }
2033
2097
  export interface Sensor {
2034
2098
  /**
2035
2099
  * The fully qualified name of the sensor. For example, the fully qualified name of a sensor might be Vehicle.Body.Engine.Battery.
@@ -2059,6 +2123,14 @@ declare namespace IoTFleetWise {
2059
2123
  * The specified possible maximum value of the sensor.
2060
2124
  */
2061
2125
  max?: double;
2126
+ /**
2127
+ * The deprecation message for the node or the branch that was moved or deleted.
2128
+ */
2129
+ deprecationMessage?: message;
2130
+ /**
2131
+ * A comment in addition to the description.
2132
+ */
2133
+ comment?: message;
2062
2134
  }
2063
2135
  export interface SignalCatalogSummary {
2064
2136
  /**
@@ -2118,6 +2190,7 @@ declare namespace IoTFleetWise {
2118
2190
  }
2119
2191
  export type SignalInformationList = SignalInformation[];
2120
2192
  export type SpoolingMode = "OFF"|"TO_DISK"|string;
2193
+ export type StorageCompressionFormat = "NONE"|"GZIP"|string;
2121
2194
  export type String = string;
2122
2195
  export interface Tag {
2123
2196
  /**
@@ -2151,6 +2224,16 @@ declare namespace IoTFleetWise {
2151
2224
  */
2152
2225
  periodMs: collectionPeriodMs;
2153
2226
  }
2227
+ export interface TimestreamConfig {
2228
+ /**
2229
+ * The Amazon Resource Name (ARN) of the Amazon Timestream table.
2230
+ */
2231
+ timestreamTableArn: TimestreamTableArn;
2232
+ /**
2233
+ * The Amazon Resource Name (ARN) of the task execution role that grants Amazon Web Services IoT FleetWise permission to deliver data to the Amazon Timestream table.
2234
+ */
2235
+ executionRoleArn: IAMRoleArn;
2236
+ }
2154
2237
  export type TimestreamDatabaseName = string;
2155
2238
  export interface TimestreamRegistrationResponse {
2156
2239
  /**
@@ -2188,6 +2271,7 @@ declare namespace IoTFleetWise {
2188
2271
  */
2189
2272
  timestreamTableName: TimestreamTableName;
2190
2273
  }
2274
+ export type TimestreamTableArn = string;
2191
2275
  export type TimestreamTableName = string;
2192
2276
  export type TriggerMode = "ALWAYS"|"RISING_EDGE"|string;
2193
2277
  export interface UntagResourceRequest {
@@ -2217,7 +2301,7 @@ declare namespace IoTFleetWise {
2217
2301
  */
2218
2302
  dataExtraDimensions?: DataExtraDimensionNodePathList;
2219
2303
  /**
2220
- * Specifies how to update a campaign. The action can be one of the following: APPROVE - To approve delivering a data collection scheme to vehicles. SUSPEND - To suspend collecting signal data. RESUME - To resume collecting signal data. UPDATE - To update a campaign.
2304
+ * Specifies how to update a campaign. The action can be one of the following: APPROVE - To approve delivering a data collection scheme to vehicles. SUSPEND - To suspend collecting signal data. The campaign is deleted from vehicles and all vehicles in the suspended campaign will stop sending data. RESUME - To reactivate the SUSPEND campaign. The campaign is redeployed to all vehicles and the vehicles will resume sending data. UPDATE - To update a campaign.
2221
2305
  */
2222
2306
  action: UpdateCampaignAction;
2223
2307
  }
@@ -2513,6 +2597,7 @@ declare namespace IoTFleetWise {
2513
2597
  export type listVehiclesMaxResults = number;
2514
2598
  export type maxResults = number;
2515
2599
  export type maxSampleCount = number;
2600
+ export type message = string;
2516
2601
  export type modelManifestSummaries = ModelManifestSummary[];
2517
2602
  export type nextToken = string;
2518
2603
  export type nonNegativeInteger = number;
@@ -937,6 +937,8 @@ declare namespace Location {
937
937
  Radius: Double;
938
938
  }
939
939
  export type CountryCode = string;
940
+ export type CountryCode3 = string;
941
+ export type CountryCode3OrEmpty = string;
940
942
  export type CountryCodeList = CountryCode[];
941
943
  export interface CreateGeofenceCollectionRequest {
942
944
  /**
@@ -1092,7 +1094,7 @@ declare namespace Location {
1092
1094
  /**
1093
1095
  * The Amazon Resource Name (ARN) for the place index resource. Used to specify a resource across Amazon Web Services. Format example: arn:aws:geo:region:account-id:place-index/ExamplePlaceIndex
1094
1096
  */
1095
- IndexArn: Arn;
1097
+ IndexArn: GeoArn;
1096
1098
  /**
1097
1099
  * The name for the place index resource.
1098
1100
  */
@@ -1124,7 +1126,7 @@ declare namespace Location {
1124
1126
  /**
1125
1127
  * The Amazon Resource Name (ARN) for the route calculator resource. Use the ARN when you specify a resource across all Amazon Web Services. Format example: arn:aws:geo:region:account-id:route-calculator/ExampleCalculator
1126
1128
  */
1127
- CalculatorArn: Arn;
1129
+ CalculatorArn: GeoArn;
1128
1130
  /**
1129
1131
  * The name of the route calculator resource. For example, ExampleRouteCalculator.
1130
1132
  */
@@ -1387,7 +1389,7 @@ declare namespace Location {
1387
1389
  /**
1388
1390
  * The Amazon Resource Name (ARN) for the place index resource. Used to specify a resource across Amazon Web Services. Format example: arn:aws:geo:region:account-id:place-index/ExamplePlaceIndex
1389
1391
  */
1390
- IndexArn: Arn;
1392
+ IndexArn: GeoArn;
1391
1393
  /**
1392
1394
  * The name of the place index resource being described.
1393
1395
  */
@@ -1415,7 +1417,7 @@ declare namespace Location {
1415
1417
  /**
1416
1418
  * The Amazon Resource Name (ARN) for the Route calculator resource. Use the ARN when you specify a resource across Amazon Web Services. Format example: arn:aws:geo:region:account-id:route-calculator/ExampleCalculator
1417
1419
  */
1418
- CalculatorArn: Arn;
1420
+ CalculatorArn: GeoArn;
1419
1421
  /**
1420
1422
  * The name of the route calculator resource being described.
1421
1423
  */
@@ -1675,7 +1677,7 @@ declare namespace Location {
1675
1677
  }
1676
1678
  export interface GetMapGlyphsRequest {
1677
1679
  /**
1678
- * A comma-separated list of fonts to load glyphs from in order of preference. For example, Noto Sans Regular, Arial Unicode. Valid fonts stacks for Esri styles: VectorEsriDarkGrayCanvas – Ubuntu Medium Italic | Ubuntu Medium | Ubuntu Italic | Ubuntu Regular | Ubuntu Bold VectorEsriLightGrayCanvas – Ubuntu Italic | Ubuntu Regular | Ubuntu Light | Ubuntu Bold VectorEsriTopographic – Noto Sans Italic | Noto Sans Regular | Noto Sans Bold | Noto Serif Regular | Roboto Condensed Light Italic VectorEsriStreets – Arial Regular | Arial Italic | Arial Bold VectorEsriNavigation – Arial Regular | Arial Italic | Arial Bold Valid font stacks for HERE Technologies styles: VectorHereContrast – Fira GO Regular | Fira GO Bold VectorHereExplore, VectorHereExploreTruck, HybridHereExploreSatellite – Fira GO Italic | Fira GO Map | Fira GO Map Bold | Noto Sans CJK JP Bold | Noto Sans CJK JP Light | Noto Sans CJK JP Regular Valid font stacks for GrabMaps styles: VectorGrabStandardLight, VectorGrabStandardDark – Noto Sans Regular | Noto Sans Medium | Noto Sans Bold Valid font stacks for Open Data styles: VectorOpenDataStandardLight, VectorOpenDataStandardDark, VectorOpenDataVisualizationLight, VectorOpenDataVisualizationDark – Amazon Ember Regular,Noto Sans Regular | Amazon Ember Bold,Noto Sans Bold | Amazon Ember Medium,Noto Sans Medium | Amazon Ember Regular Italic,Noto Sans Italic | Amazon Ember Condensed RC Regular,Noto Sans Regular | Amazon Ember Condensed RC Bold,Noto Sans Bold The fonts used by the Open Data map styles are combined fonts that use Amazon Ember for most glyphs but Noto Sans for glyphs unsupported by Amazon Ember.
1680
+ * A comma-separated list of fonts to load glyphs from in order of preference. For example, Noto Sans Regular, Arial Unicode. Valid fonts stacks for Esri styles: VectorEsriDarkGrayCanvas – Ubuntu Medium Italic | Ubuntu Medium | Ubuntu Italic | Ubuntu Regular | Ubuntu Bold VectorEsriLightGrayCanvas – Ubuntu Italic | Ubuntu Regular | Ubuntu Light | Ubuntu Bold VectorEsriTopographic – Noto Sans Italic | Noto Sans Regular | Noto Sans Bold | Noto Serif Regular | Roboto Condensed Light Italic VectorEsriStreets – Arial Regular | Arial Italic | Arial Bold VectorEsriNavigation – Arial Regular | Arial Italic | Arial Bold Valid font stacks for HERE Technologies styles: VectorHereContrast – Fira GO Regular | Fira GO Bold VectorHereExplore, VectorHereExploreTruck, HybridHereExploreSatellite – Fira GO Italic | Fira GO Map | Fira GO Map Bold | Noto Sans CJK JP Bold | Noto Sans CJK JP Light | Noto Sans CJK JP Regular Valid font stacks for GrabMaps styles: VectorGrabStandardLight, VectorGrabStandardDark – Noto Sans Regular | Noto Sans Medium | Noto Sans Bold Valid font stacks for Open Data styles: VectorOpenDataStandardLight, VectorOpenDataStandardDark, VectorOpenDataVisualizationLight, VectorOpenDataVisualizationDark – Amazon Ember Regular,Noto Sans Regular | Amazon Ember Bold,Noto Sans Bold | Amazon Ember Medium,Noto Sans Medium | Amazon Ember Regular Italic,Noto Sans Italic | Amazon Ember Condensed RC Regular,Noto Sans Regular | Amazon Ember Condensed RC Bold,Noto Sans Bold | Amazon Ember Regular,Noto Sans Regular,Noto Sans Arabic Regular | Amazon Ember Condensed RC Bold,Noto Sans Bold,Noto Sans Arabic Condensed Bold | Amazon Ember Bold,Noto Sans Bold,Noto Sans Arabic Bold | Amazon Ember Regular Italic,Noto Sans Italic,Noto Sans Arabic Regular | Amazon Ember Condensed RC Regular,Noto Sans Regular,Noto Sans Arabic Condensed Regular | Amazon Ember Medium,Noto Sans Medium,Noto Sans Arabic Medium The fonts used by the Open Data map styles are combined fonts that use Amazon Ember for most glyphs but Noto Sans for glyphs unsupported by Amazon Ember.
1679
1681
  */
1680
1682
  FontStack: String;
1681
1683
  /**
@@ -2285,10 +2287,20 @@ declare namespace Location {
2285
2287
  export type ListTrackersResponseEntryList = ListTrackersResponseEntry[];
2286
2288
  export interface MapConfiguration {
2287
2289
  /**
2288
- * Specifies the map style selected from an available data provider. Valid Esri map styles: VectorEsriDarkGrayCanvas – The Esri Dark Gray Canvas map style. A vector basemap with a dark gray, neutral background with minimal colors, labels, and features that's designed to draw attention to your thematic content. RasterEsriImagery – The Esri Imagery map style. A raster basemap that provides one meter or better satellite and aerial imagery in many parts of the world and lower resolution satellite imagery worldwide. VectorEsriLightGrayCanvas – The Esri Light Gray Canvas map style, which provides a detailed vector basemap with a light gray, neutral background style with minimal colors, labels, and features that's designed to draw attention to your thematic content. VectorEsriTopographic – The Esri Light map style, which provides a detailed vector basemap with a classic Esri map style. VectorEsriStreets – The Esri World Streets map style, which provides a detailed vector basemap for the world symbolized with a classic Esri street map style. The vector tile layer is similar in content and style to the World Street Map raster map. VectorEsriNavigation The Esri World Navigation map style, which provides a detailed basemap for the world symbolized with a custom navigation map style that's designed for use during the day in mobile devices. Valid HERE Technologies map styles: VectorHereContrast – The HERE Contrast (Berlin) map style is a high contrast detailed base map of the world that blends 3D and 2D rendering. The VectorHereContrast style has been renamed from VectorHereBerlin. VectorHereBerlin has been deprecated, but will continue to work in applications that use it. VectorHereExplore – A default HERE map style containing a neutral, global map and its features including roads, buildings, landmarks, and water features. It also now includes a fully designed map of Japan. VectorHereExploreTruck – A global map containing truck restrictions and attributes (e.g. width / height / HAZMAT) symbolized with highlighted segments and icons on top of HERE Explore to support use cases within transport and logistics. RasterHereExploreSatellite – A global map containing high resolution satellite imagery. HybridHereExploreSatellite – A global map displaying the road network, street names, and city labels over satellite imagery. This style will automatically retrieve both raster and vector tiles, and your charges will be based on total tiles retrieved. Hybrid styles use both vector and raster tiles when rendering the map that you see. This means that more tiles are retrieved than when using either vector or raster tiles alone. Your charges will include all tiles retrieved. Valid GrabMaps map styles: VectorGrabStandardLight – The Grab Standard Light map style provides a basemap with detailed land use coloring, area names, roads, landmarks, and points of interest covering Southeast Asia. VectorGrabStandardDark – The Grab Standard Dark map style provides a dark variation of the standard basemap covering Southeast Asia. Grab provides maps only for countries in Southeast Asia, and is only available in the Asia Pacific (Singapore) Region (ap-southeast-1). For more information, see GrabMaps countries and area covered. Valid Open Data map styles: VectorOpenDataStandardLight – The Open Data Standard Light map style provides a detailed basemap for the world suitable for website and mobile application use. The map includes highways major roads, minor roads, railways, water features, cities, parks, landmarks, building footprints, and administrative boundaries. VectorOpenDataStandardDark – Open Data Standard Dark is a dark-themed map style that provides a detailed basemap for the world suitable for website and mobile application use. The map includes highways major roads, minor roads, railways, water features, cities, parks, landmarks, building footprints, and administrative boundaries. VectorOpenDataVisualizationLight – The Open Data Visualization Light map style is a light-themed style with muted colors and fewer features that aids in understanding overlaid data. VectorOpenDataVisualizationDark – The Open Data Visualization Dark map style is a dark-themed style with muted colors and fewer features that aids in understanding overlaid data.
2290
+ * Specifies the political view for the style. Leave unset to not use a political view, or, for styles that support specific political views, you can choose a view, such as IND for the Indian view. Default is unset. Not all map resources or styles support political view styles. See Political views for more information.
2291
+ */
2292
+ PoliticalView?: CountryCode3;
2293
+ /**
2294
+ * Specifies the map style selected from an available data provider. Valid Esri map styles: VectorEsriDarkGrayCanvas – The Esri Dark Gray Canvas map style. A vector basemap with a dark gray, neutral background with minimal colors, labels, and features that's designed to draw attention to your thematic content. RasterEsriImagery – The Esri Imagery map style. A raster basemap that provides one meter or better satellite and aerial imagery in many parts of the world and lower resolution satellite imagery worldwide. VectorEsriLightGrayCanvas – The Esri Light Gray Canvas map style, which provides a detailed vector basemap with a light gray, neutral background style with minimal colors, labels, and features that's designed to draw attention to your thematic content. VectorEsriTopographic – The Esri Light map style, which provides a detailed vector basemap with a classic Esri map style. VectorEsriStreets – The Esri Street Map style, which provides a detailed vector basemap for the world symbolized with a classic Esri street map style. The vector tile layer is similar in content and style to the World Street Map raster map. VectorEsriNavigation – The Esri Navigation map style, which provides a detailed basemap for the world symbolized with a custom navigation map style that's designed for use during the day in mobile devices. Valid HERE Technologies map styles: VectorHereContrast – The HERE Contrast (Berlin) map style is a high contrast detailed base map of the world that blends 3D and 2D rendering. The VectorHereContrast style has been renamed from VectorHereBerlin. VectorHereBerlin has been deprecated, but will continue to work in applications that use it. VectorHereExplore – A default HERE map style containing a neutral, global map and its features including roads, buildings, landmarks, and water features. It also now includes a fully designed map of Japan. VectorHereExploreTruck – A global map containing truck restrictions and attributes (e.g. width / height / HAZMAT) symbolized with highlighted segments and icons on top of HERE Explore to support use cases within transport and logistics. RasterHereExploreSatellite – A global map containing high resolution satellite imagery. HybridHereExploreSatellite – A global map displaying the road network, street names, and city labels over satellite imagery. This style will automatically retrieve both raster and vector tiles, and your charges will be based on total tiles retrieved. Hybrid styles use both vector and raster tiles when rendering the map that you see. This means that more tiles are retrieved than when using either vector or raster tiles alone. Your charges will include all tiles retrieved. Valid GrabMaps map styles: VectorGrabStandardLight – The Grab Standard Light map style provides a basemap with detailed land use coloring, area names, roads, landmarks, and points of interest covering Southeast Asia. VectorGrabStandardDark – The Grab Standard Dark map style provides a dark variation of the standard basemap covering Southeast Asia. Grab provides maps only for countries in Southeast Asia, and is only available in the Asia Pacific (Singapore) Region (ap-southeast-1). For more information, see GrabMaps countries and area covered. Valid Open Data map styles: VectorOpenDataStandardLight – The Open Data Standard Light map style provides a detailed basemap for the world suitable for website and mobile application use. The map includes highways major roads, minor roads, railways, water features, cities, parks, landmarks, building footprints, and administrative boundaries. VectorOpenDataStandardDark – Open Data Standard Dark is a dark-themed map style that provides a detailed basemap for the world suitable for website and mobile application use. The map includes highways major roads, minor roads, railways, water features, cities, parks, landmarks, building footprints, and administrative boundaries. VectorOpenDataVisualizationLight – The Open Data Visualization Light map style is a light-themed style with muted colors and fewer features that aids in understanding overlaid data. VectorOpenDataVisualizationDark – The Open Data Visualization Dark map style is a dark-themed style with muted colors and fewer features that aids in understanding overlaid data.
2289
2295
  */
2290
2296
  Style: MapStyle;
2291
2297
  }
2298
+ export interface MapConfigurationUpdate {
2299
+ /**
2300
+ * Specifies the political view for the style. Set to an empty string to not use a political view, or, for styles that support specific political views, you can choose a view, such as IND for the Indian view. Not all map resources or styles support political view styles. See Political views for more information.
2301
+ */
2302
+ PoliticalView?: CountryCode3OrEmpty;
2303
+ }
2292
2304
  export type MapStyle = string;
2293
2305
  export interface Place {
2294
2306
  /**
@@ -2842,6 +2854,10 @@ declare namespace Location {
2842
2854
  UpdateTime: Timestamp;
2843
2855
  }
2844
2856
  export interface UpdateMapRequest {
2857
+ /**
2858
+ * Updates the parts of the map configuration that can be updated, including the political view.
2859
+ */
2860
+ ConfigurationUpdate?: MapConfigurationUpdate;
2845
2861
  /**
2846
2862
  * Updates the description for the map resource.
2847
2863
  */
@@ -2891,7 +2907,7 @@ declare namespace Location {
2891
2907
  /**
2892
2908
  * The Amazon Resource Name (ARN) of the upated place index resource. Used to specify a resource across Amazon Web Services. Format example: arn:aws:geo:region:account-id:place- index/ExamplePlaceIndex
2893
2909
  */
2894
- IndexArn: Arn;
2910
+ IndexArn: GeoArn;
2895
2911
  /**
2896
2912
  * The name of the updated place index resource.
2897
2913
  */
@@ -2919,7 +2935,7 @@ declare namespace Location {
2919
2935
  /**
2920
2936
  * The Amazon Resource Name (ARN) of the updated route calculator resource. Used to specify a resource across AWS. Format example: arn:aws:geo:region:account-id:route- calculator/ExampleCalculator
2921
2937
  */
2922
- CalculatorArn: Arn;
2938
+ CalculatorArn: GeoArn;
2923
2939
  /**
2924
2940
  * The name of the updated route calculator resource.
2925
2941
  */