aws-sdk-iotfleetwise 1.13.0 → 1.15.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.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: d5c36d80c5f4bfc5d857367b5547370b664b2161df1a5b19de8b382201445369
4
- data.tar.gz: c1bae316b4338a0962a6da03dbd535a382ba74687d0edc4f621ba40cf24f4424
3
+ metadata.gz: 79ed081b675cec023a1772b5db53f4a3daec1105804c7dcebf8f4520b577cb8c
4
+ data.tar.gz: a22d4813937b5ffc43b77cb31707458f5c6654c38983cc870a45737665642fdb
5
5
  SHA512:
6
- metadata.gz: 3042f2cf5c8e6736d07dff8f67ff9a6b4e740e06b0edbc58d04cd55ed0b4c98a3f48876937902b20cd657b3783edf1096eff6bc23a2506d18ba9258c30d2ed6f
7
- data.tar.gz: 2d00e4eb131822c4cc7ec76bfe8409ec2ab12ede9ecdda408eb80ad56f8958656faa93dabf0f593812ae1fe3c8d5a402cdfc57cb293c11654590ab35ac690ba5
6
+ metadata.gz: 89a2dd114d744044c0606951c83b73d6837e2027360c235fcc68e1c603b65c15614c99c921b678344bdc1cd52de8ba468db85f6ceca0eddae816fad0d13ca5a0
7
+ data.tar.gz: 1c3a4829dd8f1b2f3c2d08087577d580336fd0caab0b6385298c1607db373ded80d7ac5d976c56662e85dbd10937814770c0f3627fa886c917b51f69c9717ffa
data/CHANGELOG.md CHANGED
@@ -1,6 +1,16 @@
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
+
9
+ 1.14.0 (2023-09-27)
10
+ ------------------
11
+
12
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
13
+
4
14
  1.13.0 (2023-07-11)
5
15
  ------------------
6
16
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.13.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.13.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.13.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.13.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-07-11 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
@@ -19,7 +19,7 @@ dependencies:
19
19
  version: '3'
20
20
  - - ">="
21
21
  - !ruby/object:Gem::Version
22
- version: 3.177.0
22
+ version: 3.184.0
23
23
  type: :runtime
24
24
  prerelease: false
25
25
  version_requirements: !ruby/object:Gem::Requirement
@@ -29,7 +29,7 @@ dependencies:
29
29
  version: '3'
30
30
  - - ">="
31
31
  - !ruby/object:Gem::Version
32
- version: 3.177.0
32
+ version: 3.184.0
33
33
  - !ruby/object:Gem::Dependency
34
34
  name: aws-sigv4
35
35
  requirement: !ruby/object:Gem::Requirement