aws-sdk-greengrass 1.32.1 → 1.37.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: c7cb53fd59b8727521fc77b1be1306c7e97bbe2479d933a76f698639fa5a158c
4
- data.tar.gz: 552fba6ed26b885d8e90532fbb140c56587c0285bd6ed48782cf719455d477c8
3
+ metadata.gz: 35457fffb27ec25c8f83984ffe930b87f18f69b539c1214c2f16f0546c351e4c
4
+ data.tar.gz: 780c9e291b9a6aa2cb2b06b763e01be85ada3475fe7b5fd5f12e080dd57f7551
5
5
  SHA512:
6
- metadata.gz: 750567b1e50b457ed722843568a2edb6023713ebd6dacc113b298489c1e9f4a10a1dbd2b2a1e07d65c01adad0b4c57ca2c1a6473129952623eb78eca207fad1a
7
- data.tar.gz: 320b86e9969a9797d1f5da184baccb2c57fa4a1877e2fcd6436f8cf6b29d2fd853401f19b073d98f2854b1f3cafee302a5871f3f10f212a0da21d8ed00b6db84
6
+ metadata.gz: 8171ff9c3858ef8e4140c00b52df91d52082dff743c9f75d5738a77f6ca1d1588de9d20e0b51573a924534715333cf298dfb01dbb4f75877c1f176416cc7fd6d
7
+ data.tar.gz: f232bf06fdfe030b3b058e542005b96fbc972c3bf48e982b4995d44d543fd433d176f3428f09a6d5333698ec9e8b560553630314ec377615bd4f627fd2ebf4cf
@@ -1,3 +1,5 @@
1
+ # frozen_string_literal: true
2
+
1
3
  # WARNING ABOUT GENERATED CODE
2
4
  #
3
5
  # This file is generated. See the contributing guide for more information:
@@ -5,6 +7,7 @@
5
7
  #
6
8
  # WARNING ABOUT GENERATED CODE
7
9
 
10
+
8
11
  require 'aws-sdk-core'
9
12
  require 'aws-sigv4'
10
13
 
@@ -42,9 +45,9 @@ require_relative 'aws-sdk-greengrass/customizations'
42
45
  #
43
46
  # See {Errors} for more information.
44
47
  #
45
- # @service
48
+ # @!group service
46
49
  module Aws::Greengrass
47
50
 
48
- GEM_VERSION = '1.32.1'
51
+ GEM_VERSION = '1.37.0'
49
52
 
50
53
  end
@@ -1,3 +1,5 @@
1
+ # frozen_string_literal: true
2
+
1
3
  # WARNING ABOUT GENERATED CODE
2
4
  #
3
5
  # This file is generated. See the contributing guide for more information:
@@ -83,13 +85,28 @@ module Aws::Greengrass
83
85
  # * `Aws::Credentials` - Used for configuring static, non-refreshing
84
86
  # credentials.
85
87
  #
88
+ # * `Aws::SharedCredentials` - Used for loading static credentials from a
89
+ # shared file, such as `~/.aws/config`.
90
+ #
91
+ # * `Aws::AssumeRoleCredentials` - Used when you need to assume a role.
92
+ #
93
+ # * `Aws::AssumeRoleWebIdentityCredentials` - Used when you need to
94
+ # assume a role after providing credentials via the web.
95
+ #
96
+ # * `Aws::SSOCredentials` - Used for loading credentials from AWS SSO using an
97
+ # access token generated from `aws login`.
98
+ #
99
+ # * `Aws::ProcessCredentials` - Used for loading credentials from a
100
+ # process that outputs to stdout.
101
+ #
86
102
  # * `Aws::InstanceProfileCredentials` - Used for loading credentials
87
103
  # from an EC2 IMDS on an EC2 instance.
88
104
  #
89
- # * `Aws::SharedCredentials` - Used for loading credentials from a
90
- # shared file, such as `~/.aws/config`.
105
+ # * `Aws::ECSCredentials` - Used for loading credentials from
106
+ # instances running in ECS.
91
107
  #
92
- # * `Aws::AssumeRoleCredentials` - Used when you need to assume a role.
108
+ # * `Aws::CognitoIdentityCredentials` - Used for loading credentials
109
+ # from the Cognito Identity service.
93
110
  #
94
111
  # When `:credentials` are not configured directly, the following
95
112
  # locations will be searched for credentials:
@@ -99,10 +116,10 @@ module Aws::Greengrass
99
116
  # * ENV['AWS_ACCESS_KEY_ID'], ENV['AWS_SECRET_ACCESS_KEY']
100
117
  # * `~/.aws/credentials`
101
118
  # * `~/.aws/config`
102
- # * EC2 IMDS instance profile - When used by default, the timeouts are
103
- # very aggressive. Construct and pass an instance of
104
- # `Aws::InstanceProfileCredentails` to enable retries and extended
105
- # timeouts.
119
+ # * EC2/ECS IMDS instance profile - When used by default, the timeouts
120
+ # are very aggressive. Construct and pass an instance of
121
+ # `Aws::InstanceProfileCredentails` or `Aws::ECSCredentials` to
122
+ # enable retries and extended timeouts.
106
123
  #
107
124
  # @option options [required, String] :region
108
125
  # The AWS region to connect to. The configured `:region` is
@@ -2745,6 +2762,34 @@ module Aws::Greengrass
2745
2762
  req.send_request(options)
2746
2763
  end
2747
2764
 
2765
+ # Get the runtime configuration of a thing.
2766
+ #
2767
+ # @option params [required, String] :thing_name
2768
+ #
2769
+ # @return [Types::GetThingRuntimeConfigurationResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
2770
+ #
2771
+ # * {Types::GetThingRuntimeConfigurationResponse#runtime_configuration #runtime_configuration} => Types::RuntimeConfiguration
2772
+ #
2773
+ # @example Request syntax with placeholder values
2774
+ #
2775
+ # resp = client.get_thing_runtime_configuration({
2776
+ # thing_name: "__string", # required
2777
+ # })
2778
+ #
2779
+ # @example Response structure
2780
+ #
2781
+ # resp.runtime_configuration.telemetry_configuration.configuration_sync_status #=> String, one of "InSync", "OutOfSync"
2782
+ # resp.runtime_configuration.telemetry_configuration.telemetry #=> String, one of "On", "Off"
2783
+ #
2784
+ # @see http://docs.aws.amazon.com/goto/WebAPI/greengrass-2017-06-07/GetThingRuntimeConfiguration AWS API Documentation
2785
+ #
2786
+ # @overload get_thing_runtime_configuration(params = {})
2787
+ # @param [Hash] params ({})
2788
+ def get_thing_runtime_configuration(params = {}, options = {})
2789
+ req = build_request(:get_thing_runtime_configuration, params)
2790
+ req.send_request(options)
2791
+ end
2792
+
2748
2793
  # Gets a paginated list of the deployments that have been started in a
2749
2794
  # bulk deployment operation, and their current deployment status.
2750
2795
  #
@@ -4009,6 +4054,33 @@ module Aws::Greengrass
4009
4054
  req.send_request(options)
4010
4055
  end
4011
4056
 
4057
+ # Updates the runtime configuration of a thing.
4058
+ #
4059
+ # @option params [Types::TelemetryConfigurationUpdate] :telemetry_configuration
4060
+ # Configuration settings for running telemetry.
4061
+ #
4062
+ # @option params [required, String] :thing_name
4063
+ #
4064
+ # @return [Struct] Returns an empty {Seahorse::Client::Response response}.
4065
+ #
4066
+ # @example Request syntax with placeholder values
4067
+ #
4068
+ # resp = client.update_thing_runtime_configuration({
4069
+ # telemetry_configuration: {
4070
+ # telemetry: "On", # required, accepts On, Off
4071
+ # },
4072
+ # thing_name: "__string", # required
4073
+ # })
4074
+ #
4075
+ # @see http://docs.aws.amazon.com/goto/WebAPI/greengrass-2017-06-07/UpdateThingRuntimeConfiguration AWS API Documentation
4076
+ #
4077
+ # @overload update_thing_runtime_configuration(params = {})
4078
+ # @param [Hash] params ({})
4079
+ def update_thing_runtime_configuration(params = {}, options = {})
4080
+ req = build_request(:update_thing_runtime_configuration, params)
4081
+ req.send_request(options)
4082
+ end
4083
+
4012
4084
  # @!endgroup
4013
4085
 
4014
4086
  # @param params ({})
@@ -4022,7 +4094,7 @@ module Aws::Greengrass
4022
4094
  params: params,
4023
4095
  config: config)
4024
4096
  context[:gem_name] = 'aws-sdk-greengrass'
4025
- context[:gem_version] = '1.32.1'
4097
+ context[:gem_version] = '1.37.0'
4026
4098
  Seahorse::Client::Request.new(handlers, context)
4027
4099
  end
4028
4100
 
@@ -1,3 +1,5 @@
1
+ # frozen_string_literal: true
2
+
1
3
  # WARNING ABOUT GENERATED CODE
2
4
  #
3
5
  # This file is generated. See the contributing guide for more information:
@@ -22,6 +24,7 @@ module Aws::Greengrass
22
24
  BulkDeploymentResults = Shapes::ListShape.new(name: 'BulkDeploymentResults')
23
25
  BulkDeploymentStatus = Shapes::StringShape.new(name: 'BulkDeploymentStatus')
24
26
  BulkDeployments = Shapes::ListShape.new(name: 'BulkDeployments')
27
+ ConfigurationSyncStatus = Shapes::StringShape.new(name: 'ConfigurationSyncStatus')
25
28
  ConnectivityInfo = Shapes::StructureShape.new(name: 'ConnectivityInfo')
26
29
  Connector = Shapes::StructureShape.new(name: 'Connector')
27
30
  ConnectorDefinitionVersion = Shapes::StructureShape.new(name: 'ConnectorDefinitionVersion')
@@ -151,6 +154,8 @@ module Aws::Greengrass
151
154
  GetSubscriptionDefinitionResponse = Shapes::StructureShape.new(name: 'GetSubscriptionDefinitionResponse')
152
155
  GetSubscriptionDefinitionVersionRequest = Shapes::StructureShape.new(name: 'GetSubscriptionDefinitionVersionRequest')
153
156
  GetSubscriptionDefinitionVersionResponse = Shapes::StructureShape.new(name: 'GetSubscriptionDefinitionVersionResponse')
157
+ GetThingRuntimeConfigurationRequest = Shapes::StructureShape.new(name: 'GetThingRuntimeConfigurationRequest')
158
+ GetThingRuntimeConfigurationResponse = Shapes::StructureShape.new(name: 'GetThingRuntimeConfigurationResponse')
154
159
  GroupCertificateAuthorityProperties = Shapes::StructureShape.new(name: 'GroupCertificateAuthorityProperties')
155
160
  GroupCertificateConfiguration = Shapes::StructureShape.new(name: 'GroupCertificateConfiguration')
156
161
  GroupInformation = Shapes::StructureShape.new(name: 'GroupInformation')
@@ -216,6 +221,8 @@ module Aws::Greengrass
216
221
  ResourceDataContainer = Shapes::StructureShape.new(name: 'ResourceDataContainer')
217
222
  ResourceDefinitionVersion = Shapes::StructureShape.new(name: 'ResourceDefinitionVersion')
218
223
  ResourceDownloadOwnerSetting = Shapes::StructureShape.new(name: 'ResourceDownloadOwnerSetting')
224
+ RuntimeConfiguration = Shapes::StructureShape.new(name: 'RuntimeConfiguration')
225
+ RuntimeConfigurationUpdate = Shapes::StructureShape.new(name: 'RuntimeConfigurationUpdate')
219
226
  S3MachineLearningModelResourceData = Shapes::StructureShape.new(name: 'S3MachineLearningModelResourceData')
220
227
  S3UrlSignerRole = Shapes::StringShape.new(name: 'S3UrlSignerRole')
221
228
  SageMakerMachineLearningModelResourceData = Shapes::StructureShape.new(name: 'SageMakerMachineLearningModelResourceData')
@@ -229,6 +236,9 @@ module Aws::Greengrass
229
236
  SubscriptionDefinitionVersion = Shapes::StructureShape.new(name: 'SubscriptionDefinitionVersion')
230
237
  TagResourceRequest = Shapes::StructureShape.new(name: 'TagResourceRequest')
231
238
  Tags = Shapes::MapShape.new(name: 'Tags')
239
+ Telemetry = Shapes::StringShape.new(name: 'Telemetry')
240
+ TelemetryConfiguration = Shapes::StructureShape.new(name: 'TelemetryConfiguration')
241
+ TelemetryConfigurationUpdate = Shapes::StructureShape.new(name: 'TelemetryConfigurationUpdate')
232
242
  UntagResourceRequest = Shapes::StructureShape.new(name: 'UntagResourceRequest')
233
243
  UpdateAgentLogLevel = Shapes::StringShape.new(name: 'UpdateAgentLogLevel')
234
244
  UpdateConnectivityInfoRequest = Shapes::StructureShape.new(name: 'UpdateConnectivityInfoRequest')
@@ -254,6 +264,8 @@ module Aws::Greengrass
254
264
  UpdateTargets = Shapes::ListShape.new(name: 'UpdateTargets')
255
265
  UpdateTargetsArchitecture = Shapes::StringShape.new(name: 'UpdateTargetsArchitecture')
256
266
  UpdateTargetsOperatingSystem = Shapes::StringShape.new(name: 'UpdateTargetsOperatingSystem')
267
+ UpdateThingRuntimeConfigurationRequest = Shapes::StructureShape.new(name: 'UpdateThingRuntimeConfigurationRequest')
268
+ UpdateThingRuntimeConfigurationResponse = Shapes::StructureShape.new(name: 'UpdateThingRuntimeConfigurationResponse')
257
269
  VersionInformation = Shapes::StructureShape.new(name: 'VersionInformation')
258
270
  __boolean = Shapes::BooleanShape.new(name: '__boolean')
259
271
  __double = Shapes::FloatShape.new(name: '__double')
@@ -980,6 +992,12 @@ module Aws::Greengrass
980
992
  GetSubscriptionDefinitionVersionResponse.add_member(:version, Shapes::ShapeRef.new(shape: __string, location_name: "Version"))
981
993
  GetSubscriptionDefinitionVersionResponse.struct_class = Types::GetSubscriptionDefinitionVersionResponse
982
994
 
995
+ GetThingRuntimeConfigurationRequest.add_member(:thing_name, Shapes::ShapeRef.new(shape: __string, required: true, location: "uri", location_name: "ThingName"))
996
+ GetThingRuntimeConfigurationRequest.struct_class = Types::GetThingRuntimeConfigurationRequest
997
+
998
+ GetThingRuntimeConfigurationResponse.add_member(:runtime_configuration, Shapes::ShapeRef.new(shape: RuntimeConfiguration, location_name: "RuntimeConfiguration"))
999
+ GetThingRuntimeConfigurationResponse.struct_class = Types::GetThingRuntimeConfigurationResponse
1000
+
983
1001
  GroupCertificateAuthorityProperties.add_member(:group_certificate_authority_arn, Shapes::ShapeRef.new(shape: __string, location_name: "GroupCertificateAuthorityArn"))
984
1002
  GroupCertificateAuthorityProperties.add_member(:group_certificate_authority_id, Shapes::ShapeRef.new(shape: __string, location_name: "GroupCertificateAuthorityId"))
985
1003
  GroupCertificateAuthorityProperties.struct_class = Types::GroupCertificateAuthorityProperties
@@ -1248,6 +1266,12 @@ module Aws::Greengrass
1248
1266
  ResourceDownloadOwnerSetting.add_member(:group_permission, Shapes::ShapeRef.new(shape: Permission, required: true, location_name: "GroupPermission"))
1249
1267
  ResourceDownloadOwnerSetting.struct_class = Types::ResourceDownloadOwnerSetting
1250
1268
 
1269
+ RuntimeConfiguration.add_member(:telemetry_configuration, Shapes::ShapeRef.new(shape: TelemetryConfiguration, location_name: "TelemetryConfiguration"))
1270
+ RuntimeConfiguration.struct_class = Types::RuntimeConfiguration
1271
+
1272
+ RuntimeConfigurationUpdate.add_member(:telemetry_configuration, Shapes::ShapeRef.new(shape: TelemetryConfigurationUpdate, location_name: "TelemetryConfiguration"))
1273
+ RuntimeConfigurationUpdate.struct_class = Types::RuntimeConfigurationUpdate
1274
+
1251
1275
  S3MachineLearningModelResourceData.add_member(:destination_path, Shapes::ShapeRef.new(shape: __string, location_name: "DestinationPath"))
1252
1276
  S3MachineLearningModelResourceData.add_member(:owner_setting, Shapes::ShapeRef.new(shape: ResourceDownloadOwnerSetting, location_name: "OwnerSetting"))
1253
1277
  S3MachineLearningModelResourceData.add_member(:s3_uri, Shapes::ShapeRef.new(shape: __string, location_name: "S3Uri"))
@@ -1293,6 +1317,13 @@ module Aws::Greengrass
1293
1317
  Tags.key = Shapes::ShapeRef.new(shape: __string)
1294
1318
  Tags.value = Shapes::ShapeRef.new(shape: __string)
1295
1319
 
1320
+ TelemetryConfiguration.add_member(:configuration_sync_status, Shapes::ShapeRef.new(shape: ConfigurationSyncStatus, location_name: "ConfigurationSyncStatus"))
1321
+ TelemetryConfiguration.add_member(:telemetry, Shapes::ShapeRef.new(shape: Telemetry, required: true, location_name: "Telemetry"))
1322
+ TelemetryConfiguration.struct_class = Types::TelemetryConfiguration
1323
+
1324
+ TelemetryConfigurationUpdate.add_member(:telemetry, Shapes::ShapeRef.new(shape: Telemetry, required: true, location_name: "Telemetry"))
1325
+ TelemetryConfigurationUpdate.struct_class = Types::TelemetryConfigurationUpdate
1326
+
1296
1327
  UntagResourceRequest.add_member(:resource_arn, Shapes::ShapeRef.new(shape: __string, required: true, location: "uri", location_name: "resource-arn"))
1297
1328
  UntagResourceRequest.add_member(:tag_keys, Shapes::ShapeRef.new(shape: __listOf__string, required: true, location: "querystring", location_name: "tagKeys"))
1298
1329
  UntagResourceRequest.struct_class = Types::UntagResourceRequest
@@ -1364,6 +1395,12 @@ module Aws::Greengrass
1364
1395
 
1365
1396
  UpdateTargets.member = Shapes::ShapeRef.new(shape: __string)
1366
1397
 
1398
+ UpdateThingRuntimeConfigurationRequest.add_member(:telemetry_configuration, Shapes::ShapeRef.new(shape: TelemetryConfigurationUpdate, location_name: "TelemetryConfiguration"))
1399
+ UpdateThingRuntimeConfigurationRequest.add_member(:thing_name, Shapes::ShapeRef.new(shape: __string, required: true, location: "uri", location_name: "ThingName"))
1400
+ UpdateThingRuntimeConfigurationRequest.struct_class = Types::UpdateThingRuntimeConfigurationRequest
1401
+
1402
+ UpdateThingRuntimeConfigurationResponse.struct_class = Types::UpdateThingRuntimeConfigurationResponse
1403
+
1367
1404
  VersionInformation.add_member(:arn, Shapes::ShapeRef.new(shape: __string, location_name: "Arn"))
1368
1405
  VersionInformation.add_member(:creation_timestamp, Shapes::ShapeRef.new(shape: __string, location_name: "CreationTimestamp"))
1369
1406
  VersionInformation.add_member(:id, Shapes::ShapeRef.new(shape: __string, location_name: "Id"))
@@ -1914,6 +1951,16 @@ module Aws::Greengrass
1914
1951
  o.errors << Shapes::ShapeRef.new(shape: BadRequestException)
1915
1952
  end)
1916
1953
 
1954
+ api.add_operation(:get_thing_runtime_configuration, Seahorse::Model::Operation.new.tap do |o|
1955
+ o.name = "GetThingRuntimeConfiguration"
1956
+ o.http_method = "GET"
1957
+ o.http_request_uri = "/greengrass/things/{ThingName}/runtimeconfig"
1958
+ o.input = Shapes::ShapeRef.new(shape: GetThingRuntimeConfigurationRequest)
1959
+ o.output = Shapes::ShapeRef.new(shape: GetThingRuntimeConfigurationResponse)
1960
+ o.errors << Shapes::ShapeRef.new(shape: BadRequestException)
1961
+ o.errors << Shapes::ShapeRef.new(shape: InternalServerErrorException)
1962
+ end)
1963
+
1917
1964
  api.add_operation(:list_bulk_deployment_detailed_reports, Seahorse::Model::Operation.new.tap do |o|
1918
1965
  o.name = "ListBulkDeploymentDetailedReports"
1919
1966
  o.http_method = "GET"
@@ -2232,6 +2279,16 @@ module Aws::Greengrass
2232
2279
  o.output = Shapes::ShapeRef.new(shape: UpdateSubscriptionDefinitionResponse)
2233
2280
  o.errors << Shapes::ShapeRef.new(shape: BadRequestException)
2234
2281
  end)
2282
+
2283
+ api.add_operation(:update_thing_runtime_configuration, Seahorse::Model::Operation.new.tap do |o|
2284
+ o.name = "UpdateThingRuntimeConfiguration"
2285
+ o.http_method = "PUT"
2286
+ o.http_request_uri = "/greengrass/things/{ThingName}/runtimeconfig"
2287
+ o.input = Shapes::ShapeRef.new(shape: UpdateThingRuntimeConfigurationRequest)
2288
+ o.output = Shapes::ShapeRef.new(shape: UpdateThingRuntimeConfigurationResponse)
2289
+ o.errors << Shapes::ShapeRef.new(shape: BadRequestException)
2290
+ o.errors << Shapes::ShapeRef.new(shape: InternalServerErrorException)
2291
+ end)
2235
2292
  end
2236
2293
 
2237
2294
  end
@@ -1,3 +1,5 @@
1
+ # frozen_string_literal: true
2
+
1
3
  # WARNING ABOUT GENERATED CODE
2
4
  #
3
5
  # This file is generated. See the contributing guide for more information:
@@ -1,3 +1,5 @@
1
+ # frozen_string_literal: true
2
+
1
3
  # WARNING ABOUT GENERATED CODE
2
4
  #
3
5
  # This file is generated. See the contributing guide for more information:
@@ -1,3 +1,5 @@
1
+ # frozen_string_literal: true
2
+
1
3
  # WARNING ABOUT GENERATED CODE
2
4
  #
3
5
  # This file is generated. See the contributing guide for more information:
@@ -29,6 +31,7 @@ module Aws::Greengrass
29
31
  class AssociateRoleToGroupRequest < Struct.new(
30
32
  :group_id,
31
33
  :role_arn)
34
+ SENSITIVE = []
32
35
  include Aws::Structure
33
36
  end
34
37
 
@@ -41,6 +44,7 @@ module Aws::Greengrass
41
44
  #
42
45
  class AssociateRoleToGroupResponse < Struct.new(
43
46
  :associated_at)
47
+ SENSITIVE = []
44
48
  include Aws::Structure
45
49
  end
46
50
 
@@ -59,6 +63,7 @@ module Aws::Greengrass
59
63
  #
60
64
  class AssociateServiceRoleToAccountRequest < Struct.new(
61
65
  :role_arn)
66
+ SENSITIVE = []
62
67
  include Aws::Structure
63
68
  end
64
69
 
@@ -70,6 +75,7 @@ module Aws::Greengrass
70
75
  #
71
76
  class AssociateServiceRoleToAccountResponse < Struct.new(
72
77
  :associated_at)
78
+ SENSITIVE = []
73
79
  include Aws::Structure
74
80
  end
75
81
 
@@ -87,6 +93,7 @@ module Aws::Greengrass
87
93
  class BadRequestException < Struct.new(
88
94
  :error_details,
89
95
  :message)
96
+ SENSITIVE = []
90
97
  include Aws::Structure
91
98
  end
92
99
 
@@ -112,6 +119,7 @@ module Aws::Greengrass
112
119
  :bulk_deployment_arn,
113
120
  :bulk_deployment_id,
114
121
  :created_at)
122
+ SENSITIVE = []
115
123
  include Aws::Structure
116
124
  end
117
125
 
@@ -143,6 +151,7 @@ module Aws::Greengrass
143
151
  :invalid_input_records,
144
152
  :records_processed,
145
153
  :retry_attempts)
154
+ SENSITIVE = []
146
155
  include Aws::Structure
147
156
  end
148
157
 
@@ -193,6 +202,7 @@ module Aws::Greengrass
193
202
  :error_details,
194
203
  :error_message,
195
204
  :group_arn)
205
+ SENSITIVE = []
196
206
  include Aws::Structure
197
207
  end
198
208
 
@@ -231,6 +241,7 @@ module Aws::Greengrass
231
241
  :id,
232
242
  :metadata,
233
243
  :port_number)
244
+ SENSITIVE = []
234
245
  include Aws::Structure
235
246
  end
236
247
 
@@ -269,6 +280,7 @@ module Aws::Greengrass
269
280
  :connector_arn,
270
281
  :id,
271
282
  :parameters)
283
+ SENSITIVE = []
272
284
  include Aws::Structure
273
285
  end
274
286
 
@@ -299,6 +311,7 @@ module Aws::Greengrass
299
311
  #
300
312
  class ConnectorDefinitionVersion < Struct.new(
301
313
  :connectors)
314
+ SENSITIVE = []
302
315
  include Aws::Structure
303
316
  end
304
317
 
@@ -340,6 +353,7 @@ module Aws::Greengrass
340
353
  :id,
341
354
  :sync_shadow,
342
355
  :thing_arn)
356
+ SENSITIVE = []
343
357
  include Aws::Structure
344
358
  end
345
359
 
@@ -367,6 +381,7 @@ module Aws::Greengrass
367
381
  #
368
382
  class CoreDefinitionVersion < Struct.new(
369
383
  :cores)
384
+ SENSITIVE = []
370
385
  include Aws::Structure
371
386
  end
372
387
 
@@ -414,6 +429,7 @@ module Aws::Greengrass
414
429
  :initial_version,
415
430
  :name,
416
431
  :tags)
432
+ SENSITIVE = []
417
433
  include Aws::Structure
418
434
  end
419
435
 
@@ -448,6 +464,7 @@ module Aws::Greengrass
448
464
  :latest_version,
449
465
  :latest_version_arn,
450
466
  :name)
467
+ SENSITIVE = []
451
468
  include Aws::Structure
452
469
  end
453
470
 
@@ -483,6 +500,7 @@ module Aws::Greengrass
483
500
  :amzn_client_token,
484
501
  :connector_definition_id,
485
502
  :connectors)
503
+ SENSITIVE = []
486
504
  include Aws::Structure
487
505
  end
488
506
 
@@ -505,6 +523,7 @@ module Aws::Greengrass
505
523
  :creation_timestamp,
506
524
  :id,
507
525
  :version)
526
+ SENSITIVE = []
508
527
  include Aws::Structure
509
528
  end
510
529
 
@@ -550,6 +569,7 @@ module Aws::Greengrass
550
569
  :initial_version,
551
570
  :name,
552
571
  :tags)
572
+ SENSITIVE = []
553
573
  include Aws::Structure
554
574
  end
555
575
 
@@ -584,6 +604,7 @@ module Aws::Greengrass
584
604
  :latest_version,
585
605
  :latest_version_arn,
586
606
  :name)
607
+ SENSITIVE = []
587
608
  include Aws::Structure
588
609
  end
589
610
 
@@ -618,6 +639,7 @@ module Aws::Greengrass
618
639
  :amzn_client_token,
619
640
  :core_definition_id,
620
641
  :cores)
642
+ SENSITIVE = []
621
643
  include Aws::Structure
622
644
  end
623
645
 
@@ -640,6 +662,7 @@ module Aws::Greengrass
640
662
  :creation_timestamp,
641
663
  :id,
642
664
  :version)
665
+ SENSITIVE = []
643
666
  include Aws::Structure
644
667
  end
645
668
 
@@ -684,6 +707,7 @@ module Aws::Greengrass
684
707
  :deployment_type,
685
708
  :group_id,
686
709
  :group_version_id)
710
+ SENSITIVE = []
687
711
  include Aws::Structure
688
712
  end
689
713
 
@@ -700,6 +724,7 @@ module Aws::Greengrass
700
724
  class CreateDeploymentResponse < Struct.new(
701
725
  :deployment_arn,
702
726
  :deployment_id)
727
+ SENSITIVE = []
703
728
  include Aws::Structure
704
729
  end
705
730
 
@@ -745,6 +770,7 @@ module Aws::Greengrass
745
770
  :initial_version,
746
771
  :name,
747
772
  :tags)
773
+ SENSITIVE = []
748
774
  include Aws::Structure
749
775
  end
750
776
 
@@ -779,6 +805,7 @@ module Aws::Greengrass
779
805
  :latest_version,
780
806
  :latest_version_arn,
781
807
  :name)
808
+ SENSITIVE = []
782
809
  include Aws::Structure
783
810
  end
784
811
 
@@ -813,6 +840,7 @@ module Aws::Greengrass
813
840
  :amzn_client_token,
814
841
  :device_definition_id,
815
842
  :devices)
843
+ SENSITIVE = []
816
844
  include Aws::Structure
817
845
  end
818
846
 
@@ -835,6 +863,7 @@ module Aws::Greengrass
835
863
  :creation_timestamp,
836
864
  :id,
837
865
  :version)
866
+ SENSITIVE = []
838
867
  include Aws::Structure
839
868
  end
840
869
 
@@ -914,6 +943,7 @@ module Aws::Greengrass
914
943
  :initial_version,
915
944
  :name,
916
945
  :tags)
946
+ SENSITIVE = []
917
947
  include Aws::Structure
918
948
  end
919
949
 
@@ -948,6 +978,7 @@ module Aws::Greengrass
948
978
  :latest_version,
949
979
  :latest_version_arn,
950
980
  :name)
981
+ SENSITIVE = []
951
982
  include Aws::Structure
952
983
  end
953
984
 
@@ -1022,6 +1053,7 @@ module Aws::Greengrass
1022
1053
  :default_config,
1023
1054
  :function_definition_id,
1024
1055
  :functions)
1056
+ SENSITIVE = []
1025
1057
  include Aws::Structure
1026
1058
  end
1027
1059
 
@@ -1044,6 +1076,7 @@ module Aws::Greengrass
1044
1076
  :creation_timestamp,
1045
1077
  :id,
1046
1078
  :version)
1079
+ SENSITIVE = []
1047
1080
  include Aws::Structure
1048
1081
  end
1049
1082
 
@@ -1066,6 +1099,7 @@ module Aws::Greengrass
1066
1099
  class CreateGroupCertificateAuthorityRequest < Struct.new(
1067
1100
  :amzn_client_token,
1068
1101
  :group_id)
1102
+ SENSITIVE = []
1069
1103
  include Aws::Structure
1070
1104
  end
1071
1105
 
@@ -1077,6 +1111,7 @@ module Aws::Greengrass
1077
1111
  #
1078
1112
  class CreateGroupCertificateAuthorityResponse < Struct.new(
1079
1113
  :group_certificate_authority_arn)
1114
+ SENSITIVE = []
1080
1115
  include Aws::Structure
1081
1116
  end
1082
1117
 
@@ -1121,6 +1156,7 @@ module Aws::Greengrass
1121
1156
  :initial_version,
1122
1157
  :name,
1123
1158
  :tags)
1159
+ SENSITIVE = []
1124
1160
  include Aws::Structure
1125
1161
  end
1126
1162
 
@@ -1155,6 +1191,7 @@ module Aws::Greengrass
1155
1191
  :latest_version,
1156
1192
  :latest_version_arn,
1157
1193
  :name)
1194
+ SENSITIVE = []
1158
1195
  include Aws::Structure
1159
1196
  end
1160
1197
 
@@ -1212,6 +1249,7 @@ module Aws::Greengrass
1212
1249
  :logger_definition_version_arn,
1213
1250
  :resource_definition_version_arn,
1214
1251
  :subscription_definition_version_arn)
1252
+ SENSITIVE = []
1215
1253
  include Aws::Structure
1216
1254
  end
1217
1255
 
@@ -1234,6 +1272,7 @@ module Aws::Greengrass
1234
1272
  :creation_timestamp,
1235
1273
  :id,
1236
1274
  :version)
1275
+ SENSITIVE = []
1237
1276
  include Aws::Structure
1238
1277
  end
1239
1278
 
@@ -1280,6 +1319,7 @@ module Aws::Greengrass
1280
1319
  :initial_version,
1281
1320
  :name,
1282
1321
  :tags)
1322
+ SENSITIVE = []
1283
1323
  include Aws::Structure
1284
1324
  end
1285
1325
 
@@ -1314,6 +1354,7 @@ module Aws::Greengrass
1314
1354
  :latest_version,
1315
1355
  :latest_version_arn,
1316
1356
  :name)
1357
+ SENSITIVE = []
1317
1358
  include Aws::Structure
1318
1359
  end
1319
1360
 
@@ -1349,6 +1390,7 @@ module Aws::Greengrass
1349
1390
  :amzn_client_token,
1350
1391
  :logger_definition_id,
1351
1392
  :loggers)
1393
+ SENSITIVE = []
1352
1394
  include Aws::Structure
1353
1395
  end
1354
1396
 
@@ -1371,6 +1413,7 @@ module Aws::Greengrass
1371
1413
  :creation_timestamp,
1372
1414
  :id,
1373
1415
  :version)
1416
+ SENSITIVE = []
1374
1417
  include Aws::Structure
1375
1418
  end
1376
1419
 
@@ -1451,6 +1494,7 @@ module Aws::Greengrass
1451
1494
  :initial_version,
1452
1495
  :name,
1453
1496
  :tags)
1497
+ SENSITIVE = []
1454
1498
  include Aws::Structure
1455
1499
  end
1456
1500
 
@@ -1485,6 +1529,7 @@ module Aws::Greengrass
1485
1529
  :latest_version,
1486
1530
  :latest_version_arn,
1487
1531
  :name)
1532
+ SENSITIVE = []
1488
1533
  include Aws::Structure
1489
1534
  end
1490
1535
 
@@ -1554,6 +1599,7 @@ module Aws::Greengrass
1554
1599
  :amzn_client_token,
1555
1600
  :resource_definition_id,
1556
1601
  :resources)
1602
+ SENSITIVE = []
1557
1603
  include Aws::Structure
1558
1604
  end
1559
1605
 
@@ -1576,6 +1622,7 @@ module Aws::Greengrass
1576
1622
  :creation_timestamp,
1577
1623
  :id,
1578
1624
  :version)
1625
+ SENSITIVE = []
1579
1626
  include Aws::Structure
1580
1627
  end
1581
1628
 
@@ -1635,6 +1682,7 @@ module Aws::Greengrass
1635
1682
  :update_targets,
1636
1683
  :update_targets_architecture,
1637
1684
  :update_targets_operating_system)
1685
+ SENSITIVE = []
1638
1686
  include Aws::Structure
1639
1687
  end
1640
1688
 
@@ -1657,6 +1705,7 @@ module Aws::Greengrass
1657
1705
  :iot_job_arn,
1658
1706
  :iot_job_id,
1659
1707
  :platform_software_version)
1708
+ SENSITIVE = []
1660
1709
  include Aws::Structure
1661
1710
  end
1662
1711
 
@@ -1702,6 +1751,7 @@ module Aws::Greengrass
1702
1751
  :initial_version,
1703
1752
  :name,
1704
1753
  :tags)
1754
+ SENSITIVE = []
1705
1755
  include Aws::Structure
1706
1756
  end
1707
1757
 
@@ -1736,6 +1786,7 @@ module Aws::Greengrass
1736
1786
  :latest_version,
1737
1787
  :latest_version_arn,
1738
1788
  :name)
1789
+ SENSITIVE = []
1739
1790
  include Aws::Structure
1740
1791
  end
1741
1792
 
@@ -1770,6 +1821,7 @@ module Aws::Greengrass
1770
1821
  :amzn_client_token,
1771
1822
  :subscription_definition_id,
1772
1823
  :subscriptions)
1824
+ SENSITIVE = []
1773
1825
  include Aws::Structure
1774
1826
  end
1775
1827
 
@@ -1792,6 +1844,7 @@ module Aws::Greengrass
1792
1844
  :creation_timestamp,
1793
1845
  :id,
1794
1846
  :version)
1847
+ SENSITIVE = []
1795
1848
  include Aws::Structure
1796
1849
  end
1797
1850
 
@@ -1842,6 +1895,7 @@ module Aws::Greengrass
1842
1895
  :latest_version_arn,
1843
1896
  :name,
1844
1897
  :tags)
1898
+ SENSITIVE = []
1845
1899
  include Aws::Structure
1846
1900
  end
1847
1901
 
@@ -1859,6 +1913,7 @@ module Aws::Greengrass
1859
1913
  #
1860
1914
  class DeleteConnectorDefinitionRequest < Struct.new(
1861
1915
  :connector_definition_id)
1916
+ SENSITIVE = []
1862
1917
  include Aws::Structure
1863
1918
  end
1864
1919
 
@@ -1880,6 +1935,7 @@ module Aws::Greengrass
1880
1935
  #
1881
1936
  class DeleteCoreDefinitionRequest < Struct.new(
1882
1937
  :core_definition_id)
1938
+ SENSITIVE = []
1883
1939
  include Aws::Structure
1884
1940
  end
1885
1941
 
@@ -1901,6 +1957,7 @@ module Aws::Greengrass
1901
1957
  #
1902
1958
  class DeleteDeviceDefinitionRequest < Struct.new(
1903
1959
  :device_definition_id)
1960
+ SENSITIVE = []
1904
1961
  include Aws::Structure
1905
1962
  end
1906
1963
 
@@ -1922,6 +1979,7 @@ module Aws::Greengrass
1922
1979
  #
1923
1980
  class DeleteFunctionDefinitionRequest < Struct.new(
1924
1981
  :function_definition_id)
1982
+ SENSITIVE = []
1925
1983
  include Aws::Structure
1926
1984
  end
1927
1985
 
@@ -1943,6 +2001,7 @@ module Aws::Greengrass
1943
2001
  #
1944
2002
  class DeleteGroupRequest < Struct.new(
1945
2003
  :group_id)
2004
+ SENSITIVE = []
1946
2005
  include Aws::Structure
1947
2006
  end
1948
2007
 
@@ -1964,6 +2023,7 @@ module Aws::Greengrass
1964
2023
  #
1965
2024
  class DeleteLoggerDefinitionRequest < Struct.new(
1966
2025
  :logger_definition_id)
2026
+ SENSITIVE = []
1967
2027
  include Aws::Structure
1968
2028
  end
1969
2029
 
@@ -1985,6 +2045,7 @@ module Aws::Greengrass
1985
2045
  #
1986
2046
  class DeleteResourceDefinitionRequest < Struct.new(
1987
2047
  :resource_definition_id)
2048
+ SENSITIVE = []
1988
2049
  include Aws::Structure
1989
2050
  end
1990
2051
 
@@ -2006,6 +2067,7 @@ module Aws::Greengrass
2006
2067
  #
2007
2068
  class DeleteSubscriptionDefinitionRequest < Struct.new(
2008
2069
  :subscription_definition_id)
2070
+ SENSITIVE = []
2009
2071
  include Aws::Structure
2010
2072
  end
2011
2073
 
@@ -2044,6 +2106,7 @@ module Aws::Greengrass
2044
2106
  :deployment_id,
2045
2107
  :deployment_type,
2046
2108
  :group_arn)
2109
+ SENSITIVE = []
2047
2110
  include Aws::Structure
2048
2111
  end
2049
2112
 
@@ -2085,6 +2148,7 @@ module Aws::Greengrass
2085
2148
  :id,
2086
2149
  :sync_shadow,
2087
2150
  :thing_arn)
2151
+ SENSITIVE = []
2088
2152
  include Aws::Structure
2089
2153
  end
2090
2154
 
@@ -2112,6 +2176,7 @@ module Aws::Greengrass
2112
2176
  #
2113
2177
  class DeviceDefinitionVersion < Struct.new(
2114
2178
  :devices)
2179
+ SENSITIVE = []
2115
2180
  include Aws::Structure
2116
2181
  end
2117
2182
 
@@ -2129,6 +2194,7 @@ module Aws::Greengrass
2129
2194
  #
2130
2195
  class DisassociateRoleFromGroupRequest < Struct.new(
2131
2196
  :group_id)
2197
+ SENSITIVE = []
2132
2198
  include Aws::Structure
2133
2199
  end
2134
2200
 
@@ -2141,6 +2207,7 @@ module Aws::Greengrass
2141
2207
  #
2142
2208
  class DisassociateRoleFromGroupResponse < Struct.new(
2143
2209
  :disassociated_at)
2210
+ SENSITIVE = []
2144
2211
  include Aws::Structure
2145
2212
  end
2146
2213
 
@@ -2158,6 +2225,7 @@ module Aws::Greengrass
2158
2225
  #
2159
2226
  class DisassociateServiceRoleFromAccountResponse < Struct.new(
2160
2227
  :disassociated_at)
2228
+ SENSITIVE = []
2161
2229
  include Aws::Structure
2162
2230
  end
2163
2231
 
@@ -2182,6 +2250,7 @@ module Aws::Greengrass
2182
2250
  class ErrorDetail < Struct.new(
2183
2251
  :detailed_error_code,
2184
2252
  :detailed_error_message)
2253
+ SENSITIVE = []
2185
2254
  include Aws::Structure
2186
2255
  end
2187
2256
 
@@ -2242,6 +2311,7 @@ module Aws::Greengrass
2242
2311
  :function_arn,
2243
2312
  :function_configuration,
2244
2313
  :id)
2314
+ SENSITIVE = []
2245
2315
  include Aws::Structure
2246
2316
  end
2247
2317
 
@@ -2322,6 +2392,7 @@ module Aws::Greengrass
2322
2392
  :memory_size,
2323
2393
  :pinned,
2324
2394
  :timeout)
2395
+ SENSITIVE = []
2325
2396
  include Aws::Structure
2326
2397
  end
2327
2398
 
@@ -2379,6 +2450,7 @@ module Aws::Greengrass
2379
2450
  :execution,
2380
2451
  :resource_access_policies,
2381
2452
  :variables)
2453
+ SENSITIVE = []
2382
2454
  include Aws::Structure
2383
2455
  end
2384
2456
 
@@ -2406,6 +2478,7 @@ module Aws::Greengrass
2406
2478
  #
2407
2479
  class FunctionDefaultConfig < Struct.new(
2408
2480
  :execution)
2481
+ SENSITIVE = []
2409
2482
  include Aws::Structure
2410
2483
  end
2411
2484
 
@@ -2446,6 +2519,7 @@ module Aws::Greengrass
2446
2519
  class FunctionDefaultExecutionConfig < Struct.new(
2447
2520
  :isolation_mode,
2448
2521
  :run_as)
2522
+ SENSITIVE = []
2449
2523
  include Aws::Structure
2450
2524
  end
2451
2525
 
@@ -2514,6 +2588,7 @@ module Aws::Greengrass
2514
2588
  class FunctionDefinitionVersion < Struct.new(
2515
2589
  :default_config,
2516
2590
  :functions)
2591
+ SENSITIVE = []
2517
2592
  include Aws::Structure
2518
2593
  end
2519
2594
 
@@ -2554,6 +2629,7 @@ module Aws::Greengrass
2554
2629
  class FunctionExecutionConfig < Struct.new(
2555
2630
  :isolation_mode,
2556
2631
  :run_as)
2632
+ SENSITIVE = []
2557
2633
  include Aws::Structure
2558
2634
  end
2559
2635
 
@@ -2587,6 +2663,7 @@ module Aws::Greengrass
2587
2663
  class FunctionRunAsConfig < Struct.new(
2588
2664
  :gid,
2589
2665
  :uid)
2666
+ SENSITIVE = []
2590
2667
  include Aws::Structure
2591
2668
  end
2592
2669
 
@@ -2605,6 +2682,7 @@ module Aws::Greengrass
2605
2682
  class GeneralError < Struct.new(
2606
2683
  :error_details,
2607
2684
  :message)
2685
+ SENSITIVE = []
2608
2686
  include Aws::Structure
2609
2687
  end
2610
2688
 
@@ -2622,6 +2700,7 @@ module Aws::Greengrass
2622
2700
  #
2623
2701
  class GetAssociatedRoleRequest < Struct.new(
2624
2702
  :group_id)
2703
+ SENSITIVE = []
2625
2704
  include Aws::Structure
2626
2705
  end
2627
2706
 
@@ -2638,6 +2717,7 @@ module Aws::Greengrass
2638
2717
  class GetAssociatedRoleResponse < Struct.new(
2639
2718
  :associated_at,
2640
2719
  :role_arn)
2720
+ SENSITIVE = []
2641
2721
  include Aws::Structure
2642
2722
  end
2643
2723
 
@@ -2655,6 +2735,7 @@ module Aws::Greengrass
2655
2735
  #
2656
2736
  class GetBulkDeploymentStatusRequest < Struct.new(
2657
2737
  :bulk_deployment_id)
2738
+ SENSITIVE = []
2658
2739
  include Aws::Structure
2659
2740
  end
2660
2741
 
@@ -2694,6 +2775,7 @@ module Aws::Greengrass
2694
2775
  :error_details,
2695
2776
  :error_message,
2696
2777
  :tags)
2778
+ SENSITIVE = []
2697
2779
  include Aws::Structure
2698
2780
  end
2699
2781
 
@@ -2711,6 +2793,7 @@ module Aws::Greengrass
2711
2793
  #
2712
2794
  class GetConnectivityInfoRequest < Struct.new(
2713
2795
  :thing_name)
2796
+ SENSITIVE = []
2714
2797
  include Aws::Structure
2715
2798
  end
2716
2799
 
@@ -2729,6 +2812,7 @@ module Aws::Greengrass
2729
2812
  class GetConnectivityInfoResponse < Struct.new(
2730
2813
  :connectivity_info,
2731
2814
  :message)
2815
+ SENSITIVE = []
2732
2816
  include Aws::Structure
2733
2817
  end
2734
2818
 
@@ -2746,6 +2830,7 @@ module Aws::Greengrass
2746
2830
  #
2747
2831
  class GetConnectorDefinitionRequest < Struct.new(
2748
2832
  :connector_definition_id)
2833
+ SENSITIVE = []
2749
2834
  include Aws::Structure
2750
2835
  end
2751
2836
 
@@ -2785,6 +2870,7 @@ module Aws::Greengrass
2785
2870
  :latest_version_arn,
2786
2871
  :name,
2787
2872
  :tags)
2873
+ SENSITIVE = []
2788
2874
  include Aws::Structure
2789
2875
  end
2790
2876
 
@@ -2812,6 +2898,7 @@ module Aws::Greengrass
2812
2898
  :connector_definition_id,
2813
2899
  :connector_definition_version_id,
2814
2900
  :next_token)
2901
+ SENSITIVE = []
2815
2902
  include Aws::Structure
2816
2903
  end
2817
2904
 
@@ -2852,6 +2939,7 @@ module Aws::Greengrass
2852
2939
  :id,
2853
2940
  :next_token,
2854
2941
  :version)
2942
+ SENSITIVE = []
2855
2943
  include Aws::Structure
2856
2944
  end
2857
2945
 
@@ -2869,6 +2957,7 @@ module Aws::Greengrass
2869
2957
  #
2870
2958
  class GetCoreDefinitionRequest < Struct.new(
2871
2959
  :core_definition_id)
2960
+ SENSITIVE = []
2872
2961
  include Aws::Structure
2873
2962
  end
2874
2963
 
@@ -2908,6 +2997,7 @@ module Aws::Greengrass
2908
2997
  :latest_version_arn,
2909
2998
  :name,
2910
2999
  :tags)
3000
+ SENSITIVE = []
2911
3001
  include Aws::Structure
2912
3002
  end
2913
3003
 
@@ -2930,6 +3020,7 @@ module Aws::Greengrass
2930
3020
  class GetCoreDefinitionVersionRequest < Struct.new(
2931
3021
  :core_definition_id,
2932
3022
  :core_definition_version_id)
3023
+ SENSITIVE = []
2933
3024
  include Aws::Structure
2934
3025
  end
2935
3026
 
@@ -2968,6 +3059,7 @@ module Aws::Greengrass
2968
3059
  :id,
2969
3060
  :next_token,
2970
3061
  :version)
3062
+ SENSITIVE = []
2971
3063
  include Aws::Structure
2972
3064
  end
2973
3065
 
@@ -2990,6 +3082,7 @@ module Aws::Greengrass
2990
3082
  class GetDeploymentStatusRequest < Struct.new(
2991
3083
  :deployment_id,
2992
3084
  :group_id)
3085
+ SENSITIVE = []
2993
3086
  include Aws::Structure
2994
3087
  end
2995
3088
 
@@ -3025,6 +3118,7 @@ module Aws::Greengrass
3025
3118
  :error_details,
3026
3119
  :error_message,
3027
3120
  :updated_at)
3121
+ SENSITIVE = []
3028
3122
  include Aws::Structure
3029
3123
  end
3030
3124
 
@@ -3042,6 +3136,7 @@ module Aws::Greengrass
3042
3136
  #
3043
3137
  class GetDeviceDefinitionRequest < Struct.new(
3044
3138
  :device_definition_id)
3139
+ SENSITIVE = []
3045
3140
  include Aws::Structure
3046
3141
  end
3047
3142
 
@@ -3081,6 +3176,7 @@ module Aws::Greengrass
3081
3176
  :latest_version_arn,
3082
3177
  :name,
3083
3178
  :tags)
3179
+ SENSITIVE = []
3084
3180
  include Aws::Structure
3085
3181
  end
3086
3182
 
@@ -3108,6 +3204,7 @@ module Aws::Greengrass
3108
3204
  :device_definition_id,
3109
3205
  :device_definition_version_id,
3110
3206
  :next_token)
3207
+ SENSITIVE = []
3111
3208
  include Aws::Structure
3112
3209
  end
3113
3210
 
@@ -3146,6 +3243,7 @@ module Aws::Greengrass
3146
3243
  :id,
3147
3244
  :next_token,
3148
3245
  :version)
3246
+ SENSITIVE = []
3149
3247
  include Aws::Structure
3150
3248
  end
3151
3249
 
@@ -3163,6 +3261,7 @@ module Aws::Greengrass
3163
3261
  #
3164
3262
  class GetFunctionDefinitionRequest < Struct.new(
3165
3263
  :function_definition_id)
3264
+ SENSITIVE = []
3166
3265
  include Aws::Structure
3167
3266
  end
3168
3267
 
@@ -3202,6 +3301,7 @@ module Aws::Greengrass
3202
3301
  :latest_version_arn,
3203
3302
  :name,
3204
3303
  :tags)
3304
+ SENSITIVE = []
3205
3305
  include Aws::Structure
3206
3306
  end
3207
3307
 
@@ -3229,6 +3329,7 @@ module Aws::Greengrass
3229
3329
  :function_definition_id,
3230
3330
  :function_definition_version_id,
3231
3331
  :next_token)
3332
+ SENSITIVE = []
3232
3333
  include Aws::Structure
3233
3334
  end
3234
3335
 
@@ -3269,6 +3370,7 @@ module Aws::Greengrass
3269
3370
  :id,
3270
3371
  :next_token,
3271
3372
  :version)
3373
+ SENSITIVE = []
3272
3374
  include Aws::Structure
3273
3375
  end
3274
3376
 
@@ -3291,6 +3393,7 @@ module Aws::Greengrass
3291
3393
  class GetGroupCertificateAuthorityRequest < Struct.new(
3292
3394
  :certificate_authority_id,
3293
3395
  :group_id)
3396
+ SENSITIVE = []
3294
3397
  include Aws::Structure
3295
3398
  end
3296
3399
 
@@ -3314,6 +3417,7 @@ module Aws::Greengrass
3314
3417
  :group_certificate_authority_arn,
3315
3418
  :group_certificate_authority_id,
3316
3419
  :pem_encoded_certificate)
3420
+ SENSITIVE = []
3317
3421
  include Aws::Structure
3318
3422
  end
3319
3423
 
@@ -3331,6 +3435,7 @@ module Aws::Greengrass
3331
3435
  #
3332
3436
  class GetGroupCertificateConfigurationRequest < Struct.new(
3333
3437
  :group_id)
3438
+ SENSITIVE = []
3334
3439
  include Aws::Structure
3335
3440
  end
3336
3441
 
@@ -3349,6 +3454,7 @@ module Aws::Greengrass
3349
3454
  :certificate_authority_expiry_in_milliseconds,
3350
3455
  :certificate_expiry_in_milliseconds,
3351
3456
  :group_id)
3457
+ SENSITIVE = []
3352
3458
  include Aws::Structure
3353
3459
  end
3354
3460
 
@@ -3366,6 +3472,7 @@ module Aws::Greengrass
3366
3472
  #
3367
3473
  class GetGroupRequest < Struct.new(
3368
3474
  :group_id)
3475
+ SENSITIVE = []
3369
3476
  include Aws::Structure
3370
3477
  end
3371
3478
 
@@ -3405,6 +3512,7 @@ module Aws::Greengrass
3405
3512
  :latest_version_arn,
3406
3513
  :name,
3407
3514
  :tags)
3515
+ SENSITIVE = []
3408
3516
  include Aws::Structure
3409
3517
  end
3410
3518
 
@@ -3427,6 +3535,7 @@ module Aws::Greengrass
3427
3535
  class GetGroupVersionRequest < Struct.new(
3428
3536
  :group_id,
3429
3537
  :group_version_id)
3538
+ SENSITIVE = []
3430
3539
  include Aws::Structure
3431
3540
  end
3432
3541
 
@@ -3461,6 +3570,7 @@ module Aws::Greengrass
3461
3570
  :definition,
3462
3571
  :id,
3463
3572
  :version)
3573
+ SENSITIVE = []
3464
3574
  include Aws::Structure
3465
3575
  end
3466
3576
 
@@ -3478,6 +3588,7 @@ module Aws::Greengrass
3478
3588
  #
3479
3589
  class GetLoggerDefinitionRequest < Struct.new(
3480
3590
  :logger_definition_id)
3591
+ SENSITIVE = []
3481
3592
  include Aws::Structure
3482
3593
  end
3483
3594
 
@@ -3517,6 +3628,7 @@ module Aws::Greengrass
3517
3628
  :latest_version_arn,
3518
3629
  :name,
3519
3630
  :tags)
3631
+ SENSITIVE = []
3520
3632
  include Aws::Structure
3521
3633
  end
3522
3634
 
@@ -3544,6 +3656,7 @@ module Aws::Greengrass
3544
3656
  :logger_definition_id,
3545
3657
  :logger_definition_version_id,
3546
3658
  :next_token)
3659
+ SENSITIVE = []
3547
3660
  include Aws::Structure
3548
3661
  end
3549
3662
 
@@ -3578,6 +3691,7 @@ module Aws::Greengrass
3578
3691
  :definition,
3579
3692
  :id,
3580
3693
  :version)
3694
+ SENSITIVE = []
3581
3695
  include Aws::Structure
3582
3696
  end
3583
3697
 
@@ -3595,6 +3709,7 @@ module Aws::Greengrass
3595
3709
  #
3596
3710
  class GetResourceDefinitionRequest < Struct.new(
3597
3711
  :resource_definition_id)
3712
+ SENSITIVE = []
3598
3713
  include Aws::Structure
3599
3714
  end
3600
3715
 
@@ -3634,6 +3749,7 @@ module Aws::Greengrass
3634
3749
  :latest_version_arn,
3635
3750
  :name,
3636
3751
  :tags)
3752
+ SENSITIVE = []
3637
3753
  include Aws::Structure
3638
3754
  end
3639
3755
 
@@ -3656,6 +3772,7 @@ module Aws::Greengrass
3656
3772
  class GetResourceDefinitionVersionRequest < Struct.new(
3657
3773
  :resource_definition_id,
3658
3774
  :resource_definition_version_id)
3775
+ SENSITIVE = []
3659
3776
  include Aws::Structure
3660
3777
  end
3661
3778
 
@@ -3690,6 +3807,7 @@ module Aws::Greengrass
3690
3807
  :definition,
3691
3808
  :id,
3692
3809
  :version)
3810
+ SENSITIVE = []
3693
3811
  include Aws::Structure
3694
3812
  end
3695
3813
 
@@ -3712,6 +3830,7 @@ module Aws::Greengrass
3712
3830
  class GetServiceRoleForAccountResponse < Struct.new(
3713
3831
  :associated_at,
3714
3832
  :role_arn)
3833
+ SENSITIVE = []
3715
3834
  include Aws::Structure
3716
3835
  end
3717
3836
 
@@ -3729,6 +3848,7 @@ module Aws::Greengrass
3729
3848
  #
3730
3849
  class GetSubscriptionDefinitionRequest < Struct.new(
3731
3850
  :subscription_definition_id)
3851
+ SENSITIVE = []
3732
3852
  include Aws::Structure
3733
3853
  end
3734
3854
 
@@ -3768,6 +3888,7 @@ module Aws::Greengrass
3768
3888
  :latest_version_arn,
3769
3889
  :name,
3770
3890
  :tags)
3891
+ SENSITIVE = []
3771
3892
  include Aws::Structure
3772
3893
  end
3773
3894
 
@@ -3795,6 +3916,7 @@ module Aws::Greengrass
3795
3916
  :next_token,
3796
3917
  :subscription_definition_id,
3797
3918
  :subscription_definition_version_id)
3919
+ SENSITIVE = []
3798
3920
  include Aws::Structure
3799
3921
  end
3800
3922
 
@@ -3835,6 +3957,39 @@ module Aws::Greengrass
3835
3957
  :id,
3836
3958
  :next_token,
3837
3959
  :version)
3960
+ SENSITIVE = []
3961
+ include Aws::Structure
3962
+ end
3963
+
3964
+ # @note When making an API call, you may pass GetThingRuntimeConfigurationRequest
3965
+ # data as a hash:
3966
+ #
3967
+ # {
3968
+ # thing_name: "__string", # required
3969
+ # }
3970
+ #
3971
+ # @!attribute [rw] thing_name
3972
+ # @return [String]
3973
+ #
3974
+ # @see http://docs.aws.amazon.com/goto/WebAPI/greengrass-2017-06-07/GetThingRuntimeConfigurationRequest AWS API Documentation
3975
+ #
3976
+ class GetThingRuntimeConfigurationRequest < Struct.new(
3977
+ :thing_name)
3978
+ SENSITIVE = []
3979
+ include Aws::Structure
3980
+ end
3981
+
3982
+ # The runtime configuration for a thing.
3983
+ #
3984
+ # @!attribute [rw] runtime_configuration
3985
+ # Runtime configuration for a thing.
3986
+ # @return [Types::RuntimeConfiguration]
3987
+ #
3988
+ # @see http://docs.aws.amazon.com/goto/WebAPI/greengrass-2017-06-07/GetThingRuntimeConfigurationResponse AWS API Documentation
3989
+ #
3990
+ class GetThingRuntimeConfigurationResponse < Struct.new(
3991
+ :runtime_configuration)
3992
+ SENSITIVE = []
3838
3993
  include Aws::Structure
3839
3994
  end
3840
3995
 
@@ -3853,6 +4008,7 @@ module Aws::Greengrass
3853
4008
  class GroupCertificateAuthorityProperties < Struct.new(
3854
4009
  :group_certificate_authority_arn,
3855
4010
  :group_certificate_authority_id)
4011
+ SENSITIVE = []
3856
4012
  include Aws::Structure
3857
4013
  end
3858
4014
 
@@ -3878,6 +4034,7 @@ module Aws::Greengrass
3878
4034
  :certificate_authority_expiry_in_milliseconds,
3879
4035
  :certificate_expiry_in_milliseconds,
3880
4036
  :group_id)
4037
+ SENSITIVE = []
3881
4038
  include Aws::Structure
3882
4039
  end
3883
4040
 
@@ -3923,6 +4080,7 @@ module Aws::Greengrass
3923
4080
  :latest_version,
3924
4081
  :latest_version_arn,
3925
4082
  :name)
4083
+ SENSITIVE = []
3926
4084
  include Aws::Structure
3927
4085
  end
3928
4086
 
@@ -3953,6 +4111,7 @@ module Aws::Greengrass
3953
4111
  class GroupOwnerSetting < Struct.new(
3954
4112
  :auto_add_group_owner,
3955
4113
  :group_owner)
4114
+ SENSITIVE = []
3956
4115
  include Aws::Structure
3957
4116
  end
3958
4117
 
@@ -4009,6 +4168,7 @@ module Aws::Greengrass
4009
4168
  :logger_definition_version_arn,
4010
4169
  :resource_definition_version_arn,
4011
4170
  :subscription_definition_version_arn)
4171
+ SENSITIVE = []
4012
4172
  include Aws::Structure
4013
4173
  end
4014
4174
 
@@ -4026,6 +4186,7 @@ module Aws::Greengrass
4026
4186
  class InternalServerErrorException < Struct.new(
4027
4187
  :error_details,
4028
4188
  :message)
4189
+ SENSITIVE = []
4029
4190
  include Aws::Structure
4030
4191
  end
4031
4192
 
@@ -4053,6 +4214,7 @@ module Aws::Greengrass
4053
4214
  :bulk_deployment_id,
4054
4215
  :max_results,
4055
4216
  :next_token)
4217
+ SENSITIVE = []
4056
4218
  include Aws::Structure
4057
4219
  end
4058
4220
 
@@ -4071,6 +4233,7 @@ module Aws::Greengrass
4071
4233
  class ListBulkDeploymentDetailedReportsResponse < Struct.new(
4072
4234
  :deployments,
4073
4235
  :next_token)
4236
+ SENSITIVE = []
4074
4237
  include Aws::Structure
4075
4238
  end
4076
4239
 
@@ -4093,6 +4256,7 @@ module Aws::Greengrass
4093
4256
  class ListBulkDeploymentsRequest < Struct.new(
4094
4257
  :max_results,
4095
4258
  :next_token)
4259
+ SENSITIVE = []
4096
4260
  include Aws::Structure
4097
4261
  end
4098
4262
 
@@ -4110,6 +4274,7 @@ module Aws::Greengrass
4110
4274
  class ListBulkDeploymentsResponse < Struct.new(
4111
4275
  :bulk_deployments,
4112
4276
  :next_token)
4277
+ SENSITIVE = []
4113
4278
  include Aws::Structure
4114
4279
  end
4115
4280
 
@@ -4137,6 +4302,7 @@ module Aws::Greengrass
4137
4302
  :connector_definition_id,
4138
4303
  :max_results,
4139
4304
  :next_token)
4305
+ SENSITIVE = []
4140
4306
  include Aws::Structure
4141
4307
  end
4142
4308
 
@@ -4151,6 +4317,7 @@ module Aws::Greengrass
4151
4317
  class ListConnectorDefinitionVersionsResponse < Struct.new(
4152
4318
  :next_token,
4153
4319
  :versions)
4320
+ SENSITIVE = []
4154
4321
  include Aws::Structure
4155
4322
  end
4156
4323
 
@@ -4173,6 +4340,7 @@ module Aws::Greengrass
4173
4340
  class ListConnectorDefinitionsRequest < Struct.new(
4174
4341
  :max_results,
4175
4342
  :next_token)
4343
+ SENSITIVE = []
4176
4344
  include Aws::Structure
4177
4345
  end
4178
4346
 
@@ -4187,6 +4355,7 @@ module Aws::Greengrass
4187
4355
  class ListConnectorDefinitionsResponse < Struct.new(
4188
4356
  :definitions,
4189
4357
  :next_token)
4358
+ SENSITIVE = []
4190
4359
  include Aws::Structure
4191
4360
  end
4192
4361
 
@@ -4214,6 +4383,7 @@ module Aws::Greengrass
4214
4383
  :core_definition_id,
4215
4384
  :max_results,
4216
4385
  :next_token)
4386
+ SENSITIVE = []
4217
4387
  include Aws::Structure
4218
4388
  end
4219
4389
 
@@ -4228,6 +4398,7 @@ module Aws::Greengrass
4228
4398
  class ListCoreDefinitionVersionsResponse < Struct.new(
4229
4399
  :next_token,
4230
4400
  :versions)
4401
+ SENSITIVE = []
4231
4402
  include Aws::Structure
4232
4403
  end
4233
4404
 
@@ -4250,6 +4421,7 @@ module Aws::Greengrass
4250
4421
  class ListCoreDefinitionsRequest < Struct.new(
4251
4422
  :max_results,
4252
4423
  :next_token)
4424
+ SENSITIVE = []
4253
4425
  include Aws::Structure
4254
4426
  end
4255
4427
 
@@ -4264,6 +4436,7 @@ module Aws::Greengrass
4264
4436
  class ListCoreDefinitionsResponse < Struct.new(
4265
4437
  :definitions,
4266
4438
  :next_token)
4439
+ SENSITIVE = []
4267
4440
  include Aws::Structure
4268
4441
  end
4269
4442
 
@@ -4283,6 +4456,7 @@ module Aws::Greengrass
4283
4456
  class ListDefinitionsResponse < Struct.new(
4284
4457
  :definitions,
4285
4458
  :next_token)
4459
+ SENSITIVE = []
4286
4460
  include Aws::Structure
4287
4461
  end
4288
4462
 
@@ -4310,6 +4484,7 @@ module Aws::Greengrass
4310
4484
  :group_id,
4311
4485
  :max_results,
4312
4486
  :next_token)
4487
+ SENSITIVE = []
4313
4488
  include Aws::Structure
4314
4489
  end
4315
4490
 
@@ -4327,6 +4502,7 @@ module Aws::Greengrass
4327
4502
  class ListDeploymentsResponse < Struct.new(
4328
4503
  :deployments,
4329
4504
  :next_token)
4505
+ SENSITIVE = []
4330
4506
  include Aws::Structure
4331
4507
  end
4332
4508
 
@@ -4354,6 +4530,7 @@ module Aws::Greengrass
4354
4530
  :device_definition_id,
4355
4531
  :max_results,
4356
4532
  :next_token)
4533
+ SENSITIVE = []
4357
4534
  include Aws::Structure
4358
4535
  end
4359
4536
 
@@ -4368,6 +4545,7 @@ module Aws::Greengrass
4368
4545
  class ListDeviceDefinitionVersionsResponse < Struct.new(
4369
4546
  :next_token,
4370
4547
  :versions)
4548
+ SENSITIVE = []
4371
4549
  include Aws::Structure
4372
4550
  end
4373
4551
 
@@ -4390,6 +4568,7 @@ module Aws::Greengrass
4390
4568
  class ListDeviceDefinitionsRequest < Struct.new(
4391
4569
  :max_results,
4392
4570
  :next_token)
4571
+ SENSITIVE = []
4393
4572
  include Aws::Structure
4394
4573
  end
4395
4574
 
@@ -4404,6 +4583,7 @@ module Aws::Greengrass
4404
4583
  class ListDeviceDefinitionsResponse < Struct.new(
4405
4584
  :definitions,
4406
4585
  :next_token)
4586
+ SENSITIVE = []
4407
4587
  include Aws::Structure
4408
4588
  end
4409
4589
 
@@ -4431,6 +4611,7 @@ module Aws::Greengrass
4431
4611
  :function_definition_id,
4432
4612
  :max_results,
4433
4613
  :next_token)
4614
+ SENSITIVE = []
4434
4615
  include Aws::Structure
4435
4616
  end
4436
4617
 
@@ -4445,6 +4626,7 @@ module Aws::Greengrass
4445
4626
  class ListFunctionDefinitionVersionsResponse < Struct.new(
4446
4627
  :next_token,
4447
4628
  :versions)
4629
+ SENSITIVE = []
4448
4630
  include Aws::Structure
4449
4631
  end
4450
4632
 
@@ -4467,6 +4649,7 @@ module Aws::Greengrass
4467
4649
  class ListFunctionDefinitionsRequest < Struct.new(
4468
4650
  :max_results,
4469
4651
  :next_token)
4652
+ SENSITIVE = []
4470
4653
  include Aws::Structure
4471
4654
  end
4472
4655
 
@@ -4481,6 +4664,7 @@ module Aws::Greengrass
4481
4664
  class ListFunctionDefinitionsResponse < Struct.new(
4482
4665
  :definitions,
4483
4666
  :next_token)
4667
+ SENSITIVE = []
4484
4668
  include Aws::Structure
4485
4669
  end
4486
4670
 
@@ -4498,6 +4682,7 @@ module Aws::Greengrass
4498
4682
  #
4499
4683
  class ListGroupCertificateAuthoritiesRequest < Struct.new(
4500
4684
  :group_id)
4685
+ SENSITIVE = []
4501
4686
  include Aws::Structure
4502
4687
  end
4503
4688
 
@@ -4509,6 +4694,7 @@ module Aws::Greengrass
4509
4694
  #
4510
4695
  class ListGroupCertificateAuthoritiesResponse < Struct.new(
4511
4696
  :group_certificate_authorities)
4697
+ SENSITIVE = []
4512
4698
  include Aws::Structure
4513
4699
  end
4514
4700
 
@@ -4536,6 +4722,7 @@ module Aws::Greengrass
4536
4722
  :group_id,
4537
4723
  :max_results,
4538
4724
  :next_token)
4725
+ SENSITIVE = []
4539
4726
  include Aws::Structure
4540
4727
  end
4541
4728
 
@@ -4550,6 +4737,7 @@ module Aws::Greengrass
4550
4737
  class ListGroupVersionsResponse < Struct.new(
4551
4738
  :next_token,
4552
4739
  :versions)
4740
+ SENSITIVE = []
4553
4741
  include Aws::Structure
4554
4742
  end
4555
4743
 
@@ -4572,6 +4760,7 @@ module Aws::Greengrass
4572
4760
  class ListGroupsRequest < Struct.new(
4573
4761
  :max_results,
4574
4762
  :next_token)
4763
+ SENSITIVE = []
4575
4764
  include Aws::Structure
4576
4765
  end
4577
4766
 
@@ -4589,6 +4778,7 @@ module Aws::Greengrass
4589
4778
  class ListGroupsResponse < Struct.new(
4590
4779
  :groups,
4591
4780
  :next_token)
4781
+ SENSITIVE = []
4592
4782
  include Aws::Structure
4593
4783
  end
4594
4784
 
@@ -4616,6 +4806,7 @@ module Aws::Greengrass
4616
4806
  :logger_definition_id,
4617
4807
  :max_results,
4618
4808
  :next_token)
4809
+ SENSITIVE = []
4619
4810
  include Aws::Structure
4620
4811
  end
4621
4812
 
@@ -4630,6 +4821,7 @@ module Aws::Greengrass
4630
4821
  class ListLoggerDefinitionVersionsResponse < Struct.new(
4631
4822
  :next_token,
4632
4823
  :versions)
4824
+ SENSITIVE = []
4633
4825
  include Aws::Structure
4634
4826
  end
4635
4827
 
@@ -4652,6 +4844,7 @@ module Aws::Greengrass
4652
4844
  class ListLoggerDefinitionsRequest < Struct.new(
4653
4845
  :max_results,
4654
4846
  :next_token)
4847
+ SENSITIVE = []
4655
4848
  include Aws::Structure
4656
4849
  end
4657
4850
 
@@ -4666,6 +4859,7 @@ module Aws::Greengrass
4666
4859
  class ListLoggerDefinitionsResponse < Struct.new(
4667
4860
  :definitions,
4668
4861
  :next_token)
4862
+ SENSITIVE = []
4669
4863
  include Aws::Structure
4670
4864
  end
4671
4865
 
@@ -4693,6 +4887,7 @@ module Aws::Greengrass
4693
4887
  :max_results,
4694
4888
  :next_token,
4695
4889
  :resource_definition_id)
4890
+ SENSITIVE = []
4696
4891
  include Aws::Structure
4697
4892
  end
4698
4893
 
@@ -4707,6 +4902,7 @@ module Aws::Greengrass
4707
4902
  class ListResourceDefinitionVersionsResponse < Struct.new(
4708
4903
  :next_token,
4709
4904
  :versions)
4905
+ SENSITIVE = []
4710
4906
  include Aws::Structure
4711
4907
  end
4712
4908
 
@@ -4729,6 +4925,7 @@ module Aws::Greengrass
4729
4925
  class ListResourceDefinitionsRequest < Struct.new(
4730
4926
  :max_results,
4731
4927
  :next_token)
4928
+ SENSITIVE = []
4732
4929
  include Aws::Structure
4733
4930
  end
4734
4931
 
@@ -4743,6 +4940,7 @@ module Aws::Greengrass
4743
4940
  class ListResourceDefinitionsResponse < Struct.new(
4744
4941
  :definitions,
4745
4942
  :next_token)
4943
+ SENSITIVE = []
4746
4944
  include Aws::Structure
4747
4945
  end
4748
4946
 
@@ -4770,6 +4968,7 @@ module Aws::Greengrass
4770
4968
  :max_results,
4771
4969
  :next_token,
4772
4970
  :subscription_definition_id)
4971
+ SENSITIVE = []
4773
4972
  include Aws::Structure
4774
4973
  end
4775
4974
 
@@ -4784,6 +4983,7 @@ module Aws::Greengrass
4784
4983
  class ListSubscriptionDefinitionVersionsResponse < Struct.new(
4785
4984
  :next_token,
4786
4985
  :versions)
4986
+ SENSITIVE = []
4787
4987
  include Aws::Structure
4788
4988
  end
4789
4989
 
@@ -4806,6 +5006,7 @@ module Aws::Greengrass
4806
5006
  class ListSubscriptionDefinitionsRequest < Struct.new(
4807
5007
  :max_results,
4808
5008
  :next_token)
5009
+ SENSITIVE = []
4809
5010
  include Aws::Structure
4810
5011
  end
4811
5012
 
@@ -4820,6 +5021,7 @@ module Aws::Greengrass
4820
5021
  class ListSubscriptionDefinitionsResponse < Struct.new(
4821
5022
  :definitions,
4822
5023
  :next_token)
5024
+ SENSITIVE = []
4823
5025
  include Aws::Structure
4824
5026
  end
4825
5027
 
@@ -4837,6 +5039,7 @@ module Aws::Greengrass
4837
5039
  #
4838
5040
  class ListTagsForResourceRequest < Struct.new(
4839
5041
  :resource_arn)
5042
+ SENSITIVE = []
4840
5043
  include Aws::Structure
4841
5044
  end
4842
5045
 
@@ -4848,6 +5051,7 @@ module Aws::Greengrass
4848
5051
  #
4849
5052
  class ListTagsForResourceResponse < Struct.new(
4850
5053
  :tags)
5054
+ SENSITIVE = []
4851
5055
  include Aws::Structure
4852
5056
  end
4853
5057
 
@@ -4867,6 +5071,7 @@ module Aws::Greengrass
4867
5071
  class ListVersionsResponse < Struct.new(
4868
5072
  :next_token,
4869
5073
  :versions)
5074
+ SENSITIVE = []
4870
5075
  include Aws::Structure
4871
5076
  end
4872
5077
 
@@ -4898,6 +5103,7 @@ module Aws::Greengrass
4898
5103
  class LocalDeviceResourceData < Struct.new(
4899
5104
  :group_owner_setting,
4900
5105
  :source_path)
5106
+ SENSITIVE = []
4901
5107
  include Aws::Structure
4902
5108
  end
4903
5109
 
@@ -4937,6 +5143,7 @@ module Aws::Greengrass
4937
5143
  :destination_path,
4938
5144
  :group_owner_setting,
4939
5145
  :source_path)
5146
+ SENSITIVE = []
4940
5147
  include Aws::Structure
4941
5148
  end
4942
5149
 
@@ -4984,6 +5191,7 @@ module Aws::Greengrass
4984
5191
  :level,
4985
5192
  :space,
4986
5193
  :type)
5194
+ SENSITIVE = []
4987
5195
  include Aws::Structure
4988
5196
  end
4989
5197
 
@@ -5012,6 +5220,7 @@ module Aws::Greengrass
5012
5220
  #
5013
5221
  class LoggerDefinitionVersion < Struct.new(
5014
5222
  :loggers)
5223
+ SENSITIVE = []
5015
5224
  include Aws::Structure
5016
5225
  end
5017
5226
 
@@ -5042,6 +5251,7 @@ module Aws::Greengrass
5042
5251
  :amzn_client_token,
5043
5252
  :force,
5044
5253
  :group_id)
5254
+ SENSITIVE = []
5045
5255
  include Aws::Structure
5046
5256
  end
5047
5257
 
@@ -5058,6 +5268,7 @@ module Aws::Greengrass
5058
5268
  class ResetDeploymentsResponse < Struct.new(
5059
5269
  :deployment_arn,
5060
5270
  :deployment_id)
5271
+ SENSITIVE = []
5061
5272
  include Aws::Structure
5062
5273
  end
5063
5274
 
@@ -5132,6 +5343,7 @@ module Aws::Greengrass
5132
5343
  :id,
5133
5344
  :name,
5134
5345
  :resource_data_container)
5346
+ SENSITIVE = []
5135
5347
  include Aws::Structure
5136
5348
  end
5137
5349
 
@@ -5160,6 +5372,7 @@ module Aws::Greengrass
5160
5372
  class ResourceAccessPolicy < Struct.new(
5161
5373
  :permission,
5162
5374
  :resource_id)
5375
+ SENSITIVE = []
5163
5376
  include Aws::Structure
5164
5377
  end
5165
5378
 
@@ -5241,6 +5454,7 @@ module Aws::Greengrass
5241
5454
  :s3_machine_learning_model_resource_data,
5242
5455
  :sage_maker_machine_learning_model_resource_data,
5243
5456
  :secrets_manager_secret_resource_data)
5457
+ SENSITIVE = []
5244
5458
  include Aws::Structure
5245
5459
  end
5246
5460
 
@@ -5303,6 +5517,7 @@ module Aws::Greengrass
5303
5517
  #
5304
5518
  class ResourceDefinitionVersion < Struct.new(
5305
5519
  :resources)
5520
+ SENSITIVE = []
5306
5521
  include Aws::Structure
5307
5522
  end
5308
5523
 
@@ -5332,6 +5547,35 @@ module Aws::Greengrass
5332
5547
  class ResourceDownloadOwnerSetting < Struct.new(
5333
5548
  :group_owner,
5334
5549
  :group_permission)
5550
+ SENSITIVE = []
5551
+ include Aws::Structure
5552
+ end
5553
+
5554
+ # Runtime configuration for a thing.
5555
+ #
5556
+ # @!attribute [rw] telemetry_configuration
5557
+ # Configuration for telemetry service.
5558
+ # @return [Types::TelemetryConfiguration]
5559
+ #
5560
+ # @see http://docs.aws.amazon.com/goto/WebAPI/greengrass-2017-06-07/RuntimeConfiguration AWS API Documentation
5561
+ #
5562
+ class RuntimeConfiguration < Struct.new(
5563
+ :telemetry_configuration)
5564
+ SENSITIVE = []
5565
+ include Aws::Structure
5566
+ end
5567
+
5568
+ # Runtime configuration for a thing.
5569
+ #
5570
+ # @!attribute [rw] telemetry_configuration
5571
+ # Configuration for telemetry service.
5572
+ # @return [Types::TelemetryConfigurationUpdate]
5573
+ #
5574
+ # @see http://docs.aws.amazon.com/goto/WebAPI/greengrass-2017-06-07/RuntimeConfigurationUpdate AWS API Documentation
5575
+ #
5576
+ class RuntimeConfigurationUpdate < Struct.new(
5577
+ :telemetry_configuration)
5578
+ SENSITIVE = []
5335
5579
  include Aws::Structure
5336
5580
  end
5337
5581
 
@@ -5369,6 +5613,7 @@ module Aws::Greengrass
5369
5613
  :destination_path,
5370
5614
  :owner_setting,
5371
5615
  :s3_uri)
5616
+ SENSITIVE = []
5372
5617
  include Aws::Structure
5373
5618
  end
5374
5619
 
@@ -5406,6 +5651,7 @@ module Aws::Greengrass
5406
5651
  :destination_path,
5407
5652
  :owner_setting,
5408
5653
  :sage_maker_job_arn)
5654
+ SENSITIVE = []
5409
5655
  include Aws::Structure
5410
5656
  end
5411
5657
 
@@ -5438,6 +5684,7 @@ module Aws::Greengrass
5438
5684
  class SecretsManagerSecretResourceData < Struct.new(
5439
5685
  :arn,
5440
5686
  :additional_staging_labels_to_download)
5687
+ SENSITIVE = []
5441
5688
  include Aws::Structure
5442
5689
  end
5443
5690
 
@@ -5489,6 +5736,7 @@ module Aws::Greengrass
5489
5736
  :execution_role_arn,
5490
5737
  :input_file_uri,
5491
5738
  :tags)
5739
+ SENSITIVE = []
5492
5740
  include Aws::Structure
5493
5741
  end
5494
5742
 
@@ -5505,6 +5753,7 @@ module Aws::Greengrass
5505
5753
  class StartBulkDeploymentResponse < Struct.new(
5506
5754
  :bulk_deployment_arn,
5507
5755
  :bulk_deployment_id)
5756
+ SENSITIVE = []
5508
5757
  include Aws::Structure
5509
5758
  end
5510
5759
 
@@ -5522,6 +5771,7 @@ module Aws::Greengrass
5522
5771
  #
5523
5772
  class StopBulkDeploymentRequest < Struct.new(
5524
5773
  :bulk_deployment_id)
5774
+ SENSITIVE = []
5525
5775
  include Aws::Structure
5526
5776
  end
5527
5777
 
@@ -5570,6 +5820,7 @@ module Aws::Greengrass
5570
5820
  :source,
5571
5821
  :subject,
5572
5822
  :target)
5823
+ SENSITIVE = []
5573
5824
  include Aws::Structure
5574
5825
  end
5575
5826
 
@@ -5597,6 +5848,7 @@ module Aws::Greengrass
5597
5848
  #
5598
5849
  class SubscriptionDefinitionVersion < Struct.new(
5599
5850
  :subscriptions)
5851
+ SENSITIVE = []
5600
5852
  include Aws::Structure
5601
5853
  end
5602
5854
 
@@ -5622,6 +5874,48 @@ module Aws::Greengrass
5622
5874
  class TagResourceRequest < Struct.new(
5623
5875
  :resource_arn,
5624
5876
  :tags)
5877
+ SENSITIVE = []
5878
+ include Aws::Structure
5879
+ end
5880
+
5881
+ # Configuration settings for running telemetry.
5882
+ #
5883
+ # @!attribute [rw] configuration_sync_status
5884
+ # Synchronization status of the device reported configuration with the
5885
+ # desired configuration.
5886
+ # @return [String]
5887
+ #
5888
+ # @!attribute [rw] telemetry
5889
+ # Configure telemetry to be on or off.
5890
+ # @return [String]
5891
+ #
5892
+ # @see http://docs.aws.amazon.com/goto/WebAPI/greengrass-2017-06-07/TelemetryConfiguration AWS API Documentation
5893
+ #
5894
+ class TelemetryConfiguration < Struct.new(
5895
+ :configuration_sync_status,
5896
+ :telemetry)
5897
+ SENSITIVE = []
5898
+ include Aws::Structure
5899
+ end
5900
+
5901
+ # Configuration settings for running telemetry.
5902
+ #
5903
+ # @note When making an API call, you may pass TelemetryConfigurationUpdate
5904
+ # data as a hash:
5905
+ #
5906
+ # {
5907
+ # telemetry: "On", # required, accepts On, Off
5908
+ # }
5909
+ #
5910
+ # @!attribute [rw] telemetry
5911
+ # Configure telemetry to be on or off.
5912
+ # @return [String]
5913
+ #
5914
+ # @see http://docs.aws.amazon.com/goto/WebAPI/greengrass-2017-06-07/TelemetryConfigurationUpdate AWS API Documentation
5915
+ #
5916
+ class TelemetryConfigurationUpdate < Struct.new(
5917
+ :telemetry)
5918
+ SENSITIVE = []
5625
5919
  include Aws::Structure
5626
5920
  end
5627
5921
 
@@ -5644,6 +5938,7 @@ module Aws::Greengrass
5644
5938
  class UntagResourceRequest < Struct.new(
5645
5939
  :resource_arn,
5646
5940
  :tag_keys)
5941
+ SENSITIVE = []
5647
5942
  include Aws::Structure
5648
5943
  end
5649
5944
 
@@ -5676,6 +5971,7 @@ module Aws::Greengrass
5676
5971
  class UpdateConnectivityInfoRequest < Struct.new(
5677
5972
  :connectivity_info,
5678
5973
  :thing_name)
5974
+ SENSITIVE = []
5679
5975
  include Aws::Structure
5680
5976
  end
5681
5977
 
@@ -5692,6 +5988,7 @@ module Aws::Greengrass
5692
5988
  class UpdateConnectivityInfoResponse < Struct.new(
5693
5989
  :message,
5694
5990
  :version)
5991
+ SENSITIVE = []
5695
5992
  include Aws::Structure
5696
5993
  end
5697
5994
 
@@ -5714,6 +6011,7 @@ module Aws::Greengrass
5714
6011
  class UpdateConnectorDefinitionRequest < Struct.new(
5715
6012
  :connector_definition_id,
5716
6013
  :name)
6014
+ SENSITIVE = []
5717
6015
  include Aws::Structure
5718
6016
  end
5719
6017
 
@@ -5740,6 +6038,7 @@ module Aws::Greengrass
5740
6038
  class UpdateCoreDefinitionRequest < Struct.new(
5741
6039
  :core_definition_id,
5742
6040
  :name)
6041
+ SENSITIVE = []
5743
6042
  include Aws::Structure
5744
6043
  end
5745
6044
 
@@ -5766,6 +6065,7 @@ module Aws::Greengrass
5766
6065
  class UpdateDeviceDefinitionRequest < Struct.new(
5767
6066
  :device_definition_id,
5768
6067
  :name)
6068
+ SENSITIVE = []
5769
6069
  include Aws::Structure
5770
6070
  end
5771
6071
 
@@ -5792,6 +6092,7 @@ module Aws::Greengrass
5792
6092
  class UpdateFunctionDefinitionRequest < Struct.new(
5793
6093
  :function_definition_id,
5794
6094
  :name)
6095
+ SENSITIVE = []
5795
6096
  include Aws::Structure
5796
6097
  end
5797
6098
 
@@ -5820,6 +6121,7 @@ module Aws::Greengrass
5820
6121
  class UpdateGroupCertificateConfigurationRequest < Struct.new(
5821
6122
  :certificate_expiry_in_milliseconds,
5822
6123
  :group_id)
6124
+ SENSITIVE = []
5823
6125
  include Aws::Structure
5824
6126
  end
5825
6127
 
@@ -5838,6 +6140,7 @@ module Aws::Greengrass
5838
6140
  :certificate_authority_expiry_in_milliseconds,
5839
6141
  :certificate_expiry_in_milliseconds,
5840
6142
  :group_id)
6143
+ SENSITIVE = []
5841
6144
  include Aws::Structure
5842
6145
  end
5843
6146
 
@@ -5860,6 +6163,7 @@ module Aws::Greengrass
5860
6163
  class UpdateGroupRequest < Struct.new(
5861
6164
  :group_id,
5862
6165
  :name)
6166
+ SENSITIVE = []
5863
6167
  include Aws::Structure
5864
6168
  end
5865
6169
 
@@ -5886,6 +6190,7 @@ module Aws::Greengrass
5886
6190
  class UpdateLoggerDefinitionRequest < Struct.new(
5887
6191
  :logger_definition_id,
5888
6192
  :name)
6193
+ SENSITIVE = []
5889
6194
  include Aws::Structure
5890
6195
  end
5891
6196
 
@@ -5912,6 +6217,7 @@ module Aws::Greengrass
5912
6217
  class UpdateResourceDefinitionRequest < Struct.new(
5913
6218
  :name,
5914
6219
  :resource_definition_id)
6220
+ SENSITIVE = []
5915
6221
  include Aws::Structure
5916
6222
  end
5917
6223
 
@@ -5938,6 +6244,7 @@ module Aws::Greengrass
5938
6244
  class UpdateSubscriptionDefinitionRequest < Struct.new(
5939
6245
  :name,
5940
6246
  :subscription_definition_id)
6247
+ SENSITIVE = []
5941
6248
  include Aws::Structure
5942
6249
  end
5943
6250
 
@@ -5945,6 +6252,36 @@ module Aws::Greengrass
5945
6252
  #
5946
6253
  class UpdateSubscriptionDefinitionResponse < Aws::EmptyStructure; end
5947
6254
 
6255
+ # @note When making an API call, you may pass UpdateThingRuntimeConfigurationRequest
6256
+ # data as a hash:
6257
+ #
6258
+ # {
6259
+ # telemetry_configuration: {
6260
+ # telemetry: "On", # required, accepts On, Off
6261
+ # },
6262
+ # thing_name: "__string", # required
6263
+ # }
6264
+ #
6265
+ # @!attribute [rw] telemetry_configuration
6266
+ # Configuration settings for running telemetry.
6267
+ # @return [Types::TelemetryConfigurationUpdate]
6268
+ #
6269
+ # @!attribute [rw] thing_name
6270
+ # @return [String]
6271
+ #
6272
+ # @see http://docs.aws.amazon.com/goto/WebAPI/greengrass-2017-06-07/UpdateThingRuntimeConfigurationRequest AWS API Documentation
6273
+ #
6274
+ class UpdateThingRuntimeConfigurationRequest < Struct.new(
6275
+ :telemetry_configuration,
6276
+ :thing_name)
6277
+ SENSITIVE = []
6278
+ include Aws::Structure
6279
+ end
6280
+
6281
+ # @see http://docs.aws.amazon.com/goto/WebAPI/greengrass-2017-06-07/UpdateThingRuntimeConfigurationResponse AWS API Documentation
6282
+ #
6283
+ class UpdateThingRuntimeConfigurationResponse < Aws::EmptyStructure; end
6284
+
5948
6285
  # Information about a version.
5949
6286
  #
5950
6287
  # @!attribute [rw] arn
@@ -5971,6 +6308,7 @@ module Aws::Greengrass
5971
6308
  :creation_timestamp,
5972
6309
  :id,
5973
6310
  :version)
6311
+ SENSITIVE = []
5974
6312
  include Aws::Structure
5975
6313
  end
5976
6314