aws-sdk-iotfleetwise 1.14.0 → 1.15.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 2feb95e70d3d79114ad55561b4d0edd99e777ca591d7f86f76861c71ab9a432b
4
- data.tar.gz: 8691dffeb9489d6a279c8e5433a9c513a5339acc498b9fc5adc0f002affce86c
3
+ metadata.gz: 79ed081b675cec023a1772b5db53f4a3daec1105804c7dcebf8f4520b577cb8c
4
+ data.tar.gz: a22d4813937b5ffc43b77cb31707458f5c6654c38983cc870a45737665642fdb
5
5
  SHA512:
6
- metadata.gz: 34b1520faae7bbb7cd2c8b54eab177f6160bb213618d4a026670e7404eb788a46ff6e5d5431f9be13a92aa06f61011527af7172d95a490421410a6efcdd0e7f2
7
- data.tar.gz: 405ddf97ac4b37ad3f97a89ffe8b51279636b40b2252980b9b2b90207705f71176da3c616ddc02bfc286be5949cb9a0451925dae521708f902226ac6a0dc3e7b
6
+ metadata.gz: 89a2dd114d744044c0606951c83b73d6837e2027360c235fcc68e1c603b65c15614c99c921b678344bdc1cd52de8ba468db85f6ceca0eddae816fad0d13ca5a0
7
+ data.tar.gz: 1c3a4829dd8f1b2f3c2d08087577d580336fd0caab0b6385298c1607db373ded80d7ac5d976c56662e85dbd10937814770c0f3627fa886c917b51f69c9717ffa
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.15.0 (2023-09-28)
5
+ ------------------
6
+
7
+ * Feature - AWS IoT FleetWise now supports encryption through a customer managed AWS KMS key. The PutEncryptionConfiguration and GetEncryptionConfiguration APIs were added.
8
+
4
9
  1.14.0 (2023-09-27)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.14.0
1
+ 1.15.0
@@ -648,7 +648,10 @@ module Aws::IoTFleetWise
648
648
  #
649
649
  # Amazon S3 optimizes the cost of data storage and provides additional
650
650
  # mechanisms to use vehicle data, such as data lakes, centralized data
651
- # storage, data processing pipelines, and analytics.
651
+ # storage, data processing pipelines, and analytics. Amazon Web Services
652
+ # IoT FleetWise supports at-least-once file delivery to S3. Your vehicle
653
+ # data is stored on multiple Amazon Web Services IoT FleetWise servers
654
+ # for redundancy and high availability.
652
655
  #
653
656
  # You can use Amazon Timestream to access and analyze time series data,
654
657
  # and Timestream to query vehicle data so that you can identify trends
@@ -1467,6 +1470,34 @@ module Aws::IoTFleetWise
1467
1470
  req.send_request(options)
1468
1471
  end
1469
1472
 
1473
+ # Retrieves the encryption configuration for resources and data in
1474
+ # Amazon Web Services IoT FleetWise.
1475
+ #
1476
+ # @return [Types::GetEncryptionConfigurationResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
1477
+ #
1478
+ # * {Types::GetEncryptionConfigurationResponse#kms_key_id #kms_key_id} => String
1479
+ # * {Types::GetEncryptionConfigurationResponse#encryption_status #encryption_status} => String
1480
+ # * {Types::GetEncryptionConfigurationResponse#encryption_type #encryption_type} => String
1481
+ # * {Types::GetEncryptionConfigurationResponse#error_message #error_message} => String
1482
+ # * {Types::GetEncryptionConfigurationResponse#creation_time #creation_time} => Time
1483
+ # * {Types::GetEncryptionConfigurationResponse#last_modification_time #last_modification_time} => Time
1484
+ #
1485
+ # @example Response structure
1486
+ #
1487
+ # resp.kms_key_id #=> String
1488
+ # resp.encryption_status #=> String, one of "PENDING", "SUCCESS", "FAILURE"
1489
+ # resp.encryption_type #=> String, one of "KMS_BASED_ENCRYPTION", "FLEETWISE_DEFAULT_ENCRYPTION"
1490
+ # resp.error_message #=> String
1491
+ # resp.creation_time #=> Time
1492
+ # resp.last_modification_time #=> Time
1493
+ #
1494
+ # @overload get_encryption_configuration(params = {})
1495
+ # @param [Hash] params ({})
1496
+ def get_encryption_configuration(params = {}, options = {})
1497
+ req = build_request(:get_encryption_configuration, params)
1498
+ req.send_request(options)
1499
+ end
1500
+
1470
1501
  # Retrieves information about a fleet.
1471
1502
  #
1472
1503
  # @option params [required, String] :fleet_id
@@ -2596,6 +2627,50 @@ module Aws::IoTFleetWise
2596
2627
  req.send_request(options)
2597
2628
  end
2598
2629
 
2630
+ # Creates or updates the encryption configuration. Amazon Web Services
2631
+ # IoT FleetWise can encrypt your data and resources using an Amazon Web
2632
+ # Services managed key. Or, you can use a KMS key that you own and
2633
+ # manage. For more information, see [Data encryption][1] in the *Amazon
2634
+ # Web Services IoT FleetWise Developer Guide*.
2635
+ #
2636
+ #
2637
+ #
2638
+ # [1]: https://docs.aws.amazon.com/iot-fleetwise/latest/developerguide/data-encryption.html
2639
+ #
2640
+ # @option params [String] :kms_key_id
2641
+ # The ID of the KMS key that is used for encryption.
2642
+ #
2643
+ # @option params [required, String] :encryption_type
2644
+ # The type of encryption. Choose `KMS_BASED_ENCRYPTION` to use a KMS key
2645
+ # or `FLEETWISE_DEFAULT_ENCRYPTION` to use an Amazon Web Services
2646
+ # managed key.
2647
+ #
2648
+ # @return [Types::PutEncryptionConfigurationResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
2649
+ #
2650
+ # * {Types::PutEncryptionConfigurationResponse#kms_key_id #kms_key_id} => String
2651
+ # * {Types::PutEncryptionConfigurationResponse#encryption_status #encryption_status} => String
2652
+ # * {Types::PutEncryptionConfigurationResponse#encryption_type #encryption_type} => String
2653
+ #
2654
+ # @example Request syntax with placeholder values
2655
+ #
2656
+ # resp = client.put_encryption_configuration({
2657
+ # kms_key_id: "String",
2658
+ # encryption_type: "KMS_BASED_ENCRYPTION", # required, accepts KMS_BASED_ENCRYPTION, FLEETWISE_DEFAULT_ENCRYPTION
2659
+ # })
2660
+ #
2661
+ # @example Response structure
2662
+ #
2663
+ # resp.kms_key_id #=> String
2664
+ # resp.encryption_status #=> String, one of "PENDING", "SUCCESS", "FAILURE"
2665
+ # resp.encryption_type #=> String, one of "KMS_BASED_ENCRYPTION", "FLEETWISE_DEFAULT_ENCRYPTION"
2666
+ #
2667
+ # @overload put_encryption_configuration(params = {})
2668
+ # @param [Hash] params ({})
2669
+ def put_encryption_configuration(params = {}, options = {})
2670
+ req = build_request(:put_encryption_configuration, params)
2671
+ req.send_request(options)
2672
+ end
2673
+
2599
2674
  # Creates or updates the logging option.
2600
2675
  #
2601
2676
  # @option params [required, Types::CloudWatchLogDeliveryOptions] :cloud_watch_log_delivery
@@ -3250,7 +3325,7 @@ module Aws::IoTFleetWise
3250
3325
  params: params,
3251
3326
  config: config)
3252
3327
  context[:gem_name] = 'aws-sdk-iotfleetwise'
3253
- context[:gem_version] = '1.14.0'
3328
+ context[:gem_version] = '1.15.0'
3254
3329
  Seahorse::Client::Request.new(handlers, context)
3255
3330
  end
3256
3331
 
@@ -73,6 +73,8 @@ module Aws::IoTFleetWise
73
73
  DiagnosticsMode = Shapes::StringShape.new(name: 'DiagnosticsMode')
74
74
  DisassociateVehicleFleetRequest = Shapes::StructureShape.new(name: 'DisassociateVehicleFleetRequest')
75
75
  DisassociateVehicleFleetResponse = Shapes::StructureShape.new(name: 'DisassociateVehicleFleetResponse')
76
+ EncryptionStatus = Shapes::StringShape.new(name: 'EncryptionStatus')
77
+ EncryptionType = Shapes::StringShape.new(name: 'EncryptionType')
76
78
  FleetSummary = Shapes::StructureShape.new(name: 'FleetSummary')
77
79
  FormattedVss = Shapes::UnionShape.new(name: 'FormattedVss')
78
80
  Fqns = Shapes::ListShape.new(name: 'Fqns')
@@ -81,6 +83,8 @@ module Aws::IoTFleetWise
81
83
  GetCampaignResponse = Shapes::StructureShape.new(name: 'GetCampaignResponse')
82
84
  GetDecoderManifestRequest = Shapes::StructureShape.new(name: 'GetDecoderManifestRequest')
83
85
  GetDecoderManifestResponse = Shapes::StructureShape.new(name: 'GetDecoderManifestResponse')
86
+ GetEncryptionConfigurationRequest = Shapes::StructureShape.new(name: 'GetEncryptionConfigurationRequest')
87
+ GetEncryptionConfigurationResponse = Shapes::StructureShape.new(name: 'GetEncryptionConfigurationResponse')
84
88
  GetFleetRequest = Shapes::StructureShape.new(name: 'GetFleetRequest')
85
89
  GetFleetResponse = Shapes::StructureShape.new(name: 'GetFleetResponse')
86
90
  GetLoggingOptionsRequest = Shapes::StructureShape.new(name: 'GetLoggingOptionsRequest')
@@ -167,6 +171,8 @@ module Aws::IoTFleetWise
167
171
  Prefix = Shapes::StringShape.new(name: 'Prefix')
168
172
  ProtocolName = Shapes::StringShape.new(name: 'ProtocolName')
169
173
  ProtocolVersion = Shapes::StringShape.new(name: 'ProtocolVersion')
174
+ PutEncryptionConfigurationRequest = Shapes::StructureShape.new(name: 'PutEncryptionConfigurationRequest')
175
+ PutEncryptionConfigurationResponse = Shapes::StructureShape.new(name: 'PutEncryptionConfigurationResponse')
170
176
  PutLoggingOptionsRequest = Shapes::StructureShape.new(name: 'PutLoggingOptionsRequest')
171
177
  PutLoggingOptionsResponse = Shapes::StructureShape.new(name: 'PutLoggingOptionsResponse')
172
178
  RegisterAccountRequest = Shapes::StructureShape.new(name: 'RegisterAccountRequest')
@@ -606,6 +612,16 @@ module Aws::IoTFleetWise
606
612
  GetDecoderManifestResponse.add_member(:last_modification_time, Shapes::ShapeRef.new(shape: timestamp, required: true, location_name: "lastModificationTime"))
607
613
  GetDecoderManifestResponse.struct_class = Types::GetDecoderManifestResponse
608
614
 
615
+ GetEncryptionConfigurationRequest.struct_class = Types::GetEncryptionConfigurationRequest
616
+
617
+ GetEncryptionConfigurationResponse.add_member(:kms_key_id, Shapes::ShapeRef.new(shape: String, location_name: "kmsKeyId"))
618
+ GetEncryptionConfigurationResponse.add_member(:encryption_status, Shapes::ShapeRef.new(shape: EncryptionStatus, required: true, location_name: "encryptionStatus"))
619
+ GetEncryptionConfigurationResponse.add_member(:encryption_type, Shapes::ShapeRef.new(shape: EncryptionType, required: true, location_name: "encryptionType"))
620
+ GetEncryptionConfigurationResponse.add_member(:error_message, Shapes::ShapeRef.new(shape: errorMessage, location_name: "errorMessage"))
621
+ GetEncryptionConfigurationResponse.add_member(:creation_time, Shapes::ShapeRef.new(shape: timestamp, location_name: "creationTime"))
622
+ GetEncryptionConfigurationResponse.add_member(:last_modification_time, Shapes::ShapeRef.new(shape: timestamp, location_name: "lastModificationTime"))
623
+ GetEncryptionConfigurationResponse.struct_class = Types::GetEncryptionConfigurationResponse
624
+
609
625
  GetFleetRequest.add_member(:fleet_id, Shapes::ShapeRef.new(shape: fleetId, required: true, location_name: "fleetId"))
610
626
  GetFleetRequest.struct_class = Types::GetFleetRequest
611
627
 
@@ -925,6 +941,15 @@ module Aws::IoTFleetWise
925
941
  ObdSignal.add_member(:bit_mask_length, Shapes::ShapeRef.new(shape: ObdBitmaskLength, location_name: "bitMaskLength"))
926
942
  ObdSignal.struct_class = Types::ObdSignal
927
943
 
944
+ PutEncryptionConfigurationRequest.add_member(:kms_key_id, Shapes::ShapeRef.new(shape: String, location_name: "kmsKeyId"))
945
+ PutEncryptionConfigurationRequest.add_member(:encryption_type, Shapes::ShapeRef.new(shape: EncryptionType, required: true, location_name: "encryptionType"))
946
+ PutEncryptionConfigurationRequest.struct_class = Types::PutEncryptionConfigurationRequest
947
+
948
+ PutEncryptionConfigurationResponse.add_member(:kms_key_id, Shapes::ShapeRef.new(shape: String, location_name: "kmsKeyId"))
949
+ PutEncryptionConfigurationResponse.add_member(:encryption_status, Shapes::ShapeRef.new(shape: EncryptionStatus, required: true, location_name: "encryptionStatus"))
950
+ PutEncryptionConfigurationResponse.add_member(:encryption_type, Shapes::ShapeRef.new(shape: EncryptionType, required: true, location_name: "encryptionType"))
951
+ PutEncryptionConfigurationResponse.struct_class = Types::PutEncryptionConfigurationResponse
952
+
928
953
  PutLoggingOptionsRequest.add_member(:cloud_watch_log_delivery, Shapes::ShapeRef.new(shape: CloudWatchLogDeliveryOptions, required: true, location_name: "cloudWatchLogDelivery"))
929
954
  PutLoggingOptionsRequest.struct_class = Types::PutLoggingOptionsRequest
930
955
 
@@ -1437,6 +1462,19 @@ module Aws::IoTFleetWise
1437
1462
  o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
1438
1463
  end)
1439
1464
 
1465
+ api.add_operation(:get_encryption_configuration, Seahorse::Model::Operation.new.tap do |o|
1466
+ o.name = "GetEncryptionConfiguration"
1467
+ o.http_method = "POST"
1468
+ o.http_request_uri = "/"
1469
+ o.input = Shapes::ShapeRef.new(shape: GetEncryptionConfigurationRequest)
1470
+ o.output = Shapes::ShapeRef.new(shape: GetEncryptionConfigurationResponse)
1471
+ o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
1472
+ o.errors << Shapes::ShapeRef.new(shape: InternalServerException)
1473
+ o.errors << Shapes::ShapeRef.new(shape: ThrottlingException)
1474
+ o.errors << Shapes::ShapeRef.new(shape: ValidationException)
1475
+ o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
1476
+ end)
1477
+
1440
1478
  api.add_operation(:get_fleet, Seahorse::Model::Operation.new.tap do |o|
1441
1479
  o.name = "GetFleet"
1442
1480
  o.http_method = "POST"
@@ -1802,6 +1840,20 @@ module Aws::IoTFleetWise
1802
1840
  )
1803
1841
  end)
1804
1842
 
1843
+ api.add_operation(:put_encryption_configuration, Seahorse::Model::Operation.new.tap do |o|
1844
+ o.name = "PutEncryptionConfiguration"
1845
+ o.http_method = "POST"
1846
+ o.http_request_uri = "/"
1847
+ o.input = Shapes::ShapeRef.new(shape: PutEncryptionConfigurationRequest)
1848
+ o.output = Shapes::ShapeRef.new(shape: PutEncryptionConfigurationResponse)
1849
+ o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
1850
+ o.errors << Shapes::ShapeRef.new(shape: InternalServerException)
1851
+ o.errors << Shapes::ShapeRef.new(shape: ConflictException)
1852
+ o.errors << Shapes::ShapeRef.new(shape: ThrottlingException)
1853
+ o.errors << Shapes::ShapeRef.new(shape: ValidationException)
1854
+ o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
1855
+ end)
1856
+
1805
1857
  api.add_operation(:put_logging_options, Seahorse::Model::Operation.new.tap do |o|
1806
1858
  o.name = "PutLoggingOptions"
1807
1859
  o.http_method = "POST"
@@ -264,6 +264,20 @@ module Aws::IoTFleetWise
264
264
  end
265
265
  end
266
266
 
267
+ class GetEncryptionConfiguration
268
+ def self.build(context)
269
+ unless context.config.regional_endpoint
270
+ endpoint = context.config.endpoint.to_s
271
+ end
272
+ Aws::IoTFleetWise::EndpointParameters.new(
273
+ region: context.config.region,
274
+ use_dual_stack: context.config.use_dualstack_endpoint,
275
+ use_fips: context.config.use_fips_endpoint,
276
+ endpoint: endpoint,
277
+ )
278
+ end
279
+ end
280
+
267
281
  class GetFleet
268
282
  def self.build(context)
269
283
  unless context.config.regional_endpoint
@@ -572,6 +586,20 @@ module Aws::IoTFleetWise
572
586
  end
573
587
  end
574
588
 
589
+ class PutEncryptionConfiguration
590
+ def self.build(context)
591
+ unless context.config.regional_endpoint
592
+ endpoint = context.config.endpoint.to_s
593
+ end
594
+ Aws::IoTFleetWise::EndpointParameters.new(
595
+ region: context.config.region,
596
+ use_dual_stack: context.config.use_dualstack_endpoint,
597
+ use_fips: context.config.use_fips_endpoint,
598
+ endpoint: endpoint,
599
+ )
600
+ end
601
+ end
602
+
575
603
  class PutLoggingOptions
576
604
  def self.build(context)
577
605
  unless context.config.regional_endpoint
@@ -92,6 +92,8 @@ module Aws::IoTFleetWise
92
92
  Aws::IoTFleetWise::Endpoints::GetCampaign.build(context)
93
93
  when :get_decoder_manifest
94
94
  Aws::IoTFleetWise::Endpoints::GetDecoderManifest.build(context)
95
+ when :get_encryption_configuration
96
+ Aws::IoTFleetWise::Endpoints::GetEncryptionConfiguration.build(context)
95
97
  when :get_fleet
96
98
  Aws::IoTFleetWise::Endpoints::GetFleet.build(context)
97
99
  when :get_logging_options
@@ -136,6 +138,8 @@ module Aws::IoTFleetWise
136
138
  Aws::IoTFleetWise::Endpoints::ListVehicles.build(context)
137
139
  when :list_vehicles_in_fleet
138
140
  Aws::IoTFleetWise::Endpoints::ListVehiclesInFleet.build(context)
141
+ when :put_encryption_configuration
142
+ Aws::IoTFleetWise::Endpoints::PutEncryptionConfiguration.build(context)
139
143
  when :put_logging_options
140
144
  Aws::IoTFleetWise::Endpoints::PutLoggingOptions.build(context)
141
145
  when :register_account
@@ -644,7 +644,10 @@ module Aws::IoTFleetWise
644
644
  #
645
645
  # Amazon S3 optimizes the cost of data storage and provides additional
646
646
  # mechanisms to use vehicle data, such as data lakes, centralized data
647
- # storage, data processing pipelines, and analytics.
647
+ # storage, data processing pipelines, and analytics. Amazon Web
648
+ # Services IoT FleetWise supports at-least-once file delivery to S3.
649
+ # Your vehicle data is stored on multiple Amazon Web Services IoT
650
+ # FleetWise servers for redundancy and high availability.
648
651
  #
649
652
  # You can use Amazon Timestream to access and analyze time series
650
653
  # data, and Timestream to query vehicle data so that you can identify
@@ -1541,6 +1544,51 @@ module Aws::IoTFleetWise
1541
1544
  include Aws::Structure
1542
1545
  end
1543
1546
 
1547
+ # @api private
1548
+ #
1549
+ class GetEncryptionConfigurationRequest < Aws::EmptyStructure; end
1550
+
1551
+ # @!attribute [rw] kms_key_id
1552
+ # The ID of the KMS key that is used for encryption.
1553
+ # @return [String]
1554
+ #
1555
+ # @!attribute [rw] encryption_status
1556
+ # The encryption status.
1557
+ # @return [String]
1558
+ #
1559
+ # @!attribute [rw] encryption_type
1560
+ # The type of encryption. Set to `KMS_BASED_ENCRYPTION` to use an KMS
1561
+ # key that you own and manage. Set to `FLEETWISE_DEFAULT_ENCRYPTION`
1562
+ # to use an Amazon Web Services managed key that is owned by the
1563
+ # Amazon Web Services IoT FleetWise service account.
1564
+ # @return [String]
1565
+ #
1566
+ # @!attribute [rw] error_message
1567
+ # The error message that describes why encryption settings couldn't
1568
+ # be configured, if applicable.
1569
+ # @return [String]
1570
+ #
1571
+ # @!attribute [rw] creation_time
1572
+ # The time when encryption was configured in seconds since epoch
1573
+ # (January 1, 1970 at midnight UTC time).
1574
+ # @return [Time]
1575
+ #
1576
+ # @!attribute [rw] last_modification_time
1577
+ # The time when encryption was last updated in seconds since epoch
1578
+ # (January 1, 1970 at midnight UTC time).
1579
+ # @return [Time]
1580
+ #
1581
+ class GetEncryptionConfigurationResponse < Struct.new(
1582
+ :kms_key_id,
1583
+ :encryption_status,
1584
+ :encryption_type,
1585
+ :error_message,
1586
+ :creation_time,
1587
+ :last_modification_time)
1588
+ SENSITIVE = []
1589
+ include Aws::Structure
1590
+ end
1591
+
1544
1592
  # @!attribute [rw] fleet_id
1545
1593
  # The ID of the fleet to retrieve information about.
1546
1594
  # @return [String]
@@ -2923,6 +2971,46 @@ module Aws::IoTFleetWise
2923
2971
  include Aws::Structure
2924
2972
  end
2925
2973
 
2974
+ # @!attribute [rw] kms_key_id
2975
+ # The ID of the KMS key that is used for encryption.
2976
+ # @return [String]
2977
+ #
2978
+ # @!attribute [rw] encryption_type
2979
+ # The type of encryption. Choose `KMS_BASED_ENCRYPTION` to use a KMS
2980
+ # key or `FLEETWISE_DEFAULT_ENCRYPTION` to use an Amazon Web Services
2981
+ # managed key.
2982
+ # @return [String]
2983
+ #
2984
+ class PutEncryptionConfigurationRequest < Struct.new(
2985
+ :kms_key_id,
2986
+ :encryption_type)
2987
+ SENSITIVE = []
2988
+ include Aws::Structure
2989
+ end
2990
+
2991
+ # @!attribute [rw] kms_key_id
2992
+ # The ID of the KMS key that is used for encryption.
2993
+ # @return [String]
2994
+ #
2995
+ # @!attribute [rw] encryption_status
2996
+ # The encryption status.
2997
+ # @return [String]
2998
+ #
2999
+ # @!attribute [rw] encryption_type
3000
+ # The type of encryption. Set to `KMS_BASED_ENCRYPTION` to use an KMS
3001
+ # key that you own and manage. Set to `FLEETWISE_DEFAULT_ENCRYPTION`
3002
+ # to use an Amazon Web Services managed key that is owned by the
3003
+ # Amazon Web Services IoT FleetWise service account.
3004
+ # @return [String]
3005
+ #
3006
+ class PutEncryptionConfigurationResponse < Struct.new(
3007
+ :kms_key_id,
3008
+ :encryption_status,
3009
+ :encryption_type)
3010
+ SENSITIVE = []
3011
+ include Aws::Structure
3012
+ end
3013
+
2926
3014
  # @!attribute [rw] cloud_watch_log_delivery
2927
3015
  # Creates or updates the log delivery option to Amazon CloudWatch
2928
3016
  # Logs.
@@ -53,6 +53,6 @@ require_relative 'aws-sdk-iotfleetwise/customizations'
53
53
  # @!group service
54
54
  module Aws::IoTFleetWise
55
55
 
56
- GEM_VERSION = '1.14.0'
56
+ GEM_VERSION = '1.15.0'
57
57
 
58
58
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-iotfleetwise
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.14.0
4
+ version: 1.15.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Amazon Web Services
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2023-09-27 00:00:00.000000000 Z
11
+ date: 2023-09-28 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core