aws-sdk-iotmanagedintegrations 1.2.0 → 1.4.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 +4 -4
- data/CHANGELOG.md +10 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-iotmanagedintegrations/client.rb +1374 -32
- data/lib/aws-sdk-iotmanagedintegrations/client_api.rb +939 -12
- data/lib/aws-sdk-iotmanagedintegrations/errors.rb +42 -0
- data/lib/aws-sdk-iotmanagedintegrations/types.rb +1776 -85
- data/lib/aws-sdk-iotmanagedintegrations.rb +2 -2
- data/sig/client.rbs +437 -10
- data/sig/errors.rbs +8 -0
- data/sig/types.rbs +504 -12
- metadata +4 -4
@@ -50,6 +50,80 @@ module Aws::IoTManagedIntegrations
|
|
50
50
|
include Aws::Structure
|
51
51
|
end
|
52
52
|
|
53
|
+
# Structure containing information about an account association,
|
54
|
+
# including its identifier, state, and related metadata.
|
55
|
+
#
|
56
|
+
# @!attribute [rw] account_association_id
|
57
|
+
# The unique identifier of the account association.
|
58
|
+
# @return [String]
|
59
|
+
#
|
60
|
+
# @!attribute [rw] association_state
|
61
|
+
# The current state of the account association, indicating its status
|
62
|
+
# in the association lifecycle.
|
63
|
+
# @return [String]
|
64
|
+
#
|
65
|
+
# @!attribute [rw] error_message
|
66
|
+
# The error message explaining any issues with the account
|
67
|
+
# association, if applicable.
|
68
|
+
# @return [String]
|
69
|
+
#
|
70
|
+
# @!attribute [rw] connector_destination_id
|
71
|
+
# The identifier of the connector destination associated with this
|
72
|
+
# account association.
|
73
|
+
# @return [String]
|
74
|
+
#
|
75
|
+
# @!attribute [rw] name
|
76
|
+
# The name of the account association.
|
77
|
+
# @return [String]
|
78
|
+
#
|
79
|
+
# @!attribute [rw] description
|
80
|
+
# A description of the account association.
|
81
|
+
# @return [String]
|
82
|
+
#
|
83
|
+
# @!attribute [rw] arn
|
84
|
+
# The Amazon Resource Name (ARN) of the account association.
|
85
|
+
# @return [String]
|
86
|
+
#
|
87
|
+
class AccountAssociationItem < Struct.new(
|
88
|
+
:account_association_id,
|
89
|
+
:association_state,
|
90
|
+
:error_message,
|
91
|
+
:connector_destination_id,
|
92
|
+
:name,
|
93
|
+
:description,
|
94
|
+
:arn)
|
95
|
+
SENSITIVE = []
|
96
|
+
include Aws::Structure
|
97
|
+
end
|
98
|
+
|
99
|
+
# The authentication configuration details for a connector destination,
|
100
|
+
# including OAuth settings and other authentication parameters.
|
101
|
+
#
|
102
|
+
# @!attribute [rw] o_auth
|
103
|
+
# The OAuth configuration settings used for authentication with the
|
104
|
+
# third-party service.
|
105
|
+
# @return [Types::OAuthConfig]
|
106
|
+
#
|
107
|
+
class AuthConfig < Struct.new(
|
108
|
+
:o_auth)
|
109
|
+
SENSITIVE = []
|
110
|
+
include Aws::Structure
|
111
|
+
end
|
112
|
+
|
113
|
+
# The updated authentication configuration details for a connector
|
114
|
+
# destination.
|
115
|
+
#
|
116
|
+
# @!attribute [rw] o_auth_update
|
117
|
+
# The updated OAuth configuration settings for the authentication
|
118
|
+
# configuration.
|
119
|
+
# @return [Types::OAuthUpdate]
|
120
|
+
#
|
121
|
+
class AuthConfigUpdate < Struct.new(
|
122
|
+
:o_auth_update)
|
123
|
+
SENSITIVE = []
|
124
|
+
include Aws::Structure
|
125
|
+
end
|
126
|
+
|
53
127
|
# Action for an Amazon Web Services capability, containing the action
|
54
128
|
# parameters for control.
|
55
129
|
#
|
@@ -160,6 +234,43 @@ module Aws::IoTManagedIntegrations
|
|
160
234
|
include Aws::Structure
|
161
235
|
end
|
162
236
|
|
237
|
+
# Structure representing a capability schema item that defines the
|
238
|
+
# functionality and features supported by a managed thing.
|
239
|
+
#
|
240
|
+
# @!attribute [rw] format
|
241
|
+
# The format of the capability schema, which defines how the schema is
|
242
|
+
# structured and interpreted.
|
243
|
+
# @return [String]
|
244
|
+
#
|
245
|
+
# @!attribute [rw] capability_id
|
246
|
+
# The unique identifier of the capability defined in the schema.
|
247
|
+
# @return [String]
|
248
|
+
#
|
249
|
+
# @!attribute [rw] extrinsic_id
|
250
|
+
# The external identifier for the capability, used when referencing
|
251
|
+
# the capability outside of the AWS ecosystem.
|
252
|
+
# @return [String]
|
253
|
+
#
|
254
|
+
# @!attribute [rw] extrinsic_version
|
255
|
+
# The version of the external capability definition, used to track
|
256
|
+
# compatibility with external systems.
|
257
|
+
# @return [Integer]
|
258
|
+
#
|
259
|
+
# @!attribute [rw] schema
|
260
|
+
# The actual schema definition that describes the capability's
|
261
|
+
# properties, actions, and events.
|
262
|
+
# @return [Hash,Array,String,Numeric,Boolean]
|
263
|
+
#
|
264
|
+
class CapabilitySchemaItem < Struct.new(
|
265
|
+
:format,
|
266
|
+
:capability_id,
|
267
|
+
:extrinsic_id,
|
268
|
+
:extrinsic_version,
|
269
|
+
:schema)
|
270
|
+
SENSITIVE = []
|
271
|
+
include Aws::Structure
|
272
|
+
end
|
273
|
+
|
163
274
|
# The command capabilities added for the managed thing
|
164
275
|
#
|
165
276
|
# @!attribute [rw] id
|
@@ -255,6 +366,245 @@ module Aws::IoTManagedIntegrations
|
|
255
366
|
include Aws::Structure
|
256
367
|
end
|
257
368
|
|
369
|
+
# Structure containing summary information about a connector
|
370
|
+
# destination, which defines how a cloud-to-cloud connector connects to
|
371
|
+
# a customer's AWS account.
|
372
|
+
#
|
373
|
+
# @!attribute [rw] name
|
374
|
+
# The display name of the connector destination.
|
375
|
+
# @return [String]
|
376
|
+
#
|
377
|
+
# @!attribute [rw] description
|
378
|
+
# A description of the connector destination.
|
379
|
+
# @return [String]
|
380
|
+
#
|
381
|
+
# @!attribute [rw] cloud_connector_id
|
382
|
+
# The identifier of the cloud connector associated with this connector
|
383
|
+
# destination.
|
384
|
+
# @return [String]
|
385
|
+
#
|
386
|
+
# @!attribute [rw] id
|
387
|
+
# The unique identifier of the connector destination.
|
388
|
+
# @return [String]
|
389
|
+
#
|
390
|
+
class ConnectorDestinationSummary < Struct.new(
|
391
|
+
:name,
|
392
|
+
:description,
|
393
|
+
:cloud_connector_id,
|
394
|
+
:id)
|
395
|
+
SENSITIVE = []
|
396
|
+
include Aws::Structure
|
397
|
+
end
|
398
|
+
|
399
|
+
# Structure describing a connector.
|
400
|
+
#
|
401
|
+
# @!attribute [rw] name
|
402
|
+
# The display name of the C2C connector.
|
403
|
+
# @return [String]
|
404
|
+
#
|
405
|
+
# @!attribute [rw] endpoint_config
|
406
|
+
# The configuration details for the cloud connector endpoint,
|
407
|
+
# including connection parameters and authentication requirements.
|
408
|
+
# @return [Types::EndpointConfig]
|
409
|
+
#
|
410
|
+
# @!attribute [rw] description
|
411
|
+
# A description of the C2C connector.
|
412
|
+
# @return [String]
|
413
|
+
#
|
414
|
+
# @!attribute [rw] endpoint_type
|
415
|
+
# The type of endpoint used for the C2C connector.
|
416
|
+
# @return [String]
|
417
|
+
#
|
418
|
+
# @!attribute [rw] id
|
419
|
+
# The identifier of the C2C connector.
|
420
|
+
# @return [String]
|
421
|
+
#
|
422
|
+
# @!attribute [rw] type
|
423
|
+
# The type of cloud connector created.
|
424
|
+
# @return [String]
|
425
|
+
#
|
426
|
+
class ConnectorItem < Struct.new(
|
427
|
+
:name,
|
428
|
+
:endpoint_config,
|
429
|
+
:description,
|
430
|
+
:endpoint_type,
|
431
|
+
:id,
|
432
|
+
:type)
|
433
|
+
SENSITIVE = []
|
434
|
+
include Aws::Structure
|
435
|
+
end
|
436
|
+
|
437
|
+
# @!attribute [rw] client_token
|
438
|
+
# An idempotency token. If you retry a request that completed
|
439
|
+
# successfully initially using the same client token and parameters,
|
440
|
+
# then the retry attempt will succeed without performing any further
|
441
|
+
# actions.
|
442
|
+
#
|
443
|
+
# **A suitable default value is auto-generated.** You should normally
|
444
|
+
# not need to pass this option.
|
445
|
+
# @return [String]
|
446
|
+
#
|
447
|
+
# @!attribute [rw] connector_destination_id
|
448
|
+
# The identifier of the connector destination.
|
449
|
+
# @return [String]
|
450
|
+
#
|
451
|
+
# @!attribute [rw] name
|
452
|
+
# The name of the destination for the new account association.
|
453
|
+
# @return [String]
|
454
|
+
#
|
455
|
+
# @!attribute [rw] description
|
456
|
+
# A description of the account association request.
|
457
|
+
# @return [String]
|
458
|
+
#
|
459
|
+
# @!attribute [rw] tags
|
460
|
+
# A set of key/value pairs that are used to manage the account
|
461
|
+
# association.
|
462
|
+
# @return [Hash<String,String>]
|
463
|
+
#
|
464
|
+
class CreateAccountAssociationRequest < Struct.new(
|
465
|
+
:client_token,
|
466
|
+
:connector_destination_id,
|
467
|
+
:name,
|
468
|
+
:description,
|
469
|
+
:tags)
|
470
|
+
SENSITIVE = [:tags]
|
471
|
+
include Aws::Structure
|
472
|
+
end
|
473
|
+
|
474
|
+
# @!attribute [rw] o_auth_authorization_url
|
475
|
+
# Third-party IoT platform OAuth authorization server URL backed with
|
476
|
+
# all the required parameters to perform end-user authentication.
|
477
|
+
# @return [String]
|
478
|
+
#
|
479
|
+
# @!attribute [rw] account_association_id
|
480
|
+
# The identifier for the account association request.
|
481
|
+
# @return [String]
|
482
|
+
#
|
483
|
+
# @!attribute [rw] association_state
|
484
|
+
# The current state of the account association request.
|
485
|
+
# @return [String]
|
486
|
+
#
|
487
|
+
# @!attribute [rw] arn
|
488
|
+
# The Amazon Resource Name (ARN) of the account association.
|
489
|
+
# @return [String]
|
490
|
+
#
|
491
|
+
class CreateAccountAssociationResponse < Struct.new(
|
492
|
+
:o_auth_authorization_url,
|
493
|
+
:account_association_id,
|
494
|
+
:association_state,
|
495
|
+
:arn)
|
496
|
+
SENSITIVE = [:o_auth_authorization_url]
|
497
|
+
include Aws::Structure
|
498
|
+
end
|
499
|
+
|
500
|
+
# @!attribute [rw] name
|
501
|
+
# The display name of the C2C connector.
|
502
|
+
# @return [String]
|
503
|
+
#
|
504
|
+
# @!attribute [rw] endpoint_config
|
505
|
+
# The configuration details for the cloud connector endpoint,
|
506
|
+
# including connection parameters and authentication requirements.
|
507
|
+
# @return [Types::EndpointConfig]
|
508
|
+
#
|
509
|
+
# @!attribute [rw] description
|
510
|
+
# A description of the C2C connector.
|
511
|
+
# @return [String]
|
512
|
+
#
|
513
|
+
# @!attribute [rw] endpoint_type
|
514
|
+
# The type of endpoint used for the cloud connector, which defines how
|
515
|
+
# the connector communicates with external services.
|
516
|
+
# @return [String]
|
517
|
+
#
|
518
|
+
# @!attribute [rw] client_token
|
519
|
+
# An idempotency token. If you retry a request that completed
|
520
|
+
# successfully initially using the same client token and parameters,
|
521
|
+
# then the retry attempt will succeed without performing any further
|
522
|
+
# actions.
|
523
|
+
#
|
524
|
+
# **A suitable default value is auto-generated.** You should normally
|
525
|
+
# not need to pass this option.
|
526
|
+
# @return [String]
|
527
|
+
#
|
528
|
+
class CreateCloudConnectorRequest < Struct.new(
|
529
|
+
:name,
|
530
|
+
:endpoint_config,
|
531
|
+
:description,
|
532
|
+
:endpoint_type,
|
533
|
+
:client_token)
|
534
|
+
SENSITIVE = []
|
535
|
+
include Aws::Structure
|
536
|
+
end
|
537
|
+
|
538
|
+
# @!attribute [rw] id
|
539
|
+
# The unique identifier assigned to the newly created cloud connector.
|
540
|
+
# @return [String]
|
541
|
+
#
|
542
|
+
class CreateCloudConnectorResponse < Struct.new(
|
543
|
+
:id)
|
544
|
+
SENSITIVE = []
|
545
|
+
include Aws::Structure
|
546
|
+
end
|
547
|
+
|
548
|
+
# @!attribute [rw] name
|
549
|
+
# The display name of the connector destination.
|
550
|
+
# @return [String]
|
551
|
+
#
|
552
|
+
# @!attribute [rw] description
|
553
|
+
# A description of the connector destination.
|
554
|
+
# @return [String]
|
555
|
+
#
|
556
|
+
# @!attribute [rw] cloud_connector_id
|
557
|
+
# The identifier of the C2C connector.
|
558
|
+
# @return [String]
|
559
|
+
#
|
560
|
+
# @!attribute [rw] auth_type
|
561
|
+
# The authentication type used for the connector destination, which
|
562
|
+
# determines how credentials and access are managed.
|
563
|
+
# @return [String]
|
564
|
+
#
|
565
|
+
# @!attribute [rw] auth_config
|
566
|
+
# The authentication configuration details for the connector
|
567
|
+
# destination, including OAuth settings and other authentication
|
568
|
+
# parameters.
|
569
|
+
# @return [Types::AuthConfig]
|
570
|
+
#
|
571
|
+
# @!attribute [rw] secrets_manager
|
572
|
+
# The AWS Secrets Manager configuration used to securely store and
|
573
|
+
# manage sensitive information for the connector destination.
|
574
|
+
# @return [Types::SecretsManager]
|
575
|
+
#
|
576
|
+
# @!attribute [rw] client_token
|
577
|
+
# An idempotency token. If you retry a request that completed
|
578
|
+
# successfully initially using the same client token and parameters,
|
579
|
+
# then the retry attempt will succeed without performing any further
|
580
|
+
# actions.
|
581
|
+
#
|
582
|
+
# **A suitable default value is auto-generated.** You should normally
|
583
|
+
# not need to pass this option.
|
584
|
+
# @return [String]
|
585
|
+
#
|
586
|
+
class CreateConnectorDestinationRequest < Struct.new(
|
587
|
+
:name,
|
588
|
+
:description,
|
589
|
+
:cloud_connector_id,
|
590
|
+
:auth_type,
|
591
|
+
:auth_config,
|
592
|
+
:secrets_manager,
|
593
|
+
:client_token)
|
594
|
+
SENSITIVE = []
|
595
|
+
include Aws::Structure
|
596
|
+
end
|
597
|
+
|
598
|
+
# @!attribute [rw] id
|
599
|
+
# The identifier of the C2C connector destination creation request.
|
600
|
+
# @return [String]
|
601
|
+
#
|
602
|
+
class CreateConnectorDestinationResponse < Struct.new(
|
603
|
+
:id)
|
604
|
+
SENSITIVE = []
|
605
|
+
include Aws::Structure
|
606
|
+
end
|
607
|
+
|
258
608
|
# @!attribute [rw] name
|
259
609
|
# The name of the credential locker.
|
260
610
|
# @return [String]
|
@@ -444,6 +794,12 @@ module Aws::IoTManagedIntegrations
|
|
444
794
|
# A report of the capabilities for the managed thing.
|
445
795
|
# @return [Types::CapabilityReport]
|
446
796
|
#
|
797
|
+
# @!attribute [rw] capability_schemas
|
798
|
+
# The capability schemas that define the functionality and features
|
799
|
+
# supported by the managed thing, including device capabilities and
|
800
|
+
# their associated properties.
|
801
|
+
# @return [Array<Types::CapabilitySchemaItem>]
|
802
|
+
#
|
447
803
|
# @!attribute [rw] capabilities
|
448
804
|
# The capabilities of the device such as light bulb.
|
449
805
|
# @return [String]
|
@@ -469,6 +825,14 @@ module Aws::IoTManagedIntegrations
|
|
469
825
|
#
|
470
826
|
# @!attribute [rw] meta_data
|
471
827
|
# The metadata for the managed thing.
|
828
|
+
#
|
829
|
+
# <note markdown="1"> The `managedThing` `metadata` parameter is used for associating
|
830
|
+
# attributes with a `managedThing` that can be used for grouping
|
831
|
+
# over-the-air (OTA) tasks. Name value pairs in `metadata` can be used
|
832
|
+
# in the `OtaTargetQueryString` parameter for the `CreateOtaTask` API
|
833
|
+
# operation.
|
834
|
+
#
|
835
|
+
# </note>
|
472
836
|
# @return [Hash<String,String>]
|
473
837
|
#
|
474
838
|
class CreateManagedThingRequest < Struct.new(
|
@@ -482,6 +846,7 @@ module Aws::IoTManagedIntegrations
|
|
482
846
|
:model,
|
483
847
|
:name,
|
484
848
|
:capability_report,
|
849
|
+
:capability_schemas,
|
485
850
|
:capabilities,
|
486
851
|
:client_token,
|
487
852
|
:classification,
|
@@ -795,6 +1160,36 @@ module Aws::IoTManagedIntegrations
|
|
795
1160
|
include Aws::Structure
|
796
1161
|
end
|
797
1162
|
|
1163
|
+
# @!attribute [rw] account_association_id
|
1164
|
+
# The unique identifier of the account association to be deleted.
|
1165
|
+
# @return [String]
|
1166
|
+
#
|
1167
|
+
class DeleteAccountAssociationRequest < Struct.new(
|
1168
|
+
:account_association_id)
|
1169
|
+
SENSITIVE = []
|
1170
|
+
include Aws::Structure
|
1171
|
+
end
|
1172
|
+
|
1173
|
+
# @!attribute [rw] identifier
|
1174
|
+
# The identifier of the cloud connector.
|
1175
|
+
# @return [String]
|
1176
|
+
#
|
1177
|
+
class DeleteCloudConnectorRequest < Struct.new(
|
1178
|
+
:identifier)
|
1179
|
+
SENSITIVE = []
|
1180
|
+
include Aws::Structure
|
1181
|
+
end
|
1182
|
+
|
1183
|
+
# @!attribute [rw] identifier
|
1184
|
+
# The identifier of the connector destination.
|
1185
|
+
# @return [String]
|
1186
|
+
#
|
1187
|
+
class DeleteConnectorDestinationRequest < Struct.new(
|
1188
|
+
:identifier)
|
1189
|
+
SENSITIVE = []
|
1190
|
+
include Aws::Structure
|
1191
|
+
end
|
1192
|
+
|
798
1193
|
# @!attribute [rw] identifier
|
799
1194
|
# The identifier of the credential locker.
|
800
1195
|
# @return [String]
|
@@ -883,6 +1278,24 @@ module Aws::IoTManagedIntegrations
|
|
883
1278
|
include Aws::Structure
|
884
1279
|
end
|
885
1280
|
|
1281
|
+
# Request for deregister a managed thing from account association
|
1282
|
+
#
|
1283
|
+
# @!attribute [rw] managed_thing_id
|
1284
|
+
# The identifier of the managed thing to be deregistered from the
|
1285
|
+
# account association.
|
1286
|
+
# @return [String]
|
1287
|
+
#
|
1288
|
+
# @!attribute [rw] account_association_id
|
1289
|
+
# The unique identifier of the account association to be deregistered.
|
1290
|
+
# @return [String]
|
1291
|
+
#
|
1292
|
+
class DeregisterAccountAssociationRequest < Struct.new(
|
1293
|
+
:managed_thing_id,
|
1294
|
+
:account_association_id)
|
1295
|
+
SENSITIVE = []
|
1296
|
+
include Aws::Structure
|
1297
|
+
end
|
1298
|
+
|
886
1299
|
# Structure describing a destination for IoT managed integrations to
|
887
1300
|
# deliver notifications for a device.
|
888
1301
|
#
|
@@ -916,14 +1329,147 @@ module Aws::IoTManagedIntegrations
|
|
916
1329
|
include Aws::Structure
|
917
1330
|
end
|
918
1331
|
|
919
|
-
#
|
1332
|
+
# Describe the device using the relevant metadata and supported clusters
|
1333
|
+
# for device discovery.
|
920
1334
|
#
|
921
|
-
# @!attribute [rw]
|
922
|
-
# The
|
923
|
-
# @return [String]
|
1335
|
+
# @!attribute [rw] connector_device_id
|
1336
|
+
# The device id as defined by the connector.
|
924
1337
|
#
|
925
|
-
#
|
926
|
-
#
|
1338
|
+
# <note markdown="1"> This parameter is used for cloud-to-cloud devices only.
|
1339
|
+
#
|
1340
|
+
# </note>
|
1341
|
+
# @return [String]
|
1342
|
+
#
|
1343
|
+
# @!attribute [rw] connector_device_name
|
1344
|
+
# The name of the device as defined by the connector.
|
1345
|
+
# @return [String]
|
1346
|
+
#
|
1347
|
+
# @!attribute [rw] capability_report
|
1348
|
+
# The capability report for the device.
|
1349
|
+
# @return [Types::MatterCapabilityReport]
|
1350
|
+
#
|
1351
|
+
# @!attribute [rw] capability_schemas
|
1352
|
+
# Report of all capabilities supported by the device.
|
1353
|
+
# @return [Array<Types::CapabilitySchemaItem>]
|
1354
|
+
#
|
1355
|
+
# @!attribute [rw] device_metadata
|
1356
|
+
# The metadata attributes for a device.
|
1357
|
+
# @return [Hash,Array,String,Numeric,Boolean]
|
1358
|
+
#
|
1359
|
+
class Device < Struct.new(
|
1360
|
+
:connector_device_id,
|
1361
|
+
:connector_device_name,
|
1362
|
+
:capability_report,
|
1363
|
+
:capability_schemas,
|
1364
|
+
:device_metadata)
|
1365
|
+
SENSITIVE = [:connector_device_id, :connector_device_name]
|
1366
|
+
include Aws::Structure
|
1367
|
+
end
|
1368
|
+
|
1369
|
+
# Structure containing summary information about a device discovery job,
|
1370
|
+
# including its identifier, type, and status.
|
1371
|
+
#
|
1372
|
+
# @!attribute [rw] id
|
1373
|
+
# The unique identifier of the device discovery job.
|
1374
|
+
# @return [String]
|
1375
|
+
#
|
1376
|
+
# @!attribute [rw] discovery_type
|
1377
|
+
# The type of discovery process used to find devices.
|
1378
|
+
# @return [String]
|
1379
|
+
#
|
1380
|
+
# @!attribute [rw] status
|
1381
|
+
# The current status of the device discovery job.
|
1382
|
+
# @return [String]
|
1383
|
+
#
|
1384
|
+
class DeviceDiscoverySummary < Struct.new(
|
1385
|
+
:id,
|
1386
|
+
:discovery_type,
|
1387
|
+
:status)
|
1388
|
+
SENSITIVE = []
|
1389
|
+
include Aws::Structure
|
1390
|
+
end
|
1391
|
+
|
1392
|
+
# Structure containing summary information about a device discovered
|
1393
|
+
# during a device discovery job.
|
1394
|
+
#
|
1395
|
+
# @!attribute [rw] connector_device_id
|
1396
|
+
# The third-party device identifier as defined by the connector. This
|
1397
|
+
# identifier must not contain personal identifiable information (PII).
|
1398
|
+
# @return [String]
|
1399
|
+
#
|
1400
|
+
# @!attribute [rw] connector_device_name
|
1401
|
+
# The name of the device as defined by the connector or third-party
|
1402
|
+
# system.
|
1403
|
+
# @return [String]
|
1404
|
+
#
|
1405
|
+
# @!attribute [rw] device_types
|
1406
|
+
# The list of device types or categories that the discovered device
|
1407
|
+
# belongs to.
|
1408
|
+
# @return [Array<String>]
|
1409
|
+
#
|
1410
|
+
# @!attribute [rw] managed_thing_id
|
1411
|
+
# The identifier of the managed thing created for this discovered
|
1412
|
+
# device, if one exists.
|
1413
|
+
# @return [String]
|
1414
|
+
#
|
1415
|
+
# @!attribute [rw] modification
|
1416
|
+
# The status of the discovered device, indicating whether it has been
|
1417
|
+
# added, removed, or modified since the last discovery.
|
1418
|
+
# @return [String]
|
1419
|
+
#
|
1420
|
+
# @!attribute [rw] discovered_at
|
1421
|
+
# The timestamp indicating when the device was discovered.
|
1422
|
+
# @return [Time]
|
1423
|
+
#
|
1424
|
+
# @!attribute [rw] brand
|
1425
|
+
# The brand of the discovered device.
|
1426
|
+
# @return [String]
|
1427
|
+
#
|
1428
|
+
# @!attribute [rw] model
|
1429
|
+
# The model of the discovered device.
|
1430
|
+
# @return [String]
|
1431
|
+
#
|
1432
|
+
# @!attribute [rw] authentication_material
|
1433
|
+
# The authentication material required for connecting to the
|
1434
|
+
# discovered device, such as credentials or tokens.
|
1435
|
+
# @return [String]
|
1436
|
+
#
|
1437
|
+
class DiscoveredDeviceSummary < Struct.new(
|
1438
|
+
:connector_device_id,
|
1439
|
+
:connector_device_name,
|
1440
|
+
:device_types,
|
1441
|
+
:managed_thing_id,
|
1442
|
+
:modification,
|
1443
|
+
:discovered_at,
|
1444
|
+
:brand,
|
1445
|
+
:model,
|
1446
|
+
:authentication_material)
|
1447
|
+
SENSITIVE = [:connector_device_id, :connector_device_name, :brand, :model, :authentication_material]
|
1448
|
+
include Aws::Structure
|
1449
|
+
end
|
1450
|
+
|
1451
|
+
# The configuration details for an endpoint, which defines how to
|
1452
|
+
# connect to and communicate with external services.
|
1453
|
+
#
|
1454
|
+
# @!attribute [rw] lambda
|
1455
|
+
# The Lambda function configuration for the endpoint, used when the
|
1456
|
+
# endpoint communicates through an AWS Lambda function.
|
1457
|
+
# @return [Types::LambdaConfig]
|
1458
|
+
#
|
1459
|
+
class EndpointConfig < Struct.new(
|
1460
|
+
:lambda)
|
1461
|
+
SENSITIVE = []
|
1462
|
+
include Aws::Structure
|
1463
|
+
end
|
1464
|
+
|
1465
|
+
# List of event log configurations.
|
1466
|
+
#
|
1467
|
+
# @!attribute [rw] id
|
1468
|
+
# The identifier of the event log configuration.
|
1469
|
+
# @return [String]
|
1470
|
+
#
|
1471
|
+
# @!attribute [rw] resource_type
|
1472
|
+
# The type of resource for the event log configuration.
|
927
1473
|
# @return [String]
|
928
1474
|
#
|
929
1475
|
# @!attribute [rw] resource_id
|
@@ -969,6 +1515,176 @@ module Aws::IoTManagedIntegrations
|
|
969
1515
|
include Aws::Structure
|
970
1516
|
end
|
971
1517
|
|
1518
|
+
# @!attribute [rw] account_association_id
|
1519
|
+
# The unique identifier of the account association to retrieve.
|
1520
|
+
# @return [String]
|
1521
|
+
#
|
1522
|
+
class GetAccountAssociationRequest < Struct.new(
|
1523
|
+
:account_association_id)
|
1524
|
+
SENSITIVE = []
|
1525
|
+
include Aws::Structure
|
1526
|
+
end
|
1527
|
+
|
1528
|
+
# @!attribute [rw] account_association_id
|
1529
|
+
# The unique identifier of the retrieved account association.
|
1530
|
+
# @return [String]
|
1531
|
+
#
|
1532
|
+
# @!attribute [rw] association_state
|
1533
|
+
# The current status state for the account association.
|
1534
|
+
# @return [String]
|
1535
|
+
#
|
1536
|
+
# @!attribute [rw] error_message
|
1537
|
+
# The error message explaining the current account association error.
|
1538
|
+
# @return [String]
|
1539
|
+
#
|
1540
|
+
# @!attribute [rw] connector_destination_id
|
1541
|
+
# The identifier of the connector destination associated with this
|
1542
|
+
# account association.
|
1543
|
+
# @return [String]
|
1544
|
+
#
|
1545
|
+
# @!attribute [rw] name
|
1546
|
+
# The name of the account association.
|
1547
|
+
# @return [String]
|
1548
|
+
#
|
1549
|
+
# @!attribute [rw] description
|
1550
|
+
# The description of the account association.
|
1551
|
+
# @return [String]
|
1552
|
+
#
|
1553
|
+
# @!attribute [rw] arn
|
1554
|
+
# The Amazon Resource Name (ARN) of the account association.
|
1555
|
+
# @return [String]
|
1556
|
+
#
|
1557
|
+
# @!attribute [rw] o_auth_authorization_url
|
1558
|
+
# Third party IoT platform OAuth authorization server URL backed with
|
1559
|
+
# all the required parameters to perform end-user authentication.
|
1560
|
+
# @return [String]
|
1561
|
+
#
|
1562
|
+
# @!attribute [rw] tags
|
1563
|
+
# A set of key/value pairs that are used to manage the account
|
1564
|
+
# association.
|
1565
|
+
# @return [Hash<String,String>]
|
1566
|
+
#
|
1567
|
+
class GetAccountAssociationResponse < Struct.new(
|
1568
|
+
:account_association_id,
|
1569
|
+
:association_state,
|
1570
|
+
:error_message,
|
1571
|
+
:connector_destination_id,
|
1572
|
+
:name,
|
1573
|
+
:description,
|
1574
|
+
:arn,
|
1575
|
+
:o_auth_authorization_url,
|
1576
|
+
:tags)
|
1577
|
+
SENSITIVE = [:o_auth_authorization_url, :tags]
|
1578
|
+
include Aws::Structure
|
1579
|
+
end
|
1580
|
+
|
1581
|
+
# @!attribute [rw] identifier
|
1582
|
+
# The identifier of the C2C connector.
|
1583
|
+
# @return [String]
|
1584
|
+
#
|
1585
|
+
class GetCloudConnectorRequest < Struct.new(
|
1586
|
+
:identifier)
|
1587
|
+
SENSITIVE = []
|
1588
|
+
include Aws::Structure
|
1589
|
+
end
|
1590
|
+
|
1591
|
+
# @!attribute [rw] name
|
1592
|
+
# The display name of the C2C connector.
|
1593
|
+
# @return [String]
|
1594
|
+
#
|
1595
|
+
# @!attribute [rw] endpoint_config
|
1596
|
+
# The configuration details for the cloud connector endpoint,
|
1597
|
+
# including connection parameters and authentication requirements.
|
1598
|
+
# @return [Types::EndpointConfig]
|
1599
|
+
#
|
1600
|
+
# @!attribute [rw] description
|
1601
|
+
# A description of the C2C connector.
|
1602
|
+
# @return [String]
|
1603
|
+
#
|
1604
|
+
# @!attribute [rw] endpoint_type
|
1605
|
+
# The type of endpoint used for the cloud connector, which defines how
|
1606
|
+
# the connector communicates with external services.
|
1607
|
+
# @return [String]
|
1608
|
+
#
|
1609
|
+
# @!attribute [rw] id
|
1610
|
+
# The unique identifier of the cloud connector.
|
1611
|
+
# @return [String]
|
1612
|
+
#
|
1613
|
+
# @!attribute [rw] type
|
1614
|
+
# The type of cloud connector created.
|
1615
|
+
# @return [String]
|
1616
|
+
#
|
1617
|
+
class GetCloudConnectorResponse < Struct.new(
|
1618
|
+
:name,
|
1619
|
+
:endpoint_config,
|
1620
|
+
:description,
|
1621
|
+
:endpoint_type,
|
1622
|
+
:id,
|
1623
|
+
:type)
|
1624
|
+
SENSITIVE = []
|
1625
|
+
include Aws::Structure
|
1626
|
+
end
|
1627
|
+
|
1628
|
+
# @!attribute [rw] identifier
|
1629
|
+
# The identifier of the C2C connector destination.
|
1630
|
+
# @return [String]
|
1631
|
+
#
|
1632
|
+
class GetConnectorDestinationRequest < Struct.new(
|
1633
|
+
:identifier)
|
1634
|
+
SENSITIVE = []
|
1635
|
+
include Aws::Structure
|
1636
|
+
end
|
1637
|
+
|
1638
|
+
# @!attribute [rw] name
|
1639
|
+
# The display name of the connector destination.
|
1640
|
+
# @return [String]
|
1641
|
+
#
|
1642
|
+
# @!attribute [rw] description
|
1643
|
+
# A description of the connector destination.
|
1644
|
+
# @return [String]
|
1645
|
+
#
|
1646
|
+
# @!attribute [rw] cloud_connector_id
|
1647
|
+
# The identifier of the C2C connector.
|
1648
|
+
# @return [String]
|
1649
|
+
#
|
1650
|
+
# @!attribute [rw] id
|
1651
|
+
# The unique identifier of the connector destination.
|
1652
|
+
# @return [String]
|
1653
|
+
#
|
1654
|
+
# @!attribute [rw] auth_type
|
1655
|
+
# The authentication type used for the connector destination, which
|
1656
|
+
# determines how credentials and access are managed.
|
1657
|
+
# @return [String]
|
1658
|
+
#
|
1659
|
+
# @!attribute [rw] auth_config
|
1660
|
+
# The authentication configuration details for the connector
|
1661
|
+
# destination, including OAuth settings and other authentication
|
1662
|
+
# parameters.
|
1663
|
+
# @return [Types::AuthConfig]
|
1664
|
+
#
|
1665
|
+
# @!attribute [rw] secrets_manager
|
1666
|
+
# The AWS Secrets Manager configuration used to securely store and
|
1667
|
+
# manage sensitive information for the connector destination.
|
1668
|
+
# @return [Types::SecretsManager]
|
1669
|
+
#
|
1670
|
+
# @!attribute [rw] o_auth_complete_redirect_url
|
1671
|
+
# The URL where users are redirected after completing the OAuth
|
1672
|
+
# authorization process for the connector destination.
|
1673
|
+
# @return [String]
|
1674
|
+
#
|
1675
|
+
class GetConnectorDestinationResponse < Struct.new(
|
1676
|
+
:name,
|
1677
|
+
:description,
|
1678
|
+
:cloud_connector_id,
|
1679
|
+
:id,
|
1680
|
+
:auth_type,
|
1681
|
+
:auth_config,
|
1682
|
+
:secrets_manager,
|
1683
|
+
:o_auth_complete_redirect_url)
|
1684
|
+
SENSITIVE = []
|
1685
|
+
include Aws::Structure
|
1686
|
+
end
|
1687
|
+
|
972
1688
|
# @!attribute [rw] identifier
|
973
1689
|
# The identifier of the credential locker.
|
974
1690
|
# @return [String]
|
@@ -1148,6 +1864,11 @@ module Aws::IoTManagedIntegrations
|
|
1148
1864
|
# association.
|
1149
1865
|
# @return [String]
|
1150
1866
|
#
|
1867
|
+
# @!attribute [rw] account_association_id
|
1868
|
+
# The identifier of the account association used for the device
|
1869
|
+
# discovery.
|
1870
|
+
# @return [String]
|
1871
|
+
#
|
1151
1872
|
# @!attribute [rw] finished_at
|
1152
1873
|
# The timestamp value for the completion time of the device discovery.
|
1153
1874
|
# @return [Time]
|
@@ -1165,6 +1886,7 @@ module Aws::IoTManagedIntegrations
|
|
1165
1886
|
:started_at,
|
1166
1887
|
:controller_id,
|
1167
1888
|
:connector_association_id,
|
1889
|
+
:account_association_id,
|
1168
1890
|
:finished_at,
|
1169
1891
|
:tags)
|
1170
1892
|
SENSITIVE = [:tags]
|
@@ -1392,6 +2114,11 @@ module Aws::IoTManagedIntegrations
|
|
1392
2114
|
# </note>
|
1393
2115
|
# @return [String]
|
1394
2116
|
#
|
2117
|
+
# @!attribute [rw] connector_destination_id
|
2118
|
+
# The identifier of the connector destination associated with this
|
2119
|
+
# managed thing.
|
2120
|
+
# @return [String]
|
2121
|
+
#
|
1395
2122
|
# @!attribute [rw] connector_device_id
|
1396
2123
|
# The third-party device id as defined by the connector. This device
|
1397
2124
|
# id must not contain personal identifiable information (PII).
|
@@ -1466,6 +2193,7 @@ module Aws::IoTManagedIntegrations
|
|
1466
2193
|
:universal_product_code,
|
1467
2194
|
:international_article_number,
|
1468
2195
|
:connector_policy_id,
|
2196
|
+
:connector_destination_id,
|
1469
2197
|
:connector_device_id,
|
1470
2198
|
:device_specific_key,
|
1471
2199
|
:mac_address,
|
@@ -1665,6 +2393,11 @@ module Aws::IoTManagedIntegrations
|
|
1665
2393
|
# The status of the over-the-air (OTA) task.
|
1666
2394
|
# @return [String]
|
1667
2395
|
#
|
2396
|
+
# @!attribute [rw] tags
|
2397
|
+
# A set of key/value pairs that are used to manage the over-the-air
|
2398
|
+
# (OTA) task.
|
2399
|
+
# @return [Hash<String,String>]
|
2400
|
+
#
|
1668
2401
|
class GetOtaTaskResponse < Struct.new(
|
1669
2402
|
:task_id,
|
1670
2403
|
:task_arn,
|
@@ -1681,8 +2414,9 @@ module Aws::IoTManagedIntegrations
|
|
1681
2414
|
:task_processing_details,
|
1682
2415
|
:ota_scheduling_config,
|
1683
2416
|
:ota_task_execution_retry_config,
|
1684
|
-
:status
|
1685
|
-
|
2417
|
+
:status,
|
2418
|
+
:tags)
|
2419
|
+
SENSITIVE = [:tags]
|
1686
2420
|
include Aws::Structure
|
1687
2421
|
end
|
1688
2422
|
|
@@ -1845,85 +2579,321 @@ module Aws::IoTManagedIntegrations
|
|
1845
2579
|
include Aws::Structure
|
1846
2580
|
end
|
1847
2581
|
|
1848
|
-
#
|
1849
|
-
#
|
2582
|
+
# The request is not valid.
|
2583
|
+
#
|
2584
|
+
# @!attribute [rw] message
|
1850
2585
|
# @return [String]
|
1851
2586
|
#
|
1852
|
-
|
1853
|
-
|
1854
|
-
|
2587
|
+
class InvalidRequestException < Struct.new(
|
2588
|
+
:message)
|
2589
|
+
SENSITIVE = []
|
2590
|
+
include Aws::Structure
|
2591
|
+
end
|
2592
|
+
|
2593
|
+
# Configuration details for an AWS Lambda function used as an endpoint
|
2594
|
+
# for a cloud connector.
|
1855
2595
|
#
|
1856
|
-
|
1857
|
-
|
1858
|
-
|
2596
|
+
# @!attribute [rw] arn
|
2597
|
+
# The Amazon Resource Name (ARN) of the Lambda function used as an
|
2598
|
+
# endpoint.
|
2599
|
+
# @return [String]
|
2600
|
+
#
|
2601
|
+
class LambdaConfig < Struct.new(
|
2602
|
+
:arn)
|
1859
2603
|
SENSITIVE = []
|
1860
2604
|
include Aws::Structure
|
1861
2605
|
end
|
1862
2606
|
|
1863
|
-
#
|
1864
|
-
#
|
1865
|
-
# @return [Array<Types::CredentialLockerSummary>]
|
2607
|
+
# The request exceeds a service limit or quota. Adjust your request
|
2608
|
+
# parameters and try again.
|
1866
2609
|
#
|
1867
|
-
# @!attribute [rw]
|
1868
|
-
# A token that can be used to retrieve the next set of results.
|
2610
|
+
# @!attribute [rw] message
|
1869
2611
|
# @return [String]
|
1870
2612
|
#
|
1871
|
-
class
|
1872
|
-
:
|
1873
|
-
:next_token)
|
2613
|
+
class LimitExceededException < Struct.new(
|
2614
|
+
:message)
|
1874
2615
|
SENSITIVE = []
|
1875
2616
|
include Aws::Structure
|
1876
2617
|
end
|
1877
2618
|
|
1878
|
-
# @!attribute [rw]
|
1879
|
-
#
|
2619
|
+
# @!attribute [rw] connector_destination_id
|
2620
|
+
# The identifier of the connector destination to filter account
|
2621
|
+
# associations by.
|
1880
2622
|
# @return [String]
|
1881
2623
|
#
|
1882
2624
|
# @!attribute [rw] max_results
|
1883
|
-
# The maximum number of
|
2625
|
+
# The maximum number of account associations to return in a single
|
2626
|
+
# response.
|
1884
2627
|
# @return [Integer]
|
1885
2628
|
#
|
1886
|
-
|
1887
|
-
|
1888
|
-
|
2629
|
+
# @!attribute [rw] next_token
|
2630
|
+
# A token used for pagination of results.
|
2631
|
+
# @return [String]
|
2632
|
+
#
|
2633
|
+
class ListAccountAssociationsRequest < Struct.new(
|
2634
|
+
:connector_destination_id,
|
2635
|
+
:max_results,
|
2636
|
+
:next_token)
|
1889
2637
|
SENSITIVE = []
|
1890
2638
|
include Aws::Structure
|
1891
2639
|
end
|
1892
2640
|
|
1893
|
-
# @!attribute [rw]
|
1894
|
-
# The list of
|
1895
|
-
# @return [Array<Types::
|
2641
|
+
# @!attribute [rw] items
|
2642
|
+
# The list of account associations that match the specified criteria.
|
2643
|
+
# @return [Array<Types::AccountAssociationItem>]
|
1896
2644
|
#
|
1897
2645
|
# @!attribute [rw] next_token
|
1898
|
-
# A token
|
2646
|
+
# A token used for pagination of results when there are more account
|
2647
|
+
# associations than can be returned in a single response.
|
1899
2648
|
# @return [String]
|
1900
2649
|
#
|
1901
|
-
class
|
1902
|
-
:
|
2650
|
+
class ListAccountAssociationsResponse < Struct.new(
|
2651
|
+
:items,
|
1903
2652
|
:next_token)
|
1904
2653
|
SENSITIVE = []
|
1905
2654
|
include Aws::Structure
|
1906
2655
|
end
|
1907
2656
|
|
1908
|
-
# @!attribute [rw]
|
1909
|
-
#
|
2657
|
+
# @!attribute [rw] type
|
2658
|
+
# The type of cloud connectors to filter by when listing available
|
2659
|
+
# connectors.
|
2660
|
+
# @return [String]
|
2661
|
+
#
|
2662
|
+
# @!attribute [rw] lambda_arn
|
2663
|
+
# The Amazon Resource Name (ARN) of the Lambda function to filter
|
2664
|
+
# cloud connectors by.
|
1910
2665
|
# @return [String]
|
1911
2666
|
#
|
1912
2667
|
# @!attribute [rw] max_results
|
1913
2668
|
# The maximum number of results to return at one time.
|
1914
2669
|
# @return [Integer]
|
1915
2670
|
#
|
1916
|
-
|
1917
|
-
|
1918
|
-
|
1919
|
-
|
1920
|
-
|
1921
|
-
|
1922
|
-
|
1923
|
-
|
1924
|
-
|
1925
|
-
|
1926
|
-
|
2671
|
+
# @!attribute [rw] next_token
|
2672
|
+
# A token that can be used to retrieve the next set of results.
|
2673
|
+
# @return [String]
|
2674
|
+
#
|
2675
|
+
class ListCloudConnectorsRequest < Struct.new(
|
2676
|
+
:type,
|
2677
|
+
:lambda_arn,
|
2678
|
+
:max_results,
|
2679
|
+
:next_token)
|
2680
|
+
SENSITIVE = []
|
2681
|
+
include Aws::Structure
|
2682
|
+
end
|
2683
|
+
|
2684
|
+
# @!attribute [rw] items
|
2685
|
+
# The list of connectors.
|
2686
|
+
# @return [Array<Types::ConnectorItem>]
|
2687
|
+
#
|
2688
|
+
# @!attribute [rw] next_token
|
2689
|
+
# A token that can be used to retrieve the next set of results.
|
2690
|
+
# @return [String]
|
2691
|
+
#
|
2692
|
+
class ListCloudConnectorsResponse < Struct.new(
|
2693
|
+
:items,
|
2694
|
+
:next_token)
|
2695
|
+
SENSITIVE = []
|
2696
|
+
include Aws::Structure
|
2697
|
+
end
|
2698
|
+
|
2699
|
+
# @!attribute [rw] cloud_connector_id
|
2700
|
+
# The identifier of the cloud connector to filter connector
|
2701
|
+
# destinations by.
|
2702
|
+
# @return [String]
|
2703
|
+
#
|
2704
|
+
# @!attribute [rw] next_token
|
2705
|
+
# A token used for pagination of results.
|
2706
|
+
# @return [String]
|
2707
|
+
#
|
2708
|
+
# @!attribute [rw] max_results
|
2709
|
+
# The maximum number of connector destinations to return in a single
|
2710
|
+
# response.
|
2711
|
+
# @return [Integer]
|
2712
|
+
#
|
2713
|
+
class ListConnectorDestinationsRequest < Struct.new(
|
2714
|
+
:cloud_connector_id,
|
2715
|
+
:next_token,
|
2716
|
+
:max_results)
|
2717
|
+
SENSITIVE = []
|
2718
|
+
include Aws::Structure
|
2719
|
+
end
|
2720
|
+
|
2721
|
+
# @!attribute [rw] connector_destination_list
|
2722
|
+
# The list of connector destinations that match the specified
|
2723
|
+
# criteria.
|
2724
|
+
# @return [Array<Types::ConnectorDestinationSummary>]
|
2725
|
+
#
|
2726
|
+
# @!attribute [rw] next_token
|
2727
|
+
# A token used for pagination of results when there are more connector
|
2728
|
+
# destinations than can be returned in a single response.
|
2729
|
+
# @return [String]
|
2730
|
+
#
|
2731
|
+
class ListConnectorDestinationsResponse < Struct.new(
|
2732
|
+
:connector_destination_list,
|
2733
|
+
:next_token)
|
2734
|
+
SENSITIVE = []
|
2735
|
+
include Aws::Structure
|
2736
|
+
end
|
2737
|
+
|
2738
|
+
# @!attribute [rw] next_token
|
2739
|
+
# A token that can be used to retrieve the next set of results.
|
2740
|
+
# @return [String]
|
2741
|
+
#
|
2742
|
+
# @!attribute [rw] max_results
|
2743
|
+
# The maximum number of results to return at one time.
|
2744
|
+
# @return [Integer]
|
2745
|
+
#
|
2746
|
+
class ListCredentialLockersRequest < Struct.new(
|
2747
|
+
:next_token,
|
2748
|
+
:max_results)
|
2749
|
+
SENSITIVE = []
|
2750
|
+
include Aws::Structure
|
2751
|
+
end
|
2752
|
+
|
2753
|
+
# @!attribute [rw] items
|
2754
|
+
# The list of credential lockers.
|
2755
|
+
# @return [Array<Types::CredentialLockerSummary>]
|
2756
|
+
#
|
2757
|
+
# @!attribute [rw] next_token
|
2758
|
+
# A token that can be used to retrieve the next set of results.
|
2759
|
+
# @return [String]
|
2760
|
+
#
|
2761
|
+
class ListCredentialLockersResponse < Struct.new(
|
2762
|
+
:items,
|
2763
|
+
:next_token)
|
2764
|
+
SENSITIVE = []
|
2765
|
+
include Aws::Structure
|
2766
|
+
end
|
2767
|
+
|
2768
|
+
# @!attribute [rw] next_token
|
2769
|
+
# A token that can be used to retrieve the next set of results.
|
2770
|
+
# @return [String]
|
2771
|
+
#
|
2772
|
+
# @!attribute [rw] max_results
|
2773
|
+
# The maximum number of results to return at one time.
|
2774
|
+
# @return [Integer]
|
2775
|
+
#
|
2776
|
+
class ListDestinationsRequest < Struct.new(
|
2777
|
+
:next_token,
|
2778
|
+
:max_results)
|
2779
|
+
SENSITIVE = []
|
2780
|
+
include Aws::Structure
|
2781
|
+
end
|
2782
|
+
|
2783
|
+
# @!attribute [rw] destination_list
|
2784
|
+
# The list of destinations.
|
2785
|
+
# @return [Array<Types::DestinationSummary>]
|
2786
|
+
#
|
2787
|
+
# @!attribute [rw] next_token
|
2788
|
+
# A token that can be used to retrieve the next set of results.
|
2789
|
+
# @return [String]
|
2790
|
+
#
|
2791
|
+
class ListDestinationsResponse < Struct.new(
|
2792
|
+
:destination_list,
|
2793
|
+
:next_token)
|
2794
|
+
SENSITIVE = []
|
2795
|
+
include Aws::Structure
|
2796
|
+
end
|
2797
|
+
|
2798
|
+
# @!attribute [rw] next_token
|
2799
|
+
# A token used for pagination of results.
|
2800
|
+
# @return [String]
|
2801
|
+
#
|
2802
|
+
# @!attribute [rw] max_results
|
2803
|
+
# The maximum number of device discovery jobs to return in a single
|
2804
|
+
# response.
|
2805
|
+
# @return [Integer]
|
2806
|
+
#
|
2807
|
+
# @!attribute [rw] type_filter
|
2808
|
+
# The discovery type to filter device discovery jobs by.
|
2809
|
+
# @return [String]
|
2810
|
+
#
|
2811
|
+
# @!attribute [rw] status_filter
|
2812
|
+
# The status to filter device discovery jobs by.
|
2813
|
+
# @return [String]
|
2814
|
+
#
|
2815
|
+
class ListDeviceDiscoveriesRequest < Struct.new(
|
2816
|
+
:next_token,
|
2817
|
+
:max_results,
|
2818
|
+
:type_filter,
|
2819
|
+
:status_filter)
|
2820
|
+
SENSITIVE = []
|
2821
|
+
include Aws::Structure
|
2822
|
+
end
|
2823
|
+
|
2824
|
+
# @!attribute [rw] items
|
2825
|
+
# The list of device discovery jobs that match the specified criteria.
|
2826
|
+
# @return [Array<Types::DeviceDiscoverySummary>]
|
2827
|
+
#
|
2828
|
+
# @!attribute [rw] next_token
|
2829
|
+
# A token used for pagination of results when there are more device
|
2830
|
+
# discovery jobs than can be returned in a single response.
|
2831
|
+
# @return [String]
|
2832
|
+
#
|
2833
|
+
class ListDeviceDiscoveriesResponse < Struct.new(
|
2834
|
+
:items,
|
2835
|
+
:next_token)
|
2836
|
+
SENSITIVE = []
|
2837
|
+
include Aws::Structure
|
2838
|
+
end
|
2839
|
+
|
2840
|
+
# @!attribute [rw] identifier
|
2841
|
+
# The identifier of the device discovery job to list discovered
|
2842
|
+
# devices for.
|
2843
|
+
# @return [String]
|
2844
|
+
#
|
2845
|
+
# @!attribute [rw] next_token
|
2846
|
+
# A token used for pagination of results.
|
2847
|
+
# @return [String]
|
2848
|
+
#
|
2849
|
+
# @!attribute [rw] max_results
|
2850
|
+
# The maximum number of discovered devices to return in a single
|
2851
|
+
# response.
|
2852
|
+
# @return [Integer]
|
2853
|
+
#
|
2854
|
+
class ListDiscoveredDevicesRequest < Struct.new(
|
2855
|
+
:identifier,
|
2856
|
+
:next_token,
|
2857
|
+
:max_results)
|
2858
|
+
SENSITIVE = []
|
2859
|
+
include Aws::Structure
|
2860
|
+
end
|
2861
|
+
|
2862
|
+
# @!attribute [rw] items
|
2863
|
+
# The list of discovered devices that match the specified criteria.
|
2864
|
+
# @return [Array<Types::DiscoveredDeviceSummary>]
|
2865
|
+
#
|
2866
|
+
# @!attribute [rw] next_token
|
2867
|
+
# A token used for pagination of results when there are more
|
2868
|
+
# discovered devices than can be returned in a single response.
|
2869
|
+
# @return [String]
|
2870
|
+
#
|
2871
|
+
class ListDiscoveredDevicesResponse < Struct.new(
|
2872
|
+
:items,
|
2873
|
+
:next_token)
|
2874
|
+
SENSITIVE = []
|
2875
|
+
include Aws::Structure
|
2876
|
+
end
|
2877
|
+
|
2878
|
+
# @!attribute [rw] next_token
|
2879
|
+
# A token that can be used to retrieve the next set of results.
|
2880
|
+
# @return [String]
|
2881
|
+
#
|
2882
|
+
# @!attribute [rw] max_results
|
2883
|
+
# The maximum number of results to return at one time.
|
2884
|
+
# @return [Integer]
|
2885
|
+
#
|
2886
|
+
class ListEventLogConfigurationsRequest < Struct.new(
|
2887
|
+
:next_token,
|
2888
|
+
:max_results)
|
2889
|
+
SENSITIVE = []
|
2890
|
+
include Aws::Structure
|
2891
|
+
end
|
2892
|
+
|
2893
|
+
# @!attribute [rw] event_log_configuration_list
|
2894
|
+
# A list of each event log configuration and pertinent information.
|
2895
|
+
# @return [Array<Types::EventLogConfigurationSummary>]
|
2896
|
+
#
|
1927
2897
|
# @!attribute [rw] next_token
|
1928
2898
|
# A token that can be used to retrieve the next set of results.
|
1929
2899
|
# @return [String]
|
@@ -1935,6 +2905,53 @@ module Aws::IoTManagedIntegrations
|
|
1935
2905
|
include Aws::Structure
|
1936
2906
|
end
|
1937
2907
|
|
2908
|
+
# @!attribute [rw] managed_thing_id
|
2909
|
+
# The identifier of the managed thing to list account associations
|
2910
|
+
# for.
|
2911
|
+
# @return [String]
|
2912
|
+
#
|
2913
|
+
# @!attribute [rw] account_association_id
|
2914
|
+
# The identifier of the account association to filter results by. When
|
2915
|
+
# specified, only associations with this account association ID will
|
2916
|
+
# be returned.
|
2917
|
+
# @return [String]
|
2918
|
+
#
|
2919
|
+
# @!attribute [rw] max_results
|
2920
|
+
# The maximum number of account associations to return in a single
|
2921
|
+
# response.
|
2922
|
+
# @return [Integer]
|
2923
|
+
#
|
2924
|
+
# @!attribute [rw] next_token
|
2925
|
+
# A token used for pagination of results.
|
2926
|
+
# @return [String]
|
2927
|
+
#
|
2928
|
+
class ListManagedThingAccountAssociationsRequest < Struct.new(
|
2929
|
+
:managed_thing_id,
|
2930
|
+
:account_association_id,
|
2931
|
+
:max_results,
|
2932
|
+
:next_token)
|
2933
|
+
SENSITIVE = []
|
2934
|
+
include Aws::Structure
|
2935
|
+
end
|
2936
|
+
|
2937
|
+
# @!attribute [rw] items
|
2938
|
+
# The list of managed thing associations that match the specified
|
2939
|
+
# criteria, including the managed thing ID and account association ID
|
2940
|
+
# for each association.
|
2941
|
+
# @return [Array<Types::ManagedThingAssociation>]
|
2942
|
+
#
|
2943
|
+
# @!attribute [rw] next_token
|
2944
|
+
# A token used for pagination of results when there are more account
|
2945
|
+
# associations than can be returned in a single response.
|
2946
|
+
# @return [String]
|
2947
|
+
#
|
2948
|
+
class ListManagedThingAccountAssociationsResponse < Struct.new(
|
2949
|
+
:items,
|
2950
|
+
:next_token)
|
2951
|
+
SENSITIVE = []
|
2952
|
+
include Aws::Structure
|
2953
|
+
end
|
2954
|
+
|
1938
2955
|
# @!attribute [rw] identifier
|
1939
2956
|
# The managed thing id.
|
1940
2957
|
# @return [String]
|
@@ -2001,6 +3018,17 @@ module Aws::IoTManagedIntegrations
|
|
2001
3018
|
# Filter on a connector policy id for a managed thing.
|
2002
3019
|
# @return [String]
|
2003
3020
|
#
|
3021
|
+
# @!attribute [rw] connector_destination_id_filter
|
3022
|
+
# Filter managed things by the connector destination ID they are
|
3023
|
+
# associated with.
|
3024
|
+
# @return [String]
|
3025
|
+
#
|
3026
|
+
# @!attribute [rw] connector_device_id_filter
|
3027
|
+
# Filter managed things by the connector device ID they are associated
|
3028
|
+
# with. When specified, only managed things with this connector device
|
3029
|
+
# ID will be returned.
|
3030
|
+
# @return [String]
|
3031
|
+
#
|
2004
3032
|
# @!attribute [rw] serial_number_filter
|
2005
3033
|
# Filter on the serial number of the device.
|
2006
3034
|
# @return [String]
|
@@ -2023,11 +3051,13 @@ module Aws::IoTManagedIntegrations
|
|
2023
3051
|
:role_filter,
|
2024
3052
|
:parent_controller_identifier_filter,
|
2025
3053
|
:connector_policy_id_filter,
|
3054
|
+
:connector_destination_id_filter,
|
3055
|
+
:connector_device_id_filter,
|
2026
3056
|
:serial_number_filter,
|
2027
3057
|
:provisioning_status_filter,
|
2028
3058
|
:next_token,
|
2029
3059
|
:max_results)
|
2030
|
-
SENSITIVE = [:owner_filter, :serial_number_filter]
|
3060
|
+
SENSITIVE = [:owner_filter, :connector_device_id_filter, :serial_number_filter]
|
2031
3061
|
include Aws::Structure
|
2032
3062
|
end
|
2033
3063
|
|
@@ -2257,6 +3287,44 @@ module Aws::IoTManagedIntegrations
|
|
2257
3287
|
include Aws::Structure
|
2258
3288
|
end
|
2259
3289
|
|
3290
|
+
# @!attribute [rw] resource_arn
|
3291
|
+
# The ARN of the resource for which to list tags.
|
3292
|
+
# @return [String]
|
3293
|
+
#
|
3294
|
+
class ListTagsForResourceRequest < Struct.new(
|
3295
|
+
:resource_arn)
|
3296
|
+
SENSITIVE = []
|
3297
|
+
include Aws::Structure
|
3298
|
+
end
|
3299
|
+
|
3300
|
+
# @!attribute [rw] tags
|
3301
|
+
# A set of key/value pairs that are used to manage the resource.
|
3302
|
+
# @return [Hash<String,String>]
|
3303
|
+
#
|
3304
|
+
class ListTagsForResourceResponse < Struct.new(
|
3305
|
+
:tags)
|
3306
|
+
SENSITIVE = [:tags]
|
3307
|
+
include Aws::Structure
|
3308
|
+
end
|
3309
|
+
|
3310
|
+
# Structure representing an association between a managed thing and an
|
3311
|
+
# account association, which connects a device to a third-party account.
|
3312
|
+
#
|
3313
|
+
# @!attribute [rw] managed_thing_id
|
3314
|
+
# The identifier of the managed thing in the association.
|
3315
|
+
# @return [String]
|
3316
|
+
#
|
3317
|
+
# @!attribute [rw] account_association_id
|
3318
|
+
# The identifier of the account association in the association.
|
3319
|
+
# @return [String]
|
3320
|
+
#
|
3321
|
+
class ManagedThingAssociation < Struct.new(
|
3322
|
+
:managed_thing_id,
|
3323
|
+
:account_association_id)
|
3324
|
+
SENSITIVE = []
|
3325
|
+
include Aws::Structure
|
3326
|
+
end
|
3327
|
+
|
2260
3328
|
# Structure representing one schema item associated with a managed
|
2261
3329
|
# thing.
|
2262
3330
|
#
|
@@ -2321,6 +3389,11 @@ module Aws::IoTManagedIntegrations
|
|
2321
3389
|
# </note>
|
2322
3390
|
# @return [String]
|
2323
3391
|
#
|
3392
|
+
# @!attribute [rw] connector_destination_id
|
3393
|
+
# The identifier of the connector destination associated with this
|
3394
|
+
# managed thing, if applicable.
|
3395
|
+
# @return [String]
|
3396
|
+
#
|
2324
3397
|
# @!attribute [rw] model
|
2325
3398
|
# The model of the device.
|
2326
3399
|
# @return [String]
|
@@ -2353,42 +3426,240 @@ module Aws::IoTManagedIntegrations
|
|
2353
3426
|
# controller, cloud device, or IoT device.
|
2354
3427
|
# @return [String]
|
2355
3428
|
#
|
2356
|
-
# @!attribute [rw] serial_number
|
2357
|
-
# The serial number of the device.
|
3429
|
+
# @!attribute [rw] serial_number
|
3430
|
+
# The serial number of the device.
|
3431
|
+
# @return [String]
|
3432
|
+
#
|
3433
|
+
# @!attribute [rw] created_at
|
3434
|
+
# The timestamp value of when the device creation request occurred.
|
3435
|
+
# @return [Time]
|
3436
|
+
#
|
3437
|
+
# @!attribute [rw] updated_at
|
3438
|
+
# The timestamp value of when the managed thing was last updated at.
|
3439
|
+
# @return [Time]
|
3440
|
+
#
|
3441
|
+
# @!attribute [rw] activated_at
|
3442
|
+
# The timestampe value of when the managed thing was activated at.
|
3443
|
+
# @return [Time]
|
3444
|
+
#
|
3445
|
+
class ManagedThingSummary < Struct.new(
|
3446
|
+
:id,
|
3447
|
+
:arn,
|
3448
|
+
:advertised_product_id,
|
3449
|
+
:brand,
|
3450
|
+
:classification,
|
3451
|
+
:connector_device_id,
|
3452
|
+
:connector_policy_id,
|
3453
|
+
:connector_destination_id,
|
3454
|
+
:model,
|
3455
|
+
:name,
|
3456
|
+
:owner,
|
3457
|
+
:credential_locker_id,
|
3458
|
+
:parent_controller_id,
|
3459
|
+
:provisioning_status,
|
3460
|
+
:role,
|
3461
|
+
:serial_number,
|
3462
|
+
:created_at,
|
3463
|
+
:updated_at,
|
3464
|
+
:activated_at)
|
3465
|
+
SENSITIVE = [:brand, :classification, :connector_device_id, :model, :owner, :serial_number]
|
3466
|
+
include Aws::Structure
|
3467
|
+
end
|
3468
|
+
|
3469
|
+
# Matter based capability report.
|
3470
|
+
#
|
3471
|
+
# @!attribute [rw] version
|
3472
|
+
# The version of the capability report.
|
3473
|
+
# @return [String]
|
3474
|
+
#
|
3475
|
+
# @!attribute [rw] node_id
|
3476
|
+
# The numeric identifier of the node.
|
3477
|
+
# @return [String]
|
3478
|
+
#
|
3479
|
+
# @!attribute [rw] endpoints
|
3480
|
+
# The endpoints used in the capability report.
|
3481
|
+
# @return [Array<Types::MatterCapabilityReportEndpoint>]
|
3482
|
+
#
|
3483
|
+
class MatterCapabilityReport < Struct.new(
|
3484
|
+
:version,
|
3485
|
+
:node_id,
|
3486
|
+
:endpoints)
|
3487
|
+
SENSITIVE = []
|
3488
|
+
include Aws::Structure
|
3489
|
+
end
|
3490
|
+
|
3491
|
+
# Matter attribute used in capability report.
|
3492
|
+
#
|
3493
|
+
# @!attribute [rw] id
|
3494
|
+
# The id of the Matter attribute.
|
3495
|
+
# @return [String]
|
3496
|
+
#
|
3497
|
+
# @!attribute [rw] name
|
3498
|
+
# Name for the Amazon Web Services Matter capability report attribute.
|
3499
|
+
# @return [String]
|
3500
|
+
#
|
3501
|
+
# @!attribute [rw] value
|
3502
|
+
# Value for the Amazon Web Services Matter capability report
|
3503
|
+
# attribute.
|
3504
|
+
# @return [Hash,Array,String,Numeric,Boolean]
|
3505
|
+
#
|
3506
|
+
class MatterCapabilityReportAttribute < Struct.new(
|
3507
|
+
:id,
|
3508
|
+
:name,
|
3509
|
+
:value)
|
3510
|
+
SENSITIVE = []
|
3511
|
+
include Aws::Structure
|
3512
|
+
end
|
3513
|
+
|
3514
|
+
# Capability used in Matter capability report.
|
3515
|
+
#
|
3516
|
+
# @!attribute [rw] id
|
3517
|
+
# The id of the Amazon Web Services Matter capability report cluster.
|
3518
|
+
# @return [String]
|
3519
|
+
#
|
3520
|
+
# @!attribute [rw] revision
|
3521
|
+
# The id of the revision for the Amazon Web Services Matter capability
|
3522
|
+
# report.
|
3523
|
+
# @return [Integer]
|
3524
|
+
#
|
3525
|
+
# @!attribute [rw] public_id
|
3526
|
+
# The id of the schema version.
|
3527
|
+
# @return [String]
|
3528
|
+
#
|
3529
|
+
# @!attribute [rw] name
|
3530
|
+
# The capability name used in the Amazon Web Services Matter
|
3531
|
+
# capability report.
|
3532
|
+
# @return [String]
|
3533
|
+
#
|
3534
|
+
# @!attribute [rw] spec_version
|
3535
|
+
# The spec version used in the Amazon Web Services Matter capability
|
3536
|
+
# report.
|
3537
|
+
# @return [String]
|
3538
|
+
#
|
3539
|
+
# @!attribute [rw] attributes
|
3540
|
+
# The attributes of the Amazon Web Services Matter capability report.
|
3541
|
+
# @return [Array<Types::MatterCapabilityReportAttribute>]
|
3542
|
+
#
|
3543
|
+
# @!attribute [rw] commands
|
3544
|
+
# The commands used with the Amazon Web Services Matter capability
|
3545
|
+
# report.
|
3546
|
+
# @return [Array<String>]
|
3547
|
+
#
|
3548
|
+
# @!attribute [rw] events
|
3549
|
+
# The events used with the Amazon Web Services Matter capability
|
3550
|
+
# report.
|
3551
|
+
# @return [Array<String>]
|
3552
|
+
#
|
3553
|
+
# @!attribute [rw] feature_map
|
3554
|
+
# 32 bit-map used to indicate which features a cluster supports.
|
3555
|
+
# @return [Integer]
|
3556
|
+
#
|
3557
|
+
# @!attribute [rw] generated_commands
|
3558
|
+
# Matter clusters used in capability report.
|
3559
|
+
# @return [Array<String>]
|
3560
|
+
#
|
3561
|
+
# @!attribute [rw] fabric_index
|
3562
|
+
# The fabric index for the Amazon Web Services Matter capability
|
3563
|
+
# report.
|
3564
|
+
# @return [Integer]
|
3565
|
+
#
|
3566
|
+
class MatterCapabilityReportCluster < Struct.new(
|
3567
|
+
:id,
|
3568
|
+
:revision,
|
3569
|
+
:public_id,
|
3570
|
+
:name,
|
3571
|
+
:spec_version,
|
3572
|
+
:attributes,
|
3573
|
+
:commands,
|
3574
|
+
:events,
|
3575
|
+
:feature_map,
|
3576
|
+
:generated_commands,
|
3577
|
+
:fabric_index)
|
3578
|
+
SENSITIVE = []
|
3579
|
+
include Aws::Structure
|
3580
|
+
end
|
3581
|
+
|
3582
|
+
# Matter endpoint used in capability report.
|
3583
|
+
#
|
3584
|
+
# @!attribute [rw] id
|
3585
|
+
# The id of the Amazon Web Services Matter capability report endpoint.
|
3586
|
+
# @return [String]
|
3587
|
+
#
|
3588
|
+
# @!attribute [rw] device_types
|
3589
|
+
# The type of device.
|
3590
|
+
# @return [Array<String>]
|
3591
|
+
#
|
3592
|
+
# @!attribute [rw] clusters
|
3593
|
+
# Matter clusters used in capability report.
|
3594
|
+
# @return [Array<Types::MatterCapabilityReportCluster>]
|
3595
|
+
#
|
3596
|
+
# @!attribute [rw] parts
|
3597
|
+
# Heirachy of child endpoints contained in the given endpoint.
|
3598
|
+
# @return [Array<String>]
|
3599
|
+
#
|
3600
|
+
# @!attribute [rw] semantic_tags
|
3601
|
+
# Semantic information related to endpoint.
|
3602
|
+
# @return [Array<String>]
|
3603
|
+
#
|
3604
|
+
# @!attribute [rw] client_clusters
|
3605
|
+
# Semantic information related to endpoint.
|
3606
|
+
# @return [Array<String>]
|
3607
|
+
#
|
3608
|
+
class MatterCapabilityReportEndpoint < Struct.new(
|
3609
|
+
:id,
|
3610
|
+
:device_types,
|
3611
|
+
:clusters,
|
3612
|
+
:parts,
|
3613
|
+
:semantic_tags,
|
3614
|
+
:client_clusters)
|
3615
|
+
SENSITIVE = []
|
3616
|
+
include Aws::Structure
|
3617
|
+
end
|
3618
|
+
|
3619
|
+
# Describe a Matter cluster with an id, and the relevant attributes,
|
3620
|
+
# commands, and events.
|
3621
|
+
#
|
3622
|
+
# @!attribute [rw] id
|
3623
|
+
# The cluster id.
|
3624
|
+
# @return [String]
|
3625
|
+
#
|
3626
|
+
# @!attribute [rw] attributes
|
3627
|
+
# The Matter attributes.
|
3628
|
+
# @return [Hash,Array,String,Numeric,Boolean]
|
3629
|
+
#
|
3630
|
+
# @!attribute [rw] commands
|
3631
|
+
# Describe the Matter commands with the Matter command identifier
|
3632
|
+
# mapped to the command fields.
|
3633
|
+
# @return [Hash<String,Hash,Array,String,Numeric,Boolean>]
|
3634
|
+
#
|
3635
|
+
# @!attribute [rw] events
|
3636
|
+
# Describe the Matter events with the Matter event identifier mapped
|
3637
|
+
# to the event fields.
|
3638
|
+
# @return [Hash<String,Hash,Array,String,Numeric,Boolean>]
|
3639
|
+
#
|
3640
|
+
class MatterCluster < Struct.new(
|
3641
|
+
:id,
|
3642
|
+
:attributes,
|
3643
|
+
:commands,
|
3644
|
+
:events)
|
3645
|
+
SENSITIVE = [:attributes, :commands, :events]
|
3646
|
+
include Aws::Structure
|
3647
|
+
end
|
3648
|
+
|
3649
|
+
# Structure describing a managed thing.
|
3650
|
+
#
|
3651
|
+
# @!attribute [rw] id
|
3652
|
+
# The Matter endpoint id.
|
2358
3653
|
# @return [String]
|
2359
3654
|
#
|
2360
|
-
# @!attribute [rw]
|
2361
|
-
#
|
2362
|
-
# @return [
|
2363
|
-
#
|
2364
|
-
# @!attribute [rw] updated_at
|
2365
|
-
# The timestamp value of when the managed thing was last updated at.
|
2366
|
-
# @return [Time]
|
2367
|
-
#
|
2368
|
-
# @!attribute [rw] activated_at
|
2369
|
-
# The timestampe value of when the managed thing was activated at.
|
2370
|
-
# @return [Time]
|
3655
|
+
# @!attribute [rw] clusters
|
3656
|
+
# A list of Matter clusters for a managed thing.
|
3657
|
+
# @return [Array<Types::MatterCluster>]
|
2371
3658
|
#
|
2372
|
-
class
|
3659
|
+
class MatterEndpoint < Struct.new(
|
2373
3660
|
:id,
|
2374
|
-
:
|
2375
|
-
|
2376
|
-
:brand,
|
2377
|
-
:classification,
|
2378
|
-
:connector_device_id,
|
2379
|
-
:connector_policy_id,
|
2380
|
-
:model,
|
2381
|
-
:name,
|
2382
|
-
:owner,
|
2383
|
-
:credential_locker_id,
|
2384
|
-
:parent_controller_id,
|
2385
|
-
:provisioning_status,
|
2386
|
-
:role,
|
2387
|
-
:serial_number,
|
2388
|
-
:created_at,
|
2389
|
-
:updated_at,
|
2390
|
-
:activated_at)
|
2391
|
-
SENSITIVE = [:brand, :classification, :connector_device_id, :model, :owner, :serial_number]
|
3661
|
+
:clusters)
|
3662
|
+
SENSITIVE = []
|
2392
3663
|
include Aws::Structure
|
2393
3664
|
end
|
2394
3665
|
|
@@ -2410,6 +3681,69 @@ module Aws::IoTManagedIntegrations
|
|
2410
3681
|
include Aws::Structure
|
2411
3682
|
end
|
2412
3683
|
|
3684
|
+
# Configuration details for OAuth authentication with a third-party
|
3685
|
+
# service.
|
3686
|
+
#
|
3687
|
+
# @!attribute [rw] auth_url
|
3688
|
+
# The authorization URL for the OAuth service, where users are
|
3689
|
+
# directed to authenticate and authorize access.
|
3690
|
+
# @return [String]
|
3691
|
+
#
|
3692
|
+
# @!attribute [rw] token_url
|
3693
|
+
# The token URL for the OAuth service, where authorization codes are
|
3694
|
+
# exchanged for access tokens.
|
3695
|
+
# @return [String]
|
3696
|
+
#
|
3697
|
+
# @!attribute [rw] scope
|
3698
|
+
# The OAuth scopes requested during authorization, which define the
|
3699
|
+
# permissions granted to the application.
|
3700
|
+
# @return [String]
|
3701
|
+
#
|
3702
|
+
# @!attribute [rw] token_endpoint_authentication_scheme
|
3703
|
+
# The authentication scheme used when requesting tokens from the token
|
3704
|
+
# endpoint.
|
3705
|
+
# @return [String]
|
3706
|
+
#
|
3707
|
+
# @!attribute [rw] o_auth_complete_redirect_url
|
3708
|
+
# The URL where users are redirected after completing the OAuth
|
3709
|
+
# authorization process.
|
3710
|
+
# @return [String]
|
3711
|
+
#
|
3712
|
+
# @!attribute [rw] proactive_refresh_token_renewal
|
3713
|
+
# Configuration for proactively refreshing OAuth tokens before they
|
3714
|
+
# expire.
|
3715
|
+
# @return [Types::ProactiveRefreshTokenRenewal]
|
3716
|
+
#
|
3717
|
+
class OAuthConfig < Struct.new(
|
3718
|
+
:auth_url,
|
3719
|
+
:token_url,
|
3720
|
+
:scope,
|
3721
|
+
:token_endpoint_authentication_scheme,
|
3722
|
+
:o_auth_complete_redirect_url,
|
3723
|
+
:proactive_refresh_token_renewal)
|
3724
|
+
SENSITIVE = []
|
3725
|
+
include Aws::Structure
|
3726
|
+
end
|
3727
|
+
|
3728
|
+
# Structure containing updated OAuth configuration settings.
|
3729
|
+
#
|
3730
|
+
# @!attribute [rw] o_auth_complete_redirect_url
|
3731
|
+
# The updated URL where users are redirected after completing the
|
3732
|
+
# OAuth authorization process.
|
3733
|
+
# @return [String]
|
3734
|
+
#
|
3735
|
+
# @!attribute [rw] proactive_refresh_token_renewal
|
3736
|
+
# Updated configuration for proactively refreshing OAuth tokens before
|
3737
|
+
# they expire.
|
3738
|
+
# @return [Types::ProactiveRefreshTokenRenewal]
|
3739
|
+
#
|
3740
|
+
class OAuthUpdate < Struct.new(
|
3741
|
+
:o_auth_complete_redirect_url,
|
3742
|
+
:proactive_refresh_token_renewal)
|
3743
|
+
SENSITIVE = []
|
3744
|
+
include Aws::Structure
|
3745
|
+
end
|
3746
|
+
|
2413
3747
|
# Over-the-air (OTA) task abort config.
|
2414
3748
|
#
|
2415
3749
|
# @!attribute [rw] abort_config_criteria_list
|
@@ -2618,6 +3952,25 @@ module Aws::IoTManagedIntegrations
|
|
2618
3952
|
include Aws::Structure
|
2619
3953
|
end
|
2620
3954
|
|
3955
|
+
# Configuration settings for proactively refreshing OAuth tokens before
|
3956
|
+
# they expire.
|
3957
|
+
#
|
3958
|
+
# @!attribute [rw] enabled
|
3959
|
+
# Indicates whether proactive refresh token renewal is enabled.
|
3960
|
+
# @return [Boolean]
|
3961
|
+
#
|
3962
|
+
# @!attribute [rw] days_before_renewal
|
3963
|
+
# The days before token expiration when the system should attempt to
|
3964
|
+
# renew the token, specified in days.
|
3965
|
+
# @return [Integer]
|
3966
|
+
#
|
3967
|
+
class ProactiveRefreshTokenRenewal < Struct.new(
|
3968
|
+
:enabled,
|
3969
|
+
:days_before_renewal)
|
3970
|
+
SENSITIVE = []
|
3971
|
+
include Aws::Structure
|
3972
|
+
end
|
3973
|
+
|
2621
3974
|
# Structure describing a provisioning profile.
|
2622
3975
|
#
|
2623
3976
|
# @!attribute [rw] name
|
@@ -2744,6 +4097,51 @@ module Aws::IoTManagedIntegrations
|
|
2744
4097
|
include Aws::Structure
|
2745
4098
|
end
|
2746
4099
|
|
4100
|
+
# @!attribute [rw] managed_thing_id
|
4101
|
+
# The identifier of the managed thing to register with the account
|
4102
|
+
# association.
|
4103
|
+
# @return [String]
|
4104
|
+
#
|
4105
|
+
# @!attribute [rw] account_association_id
|
4106
|
+
# The identifier of the account association to register with the
|
4107
|
+
# managed thing.
|
4108
|
+
# @return [String]
|
4109
|
+
#
|
4110
|
+
# @!attribute [rw] device_discovery_id
|
4111
|
+
# The identifier of the device discovery job associated with this
|
4112
|
+
# registration.
|
4113
|
+
# @return [String]
|
4114
|
+
#
|
4115
|
+
class RegisterAccountAssociationRequest < Struct.new(
|
4116
|
+
:managed_thing_id,
|
4117
|
+
:account_association_id,
|
4118
|
+
:device_discovery_id)
|
4119
|
+
SENSITIVE = []
|
4120
|
+
include Aws::Structure
|
4121
|
+
end
|
4122
|
+
|
4123
|
+
# @!attribute [rw] account_association_id
|
4124
|
+
# The identifier of the account association that was registered.
|
4125
|
+
# @return [String]
|
4126
|
+
#
|
4127
|
+
# @!attribute [rw] device_discovery_id
|
4128
|
+
# The identifier of the device discovery job associated with this
|
4129
|
+
# registration.
|
4130
|
+
# @return [String]
|
4131
|
+
#
|
4132
|
+
# @!attribute [rw] managed_thing_id
|
4133
|
+
# The identifier of the managed thing that was registered with the
|
4134
|
+
# account association.
|
4135
|
+
# @return [String]
|
4136
|
+
#
|
4137
|
+
class RegisterAccountAssociationResponse < Struct.new(
|
4138
|
+
:account_association_id,
|
4139
|
+
:device_discovery_id,
|
4140
|
+
:managed_thing_id)
|
4141
|
+
SENSITIVE = []
|
4142
|
+
include Aws::Structure
|
4143
|
+
end
|
4144
|
+
|
2747
4145
|
# @api private
|
2748
4146
|
#
|
2749
4147
|
class RegisterCustomEndpointRequest < Aws::EmptyStructure; end
|
@@ -2774,8 +4172,18 @@ module Aws::IoTManagedIntegrations
|
|
2774
4172
|
# @!attribute [rw] message
|
2775
4173
|
# @return [String]
|
2776
4174
|
#
|
4175
|
+
# @!attribute [rw] resource_id
|
4176
|
+
# Id of the affected resource
|
4177
|
+
# @return [String]
|
4178
|
+
#
|
4179
|
+
# @!attribute [rw] resource_type
|
4180
|
+
# Type of the affected resource
|
4181
|
+
# @return [String]
|
4182
|
+
#
|
2777
4183
|
class ResourceNotFoundException < Struct.new(
|
2778
|
-
:message
|
4184
|
+
:message,
|
4185
|
+
:resource_id,
|
4186
|
+
:resource_type)
|
2779
4187
|
SENSITIVE = []
|
2780
4188
|
include Aws::Structure
|
2781
4189
|
end
|
@@ -2926,6 +4334,127 @@ module Aws::IoTManagedIntegrations
|
|
2926
4334
|
include Aws::Structure
|
2927
4335
|
end
|
2928
4336
|
|
4337
|
+
# Configuration for AWS Secrets Manager, used to securely store and
|
4338
|
+
# manage sensitive information for connector destinations.
|
4339
|
+
#
|
4340
|
+
# @!attribute [rw] arn
|
4341
|
+
# The Amazon Resource Name (ARN) of the AWS Secrets Manager secret.
|
4342
|
+
# @return [String]
|
4343
|
+
#
|
4344
|
+
# @!attribute [rw] version_id
|
4345
|
+
# The version ID of the AWS Secrets Manager secret.
|
4346
|
+
# @return [String]
|
4347
|
+
#
|
4348
|
+
class SecretsManager < Struct.new(
|
4349
|
+
:arn,
|
4350
|
+
:version_id)
|
4351
|
+
SENSITIVE = []
|
4352
|
+
include Aws::Structure
|
4353
|
+
end
|
4354
|
+
|
4355
|
+
# @!attribute [rw] connector_id
|
4356
|
+
# The id of the connector between the third-party cloud provider and
|
4357
|
+
# IoT managed integrations.
|
4358
|
+
# @return [String]
|
4359
|
+
#
|
4360
|
+
# @!attribute [rw] user_id
|
4361
|
+
# The id of the third-party cloud provider.
|
4362
|
+
# @return [String]
|
4363
|
+
#
|
4364
|
+
# @!attribute [rw] operation
|
4365
|
+
# The Open Connectivity Foundation (OCF) operation requested to be
|
4366
|
+
# performed on the managed thing.
|
4367
|
+
#
|
4368
|
+
# <note markdown="1"> The field op can have a value of "I" or "U". The field "cn"
|
4369
|
+
# will contain the capability types.
|
4370
|
+
#
|
4371
|
+
# </note>
|
4372
|
+
# @return [String]
|
4373
|
+
#
|
4374
|
+
# @!attribute [rw] operation_version
|
4375
|
+
# The Open Connectivity Foundation (OCF) security specification
|
4376
|
+
# version for the operation being requested on the managed thing. For
|
4377
|
+
# more information, see [OCF Security Specification][1].
|
4378
|
+
#
|
4379
|
+
#
|
4380
|
+
#
|
4381
|
+
# [1]: https://openconnectivity.org/specs/OCF_Security_Specification_v1.0.0.pdf
|
4382
|
+
# @return [String]
|
4383
|
+
#
|
4384
|
+
# @!attribute [rw] status_code
|
4385
|
+
# The status code of the Open Connectivity Foundation (OCF) operation
|
4386
|
+
# being performed on the managed thing.
|
4387
|
+
# @return [Integer]
|
4388
|
+
#
|
4389
|
+
# @!attribute [rw] message
|
4390
|
+
# The device state change event payload.
|
4391
|
+
#
|
4392
|
+
# This parameter will include the following three fields:
|
4393
|
+
#
|
4394
|
+
# * `uri`: `schema auc://<PARTNER-DEVICE-ID>/ResourcePath` (The
|
4395
|
+
# `Resourcepath` corresponds to an OCF resource.)
|
4396
|
+
#
|
4397
|
+
# * `op`: For device state changes, this field must populate as `n+d`.
|
4398
|
+
#
|
4399
|
+
# * `cn`: The content depends on the OCF resource referenced in
|
4400
|
+
# `ResourcePath`.
|
4401
|
+
# @return [String]
|
4402
|
+
#
|
4403
|
+
# @!attribute [rw] device_discovery_id
|
4404
|
+
# The id for the device discovery job.
|
4405
|
+
# @return [String]
|
4406
|
+
#
|
4407
|
+
# @!attribute [rw] connector_device_id
|
4408
|
+
# The third-party device id as defined by the connector. This device
|
4409
|
+
# id must not contain personal identifiable information (PII).
|
4410
|
+
#
|
4411
|
+
# <note markdown="1"> This parameter is used for cloud-to-cloud devices only.
|
4412
|
+
#
|
4413
|
+
# </note>
|
4414
|
+
# @return [String]
|
4415
|
+
#
|
4416
|
+
# @!attribute [rw] trace_id
|
4417
|
+
# The trace request identifier used to correlate a command request and
|
4418
|
+
# response. This is specified by the device owner, but will be
|
4419
|
+
# generated by IoT managed integrations if not provided by the device
|
4420
|
+
# owner.
|
4421
|
+
# @return [String]
|
4422
|
+
#
|
4423
|
+
# @!attribute [rw] devices
|
4424
|
+
# The list of devices.
|
4425
|
+
# @return [Array<Types::Device>]
|
4426
|
+
#
|
4427
|
+
# @!attribute [rw] matter_endpoint
|
4428
|
+
# The device endpoint.
|
4429
|
+
# @return [Types::MatterEndpoint]
|
4430
|
+
#
|
4431
|
+
class SendConnectorEventRequest < Struct.new(
|
4432
|
+
:connector_id,
|
4433
|
+
:user_id,
|
4434
|
+
:operation,
|
4435
|
+
:operation_version,
|
4436
|
+
:status_code,
|
4437
|
+
:message,
|
4438
|
+
:device_discovery_id,
|
4439
|
+
:connector_device_id,
|
4440
|
+
:trace_id,
|
4441
|
+
:devices,
|
4442
|
+
:matter_endpoint)
|
4443
|
+
SENSITIVE = [:user_id, :operation_version, :status_code, :message, :connector_device_id]
|
4444
|
+
include Aws::Structure
|
4445
|
+
end
|
4446
|
+
|
4447
|
+
# @!attribute [rw] connector_id
|
4448
|
+
# The id of the connector between the third-party cloud provider and
|
4449
|
+
# IoT managed integrations.
|
4450
|
+
# @return [String]
|
4451
|
+
#
|
4452
|
+
class SendConnectorEventResponse < Struct.new(
|
4453
|
+
:connector_id)
|
4454
|
+
SENSITIVE = []
|
4455
|
+
include Aws::Structure
|
4456
|
+
end
|
4457
|
+
|
2929
4458
|
# @!attribute [rw] managed_thing_id
|
2930
4459
|
# The id of the device.
|
2931
4460
|
# @return [String]
|
@@ -2939,10 +4468,16 @@ module Aws::IoTManagedIntegrations
|
|
2939
4468
|
# association.
|
2940
4469
|
# @return [String]
|
2941
4470
|
#
|
4471
|
+
# @!attribute [rw] account_association_id
|
4472
|
+
# The identifier of the account association to use when sending a
|
4473
|
+
# command to a managed thing.
|
4474
|
+
# @return [String]
|
4475
|
+
#
|
2942
4476
|
class SendManagedThingCommandRequest < Struct.new(
|
2943
4477
|
:managed_thing_id,
|
2944
4478
|
:endpoints,
|
2945
|
-
:connector_association_id
|
4479
|
+
:connector_association_id,
|
4480
|
+
:account_association_id)
|
2946
4481
|
SENSITIVE = []
|
2947
4482
|
include Aws::Structure
|
2948
4483
|
end
|
@@ -2981,11 +4516,43 @@ module Aws::IoTManagedIntegrations
|
|
2981
4516
|
include Aws::Structure
|
2982
4517
|
end
|
2983
4518
|
|
4519
|
+
# @!attribute [rw] account_association_id
|
4520
|
+
# The unique identifier of the account association to refresh.
|
4521
|
+
# @return [String]
|
4522
|
+
#
|
4523
|
+
class StartAccountAssociationRefreshRequest < Struct.new(
|
4524
|
+
:account_association_id)
|
4525
|
+
SENSITIVE = []
|
4526
|
+
include Aws::Structure
|
4527
|
+
end
|
4528
|
+
|
4529
|
+
# @!attribute [rw] o_auth_authorization_url
|
4530
|
+
# Third-party IoT platform OAuth authorization server URL with all
|
4531
|
+
# required parameters to perform end-user authentication during the
|
4532
|
+
# refresh process.
|
4533
|
+
# @return [String]
|
4534
|
+
#
|
4535
|
+
class StartAccountAssociationRefreshResponse < Struct.new(
|
4536
|
+
:o_auth_authorization_url)
|
4537
|
+
SENSITIVE = [:o_auth_authorization_url]
|
4538
|
+
include Aws::Structure
|
4539
|
+
end
|
4540
|
+
|
2984
4541
|
# @!attribute [rw] discovery_type
|
2985
4542
|
# The discovery type supporting the type of device to be discovered in
|
2986
|
-
# the device discovery
|
4543
|
+
# the device discovery task request.
|
2987
4544
|
# @return [String]
|
2988
4545
|
#
|
4546
|
+
# @!attribute [rw] custom_protocol_detail
|
4547
|
+
# Additional protocol-specific details required for device discovery,
|
4548
|
+
# which vary based on the discovery type.
|
4549
|
+
#
|
4550
|
+
# <note markdown="1"> For a `DiscoveryType` of `CUSTOM`, the string-to-string map must
|
4551
|
+
# have a key value of `Name` set to a non-empty-string.
|
4552
|
+
#
|
4553
|
+
# </note>
|
4554
|
+
# @return [Hash<String,String>]
|
4555
|
+
#
|
2989
4556
|
# @!attribute [rw] controller_identifier
|
2990
4557
|
# The id of the end-user's IoT hub.
|
2991
4558
|
# @return [String]
|
@@ -2994,6 +4561,11 @@ module Aws::IoTManagedIntegrations
|
|
2994
4561
|
# The id of the connector association.
|
2995
4562
|
# @return [String]
|
2996
4563
|
#
|
4564
|
+
# @!attribute [rw] account_association_id
|
4565
|
+
# The identifier of the cloud-to-cloud account association to use for
|
4566
|
+
# discovery of third-party devices.
|
4567
|
+
# @return [String]
|
4568
|
+
#
|
2997
4569
|
# @!attribute [rw] authentication_material
|
2998
4570
|
# The authentication material required to start the local device
|
2999
4571
|
# discovery job request.
|
@@ -3017,8 +4589,10 @@ module Aws::IoTManagedIntegrations
|
|
3017
4589
|
#
|
3018
4590
|
class StartDeviceDiscoveryRequest < Struct.new(
|
3019
4591
|
:discovery_type,
|
4592
|
+
:custom_protocol_detail,
|
3020
4593
|
:controller_identifier,
|
3021
4594
|
:connector_association_identifier,
|
4595
|
+
:account_association_id,
|
3022
4596
|
:authentication_material,
|
3023
4597
|
:authentication_material_type,
|
3024
4598
|
:client_token,
|
@@ -3088,6 +4662,23 @@ module Aws::IoTManagedIntegrations
|
|
3088
4662
|
include Aws::Structure
|
3089
4663
|
end
|
3090
4664
|
|
4665
|
+
# @!attribute [rw] resource_arn
|
4666
|
+
# The ARN of the resource to which to add tags.
|
4667
|
+
# @return [String]
|
4668
|
+
#
|
4669
|
+
# @!attribute [rw] tags
|
4670
|
+
# A set of key/value pairs that are used to manage the resource
|
4671
|
+
# @return [Hash<String,String>]
|
4672
|
+
#
|
4673
|
+
class TagResourceRequest < Struct.new(
|
4674
|
+
:resource_arn,
|
4675
|
+
:tags)
|
4676
|
+
SENSITIVE = [:tags]
|
4677
|
+
include Aws::Structure
|
4678
|
+
end
|
4679
|
+
|
4680
|
+
class TagResourceResponse < Aws::EmptyStructure; end
|
4681
|
+
|
3091
4682
|
# Details about the over-the-air (OTA) task process.
|
3092
4683
|
#
|
3093
4684
|
# @!attribute [rw] number_of_canceled_things
|
@@ -3162,6 +4753,100 @@ module Aws::IoTManagedIntegrations
|
|
3162
4753
|
include Aws::Structure
|
3163
4754
|
end
|
3164
4755
|
|
4756
|
+
# @!attribute [rw] resource_arn
|
4757
|
+
# The ARN of the resource to which to add tags.
|
4758
|
+
# @return [String]
|
4759
|
+
#
|
4760
|
+
# @!attribute [rw] tag_keys
|
4761
|
+
# A list of tag keys to remove from the resource.
|
4762
|
+
# @return [Array<String>]
|
4763
|
+
#
|
4764
|
+
class UntagResourceRequest < Struct.new(
|
4765
|
+
:resource_arn,
|
4766
|
+
:tag_keys)
|
4767
|
+
SENSITIVE = []
|
4768
|
+
include Aws::Structure
|
4769
|
+
end
|
4770
|
+
|
4771
|
+
class UntagResourceResponse < Aws::EmptyStructure; end
|
4772
|
+
|
4773
|
+
# @!attribute [rw] account_association_id
|
4774
|
+
# The unique identifier of the account association to update.
|
4775
|
+
# @return [String]
|
4776
|
+
#
|
4777
|
+
# @!attribute [rw] name
|
4778
|
+
# The new name to assign to the account association.
|
4779
|
+
# @return [String]
|
4780
|
+
#
|
4781
|
+
# @!attribute [rw] description
|
4782
|
+
# The new description to assign to the account association.
|
4783
|
+
# @return [String]
|
4784
|
+
#
|
4785
|
+
class UpdateAccountAssociationRequest < Struct.new(
|
4786
|
+
:account_association_id,
|
4787
|
+
:name,
|
4788
|
+
:description)
|
4789
|
+
SENSITIVE = []
|
4790
|
+
include Aws::Structure
|
4791
|
+
end
|
4792
|
+
|
4793
|
+
# @!attribute [rw] identifier
|
4794
|
+
# The unique identifier of the cloud connector to update.
|
4795
|
+
# @return [String]
|
4796
|
+
#
|
4797
|
+
# @!attribute [rw] name
|
4798
|
+
# The new display name to assign to the cloud connector.
|
4799
|
+
# @return [String]
|
4800
|
+
#
|
4801
|
+
# @!attribute [rw] description
|
4802
|
+
# The new description to assign to the cloud connector.
|
4803
|
+
# @return [String]
|
4804
|
+
#
|
4805
|
+
class UpdateCloudConnectorRequest < Struct.new(
|
4806
|
+
:identifier,
|
4807
|
+
:name,
|
4808
|
+
:description)
|
4809
|
+
SENSITIVE = []
|
4810
|
+
include Aws::Structure
|
4811
|
+
end
|
4812
|
+
|
4813
|
+
# @!attribute [rw] identifier
|
4814
|
+
# The unique identifier of the connector destination to update.
|
4815
|
+
# @return [String]
|
4816
|
+
#
|
4817
|
+
# @!attribute [rw] description
|
4818
|
+
# The new description to assign to the connector destination.
|
4819
|
+
# @return [String]
|
4820
|
+
#
|
4821
|
+
# @!attribute [rw] name
|
4822
|
+
# The new display name to assign to the connector destination.
|
4823
|
+
# @return [String]
|
4824
|
+
#
|
4825
|
+
# @!attribute [rw] auth_type
|
4826
|
+
# The new authentication type to use for the connector destination.
|
4827
|
+
# @return [String]
|
4828
|
+
#
|
4829
|
+
# @!attribute [rw] auth_config
|
4830
|
+
# The updated authentication configuration details for the connector
|
4831
|
+
# destination.
|
4832
|
+
# @return [Types::AuthConfigUpdate]
|
4833
|
+
#
|
4834
|
+
# @!attribute [rw] secrets_manager
|
4835
|
+
# The updated AWS Secrets Manager configuration for the connector
|
4836
|
+
# destination.
|
4837
|
+
# @return [Types::SecretsManager]
|
4838
|
+
#
|
4839
|
+
class UpdateConnectorDestinationRequest < Struct.new(
|
4840
|
+
:identifier,
|
4841
|
+
:description,
|
4842
|
+
:name,
|
4843
|
+
:auth_type,
|
4844
|
+
:auth_config,
|
4845
|
+
:secrets_manager)
|
4846
|
+
SENSITIVE = []
|
4847
|
+
include Aws::Structure
|
4848
|
+
end
|
4849
|
+
|
3165
4850
|
# @!attribute [rw] name
|
3166
4851
|
# The name of the customer-managed destination.
|
3167
4852
|
# @return [String]
|
@@ -3241,6 +4926,11 @@ module Aws::IoTManagedIntegrations
|
|
3241
4926
|
# A report of the capabilities for the managed thing.
|
3242
4927
|
# @return [Types::CapabilityReport]
|
3243
4928
|
#
|
4929
|
+
# @!attribute [rw] capability_schemas
|
4930
|
+
# The updated capability schemas that define the functionality and
|
4931
|
+
# features supported by the managed thing.
|
4932
|
+
# @return [Array<Types::CapabilitySchemaItem>]
|
4933
|
+
#
|
3244
4934
|
# @!attribute [rw] capabilities
|
3245
4935
|
# The capabilities of the device such as light bulb.
|
3246
4936
|
# @return [String]
|
@@ -3267,6 +4957,7 @@ module Aws::IoTManagedIntegrations
|
|
3267
4957
|
:model,
|
3268
4958
|
:name,
|
3269
4959
|
:capability_report,
|
4960
|
+
:capability_schemas,
|
3270
4961
|
:capabilities,
|
3271
4962
|
:classification,
|
3272
4963
|
:hub_network_mode,
|