aws-sdk-iot 1.51.1 → 1.56.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/lib/aws-sdk-iot.rb +4 -2
- data/lib/aws-sdk-iot/client.rb +506 -26
- data/lib/aws-sdk-iot/client_api.rb +458 -0
- data/lib/aws-sdk-iot/customizations.rb +1 -0
- data/lib/aws-sdk-iot/errors.rb +2 -0
- data/lib/aws-sdk-iot/resource.rb +2 -0
- data/lib/aws-sdk-iot/types.rb +1171 -32
- metadata +2 -2
data/lib/aws-sdk-iot/errors.rb
CHANGED
data/lib/aws-sdk-iot/resource.rb
CHANGED
data/lib/aws-sdk-iot/types.rb
CHANGED
@@ -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:
|
@@ -8,7 +10,7 @@
|
|
8
10
|
module Aws::IoT
|
9
11
|
module Types
|
10
12
|
|
11
|
-
#
|
13
|
+
# The criteria that determine when and how a job abort takes place.
|
12
14
|
#
|
13
15
|
# @note When making an API call, you may pass AbortConfig
|
14
16
|
# data as a hash:
|
@@ -25,15 +27,16 @@ module Aws::IoT
|
|
25
27
|
# }
|
26
28
|
#
|
27
29
|
# @!attribute [rw] criteria_list
|
28
|
-
# The list of
|
30
|
+
# The list of criteria that determine when and how to abort the job.
|
29
31
|
# @return [Array<Types::AbortCriteria>]
|
30
32
|
#
|
31
33
|
class AbortConfig < Struct.new(
|
32
34
|
:criteria_list)
|
35
|
+
SENSITIVE = []
|
33
36
|
include Aws::Structure
|
34
37
|
end
|
35
38
|
|
36
|
-
#
|
39
|
+
# The criteria that determine when and how a job abort takes place.
|
37
40
|
#
|
38
41
|
# @note When making an API call, you may pass AbortCriteria
|
39
42
|
# data as a hash:
|
@@ -46,24 +49,24 @@ module Aws::IoT
|
|
46
49
|
# }
|
47
50
|
#
|
48
51
|
# @!attribute [rw] failure_type
|
49
|
-
# The type of job execution
|
50
|
-
# abort.
|
52
|
+
# The type of job execution failures that can initiate a job abort.
|
51
53
|
# @return [String]
|
52
54
|
#
|
53
55
|
# @!attribute [rw] action
|
54
|
-
# The type of
|
56
|
+
# The type of job action to take to initiate the job abort.
|
55
57
|
# @return [String]
|
56
58
|
#
|
57
59
|
# @!attribute [rw] threshold_percentage
|
58
|
-
# The
|
59
|
-
#
|
60
|
+
# The minimum percentage of job execution failures that must occur to
|
61
|
+
# initiate the job abort.
|
60
62
|
#
|
61
63
|
# AWS IoT supports up to two digits after the decimal (for example,
|
62
64
|
# 10.9 and 10.99, but not 10.999).
|
63
65
|
# @return [Float]
|
64
66
|
#
|
65
67
|
# @!attribute [rw] min_number_of_executed_things
|
66
|
-
#
|
68
|
+
# The minimum number of things which must receive job execution
|
69
|
+
# notifications before the job can be aborted.
|
67
70
|
# @return [Integer]
|
68
71
|
#
|
69
72
|
class AbortCriteria < Struct.new(
|
@@ -71,6 +74,7 @@ module Aws::IoT
|
|
71
74
|
:action,
|
72
75
|
:threshold_percentage,
|
73
76
|
:min_number_of_executed_things)
|
77
|
+
SENSITIVE = []
|
74
78
|
include Aws::Structure
|
75
79
|
end
|
76
80
|
|
@@ -96,6 +100,7 @@ module Aws::IoT
|
|
96
100
|
class AcceptCertificateTransferRequest < Struct.new(
|
97
101
|
:certificate_id,
|
98
102
|
:set_as_active)
|
103
|
+
SENSITIVE = []
|
99
104
|
include Aws::Structure
|
100
105
|
end
|
101
106
|
|
@@ -345,6 +350,7 @@ module Aws::IoT
|
|
345
350
|
:iot_site_wise,
|
346
351
|
:step_functions,
|
347
352
|
:http)
|
353
|
+
SENSITIVE = []
|
348
354
|
include Aws::Structure
|
349
355
|
end
|
350
356
|
|
@@ -388,6 +394,7 @@ module Aws::IoT
|
|
388
394
|
:last_violation_value,
|
389
395
|
:last_violation_time,
|
390
396
|
:violation_start_time)
|
397
|
+
SENSITIVE = []
|
391
398
|
include Aws::Structure
|
392
399
|
end
|
393
400
|
|
@@ -422,6 +429,7 @@ module Aws::IoT
|
|
422
429
|
:billing_group_arn,
|
423
430
|
:thing_name,
|
424
431
|
:thing_arn)
|
432
|
+
SENSITIVE = []
|
425
433
|
include Aws::Structure
|
426
434
|
end
|
427
435
|
|
@@ -467,6 +475,7 @@ module Aws::IoT
|
|
467
475
|
:thing_name,
|
468
476
|
:thing_arn,
|
469
477
|
:override_dynamic_groups)
|
478
|
+
SENSITIVE = []
|
470
479
|
include Aws::Structure
|
471
480
|
end
|
472
481
|
|
@@ -499,6 +508,7 @@ module Aws::IoT
|
|
499
508
|
class AddThingsToThingGroupParams < Struct.new(
|
500
509
|
:thing_group_names,
|
501
510
|
:override_dynamic_groups)
|
511
|
+
SENSITIVE = []
|
502
512
|
include Aws::Structure
|
503
513
|
end
|
504
514
|
|
@@ -524,6 +534,7 @@ module Aws::IoT
|
|
524
534
|
class AlertTarget < Struct.new(
|
525
535
|
:alert_target_arn,
|
526
536
|
:role_arn)
|
537
|
+
SENSITIVE = []
|
527
538
|
include Aws::Structure
|
528
539
|
end
|
529
540
|
|
@@ -535,6 +546,7 @@ module Aws::IoT
|
|
535
546
|
#
|
536
547
|
class Allowed < Struct.new(
|
537
548
|
:policies)
|
549
|
+
SENSITIVE = []
|
538
550
|
include Aws::Structure
|
539
551
|
end
|
540
552
|
|
@@ -562,6 +574,7 @@ module Aws::IoT
|
|
562
574
|
class AssetPropertyTimestamp < Struct.new(
|
563
575
|
:time_in_seconds,
|
564
576
|
:offset_in_nanos)
|
577
|
+
SENSITIVE = []
|
565
578
|
include Aws::Structure
|
566
579
|
end
|
567
580
|
|
@@ -601,6 +614,7 @@ module Aws::IoT
|
|
601
614
|
:value,
|
602
615
|
:timestamp,
|
603
616
|
:quality)
|
617
|
+
SENSITIVE = []
|
604
618
|
include Aws::Structure
|
605
619
|
end
|
606
620
|
|
@@ -641,6 +655,7 @@ module Aws::IoT
|
|
641
655
|
:integer_value,
|
642
656
|
:double_value,
|
643
657
|
:boolean_value)
|
658
|
+
SENSITIVE = []
|
644
659
|
include Aws::Structure
|
645
660
|
end
|
646
661
|
|
@@ -670,6 +685,7 @@ module Aws::IoT
|
|
670
685
|
:targets,
|
671
686
|
:job_id,
|
672
687
|
:comment)
|
688
|
+
SENSITIVE = []
|
673
689
|
include Aws::Structure
|
674
690
|
end
|
675
691
|
|
@@ -689,6 +705,7 @@ module Aws::IoT
|
|
689
705
|
:job_arn,
|
690
706
|
:job_id,
|
691
707
|
:description)
|
708
|
+
SENSITIVE = []
|
692
709
|
include Aws::Structure
|
693
710
|
end
|
694
711
|
|
@@ -709,12 +726,13 @@ module Aws::IoT
|
|
709
726
|
#
|
710
727
|
#
|
711
728
|
#
|
712
|
-
# [1]: https://docs.aws.amazon.com/iot/latest/developerguide/
|
729
|
+
# [1]: https://docs.aws.amazon.com/iot/latest/developerguide/security-iam.html
|
713
730
|
# @return [String]
|
714
731
|
#
|
715
732
|
class AttachPolicyRequest < Struct.new(
|
716
733
|
:policy_name,
|
717
734
|
:target)
|
735
|
+
SENSITIVE = []
|
718
736
|
include Aws::Structure
|
719
737
|
end
|
720
738
|
|
@@ -740,6 +758,7 @@ module Aws::IoT
|
|
740
758
|
class AttachPrincipalPolicyRequest < Struct.new(
|
741
759
|
:policy_name,
|
742
760
|
:principal)
|
761
|
+
SENSITIVE = []
|
743
762
|
include Aws::Structure
|
744
763
|
end
|
745
764
|
|
@@ -763,6 +782,7 @@ module Aws::IoT
|
|
763
782
|
class AttachSecurityProfileRequest < Struct.new(
|
764
783
|
:security_profile_name,
|
765
784
|
:security_profile_target_arn)
|
785
|
+
SENSITIVE = []
|
766
786
|
include Aws::Structure
|
767
787
|
end
|
768
788
|
|
@@ -790,6 +810,7 @@ module Aws::IoT
|
|
790
810
|
class AttachThingPrincipalRequest < Struct.new(
|
791
811
|
:thing_name,
|
792
812
|
:principal)
|
813
|
+
SENSITIVE = []
|
793
814
|
include Aws::Structure
|
794
815
|
end
|
795
816
|
|
@@ -833,6 +854,7 @@ module Aws::IoT
|
|
833
854
|
class AttributePayload < Struct.new(
|
834
855
|
:attributes,
|
835
856
|
:merge)
|
857
|
+
SENSITIVE = []
|
836
858
|
include Aws::Structure
|
837
859
|
end
|
838
860
|
|
@@ -851,6 +873,7 @@ module Aws::IoT
|
|
851
873
|
#
|
852
874
|
class AuditCheckConfiguration < Struct.new(
|
853
875
|
:enabled)
|
876
|
+
SENSITIVE = []
|
854
877
|
include Aws::Structure
|
855
878
|
end
|
856
879
|
|
@@ -876,6 +899,11 @@ module Aws::IoT
|
|
876
899
|
# check.
|
877
900
|
# @return [Integer]
|
878
901
|
#
|
902
|
+
# @!attribute [rw] suppressed_non_compliant_resources_count
|
903
|
+
# Describes how many of the non-compliant resources created during the
|
904
|
+
# evaluation of an audit check were marked as suppressed.
|
905
|
+
# @return [Integer]
|
906
|
+
#
|
879
907
|
# @!attribute [rw] error_code
|
880
908
|
# The code of any error encountered when this check is performed
|
881
909
|
# during this audit. One of "INSUFFICIENT\_PERMISSIONS" or
|
@@ -892,8 +920,10 @@ module Aws::IoT
|
|
892
920
|
:check_compliant,
|
893
921
|
:total_resources_count,
|
894
922
|
:non_compliant_resources_count,
|
923
|
+
:suppressed_non_compliant_resources_count,
|
895
924
|
:error_code,
|
896
925
|
:message)
|
926
|
+
SENSITIVE = []
|
897
927
|
include Aws::Structure
|
898
928
|
end
|
899
929
|
|
@@ -940,6 +970,11 @@ module Aws::IoT
|
|
940
970
|
# A code that indicates the reason that the resource was noncompliant.
|
941
971
|
# @return [String]
|
942
972
|
#
|
973
|
+
# @!attribute [rw] is_suppressed
|
974
|
+
# Indicates whether the audit finding was suppressed or not during
|
975
|
+
# reporting.
|
976
|
+
# @return [Boolean]
|
977
|
+
#
|
943
978
|
class AuditFinding < Struct.new(
|
944
979
|
:finding_id,
|
945
980
|
:task_id,
|
@@ -950,7 +985,9 @@ module Aws::IoT
|
|
950
985
|
:non_compliant_resource,
|
951
986
|
:related_resources,
|
952
987
|
:reason_for_non_compliance,
|
953
|
-
:reason_for_non_compliance_code
|
988
|
+
:reason_for_non_compliance_code,
|
989
|
+
:is_suppressed)
|
990
|
+
SENSITIVE = []
|
954
991
|
include Aws::Structure
|
955
992
|
end
|
956
993
|
|
@@ -1009,6 +1046,7 @@ module Aws::IoT
|
|
1009
1046
|
:end_time,
|
1010
1047
|
:error_code,
|
1011
1048
|
:message)
|
1049
|
+
SENSITIVE = []
|
1012
1050
|
include Aws::Structure
|
1013
1051
|
end
|
1014
1052
|
|
@@ -1031,6 +1069,7 @@ module Aws::IoT
|
|
1031
1069
|
:task_id,
|
1032
1070
|
:start_time,
|
1033
1071
|
:task_status)
|
1072
|
+
SENSITIVE = []
|
1034
1073
|
include Aws::Structure
|
1035
1074
|
end
|
1036
1075
|
|
@@ -1069,6 +1108,7 @@ module Aws::IoT
|
|
1069
1108
|
:audit_task_id,
|
1070
1109
|
:finding_ids,
|
1071
1110
|
:audit_check_to_reason_code_filter)
|
1111
|
+
SENSITIVE = []
|
1072
1112
|
include Aws::Structure
|
1073
1113
|
end
|
1074
1114
|
|
@@ -1101,6 +1141,44 @@ module Aws::IoT
|
|
1101
1141
|
:target_arn,
|
1102
1142
|
:role_arn,
|
1103
1143
|
:enabled)
|
1144
|
+
SENSITIVE = []
|
1145
|
+
include Aws::Structure
|
1146
|
+
end
|
1147
|
+
|
1148
|
+
# Filters out specific findings of a Device Defender audit.
|
1149
|
+
#
|
1150
|
+
# @!attribute [rw] check_name
|
1151
|
+
# An audit check name. Checks must be enabled for your account. (Use
|
1152
|
+
# `DescribeAccountAuditConfiguration` to see the list of all checks,
|
1153
|
+
# including those that are enabled or use
|
1154
|
+
# `UpdateAccountAuditConfiguration` to select which checks are
|
1155
|
+
# enabled.)
|
1156
|
+
# @return [String]
|
1157
|
+
#
|
1158
|
+
# @!attribute [rw] resource_identifier
|
1159
|
+
# Information that identifies the noncompliant resource.
|
1160
|
+
# @return [Types::ResourceIdentifier]
|
1161
|
+
#
|
1162
|
+
# @!attribute [rw] expiration_date
|
1163
|
+
# The expiration date (epoch timestamp in seconds) that you want the
|
1164
|
+
# suppression to adhere to.
|
1165
|
+
# @return [Time]
|
1166
|
+
#
|
1167
|
+
# @!attribute [rw] suppress_indefinitely
|
1168
|
+
# Indicates whether a suppression should exist indefinitely or not.
|
1169
|
+
# @return [Boolean]
|
1170
|
+
#
|
1171
|
+
# @!attribute [rw] description
|
1172
|
+
# The description of the audit suppression.
|
1173
|
+
# @return [String]
|
1174
|
+
#
|
1175
|
+
class AuditSuppression < Struct.new(
|
1176
|
+
:check_name,
|
1177
|
+
:resource_identifier,
|
1178
|
+
:expiration_date,
|
1179
|
+
:suppress_indefinitely,
|
1180
|
+
:description)
|
1181
|
+
SENSITIVE = []
|
1104
1182
|
include Aws::Structure
|
1105
1183
|
end
|
1106
1184
|
|
@@ -1124,6 +1202,7 @@ module Aws::IoT
|
|
1124
1202
|
:task_id,
|
1125
1203
|
:task_status,
|
1126
1204
|
:task_type)
|
1205
|
+
SENSITIVE = []
|
1127
1206
|
include Aws::Structure
|
1128
1207
|
end
|
1129
1208
|
|
@@ -1149,6 +1228,7 @@ module Aws::IoT
|
|
1149
1228
|
class AuthInfo < Struct.new(
|
1150
1229
|
:action_type,
|
1151
1230
|
:resources)
|
1231
|
+
SENSITIVE = []
|
1152
1232
|
include Aws::Structure
|
1153
1233
|
end
|
1154
1234
|
|
@@ -1183,6 +1263,7 @@ module Aws::IoT
|
|
1183
1263
|
:denied,
|
1184
1264
|
:auth_decision,
|
1185
1265
|
:missing_context_values)
|
1266
|
+
SENSITIVE = []
|
1186
1267
|
include Aws::Structure
|
1187
1268
|
end
|
1188
1269
|
|
@@ -1208,6 +1289,7 @@ module Aws::IoT
|
|
1208
1289
|
class AuthorizerConfig < Struct.new(
|
1209
1290
|
:default_authorizer_name,
|
1210
1291
|
:allow_authorizer_override)
|
1292
|
+
SENSITIVE = []
|
1211
1293
|
include Aws::Structure
|
1212
1294
|
end
|
1213
1295
|
|
@@ -1261,6 +1343,7 @@ module Aws::IoT
|
|
1261
1343
|
:creation_date,
|
1262
1344
|
:last_modified_date,
|
1263
1345
|
:signing_disabled)
|
1346
|
+
SENSITIVE = []
|
1264
1347
|
include Aws::Structure
|
1265
1348
|
end
|
1266
1349
|
|
@@ -1277,6 +1360,75 @@ module Aws::IoT
|
|
1277
1360
|
class AuthorizerSummary < Struct.new(
|
1278
1361
|
:authorizer_name,
|
1279
1362
|
:authorizer_arn)
|
1363
|
+
SENSITIVE = []
|
1364
|
+
include Aws::Structure
|
1365
|
+
end
|
1366
|
+
|
1367
|
+
# The criteria that determine when and how a job abort takes place.
|
1368
|
+
#
|
1369
|
+
# @note When making an API call, you may pass AwsJobAbortConfig
|
1370
|
+
# data as a hash:
|
1371
|
+
#
|
1372
|
+
# {
|
1373
|
+
# abort_criteria_list: [ # required
|
1374
|
+
# {
|
1375
|
+
# failure_type: "FAILED", # required, accepts FAILED, REJECTED, TIMED_OUT, ALL
|
1376
|
+
# action: "CANCEL", # required, accepts CANCEL
|
1377
|
+
# threshold_percentage: 1.0, # required
|
1378
|
+
# min_number_of_executed_things: 1, # required
|
1379
|
+
# },
|
1380
|
+
# ],
|
1381
|
+
# }
|
1382
|
+
#
|
1383
|
+
# @!attribute [rw] abort_criteria_list
|
1384
|
+
# The list of criteria that determine when and how to abort the job.
|
1385
|
+
# @return [Array<Types::AwsJobAbortCriteria>]
|
1386
|
+
#
|
1387
|
+
class AwsJobAbortConfig < Struct.new(
|
1388
|
+
:abort_criteria_list)
|
1389
|
+
SENSITIVE = []
|
1390
|
+
include Aws::Structure
|
1391
|
+
end
|
1392
|
+
|
1393
|
+
# The criteria that determine when and how a job abort takes place.
|
1394
|
+
#
|
1395
|
+
# @note When making an API call, you may pass AwsJobAbortCriteria
|
1396
|
+
# data as a hash:
|
1397
|
+
#
|
1398
|
+
# {
|
1399
|
+
# failure_type: "FAILED", # required, accepts FAILED, REJECTED, TIMED_OUT, ALL
|
1400
|
+
# action: "CANCEL", # required, accepts CANCEL
|
1401
|
+
# threshold_percentage: 1.0, # required
|
1402
|
+
# min_number_of_executed_things: 1, # required
|
1403
|
+
# }
|
1404
|
+
#
|
1405
|
+
# @!attribute [rw] failure_type
|
1406
|
+
# The type of job execution failures that can initiate a job abort.
|
1407
|
+
# @return [String]
|
1408
|
+
#
|
1409
|
+
# @!attribute [rw] action
|
1410
|
+
# The type of job action to take to initiate the job abort.
|
1411
|
+
# @return [String]
|
1412
|
+
#
|
1413
|
+
# @!attribute [rw] threshold_percentage
|
1414
|
+
# The minimum percentage of job execution failures that must occur to
|
1415
|
+
# initiate the job abort.
|
1416
|
+
#
|
1417
|
+
# AWS IoT supports up to two digits after the decimal (for example,
|
1418
|
+
# 10.9 and 10.99, but not 10.999).
|
1419
|
+
# @return [Float]
|
1420
|
+
#
|
1421
|
+
# @!attribute [rw] min_number_of_executed_things
|
1422
|
+
# The minimum number of things which must receive job execution
|
1423
|
+
# notifications before the job can be aborted.
|
1424
|
+
# @return [Integer]
|
1425
|
+
#
|
1426
|
+
class AwsJobAbortCriteria < Struct.new(
|
1427
|
+
:failure_type,
|
1428
|
+
:action,
|
1429
|
+
:threshold_percentage,
|
1430
|
+
:min_number_of_executed_things)
|
1431
|
+
SENSITIVE = []
|
1280
1432
|
include Aws::Structure
|
1281
1433
|
end
|
1282
1434
|
|
@@ -1287,14 +1439,70 @@ module Aws::IoT
|
|
1287
1439
|
#
|
1288
1440
|
# {
|
1289
1441
|
# maximum_per_minute: 1,
|
1442
|
+
# exponential_rate: {
|
1443
|
+
# base_rate_per_minute: 1, # required
|
1444
|
+
# increment_factor: 1.0, # required
|
1445
|
+
# rate_increase_criteria: { # required
|
1446
|
+
# number_of_notified_things: 1,
|
1447
|
+
# number_of_succeeded_things: 1,
|
1448
|
+
# },
|
1449
|
+
# },
|
1290
1450
|
# }
|
1291
1451
|
#
|
1292
1452
|
# @!attribute [rw] maximum_per_minute
|
1293
1453
|
# The maximum number of OTA update job executions started per minute.
|
1294
1454
|
# @return [Integer]
|
1295
1455
|
#
|
1456
|
+
# @!attribute [rw] exponential_rate
|
1457
|
+
# The rate of increase for a job rollout. This parameter allows you to
|
1458
|
+
# define an exponential rate increase for a job rollout.
|
1459
|
+
# @return [Types::AwsJobExponentialRolloutRate]
|
1460
|
+
#
|
1296
1461
|
class AwsJobExecutionsRolloutConfig < Struct.new(
|
1297
|
-
:maximum_per_minute
|
1462
|
+
:maximum_per_minute,
|
1463
|
+
:exponential_rate)
|
1464
|
+
SENSITIVE = []
|
1465
|
+
include Aws::Structure
|
1466
|
+
end
|
1467
|
+
|
1468
|
+
# The rate of increase for a job rollout. This parameter allows you to
|
1469
|
+
# define an exponential rate increase for a job rollout.
|
1470
|
+
#
|
1471
|
+
# @note When making an API call, you may pass AwsJobExponentialRolloutRate
|
1472
|
+
# data as a hash:
|
1473
|
+
#
|
1474
|
+
# {
|
1475
|
+
# base_rate_per_minute: 1, # required
|
1476
|
+
# increment_factor: 1.0, # required
|
1477
|
+
# rate_increase_criteria: { # required
|
1478
|
+
# number_of_notified_things: 1,
|
1479
|
+
# number_of_succeeded_things: 1,
|
1480
|
+
# },
|
1481
|
+
# }
|
1482
|
+
#
|
1483
|
+
# @!attribute [rw] base_rate_per_minute
|
1484
|
+
# The minimum number of things that will be notified of a pending job,
|
1485
|
+
# per minute, at the start of the job rollout. This is the initial
|
1486
|
+
# rate of the rollout.
|
1487
|
+
# @return [Integer]
|
1488
|
+
#
|
1489
|
+
# @!attribute [rw] increment_factor
|
1490
|
+
# The rate of increase for a job rollout. The number of things
|
1491
|
+
# notified is multiplied by this factor.
|
1492
|
+
# @return [Float]
|
1493
|
+
#
|
1494
|
+
# @!attribute [rw] rate_increase_criteria
|
1495
|
+
# The criteria to initiate the increase in rate of rollout for a job.
|
1496
|
+
#
|
1497
|
+
# AWS IoT supports up to one digit after the decimal (for example,
|
1498
|
+
# 1.5, but not 1.55).
|
1499
|
+
# @return [Types::AwsJobRateIncreaseCriteria]
|
1500
|
+
#
|
1501
|
+
class AwsJobExponentialRolloutRate < Struct.new(
|
1502
|
+
:base_rate_per_minute,
|
1503
|
+
:increment_factor,
|
1504
|
+
:rate_increase_criteria)
|
1505
|
+
SENSITIVE = []
|
1298
1506
|
include Aws::Structure
|
1299
1507
|
end
|
1300
1508
|
|
@@ -1316,6 +1524,63 @@ module Aws::IoT
|
|
1316
1524
|
#
|
1317
1525
|
class AwsJobPresignedUrlConfig < Struct.new(
|
1318
1526
|
:expires_in_sec)
|
1527
|
+
SENSITIVE = []
|
1528
|
+
include Aws::Structure
|
1529
|
+
end
|
1530
|
+
|
1531
|
+
# The criteria to initiate the increase in rate of rollout for a job.
|
1532
|
+
#
|
1533
|
+
# @note When making an API call, you may pass AwsJobRateIncreaseCriteria
|
1534
|
+
# data as a hash:
|
1535
|
+
#
|
1536
|
+
# {
|
1537
|
+
# number_of_notified_things: 1,
|
1538
|
+
# number_of_succeeded_things: 1,
|
1539
|
+
# }
|
1540
|
+
#
|
1541
|
+
# @!attribute [rw] number_of_notified_things
|
1542
|
+
# When this number of things have been notified, it will initiate an
|
1543
|
+
# increase in the rollout rate.
|
1544
|
+
# @return [Integer]
|
1545
|
+
#
|
1546
|
+
# @!attribute [rw] number_of_succeeded_things
|
1547
|
+
# When this number of things have succeeded in their job execution, it
|
1548
|
+
# will initiate an increase in the rollout rate.
|
1549
|
+
# @return [Integer]
|
1550
|
+
#
|
1551
|
+
class AwsJobRateIncreaseCriteria < Struct.new(
|
1552
|
+
:number_of_notified_things,
|
1553
|
+
:number_of_succeeded_things)
|
1554
|
+
SENSITIVE = []
|
1555
|
+
include Aws::Structure
|
1556
|
+
end
|
1557
|
+
|
1558
|
+
# Specifies the amount of time each device has to finish its execution
|
1559
|
+
# of the job. A timer is started when the job execution status is set to
|
1560
|
+
# `IN_PROGRESS`. If the job execution status is not set to another
|
1561
|
+
# terminal state before the timer expires, it will be automatically set
|
1562
|
+
# to `TIMED_OUT`.
|
1563
|
+
#
|
1564
|
+
# @note When making an API call, you may pass AwsJobTimeoutConfig
|
1565
|
+
# data as a hash:
|
1566
|
+
#
|
1567
|
+
# {
|
1568
|
+
# in_progress_timeout_in_minutes: 1,
|
1569
|
+
# }
|
1570
|
+
#
|
1571
|
+
# @!attribute [rw] in_progress_timeout_in_minutes
|
1572
|
+
# Specifies the amount of time, in minutes, this device has to finish
|
1573
|
+
# execution of this job. The timeout interval can be anywhere between
|
1574
|
+
# 1 minute and 7 days (1 to 10080 minutes). The in progress timer
|
1575
|
+
# can't be updated and will apply to all job executions for the job.
|
1576
|
+
# Whenever a job execution remains in the IN\_PROGRESS status for
|
1577
|
+
# longer than this interval, the job execution will fail and switch to
|
1578
|
+
# the terminal `TIMED_OUT` status.
|
1579
|
+
# @return [Integer]
|
1580
|
+
#
|
1581
|
+
class AwsJobTimeoutConfig < Struct.new(
|
1582
|
+
:in_progress_timeout_in_minutes)
|
1583
|
+
SENSITIVE = []
|
1319
1584
|
include Aws::Structure
|
1320
1585
|
end
|
1321
1586
|
|
@@ -1372,6 +1637,7 @@ module Aws::IoT
|
|
1372
1637
|
:metric,
|
1373
1638
|
:metric_dimension,
|
1374
1639
|
:criteria)
|
1640
|
+
SENSITIVE = []
|
1375
1641
|
include Aws::Structure
|
1376
1642
|
end
|
1377
1643
|
|
@@ -1440,6 +1706,7 @@ module Aws::IoT
|
|
1440
1706
|
:consecutive_datapoints_to_alarm,
|
1441
1707
|
:consecutive_datapoints_to_clear,
|
1442
1708
|
:statistical_threshold)
|
1709
|
+
SENSITIVE = []
|
1443
1710
|
include Aws::Structure
|
1444
1711
|
end
|
1445
1712
|
|
@@ -1451,6 +1718,7 @@ module Aws::IoT
|
|
1451
1718
|
#
|
1452
1719
|
class BillingGroupMetadata < Struct.new(
|
1453
1720
|
:creation_date)
|
1721
|
+
SENSITIVE = []
|
1454
1722
|
include Aws::Structure
|
1455
1723
|
end
|
1456
1724
|
|
@@ -1469,6 +1737,7 @@ module Aws::IoT
|
|
1469
1737
|
#
|
1470
1738
|
class BillingGroupProperties < Struct.new(
|
1471
1739
|
:billing_group_description)
|
1740
|
+
SENSITIVE = []
|
1472
1741
|
include Aws::Structure
|
1473
1742
|
end
|
1474
1743
|
|
@@ -1498,6 +1767,7 @@ module Aws::IoT
|
|
1498
1767
|
:certificate_id,
|
1499
1768
|
:status,
|
1500
1769
|
:creation_date)
|
1770
|
+
SENSITIVE = []
|
1501
1771
|
include Aws::Structure
|
1502
1772
|
end
|
1503
1773
|
|
@@ -1560,6 +1830,7 @@ module Aws::IoT
|
|
1560
1830
|
:customer_version,
|
1561
1831
|
:generation_id,
|
1562
1832
|
:validity)
|
1833
|
+
SENSITIVE = []
|
1563
1834
|
include Aws::Structure
|
1564
1835
|
end
|
1565
1836
|
|
@@ -1576,6 +1847,7 @@ module Aws::IoT
|
|
1576
1847
|
#
|
1577
1848
|
class CancelAuditMitigationActionsTaskRequest < Struct.new(
|
1578
1849
|
:task_id)
|
1850
|
+
SENSITIVE = []
|
1579
1851
|
include Aws::Structure
|
1580
1852
|
end
|
1581
1853
|
|
@@ -1595,6 +1867,7 @@ module Aws::IoT
|
|
1595
1867
|
#
|
1596
1868
|
class CancelAuditTaskRequest < Struct.new(
|
1597
1869
|
:task_id)
|
1870
|
+
SENSITIVE = []
|
1598
1871
|
include Aws::Structure
|
1599
1872
|
end
|
1600
1873
|
|
@@ -1616,6 +1889,7 @@ module Aws::IoT
|
|
1616
1889
|
#
|
1617
1890
|
class CancelCertificateTransferRequest < Struct.new(
|
1618
1891
|
:certificate_id)
|
1892
|
+
SENSITIVE = []
|
1619
1893
|
include Aws::Structure
|
1620
1894
|
end
|
1621
1895
|
|
@@ -1676,6 +1950,7 @@ module Aws::IoT
|
|
1676
1950
|
:force,
|
1677
1951
|
:expected_version,
|
1678
1952
|
:status_details)
|
1953
|
+
SENSITIVE = []
|
1679
1954
|
include Aws::Structure
|
1680
1955
|
end
|
1681
1956
|
|
@@ -1718,6 +1993,7 @@ module Aws::IoT
|
|
1718
1993
|
:reason_code,
|
1719
1994
|
:comment,
|
1720
1995
|
:force)
|
1996
|
+
SENSITIVE = []
|
1721
1997
|
include Aws::Structure
|
1722
1998
|
end
|
1723
1999
|
|
@@ -1737,6 +2013,7 @@ module Aws::IoT
|
|
1737
2013
|
:job_arn,
|
1738
2014
|
:job_id,
|
1739
2015
|
:description)
|
2016
|
+
SENSITIVE = []
|
1740
2017
|
include Aws::Structure
|
1741
2018
|
end
|
1742
2019
|
|
@@ -1772,6 +2049,7 @@ module Aws::IoT
|
|
1772
2049
|
:status,
|
1773
2050
|
:certificate_mode,
|
1774
2051
|
:creation_date)
|
2052
|
+
SENSITIVE = []
|
1775
2053
|
include Aws::Structure
|
1776
2054
|
end
|
1777
2055
|
|
@@ -1786,6 +2064,7 @@ module Aws::IoT
|
|
1786
2064
|
#
|
1787
2065
|
class CertificateConflictException < Struct.new(
|
1788
2066
|
:message)
|
2067
|
+
SENSITIVE = []
|
1789
2068
|
include Aws::Structure
|
1790
2069
|
end
|
1791
2070
|
|
@@ -1863,6 +2142,7 @@ module Aws::IoT
|
|
1863
2142
|
:generation_id,
|
1864
2143
|
:validity,
|
1865
2144
|
:certificate_mode)
|
2145
|
+
SENSITIVE = []
|
1866
2146
|
include Aws::Structure
|
1867
2147
|
end
|
1868
2148
|
|
@@ -1874,6 +2154,7 @@ module Aws::IoT
|
|
1874
2154
|
#
|
1875
2155
|
class CertificateStateException < Struct.new(
|
1876
2156
|
:message)
|
2157
|
+
SENSITIVE = []
|
1877
2158
|
include Aws::Structure
|
1878
2159
|
end
|
1879
2160
|
|
@@ -1885,6 +2166,7 @@ module Aws::IoT
|
|
1885
2166
|
#
|
1886
2167
|
class CertificateValidationException < Struct.new(
|
1887
2168
|
:message)
|
2169
|
+
SENSITIVE = []
|
1888
2170
|
include Aws::Structure
|
1889
2171
|
end
|
1890
2172
|
|
@@ -1901,6 +2183,7 @@ module Aws::IoT
|
|
1901
2183
|
class CertificateValidity < Struct.new(
|
1902
2184
|
:not_before,
|
1903
2185
|
:not_after)
|
2186
|
+
SENSITIVE = []
|
1904
2187
|
include Aws::Structure
|
1905
2188
|
end
|
1906
2189
|
|
@@ -1944,6 +2227,7 @@ module Aws::IoT
|
|
1944
2227
|
:alarm_name,
|
1945
2228
|
:state_reason,
|
1946
2229
|
:state_value)
|
2230
|
+
SENSITIVE = []
|
1947
2231
|
include Aws::Structure
|
1948
2232
|
end
|
1949
2233
|
|
@@ -1968,6 +2252,7 @@ module Aws::IoT
|
|
1968
2252
|
class CloudwatchLogsAction < Struct.new(
|
1969
2253
|
:role_arn,
|
1970
2254
|
:log_group_name)
|
2255
|
+
SENSITIVE = []
|
1971
2256
|
include Aws::Structure
|
1972
2257
|
end
|
1973
2258
|
|
@@ -2024,6 +2309,7 @@ module Aws::IoT
|
|
2024
2309
|
:metric_value,
|
2025
2310
|
:metric_unit,
|
2026
2311
|
:metric_timestamp)
|
2312
|
+
SENSITIVE = []
|
2027
2313
|
include Aws::Structure
|
2028
2314
|
end
|
2029
2315
|
|
@@ -2077,6 +2363,7 @@ module Aws::IoT
|
|
2077
2363
|
:aws_signer_job_id,
|
2078
2364
|
:start_signing_job_parameter,
|
2079
2365
|
:custom_code_signing)
|
2366
|
+
SENSITIVE = []
|
2080
2367
|
include Aws::Structure
|
2081
2368
|
end
|
2082
2369
|
|
@@ -2102,6 +2389,7 @@ module Aws::IoT
|
|
2102
2389
|
class CodeSigningCertificateChain < Struct.new(
|
2103
2390
|
:certificate_name,
|
2104
2391
|
:inline_document)
|
2392
|
+
SENSITIVE = []
|
2105
2393
|
include Aws::Structure
|
2106
2394
|
end
|
2107
2395
|
|
@@ -2121,6 +2409,7 @@ module Aws::IoT
|
|
2121
2409
|
#
|
2122
2410
|
class CodeSigningSignature < Struct.new(
|
2123
2411
|
:inline_document)
|
2412
|
+
SENSITIVE = []
|
2124
2413
|
include Aws::Structure
|
2125
2414
|
end
|
2126
2415
|
|
@@ -2139,6 +2428,7 @@ module Aws::IoT
|
|
2139
2428
|
#
|
2140
2429
|
class Configuration < Struct.new(
|
2141
2430
|
:enabled)
|
2431
|
+
SENSITIVE = []
|
2142
2432
|
include Aws::Structure
|
2143
2433
|
end
|
2144
2434
|
|
@@ -2156,6 +2446,7 @@ module Aws::IoT
|
|
2156
2446
|
#
|
2157
2447
|
class ConfirmTopicRuleDestinationRequest < Struct.new(
|
2158
2448
|
:confirmation_token)
|
2449
|
+
SENSITIVE = []
|
2159
2450
|
include Aws::Structure
|
2160
2451
|
end
|
2161
2452
|
|
@@ -2170,9 +2461,78 @@ module Aws::IoT
|
|
2170
2461
|
#
|
2171
2462
|
class ConflictingResourceUpdateException < Struct.new(
|
2172
2463
|
:message)
|
2464
|
+
SENSITIVE = []
|
2173
2465
|
include Aws::Structure
|
2174
2466
|
end
|
2175
2467
|
|
2468
|
+
# @note When making an API call, you may pass CreateAuditSuppressionRequest
|
2469
|
+
# data as a hash:
|
2470
|
+
#
|
2471
|
+
# {
|
2472
|
+
# check_name: "AuditCheckName", # required
|
2473
|
+
# resource_identifier: { # required
|
2474
|
+
# device_certificate_id: "CertificateId",
|
2475
|
+
# ca_certificate_id: "CertificateId",
|
2476
|
+
# cognito_identity_pool_id: "CognitoIdentityPoolId",
|
2477
|
+
# client_id: "ClientId",
|
2478
|
+
# policy_version_identifier: {
|
2479
|
+
# policy_name: "PolicyName",
|
2480
|
+
# policy_version_id: "PolicyVersionId",
|
2481
|
+
# },
|
2482
|
+
# account: "AwsAccountId",
|
2483
|
+
# iam_role_arn: "RoleArn",
|
2484
|
+
# role_alias_arn: "RoleAliasArn",
|
2485
|
+
# },
|
2486
|
+
# expiration_date: Time.now,
|
2487
|
+
# suppress_indefinitely: false,
|
2488
|
+
# description: "AuditDescription",
|
2489
|
+
# client_request_token: "ClientRequestToken", # required
|
2490
|
+
# }
|
2491
|
+
#
|
2492
|
+
# @!attribute [rw] check_name
|
2493
|
+
# An audit check name. Checks must be enabled for your account. (Use
|
2494
|
+
# `DescribeAccountAuditConfiguration` to see the list of all checks,
|
2495
|
+
# including those that are enabled or use
|
2496
|
+
# `UpdateAccountAuditConfiguration` to select which checks are
|
2497
|
+
# enabled.)
|
2498
|
+
# @return [String]
|
2499
|
+
#
|
2500
|
+
# @!attribute [rw] resource_identifier
|
2501
|
+
# Information that identifies the noncompliant resource.
|
2502
|
+
# @return [Types::ResourceIdentifier]
|
2503
|
+
#
|
2504
|
+
# @!attribute [rw] expiration_date
|
2505
|
+
# The epoch timestamp in seconds at which this suppression expires.
|
2506
|
+
# @return [Time]
|
2507
|
+
#
|
2508
|
+
# @!attribute [rw] suppress_indefinitely
|
2509
|
+
# Indicates whether a suppression should exist indefinitely or not.
|
2510
|
+
# @return [Boolean]
|
2511
|
+
#
|
2512
|
+
# @!attribute [rw] description
|
2513
|
+
# The description of the audit suppression.
|
2514
|
+
# @return [String]
|
2515
|
+
#
|
2516
|
+
# @!attribute [rw] client_request_token
|
2517
|
+
# The epoch timestamp in seconds at which this suppression expires.
|
2518
|
+
#
|
2519
|
+
# **A suitable default value is auto-generated.** You should normally
|
2520
|
+
# not need to pass this option.
|
2521
|
+
# @return [String]
|
2522
|
+
#
|
2523
|
+
class CreateAuditSuppressionRequest < Struct.new(
|
2524
|
+
:check_name,
|
2525
|
+
:resource_identifier,
|
2526
|
+
:expiration_date,
|
2527
|
+
:suppress_indefinitely,
|
2528
|
+
:description,
|
2529
|
+
:client_request_token)
|
2530
|
+
SENSITIVE = []
|
2531
|
+
include Aws::Structure
|
2532
|
+
end
|
2533
|
+
|
2534
|
+
class CreateAuditSuppressionResponse < Aws::EmptyStructure; end
|
2535
|
+
|
2176
2536
|
# @note When making an API call, you may pass CreateAuthorizerRequest
|
2177
2537
|
# data as a hash:
|
2178
2538
|
#
|
@@ -2243,6 +2603,7 @@ module Aws::IoT
|
|
2243
2603
|
:status,
|
2244
2604
|
:tags,
|
2245
2605
|
:signing_disabled)
|
2606
|
+
SENSITIVE = []
|
2246
2607
|
include Aws::Structure
|
2247
2608
|
end
|
2248
2609
|
|
@@ -2257,6 +2618,7 @@ module Aws::IoT
|
|
2257
2618
|
class CreateAuthorizerResponse < Struct.new(
|
2258
2619
|
:authorizer_name,
|
2259
2620
|
:authorizer_arn)
|
2621
|
+
SENSITIVE = []
|
2260
2622
|
include Aws::Structure
|
2261
2623
|
end
|
2262
2624
|
|
@@ -2292,6 +2654,7 @@ module Aws::IoT
|
|
2292
2654
|
:billing_group_name,
|
2293
2655
|
:billing_group_properties,
|
2294
2656
|
:tags)
|
2657
|
+
SENSITIVE = []
|
2295
2658
|
include Aws::Structure
|
2296
2659
|
end
|
2297
2660
|
|
@@ -2311,6 +2674,7 @@ module Aws::IoT
|
|
2311
2674
|
:billing_group_name,
|
2312
2675
|
:billing_group_arn,
|
2313
2676
|
:billing_group_id)
|
2677
|
+
SENSITIVE = []
|
2314
2678
|
include Aws::Structure
|
2315
2679
|
end
|
2316
2680
|
|
@@ -2335,6 +2699,7 @@ module Aws::IoT
|
|
2335
2699
|
class CreateCertificateFromCsrRequest < Struct.new(
|
2336
2700
|
:certificate_signing_request,
|
2337
2701
|
:set_as_active)
|
2702
|
+
SENSITIVE = []
|
2338
2703
|
include Aws::Structure
|
2339
2704
|
end
|
2340
2705
|
|
@@ -2358,6 +2723,7 @@ module Aws::IoT
|
|
2358
2723
|
:certificate_arn,
|
2359
2724
|
:certificate_id,
|
2360
2725
|
:certificate_pem)
|
2726
|
+
SENSITIVE = []
|
2361
2727
|
include Aws::Structure
|
2362
2728
|
end
|
2363
2729
|
|
@@ -2413,6 +2779,7 @@ module Aws::IoT
|
|
2413
2779
|
:string_values,
|
2414
2780
|
:tags,
|
2415
2781
|
:client_request_token)
|
2782
|
+
SENSITIVE = []
|
2416
2783
|
include Aws::Structure
|
2417
2784
|
end
|
2418
2785
|
|
@@ -2427,6 +2794,7 @@ module Aws::IoT
|
|
2427
2794
|
class CreateDimensionResponse < Struct.new(
|
2428
2795
|
:name,
|
2429
2796
|
:arn)
|
2797
|
+
SENSITIVE = []
|
2430
2798
|
include Aws::Structure
|
2431
2799
|
end
|
2432
2800
|
|
@@ -2508,6 +2876,7 @@ module Aws::IoT
|
|
2508
2876
|
:authorizer_config,
|
2509
2877
|
:service_type,
|
2510
2878
|
:tags)
|
2879
|
+
SENSITIVE = []
|
2511
2880
|
include Aws::Structure
|
2512
2881
|
end
|
2513
2882
|
|
@@ -2522,6 +2891,7 @@ module Aws::IoT
|
|
2522
2891
|
class CreateDomainConfigurationResponse < Struct.new(
|
2523
2892
|
:domain_configuration_name,
|
2524
2893
|
:domain_configuration_arn)
|
2894
|
+
SENSITIVE = []
|
2525
2895
|
include Aws::Structure
|
2526
2896
|
end
|
2527
2897
|
|
@@ -2596,6 +2966,7 @@ module Aws::IoT
|
|
2596
2966
|
:query_string,
|
2597
2967
|
:query_version,
|
2598
2968
|
:tags)
|
2969
|
+
SENSITIVE = []
|
2599
2970
|
include Aws::Structure
|
2600
2971
|
end
|
2601
2972
|
|
@@ -2630,6 +3001,7 @@ module Aws::IoT
|
|
2630
3001
|
:index_name,
|
2631
3002
|
:query_string,
|
2632
3003
|
:query_version)
|
3004
|
+
SENSITIVE = []
|
2633
3005
|
include Aws::Structure
|
2634
3006
|
end
|
2635
3007
|
|
@@ -2758,6 +3130,7 @@ module Aws::IoT
|
|
2758
3130
|
:abort_config,
|
2759
3131
|
:timeout_config,
|
2760
3132
|
:tags)
|
3133
|
+
SENSITIVE = []
|
2761
3134
|
include Aws::Structure
|
2762
3135
|
end
|
2763
3136
|
|
@@ -2777,6 +3150,7 @@ module Aws::IoT
|
|
2777
3150
|
:job_arn,
|
2778
3151
|
:job_id,
|
2779
3152
|
:description)
|
3153
|
+
SENSITIVE = []
|
2780
3154
|
include Aws::Structure
|
2781
3155
|
end
|
2782
3156
|
|
@@ -2795,6 +3169,7 @@ module Aws::IoT
|
|
2795
3169
|
#
|
2796
3170
|
class CreateKeysAndCertificateRequest < Struct.new(
|
2797
3171
|
:set_as_active)
|
3172
|
+
SENSITIVE = []
|
2798
3173
|
include Aws::Structure
|
2799
3174
|
end
|
2800
3175
|
|
@@ -2822,6 +3197,7 @@ module Aws::IoT
|
|
2822
3197
|
:certificate_id,
|
2823
3198
|
:certificate_pem,
|
2824
3199
|
:key_pair)
|
3200
|
+
SENSITIVE = []
|
2825
3201
|
include Aws::Structure
|
2826
3202
|
end
|
2827
3203
|
|
@@ -2884,6 +3260,7 @@ module Aws::IoT
|
|
2884
3260
|
:role_arn,
|
2885
3261
|
:action_params,
|
2886
3262
|
:tags)
|
3263
|
+
SENSITIVE = []
|
2887
3264
|
include Aws::Structure
|
2888
3265
|
end
|
2889
3266
|
|
@@ -2898,6 +3275,7 @@ module Aws::IoT
|
|
2898
3275
|
class CreateMitigationActionResponse < Struct.new(
|
2899
3276
|
:action_arn,
|
2900
3277
|
:action_id)
|
3278
|
+
SENSITIVE = []
|
2901
3279
|
include Aws::Structure
|
2902
3280
|
end
|
2903
3281
|
|
@@ -2912,10 +3290,31 @@ module Aws::IoT
|
|
2912
3290
|
# target_selection: "CONTINUOUS", # accepts CONTINUOUS, SNAPSHOT
|
2913
3291
|
# aws_job_executions_rollout_config: {
|
2914
3292
|
# maximum_per_minute: 1,
|
3293
|
+
# exponential_rate: {
|
3294
|
+
# base_rate_per_minute: 1, # required
|
3295
|
+
# increment_factor: 1.0, # required
|
3296
|
+
# rate_increase_criteria: { # required
|
3297
|
+
# number_of_notified_things: 1,
|
3298
|
+
# number_of_succeeded_things: 1,
|
3299
|
+
# },
|
3300
|
+
# },
|
2915
3301
|
# },
|
2916
3302
|
# aws_job_presigned_url_config: {
|
2917
3303
|
# expires_in_sec: 1,
|
2918
3304
|
# },
|
3305
|
+
# aws_job_abort_config: {
|
3306
|
+
# abort_criteria_list: [ # required
|
3307
|
+
# {
|
3308
|
+
# failure_type: "FAILED", # required, accepts FAILED, REJECTED, TIMED_OUT, ALL
|
3309
|
+
# action: "CANCEL", # required, accepts CANCEL
|
3310
|
+
# threshold_percentage: 1.0, # required
|
3311
|
+
# min_number_of_executed_things: 1, # required
|
3312
|
+
# },
|
3313
|
+
# ],
|
3314
|
+
# },
|
3315
|
+
# aws_job_timeout_config: {
|
3316
|
+
# in_progress_timeout_in_minutes: 1,
|
3317
|
+
# },
|
2919
3318
|
# files: [ # required
|
2920
3319
|
# {
|
2921
3320
|
# file_name: "FileName",
|
@@ -2985,7 +3384,7 @@ module Aws::IoT
|
|
2985
3384
|
# @return [String]
|
2986
3385
|
#
|
2987
3386
|
# @!attribute [rw] targets
|
2988
|
-
# The targeted
|
3387
|
+
# The devices targeted to receive OTA updates.
|
2989
3388
|
# @return [Array<String>]
|
2990
3389
|
#
|
2991
3390
|
# @!attribute [rw] protocols
|
@@ -3012,12 +3411,25 @@ module Aws::IoT
|
|
3012
3411
|
# Configuration information for pre-signed URLs.
|
3013
3412
|
# @return [Types::AwsJobPresignedUrlConfig]
|
3014
3413
|
#
|
3414
|
+
# @!attribute [rw] aws_job_abort_config
|
3415
|
+
# The criteria that determine when and how a job abort takes place.
|
3416
|
+
# @return [Types::AwsJobAbortConfig]
|
3417
|
+
#
|
3418
|
+
# @!attribute [rw] aws_job_timeout_config
|
3419
|
+
# Specifies the amount of time each device has to finish its execution
|
3420
|
+
# of the job. A timer is started when the job execution status is set
|
3421
|
+
# to `IN_PROGRESS`. If the job execution status is not set to another
|
3422
|
+
# terminal state before the timer expires, it will be automatically
|
3423
|
+
# set to `TIMED_OUT`.
|
3424
|
+
# @return [Types::AwsJobTimeoutConfig]
|
3425
|
+
#
|
3015
3426
|
# @!attribute [rw] files
|
3016
3427
|
# The files to be streamed by the OTA update.
|
3017
3428
|
# @return [Array<Types::OTAUpdateFile>]
|
3018
3429
|
#
|
3019
3430
|
# @!attribute [rw] role_arn
|
3020
|
-
# The IAM role that
|
3431
|
+
# The IAM role that grants AWS IoT access to the Amazon S3, AWS IoT
|
3432
|
+
# jobs and AWS Code Signing resources to create an OTA update job.
|
3021
3433
|
# @return [String]
|
3022
3434
|
#
|
3023
3435
|
# @!attribute [rw] additional_parameters
|
@@ -3037,10 +3449,13 @@ module Aws::IoT
|
|
3037
3449
|
:target_selection,
|
3038
3450
|
:aws_job_executions_rollout_config,
|
3039
3451
|
:aws_job_presigned_url_config,
|
3452
|
+
:aws_job_abort_config,
|
3453
|
+
:aws_job_timeout_config,
|
3040
3454
|
:files,
|
3041
3455
|
:role_arn,
|
3042
3456
|
:additional_parameters,
|
3043
3457
|
:tags)
|
3458
|
+
SENSITIVE = []
|
3044
3459
|
include Aws::Structure
|
3045
3460
|
end
|
3046
3461
|
|
@@ -3070,6 +3485,7 @@ module Aws::IoT
|
|
3070
3485
|
:ota_update_arn,
|
3071
3486
|
:aws_iot_job_arn,
|
3072
3487
|
:ota_update_status)
|
3488
|
+
SENSITIVE = []
|
3073
3489
|
include Aws::Structure
|
3074
3490
|
end
|
3075
3491
|
|
@@ -3118,6 +3534,7 @@ module Aws::IoT
|
|
3118
3534
|
:policy_name,
|
3119
3535
|
:policy_document,
|
3120
3536
|
:tags)
|
3537
|
+
SENSITIVE = []
|
3121
3538
|
include Aws::Structure
|
3122
3539
|
end
|
3123
3540
|
|
@@ -3144,6 +3561,7 @@ module Aws::IoT
|
|
3144
3561
|
:policy_arn,
|
3145
3562
|
:policy_document,
|
3146
3563
|
:policy_version_id)
|
3564
|
+
SENSITIVE = []
|
3147
3565
|
include Aws::Structure
|
3148
3566
|
end
|
3149
3567
|
|
@@ -3178,6 +3596,7 @@ module Aws::IoT
|
|
3178
3596
|
:policy_name,
|
3179
3597
|
:policy_document,
|
3180
3598
|
:set_as_default)
|
3599
|
+
SENSITIVE = []
|
3181
3600
|
include Aws::Structure
|
3182
3601
|
end
|
3183
3602
|
|
@@ -3204,6 +3623,7 @@ module Aws::IoT
|
|
3204
3623
|
:policy_document,
|
3205
3624
|
:policy_version_id,
|
3206
3625
|
:is_default_version)
|
3626
|
+
SENSITIVE = []
|
3207
3627
|
include Aws::Structure
|
3208
3628
|
end
|
3209
3629
|
|
@@ -3220,6 +3640,7 @@ module Aws::IoT
|
|
3220
3640
|
#
|
3221
3641
|
class CreateProvisioningClaimRequest < Struct.new(
|
3222
3642
|
:template_name)
|
3643
|
+
SENSITIVE = []
|
3223
3644
|
include Aws::Structure
|
3224
3645
|
end
|
3225
3646
|
|
@@ -3244,6 +3665,7 @@ module Aws::IoT
|
|
3244
3665
|
:certificate_pem,
|
3245
3666
|
:key_pair,
|
3246
3667
|
:expiration)
|
3668
|
+
SENSITIVE = []
|
3247
3669
|
include Aws::Structure
|
3248
3670
|
end
|
3249
3671
|
|
@@ -3317,6 +3739,7 @@ module Aws::IoT
|
|
3317
3739
|
:provisioning_role_arn,
|
3318
3740
|
:pre_provisioning_hook,
|
3319
3741
|
:tags)
|
3742
|
+
SENSITIVE = []
|
3320
3743
|
include Aws::Structure
|
3321
3744
|
end
|
3322
3745
|
|
@@ -3336,6 +3759,7 @@ module Aws::IoT
|
|
3336
3759
|
:template_arn,
|
3337
3760
|
:template_name,
|
3338
3761
|
:default_version_id)
|
3762
|
+
SENSITIVE = []
|
3339
3763
|
include Aws::Structure
|
3340
3764
|
end
|
3341
3765
|
|
@@ -3364,6 +3788,7 @@ module Aws::IoT
|
|
3364
3788
|
:template_name,
|
3365
3789
|
:template_body,
|
3366
3790
|
:set_as_default)
|
3791
|
+
SENSITIVE = []
|
3367
3792
|
include Aws::Structure
|
3368
3793
|
end
|
3369
3794
|
|
@@ -3389,6 +3814,7 @@ module Aws::IoT
|
|
3389
3814
|
:template_name,
|
3390
3815
|
:version_id,
|
3391
3816
|
:is_default_version)
|
3817
|
+
SENSITIVE = []
|
3392
3818
|
include Aws::Structure
|
3393
3819
|
end
|
3394
3820
|
|
@@ -3440,6 +3866,7 @@ module Aws::IoT
|
|
3440
3866
|
:role_arn,
|
3441
3867
|
:credential_duration_seconds,
|
3442
3868
|
:tags)
|
3869
|
+
SENSITIVE = []
|
3443
3870
|
include Aws::Structure
|
3444
3871
|
end
|
3445
3872
|
|
@@ -3454,6 +3881,7 @@ module Aws::IoT
|
|
3454
3881
|
class CreateRoleAliasResponse < Struct.new(
|
3455
3882
|
:role_alias,
|
3456
3883
|
:role_alias_arn)
|
3884
|
+
SENSITIVE = []
|
3457
3885
|
include Aws::Structure
|
3458
3886
|
end
|
3459
3887
|
|
@@ -3519,6 +3947,7 @@ module Aws::IoT
|
|
3519
3947
|
:target_check_names,
|
3520
3948
|
:scheduled_audit_name,
|
3521
3949
|
:tags)
|
3950
|
+
SENSITIVE = []
|
3522
3951
|
include Aws::Structure
|
3523
3952
|
end
|
3524
3953
|
|
@@ -3528,6 +3957,7 @@ module Aws::IoT
|
|
3528
3957
|
#
|
3529
3958
|
class CreateScheduledAuditResponse < Struct.new(
|
3530
3959
|
:scheduled_audit_arn)
|
3960
|
+
SENSITIVE = []
|
3531
3961
|
include Aws::Structure
|
3532
3962
|
end
|
3533
3963
|
|
@@ -3631,6 +4061,7 @@ module Aws::IoT
|
|
3631
4061
|
:additional_metrics_to_retain,
|
3632
4062
|
:additional_metrics_to_retain_v2,
|
3633
4063
|
:tags)
|
4064
|
+
SENSITIVE = []
|
3634
4065
|
include Aws::Structure
|
3635
4066
|
end
|
3636
4067
|
|
@@ -3645,6 +4076,7 @@ module Aws::IoT
|
|
3645
4076
|
class CreateSecurityProfileResponse < Struct.new(
|
3646
4077
|
:security_profile_name,
|
3647
4078
|
:security_profile_arn)
|
4079
|
+
SENSITIVE = []
|
3648
4080
|
include Aws::Structure
|
3649
4081
|
end
|
3650
4082
|
|
@@ -3700,6 +4132,7 @@ module Aws::IoT
|
|
3700
4132
|
:files,
|
3701
4133
|
:role_arn,
|
3702
4134
|
:tags)
|
4135
|
+
SENSITIVE = []
|
3703
4136
|
include Aws::Structure
|
3704
4137
|
end
|
3705
4138
|
|
@@ -3724,6 +4157,7 @@ module Aws::IoT
|
|
3724
4157
|
:stream_arn,
|
3725
4158
|
:description,
|
3726
4159
|
:stream_version)
|
4160
|
+
SENSITIVE = []
|
3727
4161
|
include Aws::Structure
|
3728
4162
|
end
|
3729
4163
|
|
@@ -3771,6 +4205,7 @@ module Aws::IoT
|
|
3771
4205
|
:parent_group_name,
|
3772
4206
|
:thing_group_properties,
|
3773
4207
|
:tags)
|
4208
|
+
SENSITIVE = []
|
3774
4209
|
include Aws::Structure
|
3775
4210
|
end
|
3776
4211
|
|
@@ -3790,6 +4225,7 @@ module Aws::IoT
|
|
3790
4225
|
:thing_group_name,
|
3791
4226
|
:thing_group_arn,
|
3792
4227
|
:thing_group_id)
|
4228
|
+
SENSITIVE = []
|
3793
4229
|
include Aws::Structure
|
3794
4230
|
end
|
3795
4231
|
|
@@ -3838,6 +4274,7 @@ module Aws::IoT
|
|
3838
4274
|
:thing_type_name,
|
3839
4275
|
:attribute_payload,
|
3840
4276
|
:billing_group_name)
|
4277
|
+
SENSITIVE = []
|
3841
4278
|
include Aws::Structure
|
3842
4279
|
end
|
3843
4280
|
|
@@ -3859,6 +4296,7 @@ module Aws::IoT
|
|
3859
4296
|
:thing_name,
|
3860
4297
|
:thing_arn,
|
3861
4298
|
:thing_id)
|
4299
|
+
SENSITIVE = []
|
3862
4300
|
include Aws::Structure
|
3863
4301
|
end
|
3864
4302
|
|
@@ -3899,6 +4337,7 @@ module Aws::IoT
|
|
3899
4337
|
:thing_type_name,
|
3900
4338
|
:thing_type_properties,
|
3901
4339
|
:tags)
|
4340
|
+
SENSITIVE = []
|
3902
4341
|
include Aws::Structure
|
3903
4342
|
end
|
3904
4343
|
|
@@ -3920,6 +4359,7 @@ module Aws::IoT
|
|
3920
4359
|
:thing_type_name,
|
3921
4360
|
:thing_type_arn,
|
3922
4361
|
:thing_type_id)
|
4362
|
+
SENSITIVE = []
|
3923
4363
|
include Aws::Structure
|
3924
4364
|
end
|
3925
4365
|
|
@@ -3940,6 +4380,7 @@ module Aws::IoT
|
|
3940
4380
|
#
|
3941
4381
|
class CreateTopicRuleDestinationRequest < Struct.new(
|
3942
4382
|
:destination_configuration)
|
4383
|
+
SENSITIVE = []
|
3943
4384
|
include Aws::Structure
|
3944
4385
|
end
|
3945
4386
|
|
@@ -3949,6 +4390,7 @@ module Aws::IoT
|
|
3949
4390
|
#
|
3950
4391
|
class CreateTopicRuleDestinationResponse < Struct.new(
|
3951
4392
|
:topic_rule_destination)
|
4393
|
+
SENSITIVE = []
|
3952
4394
|
include Aws::Structure
|
3953
4395
|
end
|
3954
4396
|
|
@@ -4279,6 +4721,7 @@ module Aws::IoT
|
|
4279
4721
|
:rule_name,
|
4280
4722
|
:topic_rule_payload,
|
4281
4723
|
:tags)
|
4724
|
+
SENSITIVE = []
|
4282
4725
|
include Aws::Structure
|
4283
4726
|
end
|
4284
4727
|
|
@@ -4320,6 +4763,7 @@ module Aws::IoT
|
|
4320
4763
|
:certificate_chain,
|
4321
4764
|
:hash_algorithm,
|
4322
4765
|
:signature_algorithm)
|
4766
|
+
SENSITIVE = []
|
4323
4767
|
include Aws::Structure
|
4324
4768
|
end
|
4325
4769
|
|
@@ -4336,11 +4780,53 @@ module Aws::IoT
|
|
4336
4780
|
#
|
4337
4781
|
class DeleteAccountAuditConfigurationRequest < Struct.new(
|
4338
4782
|
:delete_scheduled_audits)
|
4783
|
+
SENSITIVE = []
|
4339
4784
|
include Aws::Structure
|
4340
4785
|
end
|
4341
4786
|
|
4342
4787
|
class DeleteAccountAuditConfigurationResponse < Aws::EmptyStructure; end
|
4343
4788
|
|
4789
|
+
# @note When making an API call, you may pass DeleteAuditSuppressionRequest
|
4790
|
+
# data as a hash:
|
4791
|
+
#
|
4792
|
+
# {
|
4793
|
+
# check_name: "AuditCheckName", # required
|
4794
|
+
# resource_identifier: { # required
|
4795
|
+
# device_certificate_id: "CertificateId",
|
4796
|
+
# ca_certificate_id: "CertificateId",
|
4797
|
+
# cognito_identity_pool_id: "CognitoIdentityPoolId",
|
4798
|
+
# client_id: "ClientId",
|
4799
|
+
# policy_version_identifier: {
|
4800
|
+
# policy_name: "PolicyName",
|
4801
|
+
# policy_version_id: "PolicyVersionId",
|
4802
|
+
# },
|
4803
|
+
# account: "AwsAccountId",
|
4804
|
+
# iam_role_arn: "RoleArn",
|
4805
|
+
# role_alias_arn: "RoleAliasArn",
|
4806
|
+
# },
|
4807
|
+
# }
|
4808
|
+
#
|
4809
|
+
# @!attribute [rw] check_name
|
4810
|
+
# An audit check name. Checks must be enabled for your account. (Use
|
4811
|
+
# `DescribeAccountAuditConfiguration` to see the list of all checks,
|
4812
|
+
# including those that are enabled or use
|
4813
|
+
# `UpdateAccountAuditConfiguration` to select which checks are
|
4814
|
+
# enabled.)
|
4815
|
+
# @return [String]
|
4816
|
+
#
|
4817
|
+
# @!attribute [rw] resource_identifier
|
4818
|
+
# Information that identifies the noncompliant resource.
|
4819
|
+
# @return [Types::ResourceIdentifier]
|
4820
|
+
#
|
4821
|
+
class DeleteAuditSuppressionRequest < Struct.new(
|
4822
|
+
:check_name,
|
4823
|
+
:resource_identifier)
|
4824
|
+
SENSITIVE = []
|
4825
|
+
include Aws::Structure
|
4826
|
+
end
|
4827
|
+
|
4828
|
+
class DeleteAuditSuppressionResponse < Aws::EmptyStructure; end
|
4829
|
+
|
4344
4830
|
# @note When making an API call, you may pass DeleteAuthorizerRequest
|
4345
4831
|
# data as a hash:
|
4346
4832
|
#
|
@@ -4354,6 +4840,7 @@ module Aws::IoT
|
|
4354
4840
|
#
|
4355
4841
|
class DeleteAuthorizerRequest < Struct.new(
|
4356
4842
|
:authorizer_name)
|
4843
|
+
SENSITIVE = []
|
4357
4844
|
include Aws::Structure
|
4358
4845
|
end
|
4359
4846
|
|
@@ -4381,6 +4868,7 @@ module Aws::IoT
|
|
4381
4868
|
class DeleteBillingGroupRequest < Struct.new(
|
4382
4869
|
:billing_group_name,
|
4383
4870
|
:expected_version)
|
4871
|
+
SENSITIVE = []
|
4384
4872
|
include Aws::Structure
|
4385
4873
|
end
|
4386
4874
|
|
@@ -4402,6 +4890,7 @@ module Aws::IoT
|
|
4402
4890
|
#
|
4403
4891
|
class DeleteCACertificateRequest < Struct.new(
|
4404
4892
|
:certificate_id)
|
4893
|
+
SENSITIVE = []
|
4405
4894
|
include Aws::Structure
|
4406
4895
|
end
|
4407
4896
|
|
@@ -4432,6 +4921,7 @@ module Aws::IoT
|
|
4432
4921
|
class DeleteCertificateRequest < Struct.new(
|
4433
4922
|
:certificate_id,
|
4434
4923
|
:force_delete)
|
4924
|
+
SENSITIVE = []
|
4435
4925
|
include Aws::Structure
|
4436
4926
|
end
|
4437
4927
|
|
@@ -4444,6 +4934,7 @@ module Aws::IoT
|
|
4444
4934
|
#
|
4445
4935
|
class DeleteConflictException < Struct.new(
|
4446
4936
|
:message)
|
4937
|
+
SENSITIVE = []
|
4447
4938
|
include Aws::Structure
|
4448
4939
|
end
|
4449
4940
|
|
@@ -4460,6 +4951,7 @@ module Aws::IoT
|
|
4460
4951
|
#
|
4461
4952
|
class DeleteDimensionRequest < Struct.new(
|
4462
4953
|
:name)
|
4954
|
+
SENSITIVE = []
|
4463
4955
|
include Aws::Structure
|
4464
4956
|
end
|
4465
4957
|
|
@@ -4478,6 +4970,7 @@ module Aws::IoT
|
|
4478
4970
|
#
|
4479
4971
|
class DeleteDomainConfigurationRequest < Struct.new(
|
4480
4972
|
:domain_configuration_name)
|
4973
|
+
SENSITIVE = []
|
4481
4974
|
include Aws::Structure
|
4482
4975
|
end
|
4483
4976
|
|
@@ -4502,6 +4995,7 @@ module Aws::IoT
|
|
4502
4995
|
class DeleteDynamicThingGroupRequest < Struct.new(
|
4503
4996
|
:thing_group_name,
|
4504
4997
|
:expected_version)
|
4998
|
+
SENSITIVE = []
|
4505
4999
|
include Aws::Structure
|
4506
5000
|
end
|
4507
5001
|
|
@@ -4554,6 +5048,7 @@ module Aws::IoT
|
|
4554
5048
|
:thing_name,
|
4555
5049
|
:execution_number,
|
4556
5050
|
:force)
|
5051
|
+
SENSITIVE = []
|
4557
5052
|
include Aws::Structure
|
4558
5053
|
end
|
4559
5054
|
|
@@ -4592,6 +5087,7 @@ module Aws::IoT
|
|
4592
5087
|
class DeleteJobRequest < Struct.new(
|
4593
5088
|
:job_id,
|
4594
5089
|
:force)
|
5090
|
+
SENSITIVE = []
|
4595
5091
|
include Aws::Structure
|
4596
5092
|
end
|
4597
5093
|
|
@@ -4608,6 +5104,7 @@ module Aws::IoT
|
|
4608
5104
|
#
|
4609
5105
|
class DeleteMitigationActionRequest < Struct.new(
|
4610
5106
|
:action_name)
|
5107
|
+
SENSITIVE = []
|
4611
5108
|
include Aws::Structure
|
4612
5109
|
end
|
4613
5110
|
|
@@ -4623,7 +5120,7 @@ module Aws::IoT
|
|
4623
5120
|
# }
|
4624
5121
|
#
|
4625
5122
|
# @!attribute [rw] ota_update_id
|
4626
|
-
# The OTA update
|
5123
|
+
# The ID of the OTA update to delete.
|
4627
5124
|
# @return [String]
|
4628
5125
|
#
|
4629
5126
|
# @!attribute [rw] delete_stream
|
@@ -4633,13 +5130,14 @@ module Aws::IoT
|
|
4633
5130
|
#
|
4634
5131
|
# @!attribute [rw] force_delete_aws_job
|
4635
5132
|
# Specifies if the AWS Job associated with the OTA update should be
|
4636
|
-
# deleted
|
5133
|
+
# deleted when the OTA update is deleted.
|
4637
5134
|
# @return [Boolean]
|
4638
5135
|
#
|
4639
5136
|
class DeleteOTAUpdateRequest < Struct.new(
|
4640
5137
|
:ota_update_id,
|
4641
5138
|
:delete_stream,
|
4642
5139
|
:force_delete_aws_job)
|
5140
|
+
SENSITIVE = []
|
4643
5141
|
include Aws::Structure
|
4644
5142
|
end
|
4645
5143
|
|
@@ -4660,6 +5158,7 @@ module Aws::IoT
|
|
4660
5158
|
#
|
4661
5159
|
class DeletePolicyRequest < Struct.new(
|
4662
5160
|
:policy_name)
|
5161
|
+
SENSITIVE = []
|
4663
5162
|
include Aws::Structure
|
4664
5163
|
end
|
4665
5164
|
|
@@ -4684,6 +5183,7 @@ module Aws::IoT
|
|
4684
5183
|
class DeletePolicyVersionRequest < Struct.new(
|
4685
5184
|
:policy_name,
|
4686
5185
|
:policy_version_id)
|
5186
|
+
SENSITIVE = []
|
4687
5187
|
include Aws::Structure
|
4688
5188
|
end
|
4689
5189
|
|
@@ -4700,6 +5200,7 @@ module Aws::IoT
|
|
4700
5200
|
#
|
4701
5201
|
class DeleteProvisioningTemplateRequest < Struct.new(
|
4702
5202
|
:template_name)
|
5203
|
+
SENSITIVE = []
|
4703
5204
|
include Aws::Structure
|
4704
5205
|
end
|
4705
5206
|
|
@@ -4724,6 +5225,7 @@ module Aws::IoT
|
|
4724
5225
|
class DeleteProvisioningTemplateVersionRequest < Struct.new(
|
4725
5226
|
:template_name,
|
4726
5227
|
:version_id)
|
5228
|
+
SENSITIVE = []
|
4727
5229
|
include Aws::Structure
|
4728
5230
|
end
|
4729
5231
|
|
@@ -4752,6 +5254,7 @@ module Aws::IoT
|
|
4752
5254
|
#
|
4753
5255
|
class DeleteRoleAliasRequest < Struct.new(
|
4754
5256
|
:role_alias)
|
5257
|
+
SENSITIVE = []
|
4755
5258
|
include Aws::Structure
|
4756
5259
|
end
|
4757
5260
|
|
@@ -4770,6 +5273,7 @@ module Aws::IoT
|
|
4770
5273
|
#
|
4771
5274
|
class DeleteScheduledAuditRequest < Struct.new(
|
4772
5275
|
:scheduled_audit_name)
|
5276
|
+
SENSITIVE = []
|
4773
5277
|
include Aws::Structure
|
4774
5278
|
end
|
4775
5279
|
|
@@ -4797,6 +5301,7 @@ module Aws::IoT
|
|
4797
5301
|
class DeleteSecurityProfileRequest < Struct.new(
|
4798
5302
|
:security_profile_name,
|
4799
5303
|
:expected_version)
|
5304
|
+
SENSITIVE = []
|
4800
5305
|
include Aws::Structure
|
4801
5306
|
end
|
4802
5307
|
|
@@ -4815,6 +5320,7 @@ module Aws::IoT
|
|
4815
5320
|
#
|
4816
5321
|
class DeleteStreamRequest < Struct.new(
|
4817
5322
|
:stream_id)
|
5323
|
+
SENSITIVE = []
|
4818
5324
|
include Aws::Structure
|
4819
5325
|
end
|
4820
5326
|
|
@@ -4839,6 +5345,7 @@ module Aws::IoT
|
|
4839
5345
|
class DeleteThingGroupRequest < Struct.new(
|
4840
5346
|
:thing_group_name,
|
4841
5347
|
:expected_version)
|
5348
|
+
SENSITIVE = []
|
4842
5349
|
include Aws::Structure
|
4843
5350
|
end
|
4844
5351
|
|
@@ -4868,6 +5375,7 @@ module Aws::IoT
|
|
4868
5375
|
class DeleteThingRequest < Struct.new(
|
4869
5376
|
:thing_name,
|
4870
5377
|
:expected_version)
|
5378
|
+
SENSITIVE = []
|
4871
5379
|
include Aws::Structure
|
4872
5380
|
end
|
4873
5381
|
|
@@ -4890,6 +5398,7 @@ module Aws::IoT
|
|
4890
5398
|
#
|
4891
5399
|
class DeleteThingTypeRequest < Struct.new(
|
4892
5400
|
:thing_type_name)
|
5401
|
+
SENSITIVE = []
|
4893
5402
|
include Aws::Structure
|
4894
5403
|
end
|
4895
5404
|
|
@@ -4910,6 +5419,7 @@ module Aws::IoT
|
|
4910
5419
|
#
|
4911
5420
|
class DeleteTopicRuleDestinationRequest < Struct.new(
|
4912
5421
|
:arn)
|
5422
|
+
SENSITIVE = []
|
4913
5423
|
include Aws::Structure
|
4914
5424
|
end
|
4915
5425
|
|
@@ -4930,6 +5440,7 @@ module Aws::IoT
|
|
4930
5440
|
#
|
4931
5441
|
class DeleteTopicRuleRequest < Struct.new(
|
4932
5442
|
:rule_name)
|
5443
|
+
SENSITIVE = []
|
4933
5444
|
include Aws::Structure
|
4934
5445
|
end
|
4935
5446
|
|
@@ -4953,6 +5464,7 @@ module Aws::IoT
|
|
4953
5464
|
class DeleteV2LoggingLevelRequest < Struct.new(
|
4954
5465
|
:target_type,
|
4955
5466
|
:target_name)
|
5467
|
+
SENSITIVE = []
|
4956
5468
|
include Aws::Structure
|
4957
5469
|
end
|
4958
5470
|
|
@@ -4971,6 +5483,7 @@ module Aws::IoT
|
|
4971
5483
|
class Denied < Struct.new(
|
4972
5484
|
:implicit_deny,
|
4973
5485
|
:explicit_deny)
|
5486
|
+
SENSITIVE = []
|
4974
5487
|
include Aws::Structure
|
4975
5488
|
end
|
4976
5489
|
|
@@ -4997,6 +5510,7 @@ module Aws::IoT
|
|
4997
5510
|
class DeprecateThingTypeRequest < Struct.new(
|
4998
5511
|
:thing_type_name,
|
4999
5512
|
:undo_deprecate)
|
5513
|
+
SENSITIVE = []
|
5000
5514
|
include Aws::Structure
|
5001
5515
|
end
|
5002
5516
|
|
@@ -5030,6 +5544,7 @@ module Aws::IoT
|
|
5030
5544
|
:role_arn,
|
5031
5545
|
:audit_notification_target_configurations,
|
5032
5546
|
:audit_check_configurations)
|
5547
|
+
SENSITIVE = []
|
5033
5548
|
include Aws::Structure
|
5034
5549
|
end
|
5035
5550
|
|
@@ -5047,6 +5562,7 @@ module Aws::IoT
|
|
5047
5562
|
#
|
5048
5563
|
class DescribeAuditFindingRequest < Struct.new(
|
5049
5564
|
:finding_id)
|
5565
|
+
SENSITIVE = []
|
5050
5566
|
include Aws::Structure
|
5051
5567
|
end
|
5052
5568
|
|
@@ -5056,6 +5572,7 @@ module Aws::IoT
|
|
5056
5572
|
#
|
5057
5573
|
class DescribeAuditFindingResponse < Struct.new(
|
5058
5574
|
:finding)
|
5575
|
+
SENSITIVE = []
|
5059
5576
|
include Aws::Structure
|
5060
5577
|
end
|
5061
5578
|
|
@@ -5072,6 +5589,7 @@ module Aws::IoT
|
|
5072
5589
|
#
|
5073
5590
|
class DescribeAuditMitigationActionsTaskRequest < Struct.new(
|
5074
5591
|
:task_id)
|
5592
|
+
SENSITIVE = []
|
5075
5593
|
include Aws::Structure
|
5076
5594
|
end
|
5077
5595
|
|
@@ -5115,6 +5633,80 @@ module Aws::IoT
|
|
5115
5633
|
:target,
|
5116
5634
|
:audit_check_to_actions_mapping,
|
5117
5635
|
:actions_definition)
|
5636
|
+
SENSITIVE = []
|
5637
|
+
include Aws::Structure
|
5638
|
+
end
|
5639
|
+
|
5640
|
+
# @note When making an API call, you may pass DescribeAuditSuppressionRequest
|
5641
|
+
# data as a hash:
|
5642
|
+
#
|
5643
|
+
# {
|
5644
|
+
# check_name: "AuditCheckName", # required
|
5645
|
+
# resource_identifier: { # required
|
5646
|
+
# device_certificate_id: "CertificateId",
|
5647
|
+
# ca_certificate_id: "CertificateId",
|
5648
|
+
# cognito_identity_pool_id: "CognitoIdentityPoolId",
|
5649
|
+
# client_id: "ClientId",
|
5650
|
+
# policy_version_identifier: {
|
5651
|
+
# policy_name: "PolicyName",
|
5652
|
+
# policy_version_id: "PolicyVersionId",
|
5653
|
+
# },
|
5654
|
+
# account: "AwsAccountId",
|
5655
|
+
# iam_role_arn: "RoleArn",
|
5656
|
+
# role_alias_arn: "RoleAliasArn",
|
5657
|
+
# },
|
5658
|
+
# }
|
5659
|
+
#
|
5660
|
+
# @!attribute [rw] check_name
|
5661
|
+
# An audit check name. Checks must be enabled for your account. (Use
|
5662
|
+
# `DescribeAccountAuditConfiguration` to see the list of all checks,
|
5663
|
+
# including those that are enabled or use
|
5664
|
+
# `UpdateAccountAuditConfiguration` to select which checks are
|
5665
|
+
# enabled.)
|
5666
|
+
# @return [String]
|
5667
|
+
#
|
5668
|
+
# @!attribute [rw] resource_identifier
|
5669
|
+
# Information that identifies the noncompliant resource.
|
5670
|
+
# @return [Types::ResourceIdentifier]
|
5671
|
+
#
|
5672
|
+
class DescribeAuditSuppressionRequest < Struct.new(
|
5673
|
+
:check_name,
|
5674
|
+
:resource_identifier)
|
5675
|
+
SENSITIVE = []
|
5676
|
+
include Aws::Structure
|
5677
|
+
end
|
5678
|
+
|
5679
|
+
# @!attribute [rw] check_name
|
5680
|
+
# An audit check name. Checks must be enabled for your account. (Use
|
5681
|
+
# `DescribeAccountAuditConfiguration` to see the list of all checks,
|
5682
|
+
# including those that are enabled or use
|
5683
|
+
# `UpdateAccountAuditConfiguration` to select which checks are
|
5684
|
+
# enabled.)
|
5685
|
+
# @return [String]
|
5686
|
+
#
|
5687
|
+
# @!attribute [rw] resource_identifier
|
5688
|
+
# Information that identifies the noncompliant resource.
|
5689
|
+
# @return [Types::ResourceIdentifier]
|
5690
|
+
#
|
5691
|
+
# @!attribute [rw] expiration_date
|
5692
|
+
# The epoch timestamp in seconds at which this suppression expires.
|
5693
|
+
# @return [Time]
|
5694
|
+
#
|
5695
|
+
# @!attribute [rw] suppress_indefinitely
|
5696
|
+
# Indicates whether a suppression should exist indefinitely or not.
|
5697
|
+
# @return [Boolean]
|
5698
|
+
#
|
5699
|
+
# @!attribute [rw] description
|
5700
|
+
# The description of the audit suppression.
|
5701
|
+
# @return [String]
|
5702
|
+
#
|
5703
|
+
class DescribeAuditSuppressionResponse < Struct.new(
|
5704
|
+
:check_name,
|
5705
|
+
:resource_identifier,
|
5706
|
+
:expiration_date,
|
5707
|
+
:suppress_indefinitely,
|
5708
|
+
:description)
|
5709
|
+
SENSITIVE = []
|
5118
5710
|
include Aws::Structure
|
5119
5711
|
end
|
5120
5712
|
|
@@ -5131,6 +5723,7 @@ module Aws::IoT
|
|
5131
5723
|
#
|
5132
5724
|
class DescribeAuditTaskRequest < Struct.new(
|
5133
5725
|
:task_id)
|
5726
|
+
SENSITIVE = []
|
5134
5727
|
include Aws::Structure
|
5135
5728
|
end
|
5136
5729
|
|
@@ -5168,6 +5761,7 @@ module Aws::IoT
|
|
5168
5761
|
:task_statistics,
|
5169
5762
|
:scheduled_audit_name,
|
5170
5763
|
:audit_details)
|
5764
|
+
SENSITIVE = []
|
5171
5765
|
include Aws::Structure
|
5172
5766
|
end
|
5173
5767
|
|
@@ -5184,6 +5778,7 @@ module Aws::IoT
|
|
5184
5778
|
#
|
5185
5779
|
class DescribeAuthorizerRequest < Struct.new(
|
5186
5780
|
:authorizer_name)
|
5781
|
+
SENSITIVE = []
|
5187
5782
|
include Aws::Structure
|
5188
5783
|
end
|
5189
5784
|
|
@@ -5193,6 +5788,7 @@ module Aws::IoT
|
|
5193
5788
|
#
|
5194
5789
|
class DescribeAuthorizerResponse < Struct.new(
|
5195
5790
|
:authorizer_description)
|
5791
|
+
SENSITIVE = []
|
5196
5792
|
include Aws::Structure
|
5197
5793
|
end
|
5198
5794
|
|
@@ -5209,6 +5805,7 @@ module Aws::IoT
|
|
5209
5805
|
#
|
5210
5806
|
class DescribeBillingGroupRequest < Struct.new(
|
5211
5807
|
:billing_group_name)
|
5808
|
+
SENSITIVE = []
|
5212
5809
|
include Aws::Structure
|
5213
5810
|
end
|
5214
5811
|
|
@@ -5243,6 +5840,7 @@ module Aws::IoT
|
|
5243
5840
|
:version,
|
5244
5841
|
:billing_group_properties,
|
5245
5842
|
:billing_group_metadata)
|
5843
|
+
SENSITIVE = []
|
5246
5844
|
include Aws::Structure
|
5247
5845
|
end
|
5248
5846
|
|
@@ -5261,6 +5859,7 @@ module Aws::IoT
|
|
5261
5859
|
#
|
5262
5860
|
class DescribeCACertificateRequest < Struct.new(
|
5263
5861
|
:certificate_id)
|
5862
|
+
SENSITIVE = []
|
5264
5863
|
include Aws::Structure
|
5265
5864
|
end
|
5266
5865
|
|
@@ -5277,6 +5876,7 @@ module Aws::IoT
|
|
5277
5876
|
class DescribeCACertificateResponse < Struct.new(
|
5278
5877
|
:certificate_description,
|
5279
5878
|
:registration_config)
|
5879
|
+
SENSITIVE = []
|
5280
5880
|
include Aws::Structure
|
5281
5881
|
end
|
5282
5882
|
|
@@ -5296,6 +5896,7 @@ module Aws::IoT
|
|
5296
5896
|
#
|
5297
5897
|
class DescribeCertificateRequest < Struct.new(
|
5298
5898
|
:certificate_id)
|
5899
|
+
SENSITIVE = []
|
5299
5900
|
include Aws::Structure
|
5300
5901
|
end
|
5301
5902
|
|
@@ -5307,6 +5908,7 @@ module Aws::IoT
|
|
5307
5908
|
#
|
5308
5909
|
class DescribeCertificateResponse < Struct.new(
|
5309
5910
|
:certificate_description)
|
5911
|
+
SENSITIVE = []
|
5310
5912
|
include Aws::Structure
|
5311
5913
|
end
|
5312
5914
|
|
@@ -5320,6 +5922,7 @@ module Aws::IoT
|
|
5320
5922
|
#
|
5321
5923
|
class DescribeDefaultAuthorizerResponse < Struct.new(
|
5322
5924
|
:authorizer_description)
|
5925
|
+
SENSITIVE = []
|
5323
5926
|
include Aws::Structure
|
5324
5927
|
end
|
5325
5928
|
|
@@ -5336,6 +5939,7 @@ module Aws::IoT
|
|
5336
5939
|
#
|
5337
5940
|
class DescribeDimensionRequest < Struct.new(
|
5338
5941
|
:name)
|
5942
|
+
SENSITIVE = []
|
5339
5943
|
include Aws::Structure
|
5340
5944
|
end
|
5341
5945
|
|
@@ -5372,6 +5976,7 @@ module Aws::IoT
|
|
5372
5976
|
:string_values,
|
5373
5977
|
:creation_date,
|
5374
5978
|
:last_modified_date)
|
5979
|
+
SENSITIVE = []
|
5375
5980
|
include Aws::Structure
|
5376
5981
|
end
|
5377
5982
|
|
@@ -5388,6 +5993,7 @@ module Aws::IoT
|
|
5388
5993
|
#
|
5389
5994
|
class DescribeDomainConfigurationRequest < Struct.new(
|
5390
5995
|
:domain_configuration_name)
|
5996
|
+
SENSITIVE = []
|
5391
5997
|
include Aws::Structure
|
5392
5998
|
end
|
5393
5999
|
|
@@ -5434,6 +6040,7 @@ module Aws::IoT
|
|
5434
6040
|
:domain_configuration_status,
|
5435
6041
|
:service_type,
|
5436
6042
|
:domain_type)
|
6043
|
+
SENSITIVE = []
|
5437
6044
|
include Aws::Structure
|
5438
6045
|
end
|
5439
6046
|
|
@@ -5477,6 +6084,7 @@ module Aws::IoT
|
|
5477
6084
|
#
|
5478
6085
|
class DescribeEndpointRequest < Struct.new(
|
5479
6086
|
:endpoint_type)
|
6087
|
+
SENSITIVE = []
|
5480
6088
|
include Aws::Structure
|
5481
6089
|
end
|
5482
6090
|
|
@@ -5489,6 +6097,7 @@ module Aws::IoT
|
|
5489
6097
|
#
|
5490
6098
|
class DescribeEndpointResponse < Struct.new(
|
5491
6099
|
:endpoint_address)
|
6100
|
+
SENSITIVE = []
|
5492
6101
|
include Aws::Structure
|
5493
6102
|
end
|
5494
6103
|
|
@@ -5512,6 +6121,7 @@ module Aws::IoT
|
|
5512
6121
|
:event_configurations,
|
5513
6122
|
:creation_date,
|
5514
6123
|
:last_modified_date)
|
6124
|
+
SENSITIVE = []
|
5515
6125
|
include Aws::Structure
|
5516
6126
|
end
|
5517
6127
|
|
@@ -5528,6 +6138,7 @@ module Aws::IoT
|
|
5528
6138
|
#
|
5529
6139
|
class DescribeIndexRequest < Struct.new(
|
5530
6140
|
:index_name)
|
6141
|
+
SENSITIVE = []
|
5531
6142
|
include Aws::Structure
|
5532
6143
|
end
|
5533
6144
|
|
@@ -5560,6 +6171,7 @@ module Aws::IoT
|
|
5560
6171
|
:index_name,
|
5561
6172
|
:index_status,
|
5562
6173
|
:schema)
|
6174
|
+
SENSITIVE = []
|
5563
6175
|
include Aws::Structure
|
5564
6176
|
end
|
5565
6177
|
|
@@ -5589,6 +6201,7 @@ module Aws::IoT
|
|
5589
6201
|
:job_id,
|
5590
6202
|
:thing_name,
|
5591
6203
|
:execution_number)
|
6204
|
+
SENSITIVE = []
|
5592
6205
|
include Aws::Structure
|
5593
6206
|
end
|
5594
6207
|
|
@@ -5598,6 +6211,7 @@ module Aws::IoT
|
|
5598
6211
|
#
|
5599
6212
|
class DescribeJobExecutionResponse < Struct.new(
|
5600
6213
|
:execution)
|
6214
|
+
SENSITIVE = []
|
5601
6215
|
include Aws::Structure
|
5602
6216
|
end
|
5603
6217
|
|
@@ -5614,6 +6228,7 @@ module Aws::IoT
|
|
5614
6228
|
#
|
5615
6229
|
class DescribeJobRequest < Struct.new(
|
5616
6230
|
:job_id)
|
6231
|
+
SENSITIVE = []
|
5617
6232
|
include Aws::Structure
|
5618
6233
|
end
|
5619
6234
|
|
@@ -5628,6 +6243,7 @@ module Aws::IoT
|
|
5628
6243
|
class DescribeJobResponse < Struct.new(
|
5629
6244
|
:document_source,
|
5630
6245
|
:job)
|
6246
|
+
SENSITIVE = []
|
5631
6247
|
include Aws::Structure
|
5632
6248
|
end
|
5633
6249
|
|
@@ -5644,6 +6260,7 @@ module Aws::IoT
|
|
5644
6260
|
#
|
5645
6261
|
class DescribeMitigationActionRequest < Struct.new(
|
5646
6262
|
:action_name)
|
6263
|
+
SENSITIVE = []
|
5647
6264
|
include Aws::Structure
|
5648
6265
|
end
|
5649
6266
|
|
@@ -5690,6 +6307,7 @@ module Aws::IoT
|
|
5690
6307
|
:action_params,
|
5691
6308
|
:creation_date,
|
5692
6309
|
:last_modified_date)
|
6310
|
+
SENSITIVE = []
|
5693
6311
|
include Aws::Structure
|
5694
6312
|
end
|
5695
6313
|
|
@@ -5706,6 +6324,7 @@ module Aws::IoT
|
|
5706
6324
|
#
|
5707
6325
|
class DescribeProvisioningTemplateRequest < Struct.new(
|
5708
6326
|
:template_name)
|
6327
|
+
SENSITIVE = []
|
5709
6328
|
include Aws::Structure
|
5710
6329
|
end
|
5711
6330
|
|
@@ -5761,6 +6380,7 @@ module Aws::IoT
|
|
5761
6380
|
:enabled,
|
5762
6381
|
:provisioning_role_arn,
|
5763
6382
|
:pre_provisioning_hook)
|
6383
|
+
SENSITIVE = []
|
5764
6384
|
include Aws::Structure
|
5765
6385
|
end
|
5766
6386
|
|
@@ -5783,6 +6403,7 @@ module Aws::IoT
|
|
5783
6403
|
class DescribeProvisioningTemplateVersionRequest < Struct.new(
|
5784
6404
|
:template_name,
|
5785
6405
|
:version_id)
|
6406
|
+
SENSITIVE = []
|
5786
6407
|
include Aws::Structure
|
5787
6408
|
end
|
5788
6409
|
|
@@ -5809,6 +6430,7 @@ module Aws::IoT
|
|
5809
6430
|
:creation_date,
|
5810
6431
|
:template_body,
|
5811
6432
|
:is_default_version)
|
6433
|
+
SENSITIVE = []
|
5812
6434
|
include Aws::Structure
|
5813
6435
|
end
|
5814
6436
|
|
@@ -5825,6 +6447,7 @@ module Aws::IoT
|
|
5825
6447
|
#
|
5826
6448
|
class DescribeRoleAliasRequest < Struct.new(
|
5827
6449
|
:role_alias)
|
6450
|
+
SENSITIVE = []
|
5828
6451
|
include Aws::Structure
|
5829
6452
|
end
|
5830
6453
|
|
@@ -5834,6 +6457,7 @@ module Aws::IoT
|
|
5834
6457
|
#
|
5835
6458
|
class DescribeRoleAliasResponse < Struct.new(
|
5836
6459
|
:role_alias_description)
|
6460
|
+
SENSITIVE = []
|
5837
6461
|
include Aws::Structure
|
5838
6462
|
end
|
5839
6463
|
|
@@ -5850,6 +6474,7 @@ module Aws::IoT
|
|
5850
6474
|
#
|
5851
6475
|
class DescribeScheduledAuditRequest < Struct.new(
|
5852
6476
|
:scheduled_audit_name)
|
6477
|
+
SENSITIVE = []
|
5853
6478
|
include Aws::Structure
|
5854
6479
|
end
|
5855
6480
|
|
@@ -5895,6 +6520,7 @@ module Aws::IoT
|
|
5895
6520
|
:target_check_names,
|
5896
6521
|
:scheduled_audit_name,
|
5897
6522
|
:scheduled_audit_arn)
|
6523
|
+
SENSITIVE = []
|
5898
6524
|
include Aws::Structure
|
5899
6525
|
end
|
5900
6526
|
|
@@ -5911,6 +6537,7 @@ module Aws::IoT
|
|
5911
6537
|
#
|
5912
6538
|
class DescribeSecurityProfileRequest < Struct.new(
|
5913
6539
|
:security_profile_name)
|
6540
|
+
SENSITIVE = []
|
5914
6541
|
include Aws::Structure
|
5915
6542
|
end
|
5916
6543
|
|
@@ -5975,6 +6602,7 @@ module Aws::IoT
|
|
5975
6602
|
:version,
|
5976
6603
|
:creation_date,
|
5977
6604
|
:last_modified_date)
|
6605
|
+
SENSITIVE = []
|
5978
6606
|
include Aws::Structure
|
5979
6607
|
end
|
5980
6608
|
|
@@ -5991,6 +6619,7 @@ module Aws::IoT
|
|
5991
6619
|
#
|
5992
6620
|
class DescribeStreamRequest < Struct.new(
|
5993
6621
|
:stream_id)
|
6622
|
+
SENSITIVE = []
|
5994
6623
|
include Aws::Structure
|
5995
6624
|
end
|
5996
6625
|
|
@@ -6000,6 +6629,7 @@ module Aws::IoT
|
|
6000
6629
|
#
|
6001
6630
|
class DescribeStreamResponse < Struct.new(
|
6002
6631
|
:stream_info)
|
6632
|
+
SENSITIVE = []
|
6003
6633
|
include Aws::Structure
|
6004
6634
|
end
|
6005
6635
|
|
@@ -6016,6 +6646,7 @@ module Aws::IoT
|
|
6016
6646
|
#
|
6017
6647
|
class DescribeThingGroupRequest < Struct.new(
|
6018
6648
|
:thing_group_name)
|
6649
|
+
SENSITIVE = []
|
6019
6650
|
include Aws::Structure
|
6020
6651
|
end
|
6021
6652
|
|
@@ -6070,6 +6701,7 @@ module Aws::IoT
|
|
6070
6701
|
:query_string,
|
6071
6702
|
:query_version,
|
6072
6703
|
:status)
|
6704
|
+
SENSITIVE = []
|
6073
6705
|
include Aws::Structure
|
6074
6706
|
end
|
6075
6707
|
|
@@ -6086,6 +6718,7 @@ module Aws::IoT
|
|
6086
6718
|
#
|
6087
6719
|
class DescribeThingRegistrationTaskRequest < Struct.new(
|
6088
6720
|
:task_id)
|
6721
|
+
SENSITIVE = []
|
6089
6722
|
include Aws::Structure
|
6090
6723
|
end
|
6091
6724
|
|
@@ -6151,6 +6784,7 @@ module Aws::IoT
|
|
6151
6784
|
:success_count,
|
6152
6785
|
:failure_count,
|
6153
6786
|
:percentage_progress)
|
6787
|
+
SENSITIVE = []
|
6154
6788
|
include Aws::Structure
|
6155
6789
|
end
|
6156
6790
|
|
@@ -6169,6 +6803,7 @@ module Aws::IoT
|
|
6169
6803
|
#
|
6170
6804
|
class DescribeThingRequest < Struct.new(
|
6171
6805
|
:thing_name)
|
6806
|
+
SENSITIVE = []
|
6172
6807
|
include Aws::Structure
|
6173
6808
|
end
|
6174
6809
|
|
@@ -6230,6 +6865,7 @@ module Aws::IoT
|
|
6230
6865
|
:attributes,
|
6231
6866
|
:version,
|
6232
6867
|
:billing_group_name)
|
6868
|
+
SENSITIVE = []
|
6233
6869
|
include Aws::Structure
|
6234
6870
|
end
|
6235
6871
|
|
@@ -6248,6 +6884,7 @@ module Aws::IoT
|
|
6248
6884
|
#
|
6249
6885
|
class DescribeThingTypeRequest < Struct.new(
|
6250
6886
|
:thing_type_name)
|
6887
|
+
SENSITIVE = []
|
6251
6888
|
include Aws::Structure
|
6252
6889
|
end
|
6253
6890
|
|
@@ -6284,6 +6921,7 @@ module Aws::IoT
|
|
6284
6921
|
:thing_type_arn,
|
6285
6922
|
:thing_type_properties,
|
6286
6923
|
:thing_type_metadata)
|
6924
|
+
SENSITIVE = []
|
6287
6925
|
include Aws::Structure
|
6288
6926
|
end
|
6289
6927
|
|
@@ -6305,6 +6943,7 @@ module Aws::IoT
|
|
6305
6943
|
#
|
6306
6944
|
class Destination < Struct.new(
|
6307
6945
|
:s3_destination)
|
6946
|
+
SENSITIVE = []
|
6308
6947
|
include Aws::Structure
|
6309
6948
|
end
|
6310
6949
|
|
@@ -6327,6 +6966,7 @@ module Aws::IoT
|
|
6327
6966
|
class DetachPolicyRequest < Struct.new(
|
6328
6967
|
:policy_name,
|
6329
6968
|
:target)
|
6969
|
+
SENSITIVE = []
|
6330
6970
|
include Aws::Structure
|
6331
6971
|
end
|
6332
6972
|
|
@@ -6347,14 +6987,17 @@ module Aws::IoT
|
|
6347
6987
|
# @!attribute [rw] principal
|
6348
6988
|
# The principal.
|
6349
6989
|
#
|
6350
|
-
#
|
6351
|
-
#
|
6352
|
-
#
|
6990
|
+
# Valid principals are CertificateArn
|
6991
|
+
# (arn:aws:iot:*region*\:*accountId*\:cert/*certificateId*),
|
6992
|
+
# thingGroupArn
|
6993
|
+
# (arn:aws:iot:*region*\:*accountId*\:thinggroup/*groupName*) and
|
6994
|
+
# CognitoId (*region*\:*id*).
|
6353
6995
|
# @return [String]
|
6354
6996
|
#
|
6355
6997
|
class DetachPrincipalPolicyRequest < Struct.new(
|
6356
6998
|
:policy_name,
|
6357
6999
|
:principal)
|
7000
|
+
SENSITIVE = []
|
6358
7001
|
include Aws::Structure
|
6359
7002
|
end
|
6360
7003
|
|
@@ -6378,6 +7021,7 @@ module Aws::IoT
|
|
6378
7021
|
class DetachSecurityProfileRequest < Struct.new(
|
6379
7022
|
:security_profile_name,
|
6380
7023
|
:security_profile_target_arn)
|
7024
|
+
SENSITIVE = []
|
6381
7025
|
include Aws::Structure
|
6382
7026
|
end
|
6383
7027
|
|
@@ -6406,6 +7050,7 @@ module Aws::IoT
|
|
6406
7050
|
class DetachThingPrincipalRequest < Struct.new(
|
6407
7051
|
:thing_name,
|
6408
7052
|
:principal)
|
7053
|
+
SENSITIVE = []
|
6409
7054
|
include Aws::Structure
|
6410
7055
|
end
|
6411
7056
|
|
@@ -6428,6 +7073,7 @@ module Aws::IoT
|
|
6428
7073
|
#
|
6429
7074
|
class DisableTopicRuleRequest < Struct.new(
|
6430
7075
|
:rule_name)
|
7076
|
+
SENSITIVE = []
|
6431
7077
|
include Aws::Structure
|
6432
7078
|
end
|
6433
7079
|
|
@@ -6465,6 +7111,7 @@ module Aws::IoT
|
|
6465
7111
|
:domain_configuration_name,
|
6466
7112
|
:domain_configuration_arn,
|
6467
7113
|
:service_type)
|
7114
|
+
SENSITIVE = []
|
6468
7115
|
include Aws::Structure
|
6469
7116
|
end
|
6470
7117
|
|
@@ -6556,6 +7203,7 @@ module Aws::IoT
|
|
6556
7203
|
:range_key_value,
|
6557
7204
|
:range_key_type,
|
6558
7205
|
:payload_field)
|
7206
|
+
SENSITIVE = []
|
6559
7207
|
include Aws::Structure
|
6560
7208
|
end
|
6561
7209
|
|
@@ -6592,6 +7240,7 @@ module Aws::IoT
|
|
6592
7240
|
class DynamoDBv2Action < Struct.new(
|
6593
7241
|
:role_arn,
|
6594
7242
|
:put_item)
|
7243
|
+
SENSITIVE = []
|
6595
7244
|
include Aws::Structure
|
6596
7245
|
end
|
6597
7246
|
|
@@ -6613,6 +7262,7 @@ module Aws::IoT
|
|
6613
7262
|
:policy_name,
|
6614
7263
|
:policy_arn,
|
6615
7264
|
:policy_document)
|
7265
|
+
SENSITIVE = []
|
6616
7266
|
include Aws::Structure
|
6617
7267
|
end
|
6618
7268
|
|
@@ -6656,6 +7306,7 @@ module Aws::IoT
|
|
6656
7306
|
:index,
|
6657
7307
|
:type,
|
6658
7308
|
:id)
|
7309
|
+
SENSITIVE = []
|
6659
7310
|
include Aws::Structure
|
6660
7311
|
end
|
6661
7312
|
|
@@ -6681,6 +7332,7 @@ module Aws::IoT
|
|
6681
7332
|
class EnableIoTLoggingParams < Struct.new(
|
6682
7333
|
:role_arn_for_logging,
|
6683
7334
|
:log_level)
|
7335
|
+
SENSITIVE = []
|
6684
7336
|
include Aws::Structure
|
6685
7337
|
end
|
6686
7338
|
|
@@ -6699,6 +7351,7 @@ module Aws::IoT
|
|
6699
7351
|
#
|
6700
7352
|
class EnableTopicRuleRequest < Struct.new(
|
6701
7353
|
:rule_name)
|
7354
|
+
SENSITIVE = []
|
6702
7355
|
include Aws::Structure
|
6703
7356
|
end
|
6704
7357
|
|
@@ -6715,6 +7368,7 @@ module Aws::IoT
|
|
6715
7368
|
class ErrorInfo < Struct.new(
|
6716
7369
|
:code,
|
6717
7370
|
:message)
|
7371
|
+
SENSITIVE = []
|
6718
7372
|
include Aws::Structure
|
6719
7373
|
end
|
6720
7374
|
|
@@ -6726,6 +7380,7 @@ module Aws::IoT
|
|
6726
7380
|
#
|
6727
7381
|
class ExplicitDeny < Struct.new(
|
6728
7382
|
:policies)
|
7383
|
+
SENSITIVE = []
|
6729
7384
|
include Aws::Structure
|
6730
7385
|
end
|
6731
7386
|
|
@@ -6764,6 +7419,7 @@ module Aws::IoT
|
|
6764
7419
|
:base_rate_per_minute,
|
6765
7420
|
:increment_factor,
|
6766
7421
|
:rate_increase_criteria)
|
7422
|
+
SENSITIVE = []
|
6767
7423
|
include Aws::Structure
|
6768
7424
|
end
|
6769
7425
|
|
@@ -6788,6 +7444,7 @@ module Aws::IoT
|
|
6788
7444
|
class Field < Struct.new(
|
6789
7445
|
:name,
|
6790
7446
|
:type)
|
7447
|
+
SENSITIVE = []
|
6791
7448
|
include Aws::Structure
|
6792
7449
|
end
|
6793
7450
|
|
@@ -6819,6 +7476,7 @@ module Aws::IoT
|
|
6819
7476
|
class FileLocation < Struct.new(
|
6820
7477
|
:stream,
|
6821
7478
|
:s3_location)
|
7479
|
+
SENSITIVE = []
|
6822
7480
|
include Aws::Structure
|
6823
7481
|
end
|
6824
7482
|
|
@@ -6853,6 +7511,7 @@ module Aws::IoT
|
|
6853
7511
|
:role_arn,
|
6854
7512
|
:delivery_stream_name,
|
6855
7513
|
:separator)
|
7514
|
+
SENSITIVE = []
|
6856
7515
|
include Aws::Structure
|
6857
7516
|
end
|
6858
7517
|
|
@@ -6887,6 +7546,7 @@ module Aws::IoT
|
|
6887
7546
|
:query_string,
|
6888
7547
|
:aggregation_field,
|
6889
7548
|
:query_version)
|
7549
|
+
SENSITIVE = []
|
6890
7550
|
include Aws::Structure
|
6891
7551
|
end
|
6892
7552
|
|
@@ -6896,6 +7556,7 @@ module Aws::IoT
|
|
6896
7556
|
#
|
6897
7557
|
class GetCardinalityResponse < Struct.new(
|
6898
7558
|
:cardinality)
|
7559
|
+
SENSITIVE = []
|
6899
7560
|
include Aws::Structure
|
6900
7561
|
end
|
6901
7562
|
|
@@ -6909,7 +7570,11 @@ module Aws::IoT
|
|
6909
7570
|
# }
|
6910
7571
|
#
|
6911
7572
|
# @!attribute [rw] principal
|
6912
|
-
# The principal.
|
7573
|
+
# The principal. Valid principals are CertificateArn
|
7574
|
+
# (arn:aws:iot:*region*\:*accountId*\:cert/*certificateId*),
|
7575
|
+
# thingGroupArn
|
7576
|
+
# (arn:aws:iot:*region*\:*accountId*\:thinggroup/*groupName*) and
|
7577
|
+
# CognitoId (*region*\:*id*).
|
6913
7578
|
# @return [String]
|
6914
7579
|
#
|
6915
7580
|
# @!attribute [rw] cognito_identity_pool_id
|
@@ -6924,6 +7589,7 @@ module Aws::IoT
|
|
6924
7589
|
:principal,
|
6925
7590
|
:cognito_identity_pool_id,
|
6926
7591
|
:thing_name)
|
7592
|
+
SENSITIVE = []
|
6927
7593
|
include Aws::Structure
|
6928
7594
|
end
|
6929
7595
|
|
@@ -6933,6 +7599,7 @@ module Aws::IoT
|
|
6933
7599
|
#
|
6934
7600
|
class GetEffectivePoliciesResponse < Struct.new(
|
6935
7601
|
:effective_policies)
|
7602
|
+
SENSITIVE = []
|
6936
7603
|
include Aws::Structure
|
6937
7604
|
end
|
6938
7605
|
|
@@ -6951,6 +7618,7 @@ module Aws::IoT
|
|
6951
7618
|
class GetIndexingConfigurationResponse < Struct.new(
|
6952
7619
|
:thing_indexing_configuration,
|
6953
7620
|
:thing_group_indexing_configuration)
|
7621
|
+
SENSITIVE = []
|
6954
7622
|
include Aws::Structure
|
6955
7623
|
end
|
6956
7624
|
|
@@ -6967,6 +7635,7 @@ module Aws::IoT
|
|
6967
7635
|
#
|
6968
7636
|
class GetJobDocumentRequest < Struct.new(
|
6969
7637
|
:job_id)
|
7638
|
+
SENSITIVE = []
|
6970
7639
|
include Aws::Structure
|
6971
7640
|
end
|
6972
7641
|
|
@@ -6976,6 +7645,7 @@ module Aws::IoT
|
|
6976
7645
|
#
|
6977
7646
|
class GetJobDocumentResponse < Struct.new(
|
6978
7647
|
:document)
|
7648
|
+
SENSITIVE = []
|
6979
7649
|
include Aws::Structure
|
6980
7650
|
end
|
6981
7651
|
|
@@ -6998,6 +7668,7 @@ module Aws::IoT
|
|
6998
7668
|
class GetLoggingOptionsResponse < Struct.new(
|
6999
7669
|
:role_arn,
|
7000
7670
|
:log_level)
|
7671
|
+
SENSITIVE = []
|
7001
7672
|
include Aws::Structure
|
7002
7673
|
end
|
7003
7674
|
|
@@ -7014,6 +7685,7 @@ module Aws::IoT
|
|
7014
7685
|
#
|
7015
7686
|
class GetOTAUpdateRequest < Struct.new(
|
7016
7687
|
:ota_update_id)
|
7688
|
+
SENSITIVE = []
|
7017
7689
|
include Aws::Structure
|
7018
7690
|
end
|
7019
7691
|
|
@@ -7023,6 +7695,7 @@ module Aws::IoT
|
|
7023
7695
|
#
|
7024
7696
|
class GetOTAUpdateResponse < Struct.new(
|
7025
7697
|
:ota_update_info)
|
7698
|
+
SENSITIVE = []
|
7026
7699
|
include Aws::Structure
|
7027
7700
|
end
|
7028
7701
|
|
@@ -7063,6 +7736,7 @@ module Aws::IoT
|
|
7063
7736
|
:aggregation_field,
|
7064
7737
|
:query_version,
|
7065
7738
|
:percents)
|
7739
|
+
SENSITIVE = []
|
7066
7740
|
include Aws::Structure
|
7067
7741
|
end
|
7068
7742
|
|
@@ -7072,6 +7746,7 @@ module Aws::IoT
|
|
7072
7746
|
#
|
7073
7747
|
class GetPercentilesResponse < Struct.new(
|
7074
7748
|
:percentiles)
|
7749
|
+
SENSITIVE = []
|
7075
7750
|
include Aws::Structure
|
7076
7751
|
end
|
7077
7752
|
|
@@ -7090,6 +7765,7 @@ module Aws::IoT
|
|
7090
7765
|
#
|
7091
7766
|
class GetPolicyRequest < Struct.new(
|
7092
7767
|
:policy_name)
|
7768
|
+
SENSITIVE = []
|
7093
7769
|
include Aws::Structure
|
7094
7770
|
end
|
7095
7771
|
|
@@ -7131,6 +7807,7 @@ module Aws::IoT
|
|
7131
7807
|
:creation_date,
|
7132
7808
|
:last_modified_date,
|
7133
7809
|
:generation_id)
|
7810
|
+
SENSITIVE = []
|
7134
7811
|
include Aws::Structure
|
7135
7812
|
end
|
7136
7813
|
|
@@ -7155,6 +7832,7 @@ module Aws::IoT
|
|
7155
7832
|
class GetPolicyVersionRequest < Struct.new(
|
7156
7833
|
:policy_name,
|
7157
7834
|
:policy_version_id)
|
7835
|
+
SENSITIVE = []
|
7158
7836
|
include Aws::Structure
|
7159
7837
|
end
|
7160
7838
|
|
@@ -7201,6 +7879,7 @@ module Aws::IoT
|
|
7201
7879
|
:creation_date,
|
7202
7880
|
:last_modified_date,
|
7203
7881
|
:generation_id)
|
7882
|
+
SENSITIVE = []
|
7204
7883
|
include Aws::Structure
|
7205
7884
|
end
|
7206
7885
|
|
@@ -7218,6 +7897,7 @@ module Aws::IoT
|
|
7218
7897
|
#
|
7219
7898
|
class GetRegistrationCodeResponse < Struct.new(
|
7220
7899
|
:registration_code)
|
7900
|
+
SENSITIVE = []
|
7221
7901
|
include Aws::Structure
|
7222
7902
|
end
|
7223
7903
|
|
@@ -7253,6 +7933,7 @@ module Aws::IoT
|
|
7253
7933
|
:query_string,
|
7254
7934
|
:aggregation_field,
|
7255
7935
|
:query_version)
|
7936
|
+
SENSITIVE = []
|
7256
7937
|
include Aws::Structure
|
7257
7938
|
end
|
7258
7939
|
|
@@ -7263,6 +7944,7 @@ module Aws::IoT
|
|
7263
7944
|
#
|
7264
7945
|
class GetStatisticsResponse < Struct.new(
|
7265
7946
|
:statistics)
|
7947
|
+
SENSITIVE = []
|
7266
7948
|
include Aws::Structure
|
7267
7949
|
end
|
7268
7950
|
|
@@ -7279,6 +7961,7 @@ module Aws::IoT
|
|
7279
7961
|
#
|
7280
7962
|
class GetTopicRuleDestinationRequest < Struct.new(
|
7281
7963
|
:arn)
|
7964
|
+
SENSITIVE = []
|
7282
7965
|
include Aws::Structure
|
7283
7966
|
end
|
7284
7967
|
|
@@ -7288,6 +7971,7 @@ module Aws::IoT
|
|
7288
7971
|
#
|
7289
7972
|
class GetTopicRuleDestinationResponse < Struct.new(
|
7290
7973
|
:topic_rule_destination)
|
7974
|
+
SENSITIVE = []
|
7291
7975
|
include Aws::Structure
|
7292
7976
|
end
|
7293
7977
|
|
@@ -7306,6 +7990,7 @@ module Aws::IoT
|
|
7306
7990
|
#
|
7307
7991
|
class GetTopicRuleRequest < Struct.new(
|
7308
7992
|
:rule_name)
|
7993
|
+
SENSITIVE = []
|
7309
7994
|
include Aws::Structure
|
7310
7995
|
end
|
7311
7996
|
|
@@ -7322,6 +8007,7 @@ module Aws::IoT
|
|
7322
8007
|
class GetTopicRuleResponse < Struct.new(
|
7323
8008
|
:rule_arn,
|
7324
8009
|
:rule)
|
8010
|
+
SENSITIVE = []
|
7325
8011
|
include Aws::Structure
|
7326
8012
|
end
|
7327
8013
|
|
@@ -7345,6 +8031,7 @@ module Aws::IoT
|
|
7345
8031
|
:role_arn,
|
7346
8032
|
:default_log_level,
|
7347
8033
|
:disable_all_logs)
|
8034
|
+
SENSITIVE = []
|
7348
8035
|
include Aws::Structure
|
7349
8036
|
end
|
7350
8037
|
|
@@ -7361,6 +8048,7 @@ module Aws::IoT
|
|
7361
8048
|
class GroupNameAndArn < Struct.new(
|
7362
8049
|
:group_name,
|
7363
8050
|
:group_arn)
|
8051
|
+
SENSITIVE = []
|
7364
8052
|
include Aws::Structure
|
7365
8053
|
end
|
7366
8054
|
|
@@ -7417,6 +8105,7 @@ module Aws::IoT
|
|
7417
8105
|
:confirmation_url,
|
7418
8106
|
:headers,
|
7419
8107
|
:auth)
|
8108
|
+
SENSITIVE = []
|
7420
8109
|
include Aws::Structure
|
7421
8110
|
end
|
7422
8111
|
|
@@ -7441,6 +8130,7 @@ module Aws::IoT
|
|
7441
8130
|
class HttpActionHeader < Struct.new(
|
7442
8131
|
:key,
|
7443
8132
|
:value)
|
8133
|
+
SENSITIVE = []
|
7444
8134
|
include Aws::Structure
|
7445
8135
|
end
|
7446
8136
|
|
@@ -7468,6 +8158,7 @@ module Aws::IoT
|
|
7468
8158
|
#
|
7469
8159
|
class HttpAuthorization < Struct.new(
|
7470
8160
|
:sigv4)
|
8161
|
+
SENSITIVE = []
|
7471
8162
|
include Aws::Structure
|
7472
8163
|
end
|
7473
8164
|
|
@@ -7494,6 +8185,7 @@ module Aws::IoT
|
|
7494
8185
|
class HttpContext < Struct.new(
|
7495
8186
|
:headers,
|
7496
8187
|
:query_string)
|
8188
|
+
SENSITIVE = []
|
7497
8189
|
include Aws::Structure
|
7498
8190
|
end
|
7499
8191
|
|
@@ -7514,6 +8206,7 @@ module Aws::IoT
|
|
7514
8206
|
#
|
7515
8207
|
class HttpUrlDestinationConfiguration < Struct.new(
|
7516
8208
|
:confirmation_url)
|
8209
|
+
SENSITIVE = []
|
7517
8210
|
include Aws::Structure
|
7518
8211
|
end
|
7519
8212
|
|
@@ -7525,6 +8218,7 @@ module Aws::IoT
|
|
7525
8218
|
#
|
7526
8219
|
class HttpUrlDestinationProperties < Struct.new(
|
7527
8220
|
:confirmation_url)
|
8221
|
+
SENSITIVE = []
|
7528
8222
|
include Aws::Structure
|
7529
8223
|
end
|
7530
8224
|
|
@@ -7537,6 +8231,7 @@ module Aws::IoT
|
|
7537
8231
|
#
|
7538
8232
|
class HttpUrlDestinationSummary < Struct.new(
|
7539
8233
|
:confirmation_url)
|
8234
|
+
SENSITIVE = []
|
7540
8235
|
include Aws::Structure
|
7541
8236
|
end
|
7542
8237
|
|
@@ -7551,6 +8246,7 @@ module Aws::IoT
|
|
7551
8246
|
#
|
7552
8247
|
class ImplicitDeny < Struct.new(
|
7553
8248
|
:policies)
|
8249
|
+
SENSITIVE = []
|
7554
8250
|
include Aws::Structure
|
7555
8251
|
end
|
7556
8252
|
|
@@ -7562,6 +8258,7 @@ module Aws::IoT
|
|
7562
8258
|
#
|
7563
8259
|
class IndexNotReadyException < Struct.new(
|
7564
8260
|
:message)
|
8261
|
+
SENSITIVE = []
|
7565
8262
|
include Aws::Structure
|
7566
8263
|
end
|
7567
8264
|
|
@@ -7573,6 +8270,7 @@ module Aws::IoT
|
|
7573
8270
|
#
|
7574
8271
|
class InternalException < Struct.new(
|
7575
8272
|
:message)
|
8273
|
+
SENSITIVE = []
|
7576
8274
|
include Aws::Structure
|
7577
8275
|
end
|
7578
8276
|
|
@@ -7584,6 +8282,7 @@ module Aws::IoT
|
|
7584
8282
|
#
|
7585
8283
|
class InternalFailureException < Struct.new(
|
7586
8284
|
:message)
|
8285
|
+
SENSITIVE = []
|
7587
8286
|
include Aws::Structure
|
7588
8287
|
end
|
7589
8288
|
|
@@ -7594,6 +8293,7 @@ module Aws::IoT
|
|
7594
8293
|
#
|
7595
8294
|
class InvalidAggregationException < Struct.new(
|
7596
8295
|
:message)
|
8296
|
+
SENSITIVE = []
|
7597
8297
|
include Aws::Structure
|
7598
8298
|
end
|
7599
8299
|
|
@@ -7605,6 +8305,7 @@ module Aws::IoT
|
|
7605
8305
|
#
|
7606
8306
|
class InvalidQueryException < Struct.new(
|
7607
8307
|
:message)
|
8308
|
+
SENSITIVE = []
|
7608
8309
|
include Aws::Structure
|
7609
8310
|
end
|
7610
8311
|
|
@@ -7616,6 +8317,7 @@ module Aws::IoT
|
|
7616
8317
|
#
|
7617
8318
|
class InvalidRequestException < Struct.new(
|
7618
8319
|
:message)
|
8320
|
+
SENSITIVE = []
|
7619
8321
|
include Aws::Structure
|
7620
8322
|
end
|
7621
8323
|
|
@@ -7627,6 +8329,7 @@ module Aws::IoT
|
|
7627
8329
|
#
|
7628
8330
|
class InvalidResponseException < Struct.new(
|
7629
8331
|
:message)
|
8332
|
+
SENSITIVE = []
|
7630
8333
|
include Aws::Structure
|
7631
8334
|
end
|
7632
8335
|
|
@@ -7640,6 +8343,7 @@ module Aws::IoT
|
|
7640
8343
|
#
|
7641
8344
|
class InvalidStateTransitionException < Struct.new(
|
7642
8345
|
:message)
|
8346
|
+
SENSITIVE = []
|
7643
8347
|
include Aws::Structure
|
7644
8348
|
end
|
7645
8349
|
|
@@ -7674,6 +8378,7 @@ module Aws::IoT
|
|
7674
8378
|
:channel_arn,
|
7675
8379
|
:channel_name,
|
7676
8380
|
:role_arn)
|
8381
|
+
SENSITIVE = []
|
7677
8382
|
include Aws::Structure
|
7678
8383
|
end
|
7679
8384
|
|
@@ -7707,6 +8412,7 @@ module Aws::IoT
|
|
7707
8412
|
:input_name,
|
7708
8413
|
:message_id,
|
7709
8414
|
:role_arn)
|
8415
|
+
SENSITIVE = []
|
7710
8416
|
include Aws::Structure
|
7711
8417
|
end
|
7712
8418
|
|
@@ -7757,6 +8463,7 @@ module Aws::IoT
|
|
7757
8463
|
class IotSiteWiseAction < Struct.new(
|
7758
8464
|
:put_asset_property_value_entries,
|
7759
8465
|
:role_arn)
|
8466
|
+
SENSITIVE = []
|
7760
8467
|
include Aws::Structure
|
7761
8468
|
end
|
7762
8469
|
|
@@ -7862,6 +8569,7 @@ module Aws::IoT
|
|
7862
8569
|
:completed_at,
|
7863
8570
|
:job_process_details,
|
7864
8571
|
:timeout_config)
|
8572
|
+
SENSITIVE = []
|
7865
8573
|
include Aws::Structure
|
7866
8574
|
end
|
7867
8575
|
|
@@ -7939,6 +8647,7 @@ module Aws::IoT
|
|
7939
8647
|
:execution_number,
|
7940
8648
|
:version_number,
|
7941
8649
|
:approximate_seconds_before_timed_out)
|
8650
|
+
SENSITIVE = []
|
7942
8651
|
include Aws::Structure
|
7943
8652
|
end
|
7944
8653
|
|
@@ -7950,6 +8659,7 @@ module Aws::IoT
|
|
7950
8659
|
#
|
7951
8660
|
class JobExecutionStatusDetails < Struct.new(
|
7952
8661
|
:details_map)
|
8662
|
+
SENSITIVE = []
|
7953
8663
|
include Aws::Structure
|
7954
8664
|
end
|
7955
8665
|
|
@@ -7987,6 +8697,7 @@ module Aws::IoT
|
|
7987
8697
|
:started_at,
|
7988
8698
|
:last_updated_at,
|
7989
8699
|
:execution_number)
|
8700
|
+
SENSITIVE = []
|
7990
8701
|
include Aws::Structure
|
7991
8702
|
end
|
7992
8703
|
|
@@ -8004,6 +8715,7 @@ module Aws::IoT
|
|
8004
8715
|
class JobExecutionSummaryForJob < Struct.new(
|
8005
8716
|
:thing_arn,
|
8006
8717
|
:job_execution_summary)
|
8718
|
+
SENSITIVE = []
|
8007
8719
|
include Aws::Structure
|
8008
8720
|
end
|
8009
8721
|
|
@@ -8020,6 +8732,7 @@ module Aws::IoT
|
|
8020
8732
|
class JobExecutionSummaryForThing < Struct.new(
|
8021
8733
|
:job_id,
|
8022
8734
|
:job_execution_summary)
|
8735
|
+
SENSITIVE = []
|
8023
8736
|
include Aws::Structure
|
8024
8737
|
end
|
8025
8738
|
|
@@ -8053,6 +8766,7 @@ module Aws::IoT
|
|
8053
8766
|
class JobExecutionsRolloutConfig < Struct.new(
|
8054
8767
|
:maximum_per_minute,
|
8055
8768
|
:exponential_rate)
|
8769
|
+
SENSITIVE = []
|
8056
8770
|
include Aws::Structure
|
8057
8771
|
end
|
8058
8772
|
|
@@ -8108,6 +8822,7 @@ module Aws::IoT
|
|
8108
8822
|
:number_of_in_progress_things,
|
8109
8823
|
:number_of_removed_things,
|
8110
8824
|
:number_of_timed_out_things)
|
8825
|
+
SENSITIVE = []
|
8111
8826
|
include Aws::Structure
|
8112
8827
|
end
|
8113
8828
|
|
@@ -8159,6 +8874,7 @@ module Aws::IoT
|
|
8159
8874
|
:created_at,
|
8160
8875
|
:last_updated_at,
|
8161
8876
|
:completed_at)
|
8877
|
+
SENSITIVE = []
|
8162
8878
|
include Aws::Structure
|
8163
8879
|
end
|
8164
8880
|
|
@@ -8175,6 +8891,7 @@ module Aws::IoT
|
|
8175
8891
|
class KeyPair < Struct.new(
|
8176
8892
|
:public_key,
|
8177
8893
|
:private_key)
|
8894
|
+
SENSITIVE = [:private_key]
|
8178
8895
|
include Aws::Structure
|
8179
8896
|
end
|
8180
8897
|
|
@@ -8206,6 +8923,7 @@ module Aws::IoT
|
|
8206
8923
|
:role_arn,
|
8207
8924
|
:stream_name,
|
8208
8925
|
:partition_key)
|
8926
|
+
SENSITIVE = []
|
8209
8927
|
include Aws::Structure
|
8210
8928
|
end
|
8211
8929
|
|
@@ -8224,6 +8942,7 @@ module Aws::IoT
|
|
8224
8942
|
#
|
8225
8943
|
class LambdaAction < Struct.new(
|
8226
8944
|
:function_arn)
|
8945
|
+
SENSITIVE = []
|
8227
8946
|
include Aws::Structure
|
8228
8947
|
end
|
8229
8948
|
|
@@ -8235,6 +8954,7 @@ module Aws::IoT
|
|
8235
8954
|
#
|
8236
8955
|
class LimitExceededException < Struct.new(
|
8237
8956
|
:message)
|
8957
|
+
SENSITIVE = []
|
8238
8958
|
include Aws::Structure
|
8239
8959
|
end
|
8240
8960
|
|
@@ -8270,6 +8990,7 @@ module Aws::IoT
|
|
8270
8990
|
:security_profile_name,
|
8271
8991
|
:next_token,
|
8272
8992
|
:max_results)
|
8993
|
+
SENSITIVE = []
|
8273
8994
|
include Aws::Structure
|
8274
8995
|
end
|
8275
8996
|
|
@@ -8285,6 +9006,7 @@ module Aws::IoT
|
|
8285
9006
|
class ListActiveViolationsResponse < Struct.new(
|
8286
9007
|
:active_violations,
|
8287
9008
|
:next_token)
|
9009
|
+
SENSITIVE = []
|
8288
9010
|
include Aws::Structure
|
8289
9011
|
end
|
8290
9012
|
|
@@ -8299,7 +9021,12 @@ module Aws::IoT
|
|
8299
9021
|
# }
|
8300
9022
|
#
|
8301
9023
|
# @!attribute [rw] target
|
8302
|
-
# The group or principal for which the policies will be listed.
|
9024
|
+
# The group or principal for which the policies will be listed. Valid
|
9025
|
+
# principals are CertificateArn
|
9026
|
+
# (arn:aws:iot:*region*\:*accountId*\:cert/*certificateId*),
|
9027
|
+
# thingGroupArn
|
9028
|
+
# (arn:aws:iot:*region*\:*accountId*\:thinggroup/*groupName*) and
|
9029
|
+
# CognitoId (*region*\:*id*).
|
8303
9030
|
# @return [String]
|
8304
9031
|
#
|
8305
9032
|
# @!attribute [rw] recursive
|
@@ -8319,6 +9046,7 @@ module Aws::IoT
|
|
8319
9046
|
:recursive,
|
8320
9047
|
:marker,
|
8321
9048
|
:page_size)
|
9049
|
+
SENSITIVE = []
|
8322
9050
|
include Aws::Structure
|
8323
9051
|
end
|
8324
9052
|
|
@@ -8334,6 +9062,7 @@ module Aws::IoT
|
|
8334
9062
|
class ListAttachedPoliciesResponse < Struct.new(
|
8335
9063
|
:policies,
|
8336
9064
|
:next_marker)
|
9065
|
+
SENSITIVE = []
|
8337
9066
|
include Aws::Structure
|
8338
9067
|
end
|
8339
9068
|
|
@@ -8360,6 +9089,7 @@ module Aws::IoT
|
|
8360
9089
|
# next_token: "NextToken",
|
8361
9090
|
# start_time: Time.now,
|
8362
9091
|
# end_time: Time.now,
|
9092
|
+
# list_suppressed_findings: false,
|
8363
9093
|
# }
|
8364
9094
|
#
|
8365
9095
|
# @!attribute [rw] task_id
|
@@ -8398,6 +9128,13 @@ module Aws::IoT
|
|
8398
9128
|
# not both.
|
8399
9129
|
# @return [Time]
|
8400
9130
|
#
|
9131
|
+
# @!attribute [rw] list_suppressed_findings
|
9132
|
+
# Boolean flag indicating whether only the suppressed findings or the
|
9133
|
+
# unsuppressed findings should be listed. If this parameter isn't
|
9134
|
+
# provided, the response will list both suppressed and unsuppressed
|
9135
|
+
# findings.
|
9136
|
+
# @return [Boolean]
|
9137
|
+
#
|
8401
9138
|
class ListAuditFindingsRequest < Struct.new(
|
8402
9139
|
:task_id,
|
8403
9140
|
:check_name,
|
@@ -8405,7 +9142,9 @@ module Aws::IoT
|
|
8405
9142
|
:max_results,
|
8406
9143
|
:next_token,
|
8407
9144
|
:start_time,
|
8408
|
-
:end_time
|
9145
|
+
:end_time,
|
9146
|
+
:list_suppressed_findings)
|
9147
|
+
SENSITIVE = []
|
8409
9148
|
include Aws::Structure
|
8410
9149
|
end
|
8411
9150
|
|
@@ -8421,6 +9160,7 @@ module Aws::IoT
|
|
8421
9160
|
class ListAuditFindingsResponse < Struct.new(
|
8422
9161
|
:findings,
|
8423
9162
|
:next_token)
|
9163
|
+
SENSITIVE = []
|
8424
9164
|
include Aws::Structure
|
8425
9165
|
end
|
8426
9166
|
|
@@ -8465,6 +9205,7 @@ module Aws::IoT
|
|
8465
9205
|
:finding_id,
|
8466
9206
|
:max_results,
|
8467
9207
|
:next_token)
|
9208
|
+
SENSITIVE = []
|
8468
9209
|
include Aws::Structure
|
8469
9210
|
end
|
8470
9211
|
|
@@ -8481,6 +9222,7 @@ module Aws::IoT
|
|
8481
9222
|
class ListAuditMitigationActionsExecutionsResponse < Struct.new(
|
8482
9223
|
:actions_executions,
|
8483
9224
|
:next_token)
|
9225
|
+
SENSITIVE = []
|
8484
9226
|
include Aws::Structure
|
8485
9227
|
end
|
8486
9228
|
|
@@ -8539,6 +9281,7 @@ module Aws::IoT
|
|
8539
9281
|
:next_token,
|
8540
9282
|
:start_time,
|
8541
9283
|
:end_time)
|
9284
|
+
SENSITIVE = []
|
8542
9285
|
include Aws::Structure
|
8543
9286
|
end
|
8544
9287
|
|
@@ -8554,6 +9297,83 @@ module Aws::IoT
|
|
8554
9297
|
class ListAuditMitigationActionsTasksResponse < Struct.new(
|
8555
9298
|
:tasks,
|
8556
9299
|
:next_token)
|
9300
|
+
SENSITIVE = []
|
9301
|
+
include Aws::Structure
|
9302
|
+
end
|
9303
|
+
|
9304
|
+
# @note When making an API call, you may pass ListAuditSuppressionsRequest
|
9305
|
+
# data as a hash:
|
9306
|
+
#
|
9307
|
+
# {
|
9308
|
+
# check_name: "AuditCheckName",
|
9309
|
+
# resource_identifier: {
|
9310
|
+
# device_certificate_id: "CertificateId",
|
9311
|
+
# ca_certificate_id: "CertificateId",
|
9312
|
+
# cognito_identity_pool_id: "CognitoIdentityPoolId",
|
9313
|
+
# client_id: "ClientId",
|
9314
|
+
# policy_version_identifier: {
|
9315
|
+
# policy_name: "PolicyName",
|
9316
|
+
# policy_version_id: "PolicyVersionId",
|
9317
|
+
# },
|
9318
|
+
# account: "AwsAccountId",
|
9319
|
+
# iam_role_arn: "RoleArn",
|
9320
|
+
# role_alias_arn: "RoleAliasArn",
|
9321
|
+
# },
|
9322
|
+
# ascending_order: false,
|
9323
|
+
# next_token: "NextToken",
|
9324
|
+
# max_results: 1,
|
9325
|
+
# }
|
9326
|
+
#
|
9327
|
+
# @!attribute [rw] check_name
|
9328
|
+
# An audit check name. Checks must be enabled for your account. (Use
|
9329
|
+
# `DescribeAccountAuditConfiguration` to see the list of all checks,
|
9330
|
+
# including those that are enabled or use
|
9331
|
+
# `UpdateAccountAuditConfiguration` to select which checks are
|
9332
|
+
# enabled.)
|
9333
|
+
# @return [String]
|
9334
|
+
#
|
9335
|
+
# @!attribute [rw] resource_identifier
|
9336
|
+
# Information that identifies the noncompliant resource.
|
9337
|
+
# @return [Types::ResourceIdentifier]
|
9338
|
+
#
|
9339
|
+
# @!attribute [rw] ascending_order
|
9340
|
+
# Determines whether suppressions are listed in ascending order by
|
9341
|
+
# expiration date or not. If parameter isn't provided,
|
9342
|
+
# `ascendingOrder=true`.
|
9343
|
+
# @return [Boolean]
|
9344
|
+
#
|
9345
|
+
# @!attribute [rw] next_token
|
9346
|
+
# The token for the next set of results.
|
9347
|
+
# @return [String]
|
9348
|
+
#
|
9349
|
+
# @!attribute [rw] max_results
|
9350
|
+
# The maximum number of results to return at one time. The default is
|
9351
|
+
# 25.
|
9352
|
+
# @return [Integer]
|
9353
|
+
#
|
9354
|
+
class ListAuditSuppressionsRequest < Struct.new(
|
9355
|
+
:check_name,
|
9356
|
+
:resource_identifier,
|
9357
|
+
:ascending_order,
|
9358
|
+
:next_token,
|
9359
|
+
:max_results)
|
9360
|
+
SENSITIVE = []
|
9361
|
+
include Aws::Structure
|
9362
|
+
end
|
9363
|
+
|
9364
|
+
# @!attribute [rw] suppressions
|
9365
|
+
# List of audit suppressions.
|
9366
|
+
# @return [Array<Types::AuditSuppression>]
|
9367
|
+
#
|
9368
|
+
# @!attribute [rw] next_token
|
9369
|
+
# A token that can be used to retrieve the next set of results, or
|
9370
|
+
# `null` if there are no additional results.
|
9371
|
+
# @return [String]
|
9372
|
+
#
|
9373
|
+
class ListAuditSuppressionsResponse < Struct.new(
|
9374
|
+
:suppressions,
|
9375
|
+
:next_token)
|
9376
|
+
SENSITIVE = []
|
8557
9377
|
include Aws::Structure
|
8558
9378
|
end
|
8559
9379
|
|
@@ -8606,6 +9426,7 @@ module Aws::IoT
|
|
8606
9426
|
:task_status,
|
8607
9427
|
:next_token,
|
8608
9428
|
:max_results)
|
9429
|
+
SENSITIVE = []
|
8609
9430
|
include Aws::Structure
|
8610
9431
|
end
|
8611
9432
|
|
@@ -8621,6 +9442,7 @@ module Aws::IoT
|
|
8621
9442
|
class ListAuditTasksResponse < Struct.new(
|
8622
9443
|
:tasks,
|
8623
9444
|
:next_token)
|
9445
|
+
SENSITIVE = []
|
8624
9446
|
include Aws::Structure
|
8625
9447
|
end
|
8626
9448
|
|
@@ -8655,6 +9477,7 @@ module Aws::IoT
|
|
8655
9477
|
:marker,
|
8656
9478
|
:ascending_order,
|
8657
9479
|
:status)
|
9480
|
+
SENSITIVE = []
|
8658
9481
|
include Aws::Structure
|
8659
9482
|
end
|
8660
9483
|
|
@@ -8669,6 +9492,7 @@ module Aws::IoT
|
|
8669
9492
|
class ListAuthorizersResponse < Struct.new(
|
8670
9493
|
:authorizers,
|
8671
9494
|
:next_marker)
|
9495
|
+
SENSITIVE = []
|
8672
9496
|
include Aws::Structure
|
8673
9497
|
end
|
8674
9498
|
|
@@ -8698,6 +9522,7 @@ module Aws::IoT
|
|
8698
9522
|
:next_token,
|
8699
9523
|
:max_results,
|
8700
9524
|
:name_prefix_filter)
|
9525
|
+
SENSITIVE = []
|
8701
9526
|
include Aws::Structure
|
8702
9527
|
end
|
8703
9528
|
|
@@ -8713,6 +9538,7 @@ module Aws::IoT
|
|
8713
9538
|
class ListBillingGroupsResponse < Struct.new(
|
8714
9539
|
:billing_groups,
|
8715
9540
|
:next_token)
|
9541
|
+
SENSITIVE = []
|
8716
9542
|
include Aws::Structure
|
8717
9543
|
end
|
8718
9544
|
|
@@ -8743,6 +9569,7 @@ module Aws::IoT
|
|
8743
9569
|
:page_size,
|
8744
9570
|
:marker,
|
8745
9571
|
:ascending_order)
|
9572
|
+
SENSITIVE = []
|
8746
9573
|
include Aws::Structure
|
8747
9574
|
end
|
8748
9575
|
|
@@ -8759,6 +9586,7 @@ module Aws::IoT
|
|
8759
9586
|
class ListCACertificatesResponse < Struct.new(
|
8760
9587
|
:certificates,
|
8761
9588
|
:next_marker)
|
9589
|
+
SENSITIVE = []
|
8762
9590
|
include Aws::Structure
|
8763
9591
|
end
|
8764
9592
|
|
@@ -8798,6 +9626,7 @@ module Aws::IoT
|
|
8798
9626
|
:page_size,
|
8799
9627
|
:marker,
|
8800
9628
|
:ascending_order)
|
9629
|
+
SENSITIVE = []
|
8801
9630
|
include Aws::Structure
|
8802
9631
|
end
|
8803
9632
|
|
@@ -8815,6 +9644,7 @@ module Aws::IoT
|
|
8815
9644
|
class ListCertificatesByCAResponse < Struct.new(
|
8816
9645
|
:certificates,
|
8817
9646
|
:next_marker)
|
9647
|
+
SENSITIVE = []
|
8818
9648
|
include Aws::Structure
|
8819
9649
|
end
|
8820
9650
|
|
@@ -8846,6 +9676,7 @@ module Aws::IoT
|
|
8846
9676
|
:page_size,
|
8847
9677
|
:marker,
|
8848
9678
|
:ascending_order)
|
9679
|
+
SENSITIVE = []
|
8849
9680
|
include Aws::Structure
|
8850
9681
|
end
|
8851
9682
|
|
@@ -8863,6 +9694,7 @@ module Aws::IoT
|
|
8863
9694
|
class ListCertificatesResponse < Struct.new(
|
8864
9695
|
:certificates,
|
8865
9696
|
:next_marker)
|
9697
|
+
SENSITIVE = []
|
8866
9698
|
include Aws::Structure
|
8867
9699
|
end
|
8868
9700
|
|
@@ -8885,6 +9717,7 @@ module Aws::IoT
|
|
8885
9717
|
class ListDimensionsRequest < Struct.new(
|
8886
9718
|
:next_token,
|
8887
9719
|
:max_results)
|
9720
|
+
SENSITIVE = []
|
8888
9721
|
include Aws::Structure
|
8889
9722
|
end
|
8890
9723
|
|
@@ -8901,6 +9734,7 @@ module Aws::IoT
|
|
8901
9734
|
class ListDimensionsResponse < Struct.new(
|
8902
9735
|
:dimension_names,
|
8903
9736
|
:next_token)
|
9737
|
+
SENSITIVE = []
|
8904
9738
|
include Aws::Structure
|
8905
9739
|
end
|
8906
9740
|
|
@@ -8929,6 +9763,7 @@ module Aws::IoT
|
|
8929
9763
|
:marker,
|
8930
9764
|
:page_size,
|
8931
9765
|
:service_type)
|
9766
|
+
SENSITIVE = []
|
8932
9767
|
include Aws::Structure
|
8933
9768
|
end
|
8934
9769
|
|
@@ -8944,6 +9779,7 @@ module Aws::IoT
|
|
8944
9779
|
class ListDomainConfigurationsResponse < Struct.new(
|
8945
9780
|
:domain_configurations,
|
8946
9781
|
:next_marker)
|
9782
|
+
SENSITIVE = []
|
8947
9783
|
include Aws::Structure
|
8948
9784
|
end
|
8949
9785
|
|
@@ -8967,6 +9803,7 @@ module Aws::IoT
|
|
8967
9803
|
class ListIndicesRequest < Struct.new(
|
8968
9804
|
:next_token,
|
8969
9805
|
:max_results)
|
9806
|
+
SENSITIVE = []
|
8970
9807
|
include Aws::Structure
|
8971
9808
|
end
|
8972
9809
|
|
@@ -8982,6 +9819,7 @@ module Aws::IoT
|
|
8982
9819
|
class ListIndicesResponse < Struct.new(
|
8983
9820
|
:index_names,
|
8984
9821
|
:next_token)
|
9822
|
+
SENSITIVE = []
|
8985
9823
|
include Aws::Structure
|
8986
9824
|
end
|
8987
9825
|
|
@@ -9016,6 +9854,7 @@ module Aws::IoT
|
|
9016
9854
|
:status,
|
9017
9855
|
:max_results,
|
9018
9856
|
:next_token)
|
9857
|
+
SENSITIVE = []
|
9019
9858
|
include Aws::Structure
|
9020
9859
|
end
|
9021
9860
|
|
@@ -9031,6 +9870,7 @@ module Aws::IoT
|
|
9031
9870
|
class ListJobExecutionsForJobResponse < Struct.new(
|
9032
9871
|
:execution_summaries,
|
9033
9872
|
:next_token)
|
9873
|
+
SENSITIVE = []
|
9034
9874
|
include Aws::Structure
|
9035
9875
|
end
|
9036
9876
|
|
@@ -9066,6 +9906,7 @@ module Aws::IoT
|
|
9066
9906
|
:status,
|
9067
9907
|
:max_results,
|
9068
9908
|
:next_token)
|
9909
|
+
SENSITIVE = []
|
9069
9910
|
include Aws::Structure
|
9070
9911
|
end
|
9071
9912
|
|
@@ -9081,6 +9922,7 @@ module Aws::IoT
|
|
9081
9922
|
class ListJobExecutionsForThingResponse < Struct.new(
|
9082
9923
|
:execution_summaries,
|
9083
9924
|
:next_token)
|
9925
|
+
SENSITIVE = []
|
9084
9926
|
include Aws::Structure
|
9085
9927
|
end
|
9086
9928
|
|
@@ -9135,6 +9977,7 @@ module Aws::IoT
|
|
9135
9977
|
:next_token,
|
9136
9978
|
:thing_group_name,
|
9137
9979
|
:thing_group_id)
|
9980
|
+
SENSITIVE = []
|
9138
9981
|
include Aws::Structure
|
9139
9982
|
end
|
9140
9983
|
|
@@ -9150,6 +9993,7 @@ module Aws::IoT
|
|
9150
9993
|
class ListJobsResponse < Struct.new(
|
9151
9994
|
:jobs,
|
9152
9995
|
:next_token)
|
9996
|
+
SENSITIVE = []
|
9153
9997
|
include Aws::Structure
|
9154
9998
|
end
|
9155
9999
|
|
@@ -9180,6 +10024,7 @@ module Aws::IoT
|
|
9180
10024
|
:action_type,
|
9181
10025
|
:max_results,
|
9182
10026
|
:next_token)
|
10027
|
+
SENSITIVE = []
|
9183
10028
|
include Aws::Structure
|
9184
10029
|
end
|
9185
10030
|
|
@@ -9194,6 +10039,7 @@ module Aws::IoT
|
|
9194
10039
|
class ListMitigationActionsResponse < Struct.new(
|
9195
10040
|
:action_identifiers,
|
9196
10041
|
:next_token)
|
10042
|
+
SENSITIVE = []
|
9197
10043
|
include Aws::Structure
|
9198
10044
|
end
|
9199
10045
|
|
@@ -9222,6 +10068,7 @@ module Aws::IoT
|
|
9222
10068
|
:max_results,
|
9223
10069
|
:next_token,
|
9224
10070
|
:ota_update_status)
|
10071
|
+
SENSITIVE = []
|
9225
10072
|
include Aws::Structure
|
9226
10073
|
end
|
9227
10074
|
|
@@ -9236,6 +10083,7 @@ module Aws::IoT
|
|
9236
10083
|
class ListOTAUpdatesResponse < Struct.new(
|
9237
10084
|
:ota_updates,
|
9238
10085
|
:next_token)
|
10086
|
+
SENSITIVE = []
|
9239
10087
|
include Aws::Structure
|
9240
10088
|
end
|
9241
10089
|
|
@@ -9267,6 +10115,7 @@ module Aws::IoT
|
|
9267
10115
|
:page_size,
|
9268
10116
|
:marker,
|
9269
10117
|
:ascending_order)
|
10118
|
+
SENSITIVE = []
|
9270
10119
|
include Aws::Structure
|
9271
10120
|
end
|
9272
10121
|
|
@@ -9283,6 +10132,7 @@ module Aws::IoT
|
|
9283
10132
|
class ListOutgoingCertificatesResponse < Struct.new(
|
9284
10133
|
:outgoing_certificates,
|
9285
10134
|
:next_marker)
|
10135
|
+
SENSITIVE = []
|
9286
10136
|
include Aws::Structure
|
9287
10137
|
end
|
9288
10138
|
|
@@ -9314,6 +10164,7 @@ module Aws::IoT
|
|
9314
10164
|
:marker,
|
9315
10165
|
:page_size,
|
9316
10166
|
:ascending_order)
|
10167
|
+
SENSITIVE = []
|
9317
10168
|
include Aws::Structure
|
9318
10169
|
end
|
9319
10170
|
|
@@ -9331,6 +10182,7 @@ module Aws::IoT
|
|
9331
10182
|
class ListPoliciesResponse < Struct.new(
|
9332
10183
|
:policies,
|
9333
10184
|
:next_marker)
|
10185
|
+
SENSITIVE = []
|
9334
10186
|
include Aws::Structure
|
9335
10187
|
end
|
9336
10188
|
|
@@ -9368,6 +10220,7 @@ module Aws::IoT
|
|
9368
10220
|
:marker,
|
9369
10221
|
:page_size,
|
9370
10222
|
:ascending_order)
|
10223
|
+
SENSITIVE = []
|
9371
10224
|
include Aws::Structure
|
9372
10225
|
end
|
9373
10226
|
|
@@ -9385,6 +10238,7 @@ module Aws::IoT
|
|
9385
10238
|
class ListPolicyPrincipalsResponse < Struct.new(
|
9386
10239
|
:principals,
|
9387
10240
|
:next_marker)
|
10241
|
+
SENSITIVE = []
|
9388
10242
|
include Aws::Structure
|
9389
10243
|
end
|
9390
10244
|
|
@@ -9403,6 +10257,7 @@ module Aws::IoT
|
|
9403
10257
|
#
|
9404
10258
|
class ListPolicyVersionsRequest < Struct.new(
|
9405
10259
|
:policy_name)
|
10260
|
+
SENSITIVE = []
|
9406
10261
|
include Aws::Structure
|
9407
10262
|
end
|
9408
10263
|
|
@@ -9414,6 +10269,7 @@ module Aws::IoT
|
|
9414
10269
|
#
|
9415
10270
|
class ListPolicyVersionsResponse < Struct.new(
|
9416
10271
|
:policy_versions)
|
10272
|
+
SENSITIVE = []
|
9417
10273
|
include Aws::Structure
|
9418
10274
|
end
|
9419
10275
|
|
@@ -9430,7 +10286,11 @@ module Aws::IoT
|
|
9430
10286
|
# }
|
9431
10287
|
#
|
9432
10288
|
# @!attribute [rw] principal
|
9433
|
-
# The principal.
|
10289
|
+
# The principal. Valid principals are CertificateArn
|
10290
|
+
# (arn:aws:iot:*region*\:*accountId*\:cert/*certificateId*),
|
10291
|
+
# thingGroupArn
|
10292
|
+
# (arn:aws:iot:*region*\:*accountId*\:thinggroup/*groupName*) and
|
10293
|
+
# CognitoId (*region*\:*id*).
|
9434
10294
|
# @return [String]
|
9435
10295
|
#
|
9436
10296
|
# @!attribute [rw] marker
|
@@ -9451,6 +10311,7 @@ module Aws::IoT
|
|
9451
10311
|
:marker,
|
9452
10312
|
:page_size,
|
9453
10313
|
:ascending_order)
|
10314
|
+
SENSITIVE = []
|
9454
10315
|
include Aws::Structure
|
9455
10316
|
end
|
9456
10317
|
|
@@ -9468,6 +10329,7 @@ module Aws::IoT
|
|
9468
10329
|
class ListPrincipalPoliciesResponse < Struct.new(
|
9469
10330
|
:policies,
|
9470
10331
|
:next_marker)
|
10332
|
+
SENSITIVE = []
|
9471
10333
|
include Aws::Structure
|
9472
10334
|
end
|
9473
10335
|
|
@@ -9498,6 +10360,7 @@ module Aws::IoT
|
|
9498
10360
|
:next_token,
|
9499
10361
|
:max_results,
|
9500
10362
|
:principal)
|
10363
|
+
SENSITIVE = []
|
9501
10364
|
include Aws::Structure
|
9502
10365
|
end
|
9503
10366
|
|
@@ -9515,6 +10378,7 @@ module Aws::IoT
|
|
9515
10378
|
class ListPrincipalThingsResponse < Struct.new(
|
9516
10379
|
:things,
|
9517
10380
|
:next_token)
|
10381
|
+
SENSITIVE = []
|
9518
10382
|
include Aws::Structure
|
9519
10383
|
end
|
9520
10384
|
|
@@ -9543,6 +10407,7 @@ module Aws::IoT
|
|
9543
10407
|
:template_name,
|
9544
10408
|
:max_results,
|
9545
10409
|
:next_token)
|
10410
|
+
SENSITIVE = []
|
9546
10411
|
include Aws::Structure
|
9547
10412
|
end
|
9548
10413
|
|
@@ -9557,6 +10422,7 @@ module Aws::IoT
|
|
9557
10422
|
class ListProvisioningTemplateVersionsResponse < Struct.new(
|
9558
10423
|
:versions,
|
9559
10424
|
:next_token)
|
10425
|
+
SENSITIVE = []
|
9560
10426
|
include Aws::Structure
|
9561
10427
|
end
|
9562
10428
|
|
@@ -9579,6 +10445,7 @@ module Aws::IoT
|
|
9579
10445
|
class ListProvisioningTemplatesRequest < Struct.new(
|
9580
10446
|
:max_results,
|
9581
10447
|
:next_token)
|
10448
|
+
SENSITIVE = []
|
9582
10449
|
include Aws::Structure
|
9583
10450
|
end
|
9584
10451
|
|
@@ -9593,6 +10460,7 @@ module Aws::IoT
|
|
9593
10460
|
class ListProvisioningTemplatesResponse < Struct.new(
|
9594
10461
|
:templates,
|
9595
10462
|
:next_token)
|
10463
|
+
SENSITIVE = []
|
9596
10464
|
include Aws::Structure
|
9597
10465
|
end
|
9598
10466
|
|
@@ -9621,6 +10489,7 @@ module Aws::IoT
|
|
9621
10489
|
:page_size,
|
9622
10490
|
:marker,
|
9623
10491
|
:ascending_order)
|
10492
|
+
SENSITIVE = []
|
9624
10493
|
include Aws::Structure
|
9625
10494
|
end
|
9626
10495
|
|
@@ -9635,6 +10504,7 @@ module Aws::IoT
|
|
9635
10504
|
class ListRoleAliasesResponse < Struct.new(
|
9636
10505
|
:role_aliases,
|
9637
10506
|
:next_marker)
|
10507
|
+
SENSITIVE = []
|
9638
10508
|
include Aws::Structure
|
9639
10509
|
end
|
9640
10510
|
|
@@ -9658,6 +10528,7 @@ module Aws::IoT
|
|
9658
10528
|
class ListScheduledAuditsRequest < Struct.new(
|
9659
10529
|
:next_token,
|
9660
10530
|
:max_results)
|
10531
|
+
SENSITIVE = []
|
9661
10532
|
include Aws::Structure
|
9662
10533
|
end
|
9663
10534
|
|
@@ -9673,6 +10544,7 @@ module Aws::IoT
|
|
9673
10544
|
class ListScheduledAuditsResponse < Struct.new(
|
9674
10545
|
:scheduled_audits,
|
9675
10546
|
:next_token)
|
10547
|
+
SENSITIVE = []
|
9676
10548
|
include Aws::Structure
|
9677
10549
|
end
|
9678
10550
|
|
@@ -9708,6 +10580,7 @@ module Aws::IoT
|
|
9708
10580
|
:max_results,
|
9709
10581
|
:recursive,
|
9710
10582
|
:security_profile_target_arn)
|
10583
|
+
SENSITIVE = []
|
9711
10584
|
include Aws::Structure
|
9712
10585
|
end
|
9713
10586
|
|
@@ -9723,6 +10596,7 @@ module Aws::IoT
|
|
9723
10596
|
class ListSecurityProfilesForTargetResponse < Struct.new(
|
9724
10597
|
:security_profile_target_mappings,
|
9725
10598
|
:next_token)
|
10599
|
+
SENSITIVE = []
|
9726
10600
|
include Aws::Structure
|
9727
10601
|
end
|
9728
10602
|
|
@@ -9752,6 +10626,7 @@ module Aws::IoT
|
|
9752
10626
|
:next_token,
|
9753
10627
|
:max_results,
|
9754
10628
|
:dimension_name)
|
10629
|
+
SENSITIVE = []
|
9755
10630
|
include Aws::Structure
|
9756
10631
|
end
|
9757
10632
|
|
@@ -9767,6 +10642,7 @@ module Aws::IoT
|
|
9767
10642
|
class ListSecurityProfilesResponse < Struct.new(
|
9768
10643
|
:security_profile_identifiers,
|
9769
10644
|
:next_token)
|
10645
|
+
SENSITIVE = []
|
9770
10646
|
include Aws::Structure
|
9771
10647
|
end
|
9772
10648
|
|
@@ -9795,6 +10671,7 @@ module Aws::IoT
|
|
9795
10671
|
:max_results,
|
9796
10672
|
:next_token,
|
9797
10673
|
:ascending_order)
|
10674
|
+
SENSITIVE = []
|
9798
10675
|
include Aws::Structure
|
9799
10676
|
end
|
9800
10677
|
|
@@ -9809,6 +10686,7 @@ module Aws::IoT
|
|
9809
10686
|
class ListStreamsResponse < Struct.new(
|
9810
10687
|
:streams,
|
9811
10688
|
:next_token)
|
10689
|
+
SENSITIVE = []
|
9812
10690
|
include Aws::Structure
|
9813
10691
|
end
|
9814
10692
|
|
@@ -9831,6 +10709,7 @@ module Aws::IoT
|
|
9831
10709
|
class ListTagsForResourceRequest < Struct.new(
|
9832
10710
|
:resource_arn,
|
9833
10711
|
:next_token)
|
10712
|
+
SENSITIVE = []
|
9834
10713
|
include Aws::Structure
|
9835
10714
|
end
|
9836
10715
|
|
@@ -9846,6 +10725,7 @@ module Aws::IoT
|
|
9846
10725
|
class ListTagsForResourceResponse < Struct.new(
|
9847
10726
|
:tags,
|
9848
10727
|
:next_token)
|
10728
|
+
SENSITIVE = []
|
9849
10729
|
include Aws::Structure
|
9850
10730
|
end
|
9851
10731
|
|
@@ -9874,6 +10754,7 @@ module Aws::IoT
|
|
9874
10754
|
:policy_name,
|
9875
10755
|
:marker,
|
9876
10756
|
:page_size)
|
10757
|
+
SENSITIVE = []
|
9877
10758
|
include Aws::Structure
|
9878
10759
|
end
|
9879
10760
|
|
@@ -9888,6 +10769,7 @@ module Aws::IoT
|
|
9888
10769
|
class ListTargetsForPolicyResponse < Struct.new(
|
9889
10770
|
:targets,
|
9890
10771
|
:next_marker)
|
10772
|
+
SENSITIVE = []
|
9891
10773
|
include Aws::Structure
|
9892
10774
|
end
|
9893
10775
|
|
@@ -9916,6 +10798,7 @@ module Aws::IoT
|
|
9916
10798
|
:security_profile_name,
|
9917
10799
|
:next_token,
|
9918
10800
|
:max_results)
|
10801
|
+
SENSITIVE = []
|
9919
10802
|
include Aws::Structure
|
9920
10803
|
end
|
9921
10804
|
|
@@ -9931,6 +10814,7 @@ module Aws::IoT
|
|
9931
10814
|
class ListTargetsForSecurityProfileResponse < Struct.new(
|
9932
10815
|
:security_profile_targets,
|
9933
10816
|
:next_token)
|
10817
|
+
SENSITIVE = []
|
9934
10818
|
include Aws::Structure
|
9935
10819
|
end
|
9936
10820
|
|
@@ -9959,6 +10843,7 @@ module Aws::IoT
|
|
9959
10843
|
:thing_name,
|
9960
10844
|
:next_token,
|
9961
10845
|
:max_results)
|
10846
|
+
SENSITIVE = []
|
9962
10847
|
include Aws::Structure
|
9963
10848
|
end
|
9964
10849
|
|
@@ -9974,6 +10859,7 @@ module Aws::IoT
|
|
9974
10859
|
class ListThingGroupsForThingResponse < Struct.new(
|
9975
10860
|
:thing_groups,
|
9976
10861
|
:next_token)
|
10862
|
+
SENSITIVE = []
|
9977
10863
|
include Aws::Structure
|
9978
10864
|
end
|
9979
10865
|
|
@@ -10016,6 +10902,7 @@ module Aws::IoT
|
|
10016
10902
|
:parent_group,
|
10017
10903
|
:name_prefix_filter,
|
10018
10904
|
:recursive)
|
10905
|
+
SENSITIVE = []
|
10019
10906
|
include Aws::Structure
|
10020
10907
|
end
|
10021
10908
|
|
@@ -10024,13 +10911,14 @@ module Aws::IoT
|
|
10024
10911
|
# @return [Array<Types::GroupNameAndArn>]
|
10025
10912
|
#
|
10026
10913
|
# @!attribute [rw] next_token
|
10027
|
-
# The token used to get the next set of results
|
10028
|
-
#
|
10914
|
+
# The token used to get the next set of results. Will not be returned
|
10915
|
+
# if operation has returned all results.
|
10029
10916
|
# @return [String]
|
10030
10917
|
#
|
10031
10918
|
class ListThingGroupsResponse < Struct.new(
|
10032
10919
|
:thing_groups,
|
10033
10920
|
:next_token)
|
10921
|
+
SENSITIVE = []
|
10034
10922
|
include Aws::Structure
|
10035
10923
|
end
|
10036
10924
|
|
@@ -10049,6 +10937,7 @@ module Aws::IoT
|
|
10049
10937
|
#
|
10050
10938
|
class ListThingPrincipalsRequest < Struct.new(
|
10051
10939
|
:thing_name)
|
10940
|
+
SENSITIVE = []
|
10052
10941
|
include Aws::Structure
|
10053
10942
|
end
|
10054
10943
|
|
@@ -10060,6 +10949,7 @@ module Aws::IoT
|
|
10060
10949
|
#
|
10061
10950
|
class ListThingPrincipalsResponse < Struct.new(
|
10062
10951
|
:principals)
|
10952
|
+
SENSITIVE = []
|
10063
10953
|
include Aws::Structure
|
10064
10954
|
end
|
10065
10955
|
|
@@ -10094,6 +10984,7 @@ module Aws::IoT
|
|
10094
10984
|
:report_type,
|
10095
10985
|
:next_token,
|
10096
10986
|
:max_results)
|
10987
|
+
SENSITIVE = []
|
10097
10988
|
include Aws::Structure
|
10098
10989
|
end
|
10099
10990
|
|
@@ -10114,6 +11005,7 @@ module Aws::IoT
|
|
10114
11005
|
:resource_links,
|
10115
11006
|
:report_type,
|
10116
11007
|
:next_token)
|
11008
|
+
SENSITIVE = []
|
10117
11009
|
include Aws::Structure
|
10118
11010
|
end
|
10119
11011
|
|
@@ -10142,6 +11034,7 @@ module Aws::IoT
|
|
10142
11034
|
:next_token,
|
10143
11035
|
:max_results,
|
10144
11036
|
:status)
|
11037
|
+
SENSITIVE = []
|
10145
11038
|
include Aws::Structure
|
10146
11039
|
end
|
10147
11040
|
|
@@ -10157,6 +11050,7 @@ module Aws::IoT
|
|
10157
11050
|
class ListThingRegistrationTasksResponse < Struct.new(
|
10158
11051
|
:task_ids,
|
10159
11052
|
:next_token)
|
11053
|
+
SENSITIVE = []
|
10160
11054
|
include Aws::Structure
|
10161
11055
|
end
|
10162
11056
|
|
@@ -10187,6 +11081,7 @@ module Aws::IoT
|
|
10187
11081
|
:next_token,
|
10188
11082
|
:max_results,
|
10189
11083
|
:thing_type_name)
|
11084
|
+
SENSITIVE = []
|
10190
11085
|
include Aws::Structure
|
10191
11086
|
end
|
10192
11087
|
|
@@ -10197,13 +11092,14 @@ module Aws::IoT
|
|
10197
11092
|
# @return [Array<Types::ThingTypeDefinition>]
|
10198
11093
|
#
|
10199
11094
|
# @!attribute [rw] next_token
|
10200
|
-
# The token for the next set of results
|
10201
|
-
#
|
11095
|
+
# The token for the next set of results. Will not be returned if
|
11096
|
+
# operation has returned all results.
|
10202
11097
|
# @return [String]
|
10203
11098
|
#
|
10204
11099
|
class ListThingTypesResponse < Struct.new(
|
10205
11100
|
:thing_types,
|
10206
11101
|
:next_token)
|
11102
|
+
SENSITIVE = []
|
10207
11103
|
include Aws::Structure
|
10208
11104
|
end
|
10209
11105
|
|
@@ -10232,6 +11128,7 @@ module Aws::IoT
|
|
10232
11128
|
:billing_group_name,
|
10233
11129
|
:next_token,
|
10234
11130
|
:max_results)
|
11131
|
+
SENSITIVE = []
|
10235
11132
|
include Aws::Structure
|
10236
11133
|
end
|
10237
11134
|
|
@@ -10240,13 +11137,14 @@ module Aws::IoT
|
|
10240
11137
|
# @return [Array<String>]
|
10241
11138
|
#
|
10242
11139
|
# @!attribute [rw] next_token
|
10243
|
-
# The token used to get the next set of results
|
10244
|
-
#
|
11140
|
+
# The token used to get the next set of results. Will not be returned
|
11141
|
+
# if operation has returned all results.
|
10245
11142
|
# @return [String]
|
10246
11143
|
#
|
10247
11144
|
class ListThingsInBillingGroupResponse < Struct.new(
|
10248
11145
|
:things,
|
10249
11146
|
:next_token)
|
11147
|
+
SENSITIVE = []
|
10250
11148
|
include Aws::Structure
|
10251
11149
|
end
|
10252
11150
|
|
@@ -10282,6 +11180,7 @@ module Aws::IoT
|
|
10282
11180
|
:recursive,
|
10283
11181
|
:next_token,
|
10284
11182
|
:max_results)
|
11183
|
+
SENSITIVE = []
|
10285
11184
|
include Aws::Structure
|
10286
11185
|
end
|
10287
11186
|
|
@@ -10297,6 +11196,7 @@ module Aws::IoT
|
|
10297
11196
|
class ListThingsInThingGroupResponse < Struct.new(
|
10298
11197
|
:things,
|
10299
11198
|
:next_token)
|
11199
|
+
SENSITIVE = []
|
10300
11200
|
include Aws::Structure
|
10301
11201
|
end
|
10302
11202
|
|
@@ -10339,6 +11239,7 @@ module Aws::IoT
|
|
10339
11239
|
:attribute_name,
|
10340
11240
|
:attribute_value,
|
10341
11241
|
:thing_type_name)
|
11242
|
+
SENSITIVE = []
|
10342
11243
|
include Aws::Structure
|
10343
11244
|
end
|
10344
11245
|
|
@@ -10349,13 +11250,14 @@ module Aws::IoT
|
|
10349
11250
|
# @return [Array<Types::ThingAttribute>]
|
10350
11251
|
#
|
10351
11252
|
# @!attribute [rw] next_token
|
10352
|
-
# The token used to get the next set of results
|
10353
|
-
#
|
11253
|
+
# The token used to get the next set of results. Will not be returned
|
11254
|
+
# if operation has returned all results.
|
10354
11255
|
# @return [String]
|
10355
11256
|
#
|
10356
11257
|
class ListThingsResponse < Struct.new(
|
10357
11258
|
:things,
|
10358
11259
|
:next_token)
|
11260
|
+
SENSITIVE = []
|
10359
11261
|
include Aws::Structure
|
10360
11262
|
end
|
10361
11263
|
|
@@ -10378,6 +11280,7 @@ module Aws::IoT
|
|
10378
11280
|
class ListTopicRuleDestinationsRequest < Struct.new(
|
10379
11281
|
:max_results,
|
10380
11282
|
:next_token)
|
11283
|
+
SENSITIVE = []
|
10381
11284
|
include Aws::Structure
|
10382
11285
|
end
|
10383
11286
|
|
@@ -10392,6 +11295,7 @@ module Aws::IoT
|
|
10392
11295
|
class ListTopicRuleDestinationsResponse < Struct.new(
|
10393
11296
|
:destination_summaries,
|
10394
11297
|
:next_token)
|
11298
|
+
SENSITIVE = []
|
10395
11299
|
include Aws::Structure
|
10396
11300
|
end
|
10397
11301
|
|
@@ -10428,6 +11332,7 @@ module Aws::IoT
|
|
10428
11332
|
:max_results,
|
10429
11333
|
:next_token,
|
10430
11334
|
:rule_disabled)
|
11335
|
+
SENSITIVE = []
|
10431
11336
|
include Aws::Structure
|
10432
11337
|
end
|
10433
11338
|
|
@@ -10444,6 +11349,7 @@ module Aws::IoT
|
|
10444
11349
|
class ListTopicRulesResponse < Struct.new(
|
10445
11350
|
:rules,
|
10446
11351
|
:next_token)
|
11352
|
+
SENSITIVE = []
|
10447
11353
|
include Aws::Structure
|
10448
11354
|
end
|
10449
11355
|
|
@@ -10474,6 +11380,7 @@ module Aws::IoT
|
|
10474
11380
|
:target_type,
|
10475
11381
|
:next_token,
|
10476
11382
|
:max_results)
|
11383
|
+
SENSITIVE = []
|
10477
11384
|
include Aws::Structure
|
10478
11385
|
end
|
10479
11386
|
|
@@ -10489,6 +11396,7 @@ module Aws::IoT
|
|
10489
11396
|
class ListV2LoggingLevelsResponse < Struct.new(
|
10490
11397
|
:log_target_configurations,
|
10491
11398
|
:next_token)
|
11399
|
+
SENSITIVE = []
|
10492
11400
|
include Aws::Structure
|
10493
11401
|
end
|
10494
11402
|
|
@@ -10537,6 +11445,7 @@ module Aws::IoT
|
|
10537
11445
|
:security_profile_name,
|
10538
11446
|
:next_token,
|
10539
11447
|
:max_results)
|
11448
|
+
SENSITIVE = []
|
10540
11449
|
include Aws::Structure
|
10541
11450
|
end
|
10542
11451
|
|
@@ -10554,6 +11463,7 @@ module Aws::IoT
|
|
10554
11463
|
class ListViolationEventsResponse < Struct.new(
|
10555
11464
|
:violation_events,
|
10556
11465
|
:next_token)
|
11466
|
+
SENSITIVE = []
|
10557
11467
|
include Aws::Structure
|
10558
11468
|
end
|
10559
11469
|
|
@@ -10578,6 +11488,7 @@ module Aws::IoT
|
|
10578
11488
|
class LogTarget < Struct.new(
|
10579
11489
|
:target_type,
|
10580
11490
|
:target_name)
|
11491
|
+
SENSITIVE = []
|
10581
11492
|
include Aws::Structure
|
10582
11493
|
end
|
10583
11494
|
|
@@ -10594,6 +11505,7 @@ module Aws::IoT
|
|
10594
11505
|
class LogTargetConfiguration < Struct.new(
|
10595
11506
|
:log_target,
|
10596
11507
|
:log_level)
|
11508
|
+
SENSITIVE = []
|
10597
11509
|
include Aws::Structure
|
10598
11510
|
end
|
10599
11511
|
|
@@ -10618,6 +11530,7 @@ module Aws::IoT
|
|
10618
11530
|
class LoggingOptionsPayload < Struct.new(
|
10619
11531
|
:role_arn,
|
10620
11532
|
:log_level)
|
11533
|
+
SENSITIVE = []
|
10621
11534
|
include Aws::Structure
|
10622
11535
|
end
|
10623
11536
|
|
@@ -10629,6 +11542,7 @@ module Aws::IoT
|
|
10629
11542
|
#
|
10630
11543
|
class MalformedPolicyException < Struct.new(
|
10631
11544
|
:message)
|
11545
|
+
SENSITIVE = []
|
10632
11546
|
include Aws::Structure
|
10633
11547
|
end
|
10634
11548
|
|
@@ -10659,6 +11573,7 @@ module Aws::IoT
|
|
10659
11573
|
class MetricDimension < Struct.new(
|
10660
11574
|
:dimension_name,
|
10661
11575
|
:operator)
|
11576
|
+
SENSITIVE = []
|
10662
11577
|
include Aws::Structure
|
10663
11578
|
end
|
10664
11579
|
|
@@ -10686,6 +11601,7 @@ module Aws::IoT
|
|
10686
11601
|
class MetricToRetain < Struct.new(
|
10687
11602
|
:metric,
|
10688
11603
|
:metric_dimension)
|
11604
|
+
SENSITIVE = []
|
10689
11605
|
include Aws::Structure
|
10690
11606
|
end
|
10691
11607
|
|
@@ -10719,6 +11635,7 @@ module Aws::IoT
|
|
10719
11635
|
:count,
|
10720
11636
|
:cidrs,
|
10721
11637
|
:ports)
|
11638
|
+
SENSITIVE = []
|
10722
11639
|
include Aws::Structure
|
10723
11640
|
end
|
10724
11641
|
|
@@ -10747,6 +11664,7 @@ module Aws::IoT
|
|
10747
11664
|
:id,
|
10748
11665
|
:role_arn,
|
10749
11666
|
:action_params)
|
11667
|
+
SENSITIVE = []
|
10750
11668
|
include Aws::Structure
|
10751
11669
|
end
|
10752
11670
|
|
@@ -10769,6 +11687,7 @@ module Aws::IoT
|
|
10769
11687
|
:action_name,
|
10770
11688
|
:action_arn,
|
10771
11689
|
:creation_date)
|
11690
|
+
SENSITIVE = []
|
10772
11691
|
include Aws::Structure
|
10773
11692
|
end
|
10774
11693
|
|
@@ -10841,6 +11760,7 @@ module Aws::IoT
|
|
10841
11760
|
:replace_default_policy_version_params,
|
10842
11761
|
:enable_io_t_logging_params,
|
10843
11762
|
:publish_finding_to_sns_params)
|
11763
|
+
SENSITIVE = []
|
10844
11764
|
include Aws::Structure
|
10845
11765
|
end
|
10846
11766
|
|
@@ -10871,6 +11791,7 @@ module Aws::IoT
|
|
10871
11791
|
:username,
|
10872
11792
|
:password,
|
10873
11793
|
:client_id)
|
11794
|
+
SENSITIVE = []
|
10874
11795
|
include Aws::Structure
|
10875
11796
|
end
|
10876
11797
|
|
@@ -10893,6 +11814,7 @@ module Aws::IoT
|
|
10893
11814
|
:resource_type,
|
10894
11815
|
:resource_identifier,
|
10895
11816
|
:additional_info)
|
11817
|
+
SENSITIVE = []
|
10896
11818
|
include Aws::Structure
|
10897
11819
|
end
|
10898
11820
|
|
@@ -10904,6 +11826,7 @@ module Aws::IoT
|
|
10904
11826
|
#
|
10905
11827
|
class NotConfiguredException < Struct.new(
|
10906
11828
|
:message)
|
11829
|
+
SENSITIVE = []
|
10907
11830
|
include Aws::Structure
|
10908
11831
|
end
|
10909
11832
|
|
@@ -10985,6 +11908,7 @@ module Aws::IoT
|
|
10985
11908
|
:file_location,
|
10986
11909
|
:code_signing,
|
10987
11910
|
:attributes)
|
11911
|
+
SENSITIVE = []
|
10988
11912
|
include Aws::Structure
|
10989
11913
|
end
|
10990
11914
|
|
@@ -11080,6 +12004,7 @@ module Aws::IoT
|
|
11080
12004
|
:aws_iot_job_arn,
|
11081
12005
|
:error_info,
|
11082
12006
|
:additional_parameters)
|
12007
|
+
SENSITIVE = []
|
11083
12008
|
include Aws::Structure
|
11084
12009
|
end
|
11085
12010
|
|
@@ -11101,6 +12026,7 @@ module Aws::IoT
|
|
11101
12026
|
:ota_update_id,
|
11102
12027
|
:ota_update_arn,
|
11103
12028
|
:creation_date)
|
12029
|
+
SENSITIVE = []
|
11104
12030
|
include Aws::Structure
|
11105
12031
|
end
|
11106
12032
|
|
@@ -11137,6 +12063,7 @@ module Aws::IoT
|
|
11137
12063
|
:transfer_date,
|
11138
12064
|
:transfer_message,
|
11139
12065
|
:creation_date)
|
12066
|
+
SENSITIVE = []
|
11140
12067
|
include Aws::Structure
|
11141
12068
|
end
|
11142
12069
|
|
@@ -11153,6 +12080,7 @@ module Aws::IoT
|
|
11153
12080
|
class PercentPair < Struct.new(
|
11154
12081
|
:percent,
|
11155
12082
|
:value)
|
12083
|
+
SENSITIVE = []
|
11156
12084
|
include Aws::Structure
|
11157
12085
|
end
|
11158
12086
|
|
@@ -11169,6 +12097,7 @@ module Aws::IoT
|
|
11169
12097
|
class Policy < Struct.new(
|
11170
12098
|
:policy_name,
|
11171
12099
|
:policy_arn)
|
12100
|
+
SENSITIVE = []
|
11172
12101
|
include Aws::Structure
|
11173
12102
|
end
|
11174
12103
|
|
@@ -11190,6 +12119,7 @@ module Aws::IoT
|
|
11190
12119
|
:version_id,
|
11191
12120
|
:is_default_version,
|
11192
12121
|
:create_date)
|
12122
|
+
SENSITIVE = []
|
11193
12123
|
include Aws::Structure
|
11194
12124
|
end
|
11195
12125
|
|
@@ -11215,6 +12145,7 @@ module Aws::IoT
|
|
11215
12145
|
class PolicyVersionIdentifier < Struct.new(
|
11216
12146
|
:policy_name,
|
11217
12147
|
:policy_version_id)
|
12148
|
+
SENSITIVE = []
|
11218
12149
|
include Aws::Structure
|
11219
12150
|
end
|
11220
12151
|
|
@@ -11243,6 +12174,7 @@ module Aws::IoT
|
|
11243
12174
|
class PresignedUrlConfig < Struct.new(
|
11244
12175
|
:role_arn,
|
11245
12176
|
:expires_in_sec)
|
12177
|
+
SENSITIVE = []
|
11246
12178
|
include Aws::Structure
|
11247
12179
|
end
|
11248
12180
|
|
@@ -11271,6 +12203,7 @@ module Aws::IoT
|
|
11271
12203
|
class ProvisioningHook < Struct.new(
|
11272
12204
|
:payload_version,
|
11273
12205
|
:target_arn)
|
12206
|
+
SENSITIVE = []
|
11274
12207
|
include Aws::Structure
|
11275
12208
|
end
|
11276
12209
|
|
@@ -11308,6 +12241,7 @@ module Aws::IoT
|
|
11308
12241
|
:creation_date,
|
11309
12242
|
:last_modified_date,
|
11310
12243
|
:enabled)
|
12244
|
+
SENSITIVE = []
|
11311
12245
|
include Aws::Structure
|
11312
12246
|
end
|
11313
12247
|
|
@@ -11330,6 +12264,7 @@ module Aws::IoT
|
|
11330
12264
|
:version_id,
|
11331
12265
|
:creation_date,
|
11332
12266
|
:is_default_version)
|
12267
|
+
SENSITIVE = []
|
11333
12268
|
include Aws::Structure
|
11334
12269
|
end
|
11335
12270
|
|
@@ -11350,6 +12285,7 @@ module Aws::IoT
|
|
11350
12285
|
#
|
11351
12286
|
class PublishFindingToSnsParams < Struct.new(
|
11352
12287
|
:topic_arn)
|
12288
|
+
SENSITIVE = []
|
11353
12289
|
include Aws::Structure
|
11354
12290
|
end
|
11355
12291
|
|
@@ -11415,6 +12351,7 @@ module Aws::IoT
|
|
11415
12351
|
:property_id,
|
11416
12352
|
:property_alias,
|
11417
12353
|
:property_values)
|
12354
|
+
SENSITIVE = []
|
11418
12355
|
include Aws::Structure
|
11419
12356
|
end
|
11420
12357
|
|
@@ -11434,6 +12371,7 @@ module Aws::IoT
|
|
11434
12371
|
#
|
11435
12372
|
class PutItemInput < Struct.new(
|
11436
12373
|
:table_name)
|
12374
|
+
SENSITIVE = []
|
11437
12375
|
include Aws::Structure
|
11438
12376
|
end
|
11439
12377
|
|
@@ -11461,6 +12399,7 @@ module Aws::IoT
|
|
11461
12399
|
class RateIncreaseCriteria < Struct.new(
|
11462
12400
|
:number_of_notified_things,
|
11463
12401
|
:number_of_succeeded_things)
|
12402
|
+
SENSITIVE = []
|
11464
12403
|
include Aws::Structure
|
11465
12404
|
end
|
11466
12405
|
|
@@ -11530,6 +12469,7 @@ module Aws::IoT
|
|
11530
12469
|
:allow_auto_registration,
|
11531
12470
|
:registration_config,
|
11532
12471
|
:tags)
|
12472
|
+
SENSITIVE = []
|
11533
12473
|
include Aws::Structure
|
11534
12474
|
end
|
11535
12475
|
|
@@ -11546,6 +12486,7 @@ module Aws::IoT
|
|
11546
12486
|
class RegisterCACertificateResponse < Struct.new(
|
11547
12487
|
:certificate_arn,
|
11548
12488
|
:certificate_id)
|
12489
|
+
SENSITIVE = []
|
11549
12490
|
include Aws::Structure
|
11550
12491
|
end
|
11551
12492
|
|
@@ -11583,6 +12524,7 @@ module Aws::IoT
|
|
11583
12524
|
:ca_certificate_pem,
|
11584
12525
|
:set_as_active,
|
11585
12526
|
:status)
|
12527
|
+
SENSITIVE = []
|
11586
12528
|
include Aws::Structure
|
11587
12529
|
end
|
11588
12530
|
|
@@ -11599,6 +12541,7 @@ module Aws::IoT
|
|
11599
12541
|
class RegisterCertificateResponse < Struct.new(
|
11600
12542
|
:certificate_arn,
|
11601
12543
|
:certificate_id)
|
12544
|
+
SENSITIVE = []
|
11602
12545
|
include Aws::Structure
|
11603
12546
|
end
|
11604
12547
|
|
@@ -11621,6 +12564,7 @@ module Aws::IoT
|
|
11621
12564
|
class RegisterCertificateWithoutCARequest < Struct.new(
|
11622
12565
|
:certificate_pem,
|
11623
12566
|
:status)
|
12567
|
+
SENSITIVE = []
|
11624
12568
|
include Aws::Structure
|
11625
12569
|
end
|
11626
12570
|
|
@@ -11636,6 +12580,7 @@ module Aws::IoT
|
|
11636
12580
|
class RegisterCertificateWithoutCAResponse < Struct.new(
|
11637
12581
|
:certificate_arn,
|
11638
12582
|
:certificate_id)
|
12583
|
+
SENSITIVE = []
|
11639
12584
|
include Aws::Structure
|
11640
12585
|
end
|
11641
12586
|
|
@@ -11670,6 +12615,7 @@ module Aws::IoT
|
|
11670
12615
|
class RegisterThingRequest < Struct.new(
|
11671
12616
|
:template_body,
|
11672
12617
|
:parameters)
|
12618
|
+
SENSITIVE = []
|
11673
12619
|
include Aws::Structure
|
11674
12620
|
end
|
11675
12621
|
|
@@ -11684,6 +12630,7 @@ module Aws::IoT
|
|
11684
12630
|
class RegisterThingResponse < Struct.new(
|
11685
12631
|
:certificate_pem,
|
11686
12632
|
:resource_arns)
|
12633
|
+
SENSITIVE = []
|
11687
12634
|
include Aws::Structure
|
11688
12635
|
end
|
11689
12636
|
|
@@ -11695,6 +12642,7 @@ module Aws::IoT
|
|
11695
12642
|
#
|
11696
12643
|
class RegistrationCodeValidationException < Struct.new(
|
11697
12644
|
:message)
|
12645
|
+
SENSITIVE = []
|
11698
12646
|
include Aws::Structure
|
11699
12647
|
end
|
11700
12648
|
|
@@ -11719,6 +12667,7 @@ module Aws::IoT
|
|
11719
12667
|
class RegistrationConfig < Struct.new(
|
11720
12668
|
:template_body,
|
11721
12669
|
:role_arn)
|
12670
|
+
SENSITIVE = []
|
11722
12671
|
include Aws::Structure
|
11723
12672
|
end
|
11724
12673
|
|
@@ -11744,6 +12693,7 @@ module Aws::IoT
|
|
11744
12693
|
class RejectCertificateTransferRequest < Struct.new(
|
11745
12694
|
:certificate_id,
|
11746
12695
|
:reject_reason)
|
12696
|
+
SENSITIVE = []
|
11747
12697
|
include Aws::Structure
|
11748
12698
|
end
|
11749
12699
|
|
@@ -11765,6 +12715,7 @@ module Aws::IoT
|
|
11765
12715
|
:resource_type,
|
11766
12716
|
:resource_identifier,
|
11767
12717
|
:additional_info)
|
12718
|
+
SENSITIVE = []
|
11768
12719
|
include Aws::Structure
|
11769
12720
|
end
|
11770
12721
|
|
@@ -11799,6 +12750,7 @@ module Aws::IoT
|
|
11799
12750
|
:billing_group_arn,
|
11800
12751
|
:thing_name,
|
11801
12752
|
:thing_arn)
|
12753
|
+
SENSITIVE = []
|
11802
12754
|
include Aws::Structure
|
11803
12755
|
end
|
11804
12756
|
|
@@ -11835,6 +12787,7 @@ module Aws::IoT
|
|
11835
12787
|
:thing_group_arn,
|
11836
12788
|
:thing_name,
|
11837
12789
|
:thing_arn)
|
12790
|
+
SENSITIVE = []
|
11838
12791
|
include Aws::Structure
|
11839
12792
|
end
|
11840
12793
|
|
@@ -11857,6 +12810,7 @@ module Aws::IoT
|
|
11857
12810
|
#
|
11858
12811
|
class ReplaceDefaultPolicyVersionParams < Struct.new(
|
11859
12812
|
:template_name)
|
12813
|
+
SENSITIVE = []
|
11860
12814
|
include Aws::Structure
|
11861
12815
|
end
|
11862
12816
|
|
@@ -12170,6 +13124,7 @@ module Aws::IoT
|
|
12170
13124
|
class ReplaceTopicRuleRequest < Struct.new(
|
12171
13125
|
:rule_name,
|
12172
13126
|
:topic_rule_payload)
|
13127
|
+
SENSITIVE = []
|
12173
13128
|
include Aws::Structure
|
12174
13129
|
end
|
12175
13130
|
|
@@ -12201,6 +13156,7 @@ module Aws::IoT
|
|
12201
13156
|
:role_arn,
|
12202
13157
|
:topic,
|
12203
13158
|
:qos)
|
13159
|
+
SENSITIVE = []
|
12204
13160
|
include Aws::Structure
|
12205
13161
|
end
|
12206
13162
|
|
@@ -12222,6 +13178,7 @@ module Aws::IoT
|
|
12222
13178
|
:message,
|
12223
13179
|
:resource_id,
|
12224
13180
|
:resource_arn)
|
13181
|
+
SENSITIVE = []
|
12225
13182
|
include Aws::Structure
|
12226
13183
|
end
|
12227
13184
|
|
@@ -12285,6 +13242,7 @@ module Aws::IoT
|
|
12285
13242
|
:account,
|
12286
13243
|
:iam_role_arn,
|
12287
13244
|
:role_alias_arn)
|
13245
|
+
SENSITIVE = []
|
12288
13246
|
include Aws::Structure
|
12289
13247
|
end
|
12290
13248
|
|
@@ -12296,6 +13254,7 @@ module Aws::IoT
|
|
12296
13254
|
#
|
12297
13255
|
class ResourceNotFoundException < Struct.new(
|
12298
13256
|
:message)
|
13257
|
+
SENSITIVE = []
|
12299
13258
|
include Aws::Structure
|
12300
13259
|
end
|
12301
13260
|
|
@@ -12307,6 +13266,7 @@ module Aws::IoT
|
|
12307
13266
|
#
|
12308
13267
|
class ResourceRegistrationFailureException < Struct.new(
|
12309
13268
|
:message)
|
13269
|
+
SENSITIVE = []
|
12310
13270
|
include Aws::Structure
|
12311
13271
|
end
|
12312
13272
|
|
@@ -12348,6 +13308,7 @@ module Aws::IoT
|
|
12348
13308
|
:credential_duration_seconds,
|
12349
13309
|
:creation_date,
|
12350
13310
|
:last_modified_date)
|
13311
|
+
SENSITIVE = []
|
12351
13312
|
include Aws::Structure
|
12352
13313
|
end
|
12353
13314
|
|
@@ -12390,6 +13351,7 @@ module Aws::IoT
|
|
12390
13351
|
:bucket_name,
|
12391
13352
|
:key,
|
12392
13353
|
:canned_acl)
|
13354
|
+
SENSITIVE = []
|
12393
13355
|
include Aws::Structure
|
12394
13356
|
end
|
12395
13357
|
|
@@ -12414,6 +13376,7 @@ module Aws::IoT
|
|
12414
13376
|
class S3Destination < Struct.new(
|
12415
13377
|
:bucket,
|
12416
13378
|
:prefix)
|
13379
|
+
SENSITIVE = []
|
12417
13380
|
include Aws::Structure
|
12418
13381
|
end
|
12419
13382
|
|
@@ -12444,6 +13407,7 @@ module Aws::IoT
|
|
12444
13407
|
:bucket,
|
12445
13408
|
:key,
|
12446
13409
|
:version)
|
13410
|
+
SENSITIVE = []
|
12447
13411
|
include Aws::Structure
|
12448
13412
|
end
|
12449
13413
|
|
@@ -12473,6 +13437,7 @@ module Aws::IoT
|
|
12473
13437
|
class SalesforceAction < Struct.new(
|
12474
13438
|
:token,
|
12475
13439
|
:url)
|
13440
|
+
SENSITIVE = []
|
12476
13441
|
include Aws::Structure
|
12477
13442
|
end
|
12478
13443
|
|
@@ -12508,6 +13473,7 @@ module Aws::IoT
|
|
12508
13473
|
:frequency,
|
12509
13474
|
:day_of_month,
|
12510
13475
|
:day_of_week)
|
13476
|
+
SENSITIVE = []
|
12511
13477
|
include Aws::Structure
|
12512
13478
|
end
|
12513
13479
|
|
@@ -12549,6 +13515,7 @@ module Aws::IoT
|
|
12549
13515
|
:next_token,
|
12550
13516
|
:max_results,
|
12551
13517
|
:query_version)
|
13518
|
+
SENSITIVE = []
|
12552
13519
|
include Aws::Structure
|
12553
13520
|
end
|
12554
13521
|
|
@@ -12569,6 +13536,7 @@ module Aws::IoT
|
|
12569
13536
|
:next_token,
|
12570
13537
|
:things,
|
12571
13538
|
:thing_groups)
|
13539
|
+
SENSITIVE = []
|
12572
13540
|
include Aws::Structure
|
12573
13541
|
end
|
12574
13542
|
|
@@ -12585,6 +13553,7 @@ module Aws::IoT
|
|
12585
13553
|
class SecurityProfileIdentifier < Struct.new(
|
12586
13554
|
:name,
|
12587
13555
|
:arn)
|
13556
|
+
SENSITIVE = []
|
12588
13557
|
include Aws::Structure
|
12589
13558
|
end
|
12590
13559
|
|
@@ -12597,6 +13566,7 @@ module Aws::IoT
|
|
12597
13566
|
#
|
12598
13567
|
class SecurityProfileTarget < Struct.new(
|
12599
13568
|
:arn)
|
13569
|
+
SENSITIVE = []
|
12600
13570
|
include Aws::Structure
|
12601
13571
|
end
|
12602
13572
|
|
@@ -12615,6 +13585,7 @@ module Aws::IoT
|
|
12615
13585
|
class SecurityProfileTargetMapping < Struct.new(
|
12616
13586
|
:security_profile_identifier,
|
12617
13587
|
:target)
|
13588
|
+
SENSITIVE = []
|
12618
13589
|
include Aws::Structure
|
12619
13590
|
end
|
12620
13591
|
|
@@ -12636,6 +13607,7 @@ module Aws::IoT
|
|
12636
13607
|
:server_certificate_arn,
|
12637
13608
|
:server_certificate_status,
|
12638
13609
|
:server_certificate_status_detail)
|
13610
|
+
SENSITIVE = []
|
12639
13611
|
include Aws::Structure
|
12640
13612
|
end
|
12641
13613
|
|
@@ -12647,6 +13619,7 @@ module Aws::IoT
|
|
12647
13619
|
#
|
12648
13620
|
class ServiceUnavailableException < Struct.new(
|
12649
13621
|
:message)
|
13622
|
+
SENSITIVE = []
|
12650
13623
|
include Aws::Structure
|
12651
13624
|
end
|
12652
13625
|
|
@@ -12663,6 +13636,7 @@ module Aws::IoT
|
|
12663
13636
|
#
|
12664
13637
|
class SetDefaultAuthorizerRequest < Struct.new(
|
12665
13638
|
:authorizer_name)
|
13639
|
+
SENSITIVE = []
|
12666
13640
|
include Aws::Structure
|
12667
13641
|
end
|
12668
13642
|
|
@@ -12677,6 +13651,7 @@ module Aws::IoT
|
|
12677
13651
|
class SetDefaultAuthorizerResponse < Struct.new(
|
12678
13652
|
:authorizer_name,
|
12679
13653
|
:authorizer_arn)
|
13654
|
+
SENSITIVE = []
|
12680
13655
|
include Aws::Structure
|
12681
13656
|
end
|
12682
13657
|
|
@@ -12701,6 +13676,7 @@ module Aws::IoT
|
|
12701
13676
|
class SetDefaultPolicyVersionRequest < Struct.new(
|
12702
13677
|
:policy_name,
|
12703
13678
|
:policy_version_id)
|
13679
|
+
SENSITIVE = []
|
12704
13680
|
include Aws::Structure
|
12705
13681
|
end
|
12706
13682
|
|
@@ -12722,6 +13698,7 @@ module Aws::IoT
|
|
12722
13698
|
#
|
12723
13699
|
class SetLoggingOptionsRequest < Struct.new(
|
12724
13700
|
:logging_options_payload)
|
13701
|
+
SENSITIVE = []
|
12725
13702
|
include Aws::Structure
|
12726
13703
|
end
|
12727
13704
|
|
@@ -12747,6 +13724,7 @@ module Aws::IoT
|
|
12747
13724
|
class SetV2LoggingLevelRequest < Struct.new(
|
12748
13725
|
:log_target,
|
12749
13726
|
:log_level)
|
13727
|
+
SENSITIVE = []
|
12750
13728
|
include Aws::Structure
|
12751
13729
|
end
|
12752
13730
|
|
@@ -12775,6 +13753,7 @@ module Aws::IoT
|
|
12775
13753
|
:role_arn,
|
12776
13754
|
:default_log_level,
|
12777
13755
|
:disable_all_logs)
|
13756
|
+
SENSITIVE = []
|
12778
13757
|
include Aws::Structure
|
12779
13758
|
end
|
12780
13759
|
|
@@ -12805,6 +13784,7 @@ module Aws::IoT
|
|
12805
13784
|
:signing_region,
|
12806
13785
|
:service_name,
|
12807
13786
|
:role_arn)
|
13787
|
+
SENSITIVE = []
|
12808
13788
|
include Aws::Structure
|
12809
13789
|
end
|
12810
13790
|
|
@@ -12835,6 +13815,7 @@ module Aws::IoT
|
|
12835
13815
|
:certificate_arn,
|
12836
13816
|
:platform,
|
12837
13817
|
:certificate_path_on_device)
|
13818
|
+
SENSITIVE = []
|
12838
13819
|
include Aws::Structure
|
12839
13820
|
end
|
12840
13821
|
|
@@ -12875,6 +13856,7 @@ module Aws::IoT
|
|
12875
13856
|
:target_arn,
|
12876
13857
|
:role_arn,
|
12877
13858
|
:message_format)
|
13859
|
+
SENSITIVE = []
|
12878
13860
|
include Aws::Structure
|
12879
13861
|
end
|
12880
13862
|
|
@@ -12886,6 +13868,7 @@ module Aws::IoT
|
|
12886
13868
|
#
|
12887
13869
|
class SqlParseException < Struct.new(
|
12888
13870
|
:message)
|
13871
|
+
SENSITIVE = []
|
12889
13872
|
include Aws::Structure
|
12890
13873
|
end
|
12891
13874
|
|
@@ -12916,6 +13899,7 @@ module Aws::IoT
|
|
12916
13899
|
:role_arn,
|
12917
13900
|
:queue_url,
|
12918
13901
|
:use_base_64)
|
13902
|
+
SENSITIVE = []
|
12919
13903
|
include Aws::Structure
|
12920
13904
|
end
|
12921
13905
|
|
@@ -12968,6 +13952,7 @@ module Aws::IoT
|
|
12968
13952
|
:target,
|
12969
13953
|
:audit_check_to_actions_mapping,
|
12970
13954
|
:client_request_token)
|
13955
|
+
SENSITIVE = []
|
12971
13956
|
include Aws::Structure
|
12972
13957
|
end
|
12973
13958
|
|
@@ -12978,6 +13963,7 @@ module Aws::IoT
|
|
12978
13963
|
#
|
12979
13964
|
class StartAuditMitigationActionsTaskResponse < Struct.new(
|
12980
13965
|
:task_id)
|
13966
|
+
SENSITIVE = []
|
12981
13967
|
include Aws::Structure
|
12982
13968
|
end
|
12983
13969
|
|
@@ -12999,6 +13985,7 @@ module Aws::IoT
|
|
12999
13985
|
#
|
13000
13986
|
class StartOnDemandAuditTaskRequest < Struct.new(
|
13001
13987
|
:target_check_names)
|
13988
|
+
SENSITIVE = []
|
13002
13989
|
include Aws::Structure
|
13003
13990
|
end
|
13004
13991
|
|
@@ -13008,6 +13995,7 @@ module Aws::IoT
|
|
13008
13995
|
#
|
13009
13996
|
class StartOnDemandAuditTaskResponse < Struct.new(
|
13010
13997
|
:task_id)
|
13998
|
+
SENSITIVE = []
|
13011
13999
|
include Aws::Structure
|
13012
14000
|
end
|
13013
14001
|
|
@@ -13047,6 +14035,7 @@ module Aws::IoT
|
|
13047
14035
|
:signing_profile_parameter,
|
13048
14036
|
:signing_profile_name,
|
13049
14037
|
:destination)
|
14038
|
+
SENSITIVE = []
|
13050
14039
|
include Aws::Structure
|
13051
14040
|
end
|
13052
14041
|
|
@@ -13083,6 +14072,7 @@ module Aws::IoT
|
|
13083
14072
|
:input_file_bucket,
|
13084
14073
|
:input_file_key,
|
13085
14074
|
:role_arn)
|
14075
|
+
SENSITIVE = []
|
13086
14076
|
include Aws::Structure
|
13087
14077
|
end
|
13088
14078
|
|
@@ -13092,6 +14082,7 @@ module Aws::IoT
|
|
13092
14082
|
#
|
13093
14083
|
class StartThingRegistrationTaskResponse < Struct.new(
|
13094
14084
|
:task_id)
|
14085
|
+
SENSITIVE = []
|
13095
14086
|
include Aws::Structure
|
13096
14087
|
end
|
13097
14088
|
|
@@ -13120,6 +14111,7 @@ module Aws::IoT
|
|
13120
14111
|
#
|
13121
14112
|
class StatisticalThreshold < Struct.new(
|
13122
14113
|
:statistic)
|
14114
|
+
SENSITIVE = []
|
13123
14115
|
include Aws::Structure
|
13124
14116
|
end
|
13125
14117
|
|
@@ -13167,6 +14159,7 @@ module Aws::IoT
|
|
13167
14159
|
:sum_of_squares,
|
13168
14160
|
:variance,
|
13169
14161
|
:std_deviation)
|
14162
|
+
SENSITIVE = []
|
13170
14163
|
include Aws::Structure
|
13171
14164
|
end
|
13172
14165
|
|
@@ -13202,6 +14195,7 @@ module Aws::IoT
|
|
13202
14195
|
:execution_name_prefix,
|
13203
14196
|
:state_machine_name,
|
13204
14197
|
:role_arn)
|
14198
|
+
SENSITIVE = []
|
13205
14199
|
include Aws::Structure
|
13206
14200
|
end
|
13207
14201
|
|
@@ -13218,6 +14212,7 @@ module Aws::IoT
|
|
13218
14212
|
#
|
13219
14213
|
class StopThingRegistrationTaskRequest < Struct.new(
|
13220
14214
|
:task_id)
|
14215
|
+
SENSITIVE = []
|
13221
14216
|
include Aws::Structure
|
13222
14217
|
end
|
13223
14218
|
|
@@ -13244,6 +14239,7 @@ module Aws::IoT
|
|
13244
14239
|
class Stream < Struct.new(
|
13245
14240
|
:stream_id,
|
13246
14241
|
:file_id)
|
14242
|
+
SENSITIVE = []
|
13247
14243
|
include Aws::Structure
|
13248
14244
|
end
|
13249
14245
|
|
@@ -13272,6 +14268,7 @@ module Aws::IoT
|
|
13272
14268
|
class StreamFile < Struct.new(
|
13273
14269
|
:file_id,
|
13274
14270
|
:s3_location)
|
14271
|
+
SENSITIVE = []
|
13275
14272
|
include Aws::Structure
|
13276
14273
|
end
|
13277
14274
|
|
@@ -13318,6 +14315,7 @@ module Aws::IoT
|
|
13318
14315
|
:created_at,
|
13319
14316
|
:last_updated_at,
|
13320
14317
|
:role_arn)
|
14318
|
+
SENSITIVE = []
|
13321
14319
|
include Aws::Structure
|
13322
14320
|
end
|
13323
14321
|
|
@@ -13344,6 +14342,7 @@ module Aws::IoT
|
|
13344
14342
|
:stream_arn,
|
13345
14343
|
:stream_version,
|
13346
14344
|
:description)
|
14345
|
+
SENSITIVE = []
|
13347
14346
|
include Aws::Structure
|
13348
14347
|
end
|
13349
14348
|
|
@@ -13368,6 +14367,7 @@ module Aws::IoT
|
|
13368
14367
|
class Tag < Struct.new(
|
13369
14368
|
:key,
|
13370
14369
|
:value)
|
14370
|
+
SENSITIVE = []
|
13371
14371
|
include Aws::Structure
|
13372
14372
|
end
|
13373
14373
|
|
@@ -13395,6 +14395,7 @@ module Aws::IoT
|
|
13395
14395
|
class TagResourceRequest < Struct.new(
|
13396
14396
|
:resource_arn,
|
13397
14397
|
:tags)
|
14398
|
+
SENSITIVE = []
|
13398
14399
|
include Aws::Structure
|
13399
14400
|
end
|
13400
14401
|
|
@@ -13408,6 +14409,7 @@ module Aws::IoT
|
|
13408
14409
|
#
|
13409
14410
|
class TaskAlreadyExistsException < Struct.new(
|
13410
14411
|
:message)
|
14412
|
+
SENSITIVE = []
|
13411
14413
|
include Aws::Structure
|
13412
14414
|
end
|
13413
14415
|
|
@@ -13450,6 +14452,7 @@ module Aws::IoT
|
|
13450
14452
|
:non_compliant_checks,
|
13451
14453
|
:failed_checks,
|
13452
14454
|
:canceled_checks)
|
14455
|
+
SENSITIVE = []
|
13453
14456
|
include Aws::Structure
|
13454
14457
|
end
|
13455
14458
|
|
@@ -13487,6 +14490,7 @@ module Aws::IoT
|
|
13487
14490
|
:succeeded_findings_count,
|
13488
14491
|
:skipped_findings_count,
|
13489
14492
|
:canceled_findings_count)
|
14493
|
+
SENSITIVE = []
|
13490
14494
|
include Aws::Structure
|
13491
14495
|
end
|
13492
14496
|
|
@@ -13508,7 +14512,11 @@ module Aws::IoT
|
|
13508
14512
|
# }
|
13509
14513
|
#
|
13510
14514
|
# @!attribute [rw] principal
|
13511
|
-
# The principal.
|
14515
|
+
# The principal. Valid principals are CertificateArn
|
14516
|
+
# (arn:aws:iot:*region*\:*accountId*\:cert/*certificateId*),
|
14517
|
+
# thingGroupArn
|
14518
|
+
# (arn:aws:iot:*region*\:*accountId*\:thinggroup/*groupName*) and
|
14519
|
+
# CognitoId (*region*\:*id*).
|
13512
14520
|
# @return [String]
|
13513
14521
|
#
|
13514
14522
|
# @!attribute [rw] cognito_identity_pool_id
|
@@ -13542,6 +14550,7 @@ module Aws::IoT
|
|
13542
14550
|
:client_id,
|
13543
14551
|
:policy_names_to_add,
|
13544
14552
|
:policy_names_to_skip)
|
14553
|
+
SENSITIVE = []
|
13545
14554
|
include Aws::Structure
|
13546
14555
|
end
|
13547
14556
|
|
@@ -13551,6 +14560,7 @@ module Aws::IoT
|
|
13551
14560
|
#
|
13552
14561
|
class TestAuthorizationResponse < Struct.new(
|
13553
14562
|
:auth_results)
|
14563
|
+
SENSITIVE = []
|
13554
14564
|
include Aws::Structure
|
13555
14565
|
end
|
13556
14566
|
|
@@ -13609,6 +14619,7 @@ module Aws::IoT
|
|
13609
14619
|
:http_context,
|
13610
14620
|
:mqtt_context,
|
13611
14621
|
:tls_context)
|
14622
|
+
SENSITIVE = []
|
13612
14623
|
include Aws::Structure
|
13613
14624
|
end
|
13614
14625
|
|
@@ -13639,6 +14650,7 @@ module Aws::IoT
|
|
13639
14650
|
:policy_documents,
|
13640
14651
|
:refresh_after_in_seconds,
|
13641
14652
|
:disconnect_after_in_seconds)
|
14653
|
+
SENSITIVE = []
|
13642
14654
|
include Aws::Structure
|
13643
14655
|
end
|
13644
14656
|
|
@@ -13672,6 +14684,7 @@ module Aws::IoT
|
|
13672
14684
|
:thing_arn,
|
13673
14685
|
:attributes,
|
13674
14686
|
:version)
|
14687
|
+
SENSITIVE = []
|
13675
14688
|
include Aws::Structure
|
13676
14689
|
end
|
13677
14690
|
|
@@ -13691,6 +14704,7 @@ module Aws::IoT
|
|
13691
14704
|
class ThingConnectivity < Struct.new(
|
13692
14705
|
:connected,
|
13693
14706
|
:timestamp)
|
14707
|
+
SENSITIVE = []
|
13694
14708
|
include Aws::Structure
|
13695
14709
|
end
|
13696
14710
|
|
@@ -13732,6 +14746,7 @@ module Aws::IoT
|
|
13732
14746
|
:attributes,
|
13733
14747
|
:shadow,
|
13734
14748
|
:connectivity)
|
14749
|
+
SENSITIVE = []
|
13735
14750
|
include Aws::Structure
|
13736
14751
|
end
|
13737
14752
|
|
@@ -13763,6 +14778,7 @@ module Aws::IoT
|
|
13763
14778
|
:thing_group_description,
|
13764
14779
|
:attributes,
|
13765
14780
|
:parent_group_names)
|
14781
|
+
SENSITIVE = []
|
13766
14782
|
include Aws::Structure
|
13767
14783
|
end
|
13768
14784
|
|
@@ -13808,6 +14824,7 @@ module Aws::IoT
|
|
13808
14824
|
:thing_group_indexing_mode,
|
13809
14825
|
:managed_fields,
|
13810
14826
|
:custom_fields)
|
14827
|
+
SENSITIVE = []
|
13811
14828
|
include Aws::Structure
|
13812
14829
|
end
|
13813
14830
|
|
@@ -13829,6 +14846,7 @@ module Aws::IoT
|
|
13829
14846
|
:parent_group_name,
|
13830
14847
|
:root_to_parent_thing_groups,
|
13831
14848
|
:creation_date)
|
14849
|
+
SENSITIVE = []
|
13832
14850
|
include Aws::Structure
|
13833
14851
|
end
|
13834
14852
|
|
@@ -13858,6 +14876,7 @@ module Aws::IoT
|
|
13858
14876
|
class ThingGroupProperties < Struct.new(
|
13859
14877
|
:thing_group_description,
|
13860
14878
|
:attribute_payload)
|
14879
|
+
SENSITIVE = []
|
13861
14880
|
include Aws::Structure
|
13862
14881
|
end
|
13863
14882
|
|
@@ -13923,6 +14942,7 @@ module Aws::IoT
|
|
13923
14942
|
:thing_connectivity_indexing_mode,
|
13924
14943
|
:managed_fields,
|
13925
14944
|
:custom_fields)
|
14945
|
+
SENSITIVE = []
|
13926
14946
|
include Aws::Structure
|
13927
14947
|
end
|
13928
14948
|
|
@@ -13953,6 +14973,7 @@ module Aws::IoT
|
|
13953
14973
|
:thing_type_arn,
|
13954
14974
|
:thing_type_properties,
|
13955
14975
|
:thing_type_metadata)
|
14976
|
+
SENSITIVE = []
|
13956
14977
|
include Aws::Structure
|
13957
14978
|
end
|
13958
14979
|
|
@@ -13978,6 +14999,7 @@ module Aws::IoT
|
|
13978
14999
|
:deprecated,
|
13979
15000
|
:deprecation_date,
|
13980
15001
|
:creation_date)
|
15002
|
+
SENSITIVE = []
|
13981
15003
|
include Aws::Structure
|
13982
15004
|
end
|
13983
15005
|
|
@@ -14004,6 +15026,7 @@ module Aws::IoT
|
|
14004
15026
|
class ThingTypeProperties < Struct.new(
|
14005
15027
|
:thing_type_description,
|
14006
15028
|
:searchable_attributes)
|
15029
|
+
SENSITIVE = []
|
14007
15030
|
include Aws::Structure
|
14008
15031
|
end
|
14009
15032
|
|
@@ -14015,6 +15038,7 @@ module Aws::IoT
|
|
14015
15038
|
#
|
14016
15039
|
class ThrottlingException < Struct.new(
|
14017
15040
|
:message)
|
15041
|
+
SENSITIVE = []
|
14018
15042
|
include Aws::Structure
|
14019
15043
|
end
|
14020
15044
|
|
@@ -14043,6 +15067,7 @@ module Aws::IoT
|
|
14043
15067
|
#
|
14044
15068
|
class TimeoutConfig < Struct.new(
|
14045
15069
|
:in_progress_timeout_in_minutes)
|
15070
|
+
SENSITIVE = []
|
14046
15071
|
include Aws::Structure
|
14047
15072
|
end
|
14048
15073
|
|
@@ -14061,6 +15086,7 @@ module Aws::IoT
|
|
14061
15086
|
#
|
14062
15087
|
class TlsContext < Struct.new(
|
14063
15088
|
:server_name)
|
15089
|
+
SENSITIVE = []
|
14064
15090
|
include Aws::Structure
|
14065
15091
|
end
|
14066
15092
|
|
@@ -14108,6 +15134,7 @@ module Aws::IoT
|
|
14108
15134
|
:rule_disabled,
|
14109
15135
|
:aws_iot_sql_version,
|
14110
15136
|
:error_action)
|
15137
|
+
SENSITIVE = []
|
14111
15138
|
include Aws::Structure
|
14112
15139
|
end
|
14113
15140
|
|
@@ -14164,6 +15191,7 @@ module Aws::IoT
|
|
14164
15191
|
:status,
|
14165
15192
|
:status_reason,
|
14166
15193
|
:http_url_properties)
|
15194
|
+
SENSITIVE = []
|
14167
15195
|
include Aws::Structure
|
14168
15196
|
end
|
14169
15197
|
|
@@ -14184,6 +15212,7 @@ module Aws::IoT
|
|
14184
15212
|
#
|
14185
15213
|
class TopicRuleDestinationConfiguration < Struct.new(
|
14186
15214
|
:http_url_configuration)
|
15215
|
+
SENSITIVE = []
|
14187
15216
|
include Aws::Structure
|
14188
15217
|
end
|
14189
15218
|
|
@@ -14239,6 +15268,7 @@ module Aws::IoT
|
|
14239
15268
|
:status,
|
14240
15269
|
:status_reason,
|
14241
15270
|
:http_url_summary)
|
15271
|
+
SENSITIVE = []
|
14242
15272
|
include Aws::Structure
|
14243
15273
|
end
|
14244
15274
|
|
@@ -14270,6 +15300,7 @@ module Aws::IoT
|
|
14270
15300
|
:topic_pattern,
|
14271
15301
|
:created_at,
|
14272
15302
|
:rule_disabled)
|
15303
|
+
SENSITIVE = []
|
14273
15304
|
include Aws::Structure
|
14274
15305
|
end
|
14275
15306
|
|
@@ -14605,6 +15636,7 @@ module Aws::IoT
|
|
14605
15636
|
:rule_disabled,
|
14606
15637
|
:aws_iot_sql_version,
|
14607
15638
|
:error_action)
|
15639
|
+
SENSITIVE = []
|
14608
15640
|
include Aws::Structure
|
14609
15641
|
end
|
14610
15642
|
|
@@ -14617,6 +15649,7 @@ module Aws::IoT
|
|
14617
15649
|
#
|
14618
15650
|
class TransferAlreadyCompletedException < Struct.new(
|
14619
15651
|
:message)
|
15652
|
+
SENSITIVE = []
|
14620
15653
|
include Aws::Structure
|
14621
15654
|
end
|
14622
15655
|
|
@@ -14648,6 +15681,7 @@ module Aws::IoT
|
|
14648
15681
|
:certificate_id,
|
14649
15682
|
:target_aws_account,
|
14650
15683
|
:transfer_message)
|
15684
|
+
SENSITIVE = []
|
14651
15685
|
include Aws::Structure
|
14652
15686
|
end
|
14653
15687
|
|
@@ -14659,6 +15693,7 @@ module Aws::IoT
|
|
14659
15693
|
#
|
14660
15694
|
class TransferCertificateResponse < Struct.new(
|
14661
15695
|
:transferred_certificate_arn)
|
15696
|
+
SENSITIVE = []
|
14662
15697
|
include Aws::Structure
|
14663
15698
|
end
|
14664
15699
|
|
@@ -14671,6 +15706,7 @@ module Aws::IoT
|
|
14671
15706
|
#
|
14672
15707
|
class TransferConflictException < Struct.new(
|
14673
15708
|
:message)
|
15709
|
+
SENSITIVE = []
|
14674
15710
|
include Aws::Structure
|
14675
15711
|
end
|
14676
15712
|
|
@@ -14702,6 +15738,7 @@ module Aws::IoT
|
|
14702
15738
|
:transfer_date,
|
14703
15739
|
:accept_date,
|
14704
15740
|
:reject_date)
|
15741
|
+
SENSITIVE = []
|
14705
15742
|
include Aws::Structure
|
14706
15743
|
end
|
14707
15744
|
|
@@ -14713,6 +15750,7 @@ module Aws::IoT
|
|
14713
15750
|
#
|
14714
15751
|
class UnauthorizedException < Struct.new(
|
14715
15752
|
:message)
|
15753
|
+
SENSITIVE = []
|
14716
15754
|
include Aws::Structure
|
14717
15755
|
end
|
14718
15756
|
|
@@ -14735,6 +15773,7 @@ module Aws::IoT
|
|
14735
15773
|
class UntagResourceRequest < Struct.new(
|
14736
15774
|
:resource_arn,
|
14737
15775
|
:tag_keys)
|
15776
|
+
SENSITIVE = []
|
14738
15777
|
include Aws::Structure
|
14739
15778
|
end
|
14740
15779
|
|
@@ -14790,11 +15829,72 @@ module Aws::IoT
|
|
14790
15829
|
:role_arn,
|
14791
15830
|
:audit_notification_target_configurations,
|
14792
15831
|
:audit_check_configurations)
|
15832
|
+
SENSITIVE = []
|
14793
15833
|
include Aws::Structure
|
14794
15834
|
end
|
14795
15835
|
|
14796
15836
|
class UpdateAccountAuditConfigurationResponse < Aws::EmptyStructure; end
|
14797
15837
|
|
15838
|
+
# @note When making an API call, you may pass UpdateAuditSuppressionRequest
|
15839
|
+
# data as a hash:
|
15840
|
+
#
|
15841
|
+
# {
|
15842
|
+
# check_name: "AuditCheckName", # required
|
15843
|
+
# resource_identifier: { # required
|
15844
|
+
# device_certificate_id: "CertificateId",
|
15845
|
+
# ca_certificate_id: "CertificateId",
|
15846
|
+
# cognito_identity_pool_id: "CognitoIdentityPoolId",
|
15847
|
+
# client_id: "ClientId",
|
15848
|
+
# policy_version_identifier: {
|
15849
|
+
# policy_name: "PolicyName",
|
15850
|
+
# policy_version_id: "PolicyVersionId",
|
15851
|
+
# },
|
15852
|
+
# account: "AwsAccountId",
|
15853
|
+
# iam_role_arn: "RoleArn",
|
15854
|
+
# role_alias_arn: "RoleAliasArn",
|
15855
|
+
# },
|
15856
|
+
# expiration_date: Time.now,
|
15857
|
+
# suppress_indefinitely: false,
|
15858
|
+
# description: "AuditDescription",
|
15859
|
+
# }
|
15860
|
+
#
|
15861
|
+
# @!attribute [rw] check_name
|
15862
|
+
# An audit check name. Checks must be enabled for your account. (Use
|
15863
|
+
# `DescribeAccountAuditConfiguration` to see the list of all checks,
|
15864
|
+
# including those that are enabled or use
|
15865
|
+
# `UpdateAccountAuditConfiguration` to select which checks are
|
15866
|
+
# enabled.)
|
15867
|
+
# @return [String]
|
15868
|
+
#
|
15869
|
+
# @!attribute [rw] resource_identifier
|
15870
|
+
# Information that identifies the noncompliant resource.
|
15871
|
+
# @return [Types::ResourceIdentifier]
|
15872
|
+
#
|
15873
|
+
# @!attribute [rw] expiration_date
|
15874
|
+
# The expiration date (epoch timestamp in seconds) that you want the
|
15875
|
+
# suppression to adhere to.
|
15876
|
+
# @return [Time]
|
15877
|
+
#
|
15878
|
+
# @!attribute [rw] suppress_indefinitely
|
15879
|
+
# Indicates whether a suppression should exist indefinitely or not.
|
15880
|
+
# @return [Boolean]
|
15881
|
+
#
|
15882
|
+
# @!attribute [rw] description
|
15883
|
+
# The description of the audit suppression.
|
15884
|
+
# @return [String]
|
15885
|
+
#
|
15886
|
+
class UpdateAuditSuppressionRequest < Struct.new(
|
15887
|
+
:check_name,
|
15888
|
+
:resource_identifier,
|
15889
|
+
:expiration_date,
|
15890
|
+
:suppress_indefinitely,
|
15891
|
+
:description)
|
15892
|
+
SENSITIVE = []
|
15893
|
+
include Aws::Structure
|
15894
|
+
end
|
15895
|
+
|
15896
|
+
class UpdateAuditSuppressionResponse < Aws::EmptyStructure; end
|
15897
|
+
|
14798
15898
|
# @note When making an API call, you may pass UpdateAuthorizerRequest
|
14799
15899
|
# data as a hash:
|
14800
15900
|
#
|
@@ -14834,6 +15934,7 @@ module Aws::IoT
|
|
14834
15934
|
:token_key_name,
|
14835
15935
|
:token_signing_public_keys,
|
14836
15936
|
:status)
|
15937
|
+
SENSITIVE = []
|
14837
15938
|
include Aws::Structure
|
14838
15939
|
end
|
14839
15940
|
|
@@ -14848,6 +15949,7 @@ module Aws::IoT
|
|
14848
15949
|
class UpdateAuthorizerResponse < Struct.new(
|
14849
15950
|
:authorizer_name,
|
14850
15951
|
:authorizer_arn)
|
15952
|
+
SENSITIVE = []
|
14851
15953
|
include Aws::Structure
|
14852
15954
|
end
|
14853
15955
|
|
@@ -14881,6 +15983,7 @@ module Aws::IoT
|
|
14881
15983
|
:billing_group_name,
|
14882
15984
|
:billing_group_properties,
|
14883
15985
|
:expected_version)
|
15986
|
+
SENSITIVE = []
|
14884
15987
|
include Aws::Structure
|
14885
15988
|
end
|
14886
15989
|
|
@@ -14890,6 +15993,7 @@ module Aws::IoT
|
|
14890
15993
|
#
|
14891
15994
|
class UpdateBillingGroupResponse < Struct.new(
|
14892
15995
|
:version)
|
15996
|
+
SENSITIVE = []
|
14893
15997
|
include Aws::Structure
|
14894
15998
|
end
|
14895
15999
|
|
@@ -14910,6 +16014,7 @@ module Aws::IoT
|
|
14910
16014
|
#
|
14911
16015
|
class UpdateCACertificateParams < Struct.new(
|
14912
16016
|
:action)
|
16017
|
+
SENSITIVE = []
|
14913
16018
|
include Aws::Structure
|
14914
16019
|
end
|
14915
16020
|
|
@@ -14959,6 +16064,7 @@ module Aws::IoT
|
|
14959
16064
|
:new_auto_registration_status,
|
14960
16065
|
:registration_config,
|
14961
16066
|
:remove_auto_registration)
|
16067
|
+
SENSITIVE = []
|
14962
16068
|
include Aws::Structure
|
14963
16069
|
end
|
14964
16070
|
|
@@ -14992,6 +16098,7 @@ module Aws::IoT
|
|
14992
16098
|
class UpdateCertificateRequest < Struct.new(
|
14993
16099
|
:certificate_id,
|
14994
16100
|
:new_status)
|
16101
|
+
SENSITIVE = []
|
14995
16102
|
include Aws::Structure
|
14996
16103
|
end
|
14997
16104
|
|
@@ -15012,6 +16119,7 @@ module Aws::IoT
|
|
15012
16119
|
#
|
15013
16120
|
class UpdateDeviceCertificateParams < Struct.new(
|
15014
16121
|
:action)
|
16122
|
+
SENSITIVE = []
|
15015
16123
|
include Aws::Structure
|
15016
16124
|
end
|
15017
16125
|
|
@@ -15038,6 +16146,7 @@ module Aws::IoT
|
|
15038
16146
|
class UpdateDimensionRequest < Struct.new(
|
15039
16147
|
:name,
|
15040
16148
|
:string_values)
|
16149
|
+
SENSITIVE = []
|
15041
16150
|
include Aws::Structure
|
15042
16151
|
end
|
15043
16152
|
|
@@ -15076,6 +16185,7 @@ module Aws::IoT
|
|
15076
16185
|
:string_values,
|
15077
16186
|
:creation_date,
|
15078
16187
|
:last_modified_date)
|
16188
|
+
SENSITIVE = []
|
15079
16189
|
include Aws::Structure
|
15080
16190
|
end
|
15081
16191
|
|
@@ -15113,6 +16223,7 @@ module Aws::IoT
|
|
15113
16223
|
:authorizer_config,
|
15114
16224
|
:domain_configuration_status,
|
15115
16225
|
:remove_authorizer_config)
|
16226
|
+
SENSITIVE = []
|
15116
16227
|
include Aws::Structure
|
15117
16228
|
end
|
15118
16229
|
|
@@ -15127,6 +16238,7 @@ module Aws::IoT
|
|
15127
16238
|
class UpdateDomainConfigurationResponse < Struct.new(
|
15128
16239
|
:domain_configuration_name,
|
15129
16240
|
:domain_configuration_arn)
|
16241
|
+
SENSITIVE = []
|
15130
16242
|
include Aws::Structure
|
15131
16243
|
end
|
15132
16244
|
|
@@ -15190,6 +16302,7 @@ module Aws::IoT
|
|
15190
16302
|
:index_name,
|
15191
16303
|
:query_string,
|
15192
16304
|
:query_version)
|
16305
|
+
SENSITIVE = []
|
15193
16306
|
include Aws::Structure
|
15194
16307
|
end
|
15195
16308
|
|
@@ -15199,6 +16312,7 @@ module Aws::IoT
|
|
15199
16312
|
#
|
15200
16313
|
class UpdateDynamicThingGroupResponse < Struct.new(
|
15201
16314
|
:version)
|
16315
|
+
SENSITIVE = []
|
15202
16316
|
include Aws::Structure
|
15203
16317
|
end
|
15204
16318
|
|
@@ -15219,6 +16333,7 @@ module Aws::IoT
|
|
15219
16333
|
#
|
15220
16334
|
class UpdateEventConfigurationsRequest < Struct.new(
|
15221
16335
|
:event_configurations)
|
16336
|
+
SENSITIVE = []
|
15222
16337
|
include Aws::Structure
|
15223
16338
|
end
|
15224
16339
|
|
@@ -15272,6 +16387,7 @@ module Aws::IoT
|
|
15272
16387
|
class UpdateIndexingConfigurationRequest < Struct.new(
|
15273
16388
|
:thing_indexing_configuration,
|
15274
16389
|
:thing_group_indexing_configuration)
|
16390
|
+
SENSITIVE = []
|
15275
16391
|
include Aws::Structure
|
15276
16392
|
end
|
15277
16393
|
|
@@ -15348,6 +16464,7 @@ module Aws::IoT
|
|
15348
16464
|
:job_executions_rollout_config,
|
15349
16465
|
:abort_config,
|
15350
16466
|
:timeout_config)
|
16467
|
+
SENSITIVE = []
|
15351
16468
|
include Aws::Structure
|
15352
16469
|
end
|
15353
16470
|
|
@@ -15399,6 +16516,7 @@ module Aws::IoT
|
|
15399
16516
|
:action_name,
|
15400
16517
|
:role_arn,
|
15401
16518
|
:action_params)
|
16519
|
+
SENSITIVE = []
|
15402
16520
|
include Aws::Structure
|
15403
16521
|
end
|
15404
16522
|
|
@@ -15413,6 +16531,7 @@ module Aws::IoT
|
|
15413
16531
|
class UpdateMitigationActionResponse < Struct.new(
|
15414
16532
|
:action_arn,
|
15415
16533
|
:action_id)
|
16534
|
+
SENSITIVE = []
|
15416
16535
|
include Aws::Structure
|
15417
16536
|
end
|
15418
16537
|
|
@@ -15469,6 +16588,7 @@ module Aws::IoT
|
|
15469
16588
|
:provisioning_role_arn,
|
15470
16589
|
:pre_provisioning_hook,
|
15471
16590
|
:remove_pre_provisioning_hook)
|
16591
|
+
SENSITIVE = []
|
15472
16592
|
include Aws::Structure
|
15473
16593
|
end
|
15474
16594
|
|
@@ -15499,6 +16619,7 @@ module Aws::IoT
|
|
15499
16619
|
:role_alias,
|
15500
16620
|
:role_arn,
|
15501
16621
|
:credential_duration_seconds)
|
16622
|
+
SENSITIVE = []
|
15502
16623
|
include Aws::Structure
|
15503
16624
|
end
|
15504
16625
|
|
@@ -15513,6 +16634,7 @@ module Aws::IoT
|
|
15513
16634
|
class UpdateRoleAliasResponse < Struct.new(
|
15514
16635
|
:role_alias,
|
15515
16636
|
:role_alias_arn)
|
16637
|
+
SENSITIVE = []
|
15516
16638
|
include Aws::Structure
|
15517
16639
|
end
|
15518
16640
|
|
@@ -15567,6 +16689,7 @@ module Aws::IoT
|
|
15567
16689
|
:day_of_week,
|
15568
16690
|
:target_check_names,
|
15569
16691
|
:scheduled_audit_name)
|
16692
|
+
SENSITIVE = []
|
15570
16693
|
include Aws::Structure
|
15571
16694
|
end
|
15572
16695
|
|
@@ -15576,6 +16699,7 @@ module Aws::IoT
|
|
15576
16699
|
#
|
15577
16700
|
class UpdateScheduledAuditResponse < Struct.new(
|
15578
16701
|
:scheduled_audit_arn)
|
16702
|
+
SENSITIVE = []
|
15579
16703
|
include Aws::Structure
|
15580
16704
|
end
|
15581
16705
|
|
@@ -15699,6 +16823,7 @@ module Aws::IoT
|
|
15699
16823
|
:delete_alert_targets,
|
15700
16824
|
:delete_additional_metrics_to_retain,
|
15701
16825
|
:expected_version)
|
16826
|
+
SENSITIVE = []
|
15702
16827
|
include Aws::Structure
|
15703
16828
|
end
|
15704
16829
|
|
@@ -15761,6 +16886,7 @@ module Aws::IoT
|
|
15761
16886
|
:version,
|
15762
16887
|
:creation_date,
|
15763
16888
|
:last_modified_date)
|
16889
|
+
SENSITIVE = []
|
15764
16890
|
include Aws::Structure
|
15765
16891
|
end
|
15766
16892
|
|
@@ -15805,6 +16931,7 @@ module Aws::IoT
|
|
15805
16931
|
:description,
|
15806
16932
|
:files,
|
15807
16933
|
:role_arn)
|
16934
|
+
SENSITIVE = []
|
15808
16935
|
include Aws::Structure
|
15809
16936
|
end
|
15810
16937
|
|
@@ -15829,6 +16956,7 @@ module Aws::IoT
|
|
15829
16956
|
:stream_arn,
|
15830
16957
|
:description,
|
15831
16958
|
:stream_version)
|
16959
|
+
SENSITIVE = []
|
15832
16960
|
include Aws::Structure
|
15833
16961
|
end
|
15834
16962
|
|
@@ -15866,6 +16994,7 @@ module Aws::IoT
|
|
15866
16994
|
:thing_group_name,
|
15867
16995
|
:thing_group_properties,
|
15868
16996
|
:expected_version)
|
16997
|
+
SENSITIVE = []
|
15869
16998
|
include Aws::Structure
|
15870
16999
|
end
|
15871
17000
|
|
@@ -15875,6 +17004,7 @@ module Aws::IoT
|
|
15875
17004
|
#
|
15876
17005
|
class UpdateThingGroupResponse < Struct.new(
|
15877
17006
|
:version)
|
17007
|
+
SENSITIVE = []
|
15878
17008
|
include Aws::Structure
|
15879
17009
|
end
|
15880
17010
|
|
@@ -15912,6 +17042,7 @@ module Aws::IoT
|
|
15912
17042
|
:thing_groups_to_add,
|
15913
17043
|
:thing_groups_to_remove,
|
15914
17044
|
:override_dynamic_groups)
|
17045
|
+
SENSITIVE = []
|
15915
17046
|
include Aws::Structure
|
15916
17047
|
end
|
15917
17048
|
|
@@ -15975,6 +17106,7 @@ module Aws::IoT
|
|
15975
17106
|
:attribute_payload,
|
15976
17107
|
:expected_version,
|
15977
17108
|
:remove_thing_type)
|
17109
|
+
SENSITIVE = []
|
15978
17110
|
include Aws::Structure
|
15979
17111
|
end
|
15980
17112
|
|
@@ -16030,6 +17162,7 @@ module Aws::IoT
|
|
16030
17162
|
class UpdateTopicRuleDestinationRequest < Struct.new(
|
16031
17163
|
:arn,
|
16032
17164
|
:status)
|
17165
|
+
SENSITIVE = []
|
16033
17166
|
include Aws::Structure
|
16034
17167
|
end
|
16035
17168
|
|
@@ -16072,6 +17205,7 @@ module Aws::IoT
|
|
16072
17205
|
#
|
16073
17206
|
class ValidateSecurityProfileBehaviorsRequest < Struct.new(
|
16074
17207
|
:behaviors)
|
17208
|
+
SENSITIVE = []
|
16075
17209
|
include Aws::Structure
|
16076
17210
|
end
|
16077
17211
|
|
@@ -16086,6 +17220,7 @@ module Aws::IoT
|
|
16086
17220
|
class ValidateSecurityProfileBehaviorsResponse < Struct.new(
|
16087
17221
|
:valid,
|
16088
17222
|
:validation_errors)
|
17223
|
+
SENSITIVE = []
|
16089
17224
|
include Aws::Structure
|
16090
17225
|
end
|
16091
17226
|
|
@@ -16097,6 +17232,7 @@ module Aws::IoT
|
|
16097
17232
|
#
|
16098
17233
|
class ValidationError < Struct.new(
|
16099
17234
|
:error_message)
|
17235
|
+
SENSITIVE = []
|
16100
17236
|
include Aws::Structure
|
16101
17237
|
end
|
16102
17238
|
|
@@ -16110,6 +17246,7 @@ module Aws::IoT
|
|
16110
17246
|
#
|
16111
17247
|
class VersionConflictException < Struct.new(
|
16112
17248
|
:message)
|
17249
|
+
SENSITIVE = []
|
16113
17250
|
include Aws::Structure
|
16114
17251
|
end
|
16115
17252
|
|
@@ -16121,6 +17258,7 @@ module Aws::IoT
|
|
16121
17258
|
#
|
16122
17259
|
class VersionsLimitExceededException < Struct.new(
|
16123
17260
|
:message)
|
17261
|
+
SENSITIVE = []
|
16124
17262
|
include Aws::Structure
|
16125
17263
|
end
|
16126
17264
|
|
@@ -16163,6 +17301,7 @@ module Aws::IoT
|
|
16163
17301
|
:metric_value,
|
16164
17302
|
:violation_event_type,
|
16165
17303
|
:violation_event_time)
|
17304
|
+
SENSITIVE = []
|
16166
17305
|
include Aws::Structure
|
16167
17306
|
end
|
16168
17307
|
|