aws-sdk-iot 1.118.0 → 1.120.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +10 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-iot/client.rb +27 -3
- data/lib/aws-sdk-iot/client_api.rb +8 -0
- data/lib/aws-sdk-iot/plugins/endpoints.rb +1 -0
- data/lib/aws-sdk-iot/types.rb +39 -3
- data/lib/aws-sdk-iot.rb +1 -1
- data/sig/client.rbs +4902 -0
- data/sig/errors.rbs +118 -0
- data/sig/resource.rbs +79 -0
- data/sig/types.rbs +4988 -0
- data/sig/waiters.rbs +13 -0
- metadata +9 -4
data/sig/types.rbs
ADDED
@@ -0,0 +1,4988 @@
|
|
1
|
+
# WARNING ABOUT GENERATED CODE
|
2
|
+
#
|
3
|
+
# This file is generated. See the contributing guide for more information:
|
4
|
+
# https://github.com/aws/aws-sdk-ruby/blob/version-3/CONTRIBUTING.md
|
5
|
+
#
|
6
|
+
# WARNING ABOUT GENERATED CODE
|
7
|
+
|
8
|
+
module Aws::IoT
|
9
|
+
module Types
|
10
|
+
|
11
|
+
class AbortConfig
|
12
|
+
attr_accessor criteria_list: ::Array[Types::AbortCriteria]
|
13
|
+
SENSITIVE: []
|
14
|
+
end
|
15
|
+
|
16
|
+
class AbortCriteria
|
17
|
+
attr_accessor failure_type: ("FAILED" | "REJECTED" | "TIMED_OUT" | "ALL")
|
18
|
+
attr_accessor action: ("CANCEL")
|
19
|
+
attr_accessor threshold_percentage: ::Float
|
20
|
+
attr_accessor min_number_of_executed_things: ::Integer
|
21
|
+
SENSITIVE: []
|
22
|
+
end
|
23
|
+
|
24
|
+
class AcceptCertificateTransferRequest
|
25
|
+
attr_accessor certificate_id: ::String
|
26
|
+
attr_accessor set_as_active: bool
|
27
|
+
SENSITIVE: []
|
28
|
+
end
|
29
|
+
|
30
|
+
class Action
|
31
|
+
attr_accessor dynamo_db: Types::DynamoDBAction
|
32
|
+
attr_accessor dynamo_d_bv_2: Types::DynamoDBv2Action
|
33
|
+
attr_accessor lambda: Types::LambdaAction
|
34
|
+
attr_accessor sns: Types::SnsAction
|
35
|
+
attr_accessor sqs: Types::SqsAction
|
36
|
+
attr_accessor kinesis: Types::KinesisAction
|
37
|
+
attr_accessor republish: Types::RepublishAction
|
38
|
+
attr_accessor s3: Types::S3Action
|
39
|
+
attr_accessor firehose: Types::FirehoseAction
|
40
|
+
attr_accessor cloudwatch_metric: Types::CloudwatchMetricAction
|
41
|
+
attr_accessor cloudwatch_alarm: Types::CloudwatchAlarmAction
|
42
|
+
attr_accessor cloudwatch_logs: Types::CloudwatchLogsAction
|
43
|
+
attr_accessor elasticsearch: Types::ElasticsearchAction
|
44
|
+
attr_accessor salesforce: Types::SalesforceAction
|
45
|
+
attr_accessor iot_analytics: Types::IotAnalyticsAction
|
46
|
+
attr_accessor iot_events: Types::IotEventsAction
|
47
|
+
attr_accessor iot_site_wise: Types::IotSiteWiseAction
|
48
|
+
attr_accessor step_functions: Types::StepFunctionsAction
|
49
|
+
attr_accessor timestream: Types::TimestreamAction
|
50
|
+
attr_accessor http: Types::HttpAction
|
51
|
+
attr_accessor kafka: Types::KafkaAction
|
52
|
+
attr_accessor open_search: Types::OpenSearchAction
|
53
|
+
attr_accessor location: Types::LocationAction
|
54
|
+
SENSITIVE: []
|
55
|
+
end
|
56
|
+
|
57
|
+
class ActiveViolation
|
58
|
+
attr_accessor violation_id: ::String
|
59
|
+
attr_accessor thing_name: ::String
|
60
|
+
attr_accessor security_profile_name: ::String
|
61
|
+
attr_accessor behavior: Types::Behavior
|
62
|
+
attr_accessor last_violation_value: Types::MetricValue
|
63
|
+
attr_accessor violation_event_additional_info: Types::ViolationEventAdditionalInfo
|
64
|
+
attr_accessor verification_state: ("FALSE_POSITIVE" | "BENIGN_POSITIVE" | "TRUE_POSITIVE" | "UNKNOWN")
|
65
|
+
attr_accessor verification_state_description: ::String
|
66
|
+
attr_accessor last_violation_time: ::Time
|
67
|
+
attr_accessor violation_start_time: ::Time
|
68
|
+
SENSITIVE: []
|
69
|
+
end
|
70
|
+
|
71
|
+
class AddThingToBillingGroupRequest
|
72
|
+
attr_accessor billing_group_name: ::String
|
73
|
+
attr_accessor billing_group_arn: ::String
|
74
|
+
attr_accessor thing_name: ::String
|
75
|
+
attr_accessor thing_arn: ::String
|
76
|
+
SENSITIVE: []
|
77
|
+
end
|
78
|
+
|
79
|
+
class AddThingToBillingGroupResponse < Aws::EmptyStructure
|
80
|
+
end
|
81
|
+
|
82
|
+
class AddThingToThingGroupRequest
|
83
|
+
attr_accessor thing_group_name: ::String
|
84
|
+
attr_accessor thing_group_arn: ::String
|
85
|
+
attr_accessor thing_name: ::String
|
86
|
+
attr_accessor thing_arn: ::String
|
87
|
+
attr_accessor override_dynamic_groups: bool
|
88
|
+
SENSITIVE: []
|
89
|
+
end
|
90
|
+
|
91
|
+
class AddThingToThingGroupResponse < Aws::EmptyStructure
|
92
|
+
end
|
93
|
+
|
94
|
+
class AddThingsToThingGroupParams
|
95
|
+
attr_accessor thing_group_names: ::Array[::String]
|
96
|
+
attr_accessor override_dynamic_groups: bool
|
97
|
+
SENSITIVE: []
|
98
|
+
end
|
99
|
+
|
100
|
+
class AggregationType
|
101
|
+
attr_accessor name: ("Statistics" | "Percentiles" | "Cardinality")
|
102
|
+
attr_accessor values: ::Array[::String]
|
103
|
+
SENSITIVE: []
|
104
|
+
end
|
105
|
+
|
106
|
+
class AlertTarget
|
107
|
+
attr_accessor alert_target_arn: ::String
|
108
|
+
attr_accessor role_arn: ::String
|
109
|
+
SENSITIVE: []
|
110
|
+
end
|
111
|
+
|
112
|
+
class Allowed
|
113
|
+
attr_accessor policies: ::Array[Types::Policy]
|
114
|
+
SENSITIVE: []
|
115
|
+
end
|
116
|
+
|
117
|
+
class AssetPropertyTimestamp
|
118
|
+
attr_accessor time_in_seconds: ::String
|
119
|
+
attr_accessor offset_in_nanos: ::String
|
120
|
+
SENSITIVE: []
|
121
|
+
end
|
122
|
+
|
123
|
+
class AssetPropertyValue
|
124
|
+
attr_accessor value: Types::AssetPropertyVariant
|
125
|
+
attr_accessor timestamp: Types::AssetPropertyTimestamp
|
126
|
+
attr_accessor quality: ::String
|
127
|
+
SENSITIVE: []
|
128
|
+
end
|
129
|
+
|
130
|
+
class AssetPropertyVariant
|
131
|
+
attr_accessor string_value: ::String
|
132
|
+
attr_accessor integer_value: ::String
|
133
|
+
attr_accessor double_value: ::String
|
134
|
+
attr_accessor boolean_value: ::String
|
135
|
+
SENSITIVE: []
|
136
|
+
end
|
137
|
+
|
138
|
+
class AssociateTargetsWithJobRequest
|
139
|
+
attr_accessor targets: ::Array[::String]
|
140
|
+
attr_accessor job_id: ::String
|
141
|
+
attr_accessor comment: ::String
|
142
|
+
attr_accessor namespace_id: ::String
|
143
|
+
SENSITIVE: []
|
144
|
+
end
|
145
|
+
|
146
|
+
class AssociateTargetsWithJobResponse
|
147
|
+
attr_accessor job_arn: ::String
|
148
|
+
attr_accessor job_id: ::String
|
149
|
+
attr_accessor description: ::String
|
150
|
+
SENSITIVE: []
|
151
|
+
end
|
152
|
+
|
153
|
+
class AttachPolicyRequest
|
154
|
+
attr_accessor policy_name: ::String
|
155
|
+
attr_accessor target: ::String
|
156
|
+
SENSITIVE: []
|
157
|
+
end
|
158
|
+
|
159
|
+
class AttachPrincipalPolicyRequest
|
160
|
+
attr_accessor policy_name: ::String
|
161
|
+
attr_accessor principal: ::String
|
162
|
+
SENSITIVE: []
|
163
|
+
end
|
164
|
+
|
165
|
+
class AttachSecurityProfileRequest
|
166
|
+
attr_accessor security_profile_name: ::String
|
167
|
+
attr_accessor security_profile_target_arn: ::String
|
168
|
+
SENSITIVE: []
|
169
|
+
end
|
170
|
+
|
171
|
+
class AttachSecurityProfileResponse < Aws::EmptyStructure
|
172
|
+
end
|
173
|
+
|
174
|
+
class AttachThingPrincipalRequest
|
175
|
+
attr_accessor thing_name: ::String
|
176
|
+
attr_accessor principal: ::String
|
177
|
+
SENSITIVE: []
|
178
|
+
end
|
179
|
+
|
180
|
+
class AttachThingPrincipalResponse < Aws::EmptyStructure
|
181
|
+
end
|
182
|
+
|
183
|
+
class AttributePayload
|
184
|
+
attr_accessor attributes: ::Hash[::String, ::String]
|
185
|
+
attr_accessor merge: bool
|
186
|
+
SENSITIVE: []
|
187
|
+
end
|
188
|
+
|
189
|
+
class AuditCheckConfiguration
|
190
|
+
attr_accessor enabled: bool
|
191
|
+
SENSITIVE: []
|
192
|
+
end
|
193
|
+
|
194
|
+
class AuditCheckDetails
|
195
|
+
attr_accessor check_run_status: ("IN_PROGRESS" | "WAITING_FOR_DATA_COLLECTION" | "CANCELED" | "COMPLETED_COMPLIANT" | "COMPLETED_NON_COMPLIANT" | "FAILED")
|
196
|
+
attr_accessor check_compliant: bool
|
197
|
+
attr_accessor total_resources_count: ::Integer
|
198
|
+
attr_accessor non_compliant_resources_count: ::Integer
|
199
|
+
attr_accessor suppressed_non_compliant_resources_count: ::Integer
|
200
|
+
attr_accessor error_code: ::String
|
201
|
+
attr_accessor message: ::String
|
202
|
+
SENSITIVE: []
|
203
|
+
end
|
204
|
+
|
205
|
+
class AuditFinding
|
206
|
+
attr_accessor finding_id: ::String
|
207
|
+
attr_accessor task_id: ::String
|
208
|
+
attr_accessor check_name: ::String
|
209
|
+
attr_accessor task_start_time: ::Time
|
210
|
+
attr_accessor finding_time: ::Time
|
211
|
+
attr_accessor severity: ("CRITICAL" | "HIGH" | "MEDIUM" | "LOW")
|
212
|
+
attr_accessor non_compliant_resource: Types::NonCompliantResource
|
213
|
+
attr_accessor related_resources: ::Array[Types::RelatedResource]
|
214
|
+
attr_accessor reason_for_non_compliance: ::String
|
215
|
+
attr_accessor reason_for_non_compliance_code: ::String
|
216
|
+
attr_accessor is_suppressed: bool
|
217
|
+
SENSITIVE: []
|
218
|
+
end
|
219
|
+
|
220
|
+
class AuditMitigationActionExecutionMetadata
|
221
|
+
attr_accessor task_id: ::String
|
222
|
+
attr_accessor finding_id: ::String
|
223
|
+
attr_accessor action_name: ::String
|
224
|
+
attr_accessor action_id: ::String
|
225
|
+
attr_accessor status: ("IN_PROGRESS" | "COMPLETED" | "FAILED" | "CANCELED" | "SKIPPED" | "PENDING")
|
226
|
+
attr_accessor start_time: ::Time
|
227
|
+
attr_accessor end_time: ::Time
|
228
|
+
attr_accessor error_code: ::String
|
229
|
+
attr_accessor message: ::String
|
230
|
+
SENSITIVE: []
|
231
|
+
end
|
232
|
+
|
233
|
+
class AuditMitigationActionsTaskMetadata
|
234
|
+
attr_accessor task_id: ::String
|
235
|
+
attr_accessor start_time: ::Time
|
236
|
+
attr_accessor task_status: ("IN_PROGRESS" | "COMPLETED" | "FAILED" | "CANCELED")
|
237
|
+
SENSITIVE: []
|
238
|
+
end
|
239
|
+
|
240
|
+
class AuditMitigationActionsTaskTarget
|
241
|
+
attr_accessor audit_task_id: ::String
|
242
|
+
attr_accessor finding_ids: ::Array[::String]
|
243
|
+
attr_accessor audit_check_to_reason_code_filter: ::Hash[::String, ::Array[::String]]
|
244
|
+
SENSITIVE: []
|
245
|
+
end
|
246
|
+
|
247
|
+
class AuditNotificationTarget
|
248
|
+
attr_accessor target_arn: ::String
|
249
|
+
attr_accessor role_arn: ::String
|
250
|
+
attr_accessor enabled: bool
|
251
|
+
SENSITIVE: []
|
252
|
+
end
|
253
|
+
|
254
|
+
class AuditSuppression
|
255
|
+
attr_accessor check_name: ::String
|
256
|
+
attr_accessor resource_identifier: Types::ResourceIdentifier
|
257
|
+
attr_accessor expiration_date: ::Time
|
258
|
+
attr_accessor suppress_indefinitely: bool
|
259
|
+
attr_accessor description: ::String
|
260
|
+
SENSITIVE: []
|
261
|
+
end
|
262
|
+
|
263
|
+
class AuditTaskMetadata
|
264
|
+
attr_accessor task_id: ::String
|
265
|
+
attr_accessor task_status: ("IN_PROGRESS" | "COMPLETED" | "FAILED" | "CANCELED")
|
266
|
+
attr_accessor task_type: ("ON_DEMAND_AUDIT_TASK" | "SCHEDULED_AUDIT_TASK")
|
267
|
+
SENSITIVE: []
|
268
|
+
end
|
269
|
+
|
270
|
+
class AuthInfo
|
271
|
+
attr_accessor action_type: ("PUBLISH" | "SUBSCRIBE" | "RECEIVE" | "CONNECT")
|
272
|
+
attr_accessor resources: ::Array[::String]
|
273
|
+
SENSITIVE: []
|
274
|
+
end
|
275
|
+
|
276
|
+
class AuthResult
|
277
|
+
attr_accessor auth_info: Types::AuthInfo
|
278
|
+
attr_accessor allowed: Types::Allowed
|
279
|
+
attr_accessor denied: Types::Denied
|
280
|
+
attr_accessor auth_decision: ("ALLOWED" | "EXPLICIT_DENY" | "IMPLICIT_DENY")
|
281
|
+
attr_accessor missing_context_values: ::Array[::String]
|
282
|
+
SENSITIVE: []
|
283
|
+
end
|
284
|
+
|
285
|
+
class AuthorizerConfig
|
286
|
+
attr_accessor default_authorizer_name: ::String
|
287
|
+
attr_accessor allow_authorizer_override: bool
|
288
|
+
SENSITIVE: []
|
289
|
+
end
|
290
|
+
|
291
|
+
class AuthorizerDescription
|
292
|
+
attr_accessor authorizer_name: ::String
|
293
|
+
attr_accessor authorizer_arn: ::String
|
294
|
+
attr_accessor authorizer_function_arn: ::String
|
295
|
+
attr_accessor token_key_name: ::String
|
296
|
+
attr_accessor token_signing_public_keys: ::Hash[::String, ::String]
|
297
|
+
attr_accessor status: ("ACTIVE" | "INACTIVE")
|
298
|
+
attr_accessor creation_date: ::Time
|
299
|
+
attr_accessor last_modified_date: ::Time
|
300
|
+
attr_accessor signing_disabled: bool
|
301
|
+
attr_accessor enable_caching_for_http: bool
|
302
|
+
SENSITIVE: []
|
303
|
+
end
|
304
|
+
|
305
|
+
class AuthorizerSummary
|
306
|
+
attr_accessor authorizer_name: ::String
|
307
|
+
attr_accessor authorizer_arn: ::String
|
308
|
+
SENSITIVE: []
|
309
|
+
end
|
310
|
+
|
311
|
+
class AwsJobAbortConfig
|
312
|
+
attr_accessor abort_criteria_list: ::Array[Types::AwsJobAbortCriteria]
|
313
|
+
SENSITIVE: []
|
314
|
+
end
|
315
|
+
|
316
|
+
class AwsJobAbortCriteria
|
317
|
+
attr_accessor failure_type: ("FAILED" | "REJECTED" | "TIMED_OUT" | "ALL")
|
318
|
+
attr_accessor action: ("CANCEL")
|
319
|
+
attr_accessor threshold_percentage: ::Float
|
320
|
+
attr_accessor min_number_of_executed_things: ::Integer
|
321
|
+
SENSITIVE: []
|
322
|
+
end
|
323
|
+
|
324
|
+
class AwsJobExecutionsRolloutConfig
|
325
|
+
attr_accessor maximum_per_minute: ::Integer
|
326
|
+
attr_accessor exponential_rate: Types::AwsJobExponentialRolloutRate
|
327
|
+
SENSITIVE: []
|
328
|
+
end
|
329
|
+
|
330
|
+
class AwsJobExponentialRolloutRate
|
331
|
+
attr_accessor base_rate_per_minute: ::Integer
|
332
|
+
attr_accessor increment_factor: ::Float
|
333
|
+
attr_accessor rate_increase_criteria: Types::AwsJobRateIncreaseCriteria
|
334
|
+
SENSITIVE: []
|
335
|
+
end
|
336
|
+
|
337
|
+
class AwsJobPresignedUrlConfig
|
338
|
+
attr_accessor expires_in_sec: ::Integer
|
339
|
+
SENSITIVE: []
|
340
|
+
end
|
341
|
+
|
342
|
+
class AwsJobRateIncreaseCriteria
|
343
|
+
attr_accessor number_of_notified_things: ::Integer
|
344
|
+
attr_accessor number_of_succeeded_things: ::Integer
|
345
|
+
SENSITIVE: []
|
346
|
+
end
|
347
|
+
|
348
|
+
class AwsJobTimeoutConfig
|
349
|
+
attr_accessor in_progress_timeout_in_minutes: ::Integer
|
350
|
+
SENSITIVE: []
|
351
|
+
end
|
352
|
+
|
353
|
+
class Behavior
|
354
|
+
attr_accessor name: ::String
|
355
|
+
attr_accessor metric: ::String
|
356
|
+
attr_accessor metric_dimension: Types::MetricDimension
|
357
|
+
attr_accessor criteria: Types::BehaviorCriteria
|
358
|
+
attr_accessor suppress_alerts: bool
|
359
|
+
attr_accessor export_metric: bool
|
360
|
+
SENSITIVE: []
|
361
|
+
end
|
362
|
+
|
363
|
+
class BehaviorCriteria
|
364
|
+
attr_accessor comparison_operator: ("less-than" | "less-than-equals" | "greater-than" | "greater-than-equals" | "in-cidr-set" | "not-in-cidr-set" | "in-port-set" | "not-in-port-set" | "in-set" | "not-in-set")
|
365
|
+
attr_accessor value: Types::MetricValue
|
366
|
+
attr_accessor duration_seconds: ::Integer
|
367
|
+
attr_accessor consecutive_datapoints_to_alarm: ::Integer
|
368
|
+
attr_accessor consecutive_datapoints_to_clear: ::Integer
|
369
|
+
attr_accessor statistical_threshold: Types::StatisticalThreshold
|
370
|
+
attr_accessor ml_detection_config: Types::MachineLearningDetectionConfig
|
371
|
+
SENSITIVE: []
|
372
|
+
end
|
373
|
+
|
374
|
+
class BehaviorModelTrainingSummary
|
375
|
+
attr_accessor security_profile_name: ::String
|
376
|
+
attr_accessor behavior_name: ::String
|
377
|
+
attr_accessor training_data_collection_start_date: ::Time
|
378
|
+
attr_accessor model_status: ("PENDING_BUILD" | "ACTIVE" | "EXPIRED")
|
379
|
+
attr_accessor datapoints_collection_percentage: ::Float
|
380
|
+
attr_accessor last_model_refresh_date: ::Time
|
381
|
+
SENSITIVE: []
|
382
|
+
end
|
383
|
+
|
384
|
+
class BillingGroupMetadata
|
385
|
+
attr_accessor creation_date: ::Time
|
386
|
+
SENSITIVE: []
|
387
|
+
end
|
388
|
+
|
389
|
+
class BillingGroupProperties
|
390
|
+
attr_accessor billing_group_description: ::String
|
391
|
+
SENSITIVE: []
|
392
|
+
end
|
393
|
+
|
394
|
+
class Bucket
|
395
|
+
attr_accessor key_value: ::String
|
396
|
+
attr_accessor count: ::Integer
|
397
|
+
SENSITIVE: []
|
398
|
+
end
|
399
|
+
|
400
|
+
class BucketsAggregationType
|
401
|
+
attr_accessor terms_aggregation: Types::TermsAggregation
|
402
|
+
SENSITIVE: []
|
403
|
+
end
|
404
|
+
|
405
|
+
class CACertificate
|
406
|
+
attr_accessor certificate_arn: ::String
|
407
|
+
attr_accessor certificate_id: ::String
|
408
|
+
attr_accessor status: ("ACTIVE" | "INACTIVE")
|
409
|
+
attr_accessor creation_date: ::Time
|
410
|
+
SENSITIVE: []
|
411
|
+
end
|
412
|
+
|
413
|
+
class CACertificateDescription
|
414
|
+
attr_accessor certificate_arn: ::String
|
415
|
+
attr_accessor certificate_id: ::String
|
416
|
+
attr_accessor status: ("ACTIVE" | "INACTIVE")
|
417
|
+
attr_accessor certificate_pem: ::String
|
418
|
+
attr_accessor owned_by: ::String
|
419
|
+
attr_accessor creation_date: ::Time
|
420
|
+
attr_accessor auto_registration_status: ("ENABLE" | "DISABLE")
|
421
|
+
attr_accessor last_modified_date: ::Time
|
422
|
+
attr_accessor customer_version: ::Integer
|
423
|
+
attr_accessor generation_id: ::String
|
424
|
+
attr_accessor validity: Types::CertificateValidity
|
425
|
+
attr_accessor certificate_mode: ("DEFAULT" | "SNI_ONLY")
|
426
|
+
SENSITIVE: []
|
427
|
+
end
|
428
|
+
|
429
|
+
class CancelAuditMitigationActionsTaskRequest
|
430
|
+
attr_accessor task_id: ::String
|
431
|
+
SENSITIVE: []
|
432
|
+
end
|
433
|
+
|
434
|
+
class CancelAuditMitigationActionsTaskResponse < Aws::EmptyStructure
|
435
|
+
end
|
436
|
+
|
437
|
+
class CancelAuditTaskRequest
|
438
|
+
attr_accessor task_id: ::String
|
439
|
+
SENSITIVE: []
|
440
|
+
end
|
441
|
+
|
442
|
+
class CancelAuditTaskResponse < Aws::EmptyStructure
|
443
|
+
end
|
444
|
+
|
445
|
+
class CancelCertificateTransferRequest
|
446
|
+
attr_accessor certificate_id: ::String
|
447
|
+
SENSITIVE: []
|
448
|
+
end
|
449
|
+
|
450
|
+
class CancelDetectMitigationActionsTaskRequest
|
451
|
+
attr_accessor task_id: ::String
|
452
|
+
SENSITIVE: []
|
453
|
+
end
|
454
|
+
|
455
|
+
class CancelDetectMitigationActionsTaskResponse < Aws::EmptyStructure
|
456
|
+
end
|
457
|
+
|
458
|
+
class CancelJobExecutionRequest
|
459
|
+
attr_accessor job_id: ::String
|
460
|
+
attr_accessor thing_name: ::String
|
461
|
+
attr_accessor force: bool
|
462
|
+
attr_accessor expected_version: ::Integer
|
463
|
+
attr_accessor status_details: ::Hash[::String, ::String]
|
464
|
+
SENSITIVE: []
|
465
|
+
end
|
466
|
+
|
467
|
+
class CancelJobRequest
|
468
|
+
attr_accessor job_id: ::String
|
469
|
+
attr_accessor reason_code: ::String
|
470
|
+
attr_accessor comment: ::String
|
471
|
+
attr_accessor force: bool
|
472
|
+
SENSITIVE: []
|
473
|
+
end
|
474
|
+
|
475
|
+
class CancelJobResponse
|
476
|
+
attr_accessor job_arn: ::String
|
477
|
+
attr_accessor job_id: ::String
|
478
|
+
attr_accessor description: ::String
|
479
|
+
SENSITIVE: []
|
480
|
+
end
|
481
|
+
|
482
|
+
class Certificate
|
483
|
+
attr_accessor certificate_arn: ::String
|
484
|
+
attr_accessor certificate_id: ::String
|
485
|
+
attr_accessor status: ("ACTIVE" | "INACTIVE" | "REVOKED" | "PENDING_TRANSFER" | "REGISTER_INACTIVE" | "PENDING_ACTIVATION")
|
486
|
+
attr_accessor certificate_mode: ("DEFAULT" | "SNI_ONLY")
|
487
|
+
attr_accessor creation_date: ::Time
|
488
|
+
SENSITIVE: []
|
489
|
+
end
|
490
|
+
|
491
|
+
class CertificateConflictException
|
492
|
+
attr_accessor message: ::String
|
493
|
+
SENSITIVE: []
|
494
|
+
end
|
495
|
+
|
496
|
+
class CertificateDescription
|
497
|
+
attr_accessor certificate_arn: ::String
|
498
|
+
attr_accessor certificate_id: ::String
|
499
|
+
attr_accessor ca_certificate_id: ::String
|
500
|
+
attr_accessor status: ("ACTIVE" | "INACTIVE" | "REVOKED" | "PENDING_TRANSFER" | "REGISTER_INACTIVE" | "PENDING_ACTIVATION")
|
501
|
+
attr_accessor certificate_pem: ::String
|
502
|
+
attr_accessor owned_by: ::String
|
503
|
+
attr_accessor previous_owned_by: ::String
|
504
|
+
attr_accessor creation_date: ::Time
|
505
|
+
attr_accessor last_modified_date: ::Time
|
506
|
+
attr_accessor customer_version: ::Integer
|
507
|
+
attr_accessor transfer_data: Types::TransferData
|
508
|
+
attr_accessor generation_id: ::String
|
509
|
+
attr_accessor validity: Types::CertificateValidity
|
510
|
+
attr_accessor certificate_mode: ("DEFAULT" | "SNI_ONLY")
|
511
|
+
SENSITIVE: []
|
512
|
+
end
|
513
|
+
|
514
|
+
class CertificateProviderSummary
|
515
|
+
attr_accessor certificate_provider_name: ::String
|
516
|
+
attr_accessor certificate_provider_arn: ::String
|
517
|
+
SENSITIVE: []
|
518
|
+
end
|
519
|
+
|
520
|
+
class CertificateStateException
|
521
|
+
attr_accessor message: ::String
|
522
|
+
SENSITIVE: []
|
523
|
+
end
|
524
|
+
|
525
|
+
class CertificateValidationException
|
526
|
+
attr_accessor message: ::String
|
527
|
+
SENSITIVE: []
|
528
|
+
end
|
529
|
+
|
530
|
+
class CertificateValidity
|
531
|
+
attr_accessor not_before: ::Time
|
532
|
+
attr_accessor not_after: ::Time
|
533
|
+
SENSITIVE: []
|
534
|
+
end
|
535
|
+
|
536
|
+
class ClearDefaultAuthorizerRequest < Aws::EmptyStructure
|
537
|
+
end
|
538
|
+
|
539
|
+
class ClearDefaultAuthorizerResponse < Aws::EmptyStructure
|
540
|
+
end
|
541
|
+
|
542
|
+
class CloudwatchAlarmAction
|
543
|
+
attr_accessor role_arn: ::String
|
544
|
+
attr_accessor alarm_name: ::String
|
545
|
+
attr_accessor state_reason: ::String
|
546
|
+
attr_accessor state_value: ::String
|
547
|
+
SENSITIVE: []
|
548
|
+
end
|
549
|
+
|
550
|
+
class CloudwatchLogsAction
|
551
|
+
attr_accessor role_arn: ::String
|
552
|
+
attr_accessor log_group_name: ::String
|
553
|
+
attr_accessor batch_mode: bool
|
554
|
+
SENSITIVE: []
|
555
|
+
end
|
556
|
+
|
557
|
+
class CloudwatchMetricAction
|
558
|
+
attr_accessor role_arn: ::String
|
559
|
+
attr_accessor metric_namespace: ::String
|
560
|
+
attr_accessor metric_name: ::String
|
561
|
+
attr_accessor metric_value: ::String
|
562
|
+
attr_accessor metric_unit: ::String
|
563
|
+
attr_accessor metric_timestamp: ::String
|
564
|
+
SENSITIVE: []
|
565
|
+
end
|
566
|
+
|
567
|
+
class CodeSigning
|
568
|
+
attr_accessor aws_signer_job_id: ::String
|
569
|
+
attr_accessor start_signing_job_parameter: Types::StartSigningJobParameter
|
570
|
+
attr_accessor custom_code_signing: Types::CustomCodeSigning
|
571
|
+
SENSITIVE: []
|
572
|
+
end
|
573
|
+
|
574
|
+
class CodeSigningCertificateChain
|
575
|
+
attr_accessor certificate_name: ::String
|
576
|
+
attr_accessor inline_document: ::String
|
577
|
+
SENSITIVE: []
|
578
|
+
end
|
579
|
+
|
580
|
+
class CodeSigningSignature
|
581
|
+
attr_accessor inline_document: ::String
|
582
|
+
SENSITIVE: []
|
583
|
+
end
|
584
|
+
|
585
|
+
class Configuration
|
586
|
+
attr_accessor enabled: bool
|
587
|
+
SENSITIVE: []
|
588
|
+
end
|
589
|
+
|
590
|
+
class ConfirmTopicRuleDestinationRequest
|
591
|
+
attr_accessor confirmation_token: ::String
|
592
|
+
SENSITIVE: []
|
593
|
+
end
|
594
|
+
|
595
|
+
class ConfirmTopicRuleDestinationResponse < Aws::EmptyStructure
|
596
|
+
end
|
597
|
+
|
598
|
+
class ConflictException
|
599
|
+
attr_accessor message: ::String
|
600
|
+
attr_accessor resource_id: ::String
|
601
|
+
SENSITIVE: []
|
602
|
+
end
|
603
|
+
|
604
|
+
class ConflictingResourceUpdateException
|
605
|
+
attr_accessor message: ::String
|
606
|
+
SENSITIVE: []
|
607
|
+
end
|
608
|
+
|
609
|
+
class CreateAuditSuppressionRequest
|
610
|
+
attr_accessor check_name: ::String
|
611
|
+
attr_accessor resource_identifier: Types::ResourceIdentifier
|
612
|
+
attr_accessor expiration_date: ::Time
|
613
|
+
attr_accessor suppress_indefinitely: bool
|
614
|
+
attr_accessor description: ::String
|
615
|
+
attr_accessor client_request_token: ::String
|
616
|
+
SENSITIVE: []
|
617
|
+
end
|
618
|
+
|
619
|
+
class CreateAuditSuppressionResponse < Aws::EmptyStructure
|
620
|
+
end
|
621
|
+
|
622
|
+
class CreateAuthorizerRequest
|
623
|
+
attr_accessor authorizer_name: ::String
|
624
|
+
attr_accessor authorizer_function_arn: ::String
|
625
|
+
attr_accessor token_key_name: ::String
|
626
|
+
attr_accessor token_signing_public_keys: ::Hash[::String, ::String]
|
627
|
+
attr_accessor status: ("ACTIVE" | "INACTIVE")
|
628
|
+
attr_accessor tags: ::Array[Types::Tag]
|
629
|
+
attr_accessor signing_disabled: bool
|
630
|
+
attr_accessor enable_caching_for_http: bool
|
631
|
+
SENSITIVE: []
|
632
|
+
end
|
633
|
+
|
634
|
+
class CreateAuthorizerResponse
|
635
|
+
attr_accessor authorizer_name: ::String
|
636
|
+
attr_accessor authorizer_arn: ::String
|
637
|
+
SENSITIVE: []
|
638
|
+
end
|
639
|
+
|
640
|
+
class CreateBillingGroupRequest
|
641
|
+
attr_accessor billing_group_name: ::String
|
642
|
+
attr_accessor billing_group_properties: Types::BillingGroupProperties
|
643
|
+
attr_accessor tags: ::Array[Types::Tag]
|
644
|
+
SENSITIVE: []
|
645
|
+
end
|
646
|
+
|
647
|
+
class CreateBillingGroupResponse
|
648
|
+
attr_accessor billing_group_name: ::String
|
649
|
+
attr_accessor billing_group_arn: ::String
|
650
|
+
attr_accessor billing_group_id: ::String
|
651
|
+
SENSITIVE: []
|
652
|
+
end
|
653
|
+
|
654
|
+
class CreateCertificateFromCsrRequest
|
655
|
+
attr_accessor certificate_signing_request: ::String
|
656
|
+
attr_accessor set_as_active: bool
|
657
|
+
SENSITIVE: []
|
658
|
+
end
|
659
|
+
|
660
|
+
class CreateCertificateFromCsrResponse
|
661
|
+
attr_accessor certificate_arn: ::String
|
662
|
+
attr_accessor certificate_id: ::String
|
663
|
+
attr_accessor certificate_pem: ::String
|
664
|
+
SENSITIVE: []
|
665
|
+
end
|
666
|
+
|
667
|
+
class CreateCertificateProviderRequest
|
668
|
+
attr_accessor certificate_provider_name: ::String
|
669
|
+
attr_accessor lambda_function_arn: ::String
|
670
|
+
attr_accessor account_default_for_operations: ::Array[("CreateCertificateFromCsr")]
|
671
|
+
attr_accessor client_token: ::String
|
672
|
+
attr_accessor tags: ::Array[Types::Tag]
|
673
|
+
SENSITIVE: []
|
674
|
+
end
|
675
|
+
|
676
|
+
class CreateCertificateProviderResponse
|
677
|
+
attr_accessor certificate_provider_name: ::String
|
678
|
+
attr_accessor certificate_provider_arn: ::String
|
679
|
+
SENSITIVE: []
|
680
|
+
end
|
681
|
+
|
682
|
+
class CreateCustomMetricRequest
|
683
|
+
attr_accessor metric_name: ::String
|
684
|
+
attr_accessor display_name: ::String
|
685
|
+
attr_accessor metric_type: ("string-list" | "ip-address-list" | "number-list" | "number")
|
686
|
+
attr_accessor tags: ::Array[Types::Tag]
|
687
|
+
attr_accessor client_request_token: ::String
|
688
|
+
SENSITIVE: []
|
689
|
+
end
|
690
|
+
|
691
|
+
class CreateCustomMetricResponse
|
692
|
+
attr_accessor metric_name: ::String
|
693
|
+
attr_accessor metric_arn: ::String
|
694
|
+
SENSITIVE: []
|
695
|
+
end
|
696
|
+
|
697
|
+
class CreateDimensionRequest
|
698
|
+
attr_accessor name: ::String
|
699
|
+
attr_accessor type: ("TOPIC_FILTER")
|
700
|
+
attr_accessor string_values: ::Array[::String]
|
701
|
+
attr_accessor tags: ::Array[Types::Tag]
|
702
|
+
attr_accessor client_request_token: ::String
|
703
|
+
SENSITIVE: []
|
704
|
+
end
|
705
|
+
|
706
|
+
class CreateDimensionResponse
|
707
|
+
attr_accessor name: ::String
|
708
|
+
attr_accessor arn: ::String
|
709
|
+
SENSITIVE: []
|
710
|
+
end
|
711
|
+
|
712
|
+
class CreateDomainConfigurationRequest
|
713
|
+
attr_accessor domain_configuration_name: ::String
|
714
|
+
attr_accessor domain_name: ::String
|
715
|
+
attr_accessor server_certificate_arns: ::Array[::String]
|
716
|
+
attr_accessor validation_certificate_arn: ::String
|
717
|
+
attr_accessor authorizer_config: Types::AuthorizerConfig
|
718
|
+
attr_accessor service_type: ("DATA" | "CREDENTIAL_PROVIDER" | "JOBS")
|
719
|
+
attr_accessor tags: ::Array[Types::Tag]
|
720
|
+
attr_accessor tls_config: Types::TlsConfig
|
721
|
+
attr_accessor server_certificate_config: Types::ServerCertificateConfig
|
722
|
+
SENSITIVE: []
|
723
|
+
end
|
724
|
+
|
725
|
+
class CreateDomainConfigurationResponse
|
726
|
+
attr_accessor domain_configuration_name: ::String
|
727
|
+
attr_accessor domain_configuration_arn: ::String
|
728
|
+
SENSITIVE: []
|
729
|
+
end
|
730
|
+
|
731
|
+
class CreateDynamicThingGroupRequest
|
732
|
+
attr_accessor thing_group_name: ::String
|
733
|
+
attr_accessor thing_group_properties: Types::ThingGroupProperties
|
734
|
+
attr_accessor index_name: ::String
|
735
|
+
attr_accessor query_string: ::String
|
736
|
+
attr_accessor query_version: ::String
|
737
|
+
attr_accessor tags: ::Array[Types::Tag]
|
738
|
+
SENSITIVE: []
|
739
|
+
end
|
740
|
+
|
741
|
+
class CreateDynamicThingGroupResponse
|
742
|
+
attr_accessor thing_group_name: ::String
|
743
|
+
attr_accessor thing_group_arn: ::String
|
744
|
+
attr_accessor thing_group_id: ::String
|
745
|
+
attr_accessor index_name: ::String
|
746
|
+
attr_accessor query_string: ::String
|
747
|
+
attr_accessor query_version: ::String
|
748
|
+
SENSITIVE: []
|
749
|
+
end
|
750
|
+
|
751
|
+
class CreateFleetMetricRequest
|
752
|
+
attr_accessor metric_name: ::String
|
753
|
+
attr_accessor query_string: ::String
|
754
|
+
attr_accessor aggregation_type: Types::AggregationType
|
755
|
+
attr_accessor period: ::Integer
|
756
|
+
attr_accessor aggregation_field: ::String
|
757
|
+
attr_accessor description: ::String
|
758
|
+
attr_accessor query_version: ::String
|
759
|
+
attr_accessor index_name: ::String
|
760
|
+
attr_accessor unit: ("Seconds" | "Microseconds" | "Milliseconds" | "Bytes" | "Kilobytes" | "Megabytes" | "Gigabytes" | "Terabytes" | "Bits" | "Kilobits" | "Megabits" | "Gigabits" | "Terabits" | "Percent" | "Count" | "Bytes/Second" | "Kilobytes/Second" | "Megabytes/Second" | "Gigabytes/Second" | "Terabytes/Second" | "Bits/Second" | "Kilobits/Second" | "Megabits/Second" | "Gigabits/Second" | "Terabits/Second" | "Count/Second" | "None")
|
761
|
+
attr_accessor tags: ::Array[Types::Tag]
|
762
|
+
SENSITIVE: []
|
763
|
+
end
|
764
|
+
|
765
|
+
class CreateFleetMetricResponse
|
766
|
+
attr_accessor metric_name: ::String
|
767
|
+
attr_accessor metric_arn: ::String
|
768
|
+
SENSITIVE: []
|
769
|
+
end
|
770
|
+
|
771
|
+
class CreateJobRequest
|
772
|
+
attr_accessor job_id: ::String
|
773
|
+
attr_accessor targets: ::Array[::String]
|
774
|
+
attr_accessor document_source: ::String
|
775
|
+
attr_accessor document: ::String
|
776
|
+
attr_accessor description: ::String
|
777
|
+
attr_accessor presigned_url_config: Types::PresignedUrlConfig
|
778
|
+
attr_accessor target_selection: ("CONTINUOUS" | "SNAPSHOT")
|
779
|
+
attr_accessor job_executions_rollout_config: Types::JobExecutionsRolloutConfig
|
780
|
+
attr_accessor abort_config: Types::AbortConfig
|
781
|
+
attr_accessor timeout_config: Types::TimeoutConfig
|
782
|
+
attr_accessor tags: ::Array[Types::Tag]
|
783
|
+
attr_accessor namespace_id: ::String
|
784
|
+
attr_accessor job_template_arn: ::String
|
785
|
+
attr_accessor job_executions_retry_config: Types::JobExecutionsRetryConfig
|
786
|
+
attr_accessor document_parameters: ::Hash[::String, ::String]
|
787
|
+
attr_accessor scheduling_config: Types::SchedulingConfig
|
788
|
+
attr_accessor destination_package_versions: ::Array[::String]
|
789
|
+
SENSITIVE: []
|
790
|
+
end
|
791
|
+
|
792
|
+
class CreateJobResponse
|
793
|
+
attr_accessor job_arn: ::String
|
794
|
+
attr_accessor job_id: ::String
|
795
|
+
attr_accessor description: ::String
|
796
|
+
SENSITIVE: []
|
797
|
+
end
|
798
|
+
|
799
|
+
class CreateJobTemplateRequest
|
800
|
+
attr_accessor job_template_id: ::String
|
801
|
+
attr_accessor job_arn: ::String
|
802
|
+
attr_accessor document_source: ::String
|
803
|
+
attr_accessor document: ::String
|
804
|
+
attr_accessor description: ::String
|
805
|
+
attr_accessor presigned_url_config: Types::PresignedUrlConfig
|
806
|
+
attr_accessor job_executions_rollout_config: Types::JobExecutionsRolloutConfig
|
807
|
+
attr_accessor abort_config: Types::AbortConfig
|
808
|
+
attr_accessor timeout_config: Types::TimeoutConfig
|
809
|
+
attr_accessor tags: ::Array[Types::Tag]
|
810
|
+
attr_accessor job_executions_retry_config: Types::JobExecutionsRetryConfig
|
811
|
+
attr_accessor maintenance_windows: ::Array[Types::MaintenanceWindow]
|
812
|
+
attr_accessor destination_package_versions: ::Array[::String]
|
813
|
+
SENSITIVE: []
|
814
|
+
end
|
815
|
+
|
816
|
+
class CreateJobTemplateResponse
|
817
|
+
attr_accessor job_template_arn: ::String
|
818
|
+
attr_accessor job_template_id: ::String
|
819
|
+
SENSITIVE: []
|
820
|
+
end
|
821
|
+
|
822
|
+
class CreateKeysAndCertificateRequest
|
823
|
+
attr_accessor set_as_active: bool
|
824
|
+
SENSITIVE: []
|
825
|
+
end
|
826
|
+
|
827
|
+
class CreateKeysAndCertificateResponse
|
828
|
+
attr_accessor certificate_arn: ::String
|
829
|
+
attr_accessor certificate_id: ::String
|
830
|
+
attr_accessor certificate_pem: ::String
|
831
|
+
attr_accessor key_pair: Types::KeyPair
|
832
|
+
SENSITIVE: []
|
833
|
+
end
|
834
|
+
|
835
|
+
class CreateMitigationActionRequest
|
836
|
+
attr_accessor action_name: ::String
|
837
|
+
attr_accessor role_arn: ::String
|
838
|
+
attr_accessor action_params: Types::MitigationActionParams
|
839
|
+
attr_accessor tags: ::Array[Types::Tag]
|
840
|
+
SENSITIVE: []
|
841
|
+
end
|
842
|
+
|
843
|
+
class CreateMitigationActionResponse
|
844
|
+
attr_accessor action_arn: ::String
|
845
|
+
attr_accessor action_id: ::String
|
846
|
+
SENSITIVE: []
|
847
|
+
end
|
848
|
+
|
849
|
+
class CreateOTAUpdateRequest
|
850
|
+
attr_accessor ota_update_id: ::String
|
851
|
+
attr_accessor description: ::String
|
852
|
+
attr_accessor targets: ::Array[::String]
|
853
|
+
attr_accessor protocols: ::Array[("MQTT" | "HTTP")]
|
854
|
+
attr_accessor target_selection: ("CONTINUOUS" | "SNAPSHOT")
|
855
|
+
attr_accessor aws_job_executions_rollout_config: Types::AwsJobExecutionsRolloutConfig
|
856
|
+
attr_accessor aws_job_presigned_url_config: Types::AwsJobPresignedUrlConfig
|
857
|
+
attr_accessor aws_job_abort_config: Types::AwsJobAbortConfig
|
858
|
+
attr_accessor aws_job_timeout_config: Types::AwsJobTimeoutConfig
|
859
|
+
attr_accessor files: ::Array[Types::OTAUpdateFile]
|
860
|
+
attr_accessor role_arn: ::String
|
861
|
+
attr_accessor additional_parameters: ::Hash[::String, ::String]
|
862
|
+
attr_accessor tags: ::Array[Types::Tag]
|
863
|
+
SENSITIVE: []
|
864
|
+
end
|
865
|
+
|
866
|
+
class CreateOTAUpdateResponse
|
867
|
+
attr_accessor ota_update_id: ::String
|
868
|
+
attr_accessor aws_iot_job_id: ::String
|
869
|
+
attr_accessor ota_update_arn: ::String
|
870
|
+
attr_accessor aws_iot_job_arn: ::String
|
871
|
+
attr_accessor ota_update_status: ("CREATE_PENDING" | "CREATE_IN_PROGRESS" | "CREATE_COMPLETE" | "CREATE_FAILED" | "DELETE_IN_PROGRESS" | "DELETE_FAILED")
|
872
|
+
SENSITIVE: []
|
873
|
+
end
|
874
|
+
|
875
|
+
class CreatePackageRequest
|
876
|
+
attr_accessor package_name: ::String
|
877
|
+
attr_accessor description: ::String
|
878
|
+
attr_accessor tags: ::Hash[::String, ::String]
|
879
|
+
attr_accessor client_token: ::String
|
880
|
+
SENSITIVE: [:description]
|
881
|
+
end
|
882
|
+
|
883
|
+
class CreatePackageResponse
|
884
|
+
attr_accessor package_name: ::String
|
885
|
+
attr_accessor package_arn: ::String
|
886
|
+
attr_accessor description: ::String
|
887
|
+
SENSITIVE: [:description]
|
888
|
+
end
|
889
|
+
|
890
|
+
class CreatePackageVersionRequest
|
891
|
+
attr_accessor package_name: ::String
|
892
|
+
attr_accessor version_name: ::String
|
893
|
+
attr_accessor description: ::String
|
894
|
+
attr_accessor attributes: ::Hash[::String, ::String]
|
895
|
+
attr_accessor tags: ::Hash[::String, ::String]
|
896
|
+
attr_accessor client_token: ::String
|
897
|
+
SENSITIVE: [:description, :attributes]
|
898
|
+
end
|
899
|
+
|
900
|
+
class CreatePackageVersionResponse
|
901
|
+
attr_accessor package_version_arn: ::String
|
902
|
+
attr_accessor package_name: ::String
|
903
|
+
attr_accessor version_name: ::String
|
904
|
+
attr_accessor description: ::String
|
905
|
+
attr_accessor attributes: ::Hash[::String, ::String]
|
906
|
+
attr_accessor status: ("DRAFT" | "PUBLISHED" | "DEPRECATED")
|
907
|
+
attr_accessor error_reason: ::String
|
908
|
+
SENSITIVE: [:description, :attributes]
|
909
|
+
end
|
910
|
+
|
911
|
+
class CreatePolicyRequest
|
912
|
+
attr_accessor policy_name: ::String
|
913
|
+
attr_accessor policy_document: ::String
|
914
|
+
attr_accessor tags: ::Array[Types::Tag]
|
915
|
+
SENSITIVE: []
|
916
|
+
end
|
917
|
+
|
918
|
+
class CreatePolicyResponse
|
919
|
+
attr_accessor policy_name: ::String
|
920
|
+
attr_accessor policy_arn: ::String
|
921
|
+
attr_accessor policy_document: ::String
|
922
|
+
attr_accessor policy_version_id: ::String
|
923
|
+
SENSITIVE: []
|
924
|
+
end
|
925
|
+
|
926
|
+
class CreatePolicyVersionRequest
|
927
|
+
attr_accessor policy_name: ::String
|
928
|
+
attr_accessor policy_document: ::String
|
929
|
+
attr_accessor set_as_default: bool
|
930
|
+
SENSITIVE: []
|
931
|
+
end
|
932
|
+
|
933
|
+
class CreatePolicyVersionResponse
|
934
|
+
attr_accessor policy_arn: ::String
|
935
|
+
attr_accessor policy_document: ::String
|
936
|
+
attr_accessor policy_version_id: ::String
|
937
|
+
attr_accessor is_default_version: bool
|
938
|
+
SENSITIVE: []
|
939
|
+
end
|
940
|
+
|
941
|
+
class CreateProvisioningClaimRequest
|
942
|
+
attr_accessor template_name: ::String
|
943
|
+
SENSITIVE: []
|
944
|
+
end
|
945
|
+
|
946
|
+
class CreateProvisioningClaimResponse
|
947
|
+
attr_accessor certificate_id: ::String
|
948
|
+
attr_accessor certificate_pem: ::String
|
949
|
+
attr_accessor key_pair: Types::KeyPair
|
950
|
+
attr_accessor expiration: ::Time
|
951
|
+
SENSITIVE: []
|
952
|
+
end
|
953
|
+
|
954
|
+
class CreateProvisioningTemplateRequest
|
955
|
+
attr_accessor template_name: ::String
|
956
|
+
attr_accessor description: ::String
|
957
|
+
attr_accessor template_body: ::String
|
958
|
+
attr_accessor enabled: bool
|
959
|
+
attr_accessor provisioning_role_arn: ::String
|
960
|
+
attr_accessor pre_provisioning_hook: Types::ProvisioningHook
|
961
|
+
attr_accessor tags: ::Array[Types::Tag]
|
962
|
+
attr_accessor type: ("FLEET_PROVISIONING" | "JITP")
|
963
|
+
SENSITIVE: []
|
964
|
+
end
|
965
|
+
|
966
|
+
class CreateProvisioningTemplateResponse
|
967
|
+
attr_accessor template_arn: ::String
|
968
|
+
attr_accessor template_name: ::String
|
969
|
+
attr_accessor default_version_id: ::Integer
|
970
|
+
SENSITIVE: []
|
971
|
+
end
|
972
|
+
|
973
|
+
class CreateProvisioningTemplateVersionRequest
|
974
|
+
attr_accessor template_name: ::String
|
975
|
+
attr_accessor template_body: ::String
|
976
|
+
attr_accessor set_as_default: bool
|
977
|
+
SENSITIVE: []
|
978
|
+
end
|
979
|
+
|
980
|
+
class CreateProvisioningTemplateVersionResponse
|
981
|
+
attr_accessor template_arn: ::String
|
982
|
+
attr_accessor template_name: ::String
|
983
|
+
attr_accessor version_id: ::Integer
|
984
|
+
attr_accessor is_default_version: bool
|
985
|
+
SENSITIVE: []
|
986
|
+
end
|
987
|
+
|
988
|
+
class CreateRoleAliasRequest
|
989
|
+
attr_accessor role_alias: ::String
|
990
|
+
attr_accessor role_arn: ::String
|
991
|
+
attr_accessor credential_duration_seconds: ::Integer
|
992
|
+
attr_accessor tags: ::Array[Types::Tag]
|
993
|
+
SENSITIVE: []
|
994
|
+
end
|
995
|
+
|
996
|
+
class CreateRoleAliasResponse
|
997
|
+
attr_accessor role_alias: ::String
|
998
|
+
attr_accessor role_alias_arn: ::String
|
999
|
+
SENSITIVE: []
|
1000
|
+
end
|
1001
|
+
|
1002
|
+
class CreateScheduledAuditRequest
|
1003
|
+
attr_accessor frequency: ("DAILY" | "WEEKLY" | "BIWEEKLY" | "MONTHLY")
|
1004
|
+
attr_accessor day_of_month: ::String
|
1005
|
+
attr_accessor day_of_week: ("SUN" | "MON" | "TUE" | "WED" | "THU" | "FRI" | "SAT")
|
1006
|
+
attr_accessor target_check_names: ::Array[::String]
|
1007
|
+
attr_accessor scheduled_audit_name: ::String
|
1008
|
+
attr_accessor tags: ::Array[Types::Tag]
|
1009
|
+
SENSITIVE: []
|
1010
|
+
end
|
1011
|
+
|
1012
|
+
class CreateScheduledAuditResponse
|
1013
|
+
attr_accessor scheduled_audit_arn: ::String
|
1014
|
+
SENSITIVE: []
|
1015
|
+
end
|
1016
|
+
|
1017
|
+
class CreateSecurityProfileRequest
|
1018
|
+
attr_accessor security_profile_name: ::String
|
1019
|
+
attr_accessor security_profile_description: ::String
|
1020
|
+
attr_accessor behaviors: ::Array[Types::Behavior]
|
1021
|
+
attr_accessor alert_targets: ::Hash[("SNS"), Types::AlertTarget]
|
1022
|
+
attr_accessor additional_metrics_to_retain: ::Array[::String]
|
1023
|
+
attr_accessor additional_metrics_to_retain_v2: ::Array[Types::MetricToRetain]
|
1024
|
+
attr_accessor tags: ::Array[Types::Tag]
|
1025
|
+
attr_accessor metrics_export_config: Types::MetricsExportConfig
|
1026
|
+
SENSITIVE: []
|
1027
|
+
end
|
1028
|
+
|
1029
|
+
class CreateSecurityProfileResponse
|
1030
|
+
attr_accessor security_profile_name: ::String
|
1031
|
+
attr_accessor security_profile_arn: ::String
|
1032
|
+
SENSITIVE: []
|
1033
|
+
end
|
1034
|
+
|
1035
|
+
class CreateStreamRequest
|
1036
|
+
attr_accessor stream_id: ::String
|
1037
|
+
attr_accessor description: ::String
|
1038
|
+
attr_accessor files: ::Array[Types::StreamFile]
|
1039
|
+
attr_accessor role_arn: ::String
|
1040
|
+
attr_accessor tags: ::Array[Types::Tag]
|
1041
|
+
SENSITIVE: []
|
1042
|
+
end
|
1043
|
+
|
1044
|
+
class CreateStreamResponse
|
1045
|
+
attr_accessor stream_id: ::String
|
1046
|
+
attr_accessor stream_arn: ::String
|
1047
|
+
attr_accessor description: ::String
|
1048
|
+
attr_accessor stream_version: ::Integer
|
1049
|
+
SENSITIVE: []
|
1050
|
+
end
|
1051
|
+
|
1052
|
+
class CreateThingGroupRequest
|
1053
|
+
attr_accessor thing_group_name: ::String
|
1054
|
+
attr_accessor parent_group_name: ::String
|
1055
|
+
attr_accessor thing_group_properties: Types::ThingGroupProperties
|
1056
|
+
attr_accessor tags: ::Array[Types::Tag]
|
1057
|
+
SENSITIVE: []
|
1058
|
+
end
|
1059
|
+
|
1060
|
+
class CreateThingGroupResponse
|
1061
|
+
attr_accessor thing_group_name: ::String
|
1062
|
+
attr_accessor thing_group_arn: ::String
|
1063
|
+
attr_accessor thing_group_id: ::String
|
1064
|
+
SENSITIVE: []
|
1065
|
+
end
|
1066
|
+
|
1067
|
+
class CreateThingRequest
|
1068
|
+
attr_accessor thing_name: ::String
|
1069
|
+
attr_accessor thing_type_name: ::String
|
1070
|
+
attr_accessor attribute_payload: Types::AttributePayload
|
1071
|
+
attr_accessor billing_group_name: ::String
|
1072
|
+
SENSITIVE: []
|
1073
|
+
end
|
1074
|
+
|
1075
|
+
class CreateThingResponse
|
1076
|
+
attr_accessor thing_name: ::String
|
1077
|
+
attr_accessor thing_arn: ::String
|
1078
|
+
attr_accessor thing_id: ::String
|
1079
|
+
SENSITIVE: []
|
1080
|
+
end
|
1081
|
+
|
1082
|
+
class CreateThingTypeRequest
|
1083
|
+
attr_accessor thing_type_name: ::String
|
1084
|
+
attr_accessor thing_type_properties: Types::ThingTypeProperties
|
1085
|
+
attr_accessor tags: ::Array[Types::Tag]
|
1086
|
+
SENSITIVE: []
|
1087
|
+
end
|
1088
|
+
|
1089
|
+
class CreateThingTypeResponse
|
1090
|
+
attr_accessor thing_type_name: ::String
|
1091
|
+
attr_accessor thing_type_arn: ::String
|
1092
|
+
attr_accessor thing_type_id: ::String
|
1093
|
+
SENSITIVE: []
|
1094
|
+
end
|
1095
|
+
|
1096
|
+
class CreateTopicRuleDestinationRequest
|
1097
|
+
attr_accessor destination_configuration: Types::TopicRuleDestinationConfiguration
|
1098
|
+
SENSITIVE: []
|
1099
|
+
end
|
1100
|
+
|
1101
|
+
class CreateTopicRuleDestinationResponse
|
1102
|
+
attr_accessor topic_rule_destination: Types::TopicRuleDestination
|
1103
|
+
SENSITIVE: []
|
1104
|
+
end
|
1105
|
+
|
1106
|
+
class CreateTopicRuleRequest
|
1107
|
+
attr_accessor rule_name: ::String
|
1108
|
+
attr_accessor topic_rule_payload: Types::TopicRulePayload
|
1109
|
+
attr_accessor tags: ::String
|
1110
|
+
SENSITIVE: []
|
1111
|
+
end
|
1112
|
+
|
1113
|
+
class CustomCodeSigning
|
1114
|
+
attr_accessor signature: Types::CodeSigningSignature
|
1115
|
+
attr_accessor certificate_chain: Types::CodeSigningCertificateChain
|
1116
|
+
attr_accessor hash_algorithm: ::String
|
1117
|
+
attr_accessor signature_algorithm: ::String
|
1118
|
+
SENSITIVE: []
|
1119
|
+
end
|
1120
|
+
|
1121
|
+
class DeleteAccountAuditConfigurationRequest
|
1122
|
+
attr_accessor delete_scheduled_audits: bool
|
1123
|
+
SENSITIVE: []
|
1124
|
+
end
|
1125
|
+
|
1126
|
+
class DeleteAccountAuditConfigurationResponse < Aws::EmptyStructure
|
1127
|
+
end
|
1128
|
+
|
1129
|
+
class DeleteAuditSuppressionRequest
|
1130
|
+
attr_accessor check_name: ::String
|
1131
|
+
attr_accessor resource_identifier: Types::ResourceIdentifier
|
1132
|
+
SENSITIVE: []
|
1133
|
+
end
|
1134
|
+
|
1135
|
+
class DeleteAuditSuppressionResponse < Aws::EmptyStructure
|
1136
|
+
end
|
1137
|
+
|
1138
|
+
class DeleteAuthorizerRequest
|
1139
|
+
attr_accessor authorizer_name: ::String
|
1140
|
+
SENSITIVE: []
|
1141
|
+
end
|
1142
|
+
|
1143
|
+
class DeleteAuthorizerResponse < Aws::EmptyStructure
|
1144
|
+
end
|
1145
|
+
|
1146
|
+
class DeleteBillingGroupRequest
|
1147
|
+
attr_accessor billing_group_name: ::String
|
1148
|
+
attr_accessor expected_version: ::Integer
|
1149
|
+
SENSITIVE: []
|
1150
|
+
end
|
1151
|
+
|
1152
|
+
class DeleteBillingGroupResponse < Aws::EmptyStructure
|
1153
|
+
end
|
1154
|
+
|
1155
|
+
class DeleteCACertificateRequest
|
1156
|
+
attr_accessor certificate_id: ::String
|
1157
|
+
SENSITIVE: []
|
1158
|
+
end
|
1159
|
+
|
1160
|
+
class DeleteCACertificateResponse < Aws::EmptyStructure
|
1161
|
+
end
|
1162
|
+
|
1163
|
+
class DeleteCertificateProviderRequest
|
1164
|
+
attr_accessor certificate_provider_name: ::String
|
1165
|
+
SENSITIVE: []
|
1166
|
+
end
|
1167
|
+
|
1168
|
+
class DeleteCertificateProviderResponse < Aws::EmptyStructure
|
1169
|
+
end
|
1170
|
+
|
1171
|
+
class DeleteCertificateRequest
|
1172
|
+
attr_accessor certificate_id: ::String
|
1173
|
+
attr_accessor force_delete: bool
|
1174
|
+
SENSITIVE: []
|
1175
|
+
end
|
1176
|
+
|
1177
|
+
class DeleteConflictException
|
1178
|
+
attr_accessor message: ::String
|
1179
|
+
SENSITIVE: []
|
1180
|
+
end
|
1181
|
+
|
1182
|
+
class DeleteCustomMetricRequest
|
1183
|
+
attr_accessor metric_name: ::String
|
1184
|
+
SENSITIVE: []
|
1185
|
+
end
|
1186
|
+
|
1187
|
+
class DeleteCustomMetricResponse < Aws::EmptyStructure
|
1188
|
+
end
|
1189
|
+
|
1190
|
+
class DeleteDimensionRequest
|
1191
|
+
attr_accessor name: ::String
|
1192
|
+
SENSITIVE: []
|
1193
|
+
end
|
1194
|
+
|
1195
|
+
class DeleteDimensionResponse < Aws::EmptyStructure
|
1196
|
+
end
|
1197
|
+
|
1198
|
+
class DeleteDomainConfigurationRequest
|
1199
|
+
attr_accessor domain_configuration_name: ::String
|
1200
|
+
SENSITIVE: []
|
1201
|
+
end
|
1202
|
+
|
1203
|
+
class DeleteDomainConfigurationResponse < Aws::EmptyStructure
|
1204
|
+
end
|
1205
|
+
|
1206
|
+
class DeleteDynamicThingGroupRequest
|
1207
|
+
attr_accessor thing_group_name: ::String
|
1208
|
+
attr_accessor expected_version: ::Integer
|
1209
|
+
SENSITIVE: []
|
1210
|
+
end
|
1211
|
+
|
1212
|
+
class DeleteDynamicThingGroupResponse < Aws::EmptyStructure
|
1213
|
+
end
|
1214
|
+
|
1215
|
+
class DeleteFleetMetricRequest
|
1216
|
+
attr_accessor metric_name: ::String
|
1217
|
+
attr_accessor expected_version: ::Integer
|
1218
|
+
SENSITIVE: []
|
1219
|
+
end
|
1220
|
+
|
1221
|
+
class DeleteJobExecutionRequest
|
1222
|
+
attr_accessor job_id: ::String
|
1223
|
+
attr_accessor thing_name: ::String
|
1224
|
+
attr_accessor execution_number: ::Integer
|
1225
|
+
attr_accessor force: bool
|
1226
|
+
attr_accessor namespace_id: ::String
|
1227
|
+
SENSITIVE: []
|
1228
|
+
end
|
1229
|
+
|
1230
|
+
class DeleteJobRequest
|
1231
|
+
attr_accessor job_id: ::String
|
1232
|
+
attr_accessor force: bool
|
1233
|
+
attr_accessor namespace_id: ::String
|
1234
|
+
SENSITIVE: []
|
1235
|
+
end
|
1236
|
+
|
1237
|
+
class DeleteJobTemplateRequest
|
1238
|
+
attr_accessor job_template_id: ::String
|
1239
|
+
SENSITIVE: []
|
1240
|
+
end
|
1241
|
+
|
1242
|
+
class DeleteMitigationActionRequest
|
1243
|
+
attr_accessor action_name: ::String
|
1244
|
+
SENSITIVE: []
|
1245
|
+
end
|
1246
|
+
|
1247
|
+
class DeleteMitigationActionResponse < Aws::EmptyStructure
|
1248
|
+
end
|
1249
|
+
|
1250
|
+
class DeleteOTAUpdateRequest
|
1251
|
+
attr_accessor ota_update_id: ::String
|
1252
|
+
attr_accessor delete_stream: bool
|
1253
|
+
attr_accessor force_delete_aws_job: bool
|
1254
|
+
SENSITIVE: []
|
1255
|
+
end
|
1256
|
+
|
1257
|
+
class DeleteOTAUpdateResponse < Aws::EmptyStructure
|
1258
|
+
end
|
1259
|
+
|
1260
|
+
class DeletePackageRequest
|
1261
|
+
attr_accessor package_name: ::String
|
1262
|
+
attr_accessor client_token: ::String
|
1263
|
+
SENSITIVE: []
|
1264
|
+
end
|
1265
|
+
|
1266
|
+
class DeletePackageResponse < Aws::EmptyStructure
|
1267
|
+
end
|
1268
|
+
|
1269
|
+
class DeletePackageVersionRequest
|
1270
|
+
attr_accessor package_name: ::String
|
1271
|
+
attr_accessor version_name: ::String
|
1272
|
+
attr_accessor client_token: ::String
|
1273
|
+
SENSITIVE: []
|
1274
|
+
end
|
1275
|
+
|
1276
|
+
class DeletePackageVersionResponse < Aws::EmptyStructure
|
1277
|
+
end
|
1278
|
+
|
1279
|
+
class DeletePolicyRequest
|
1280
|
+
attr_accessor policy_name: ::String
|
1281
|
+
SENSITIVE: []
|
1282
|
+
end
|
1283
|
+
|
1284
|
+
class DeletePolicyVersionRequest
|
1285
|
+
attr_accessor policy_name: ::String
|
1286
|
+
attr_accessor policy_version_id: ::String
|
1287
|
+
SENSITIVE: []
|
1288
|
+
end
|
1289
|
+
|
1290
|
+
class DeleteProvisioningTemplateRequest
|
1291
|
+
attr_accessor template_name: ::String
|
1292
|
+
SENSITIVE: []
|
1293
|
+
end
|
1294
|
+
|
1295
|
+
class DeleteProvisioningTemplateResponse < Aws::EmptyStructure
|
1296
|
+
end
|
1297
|
+
|
1298
|
+
class DeleteProvisioningTemplateVersionRequest
|
1299
|
+
attr_accessor template_name: ::String
|
1300
|
+
attr_accessor version_id: ::Integer
|
1301
|
+
SENSITIVE: []
|
1302
|
+
end
|
1303
|
+
|
1304
|
+
class DeleteProvisioningTemplateVersionResponse < Aws::EmptyStructure
|
1305
|
+
end
|
1306
|
+
|
1307
|
+
class DeleteRegistrationCodeRequest < Aws::EmptyStructure
|
1308
|
+
end
|
1309
|
+
|
1310
|
+
class DeleteRegistrationCodeResponse < Aws::EmptyStructure
|
1311
|
+
end
|
1312
|
+
|
1313
|
+
class DeleteRoleAliasRequest
|
1314
|
+
attr_accessor role_alias: ::String
|
1315
|
+
SENSITIVE: []
|
1316
|
+
end
|
1317
|
+
|
1318
|
+
class DeleteRoleAliasResponse < Aws::EmptyStructure
|
1319
|
+
end
|
1320
|
+
|
1321
|
+
class DeleteScheduledAuditRequest
|
1322
|
+
attr_accessor scheduled_audit_name: ::String
|
1323
|
+
SENSITIVE: []
|
1324
|
+
end
|
1325
|
+
|
1326
|
+
class DeleteScheduledAuditResponse < Aws::EmptyStructure
|
1327
|
+
end
|
1328
|
+
|
1329
|
+
class DeleteSecurityProfileRequest
|
1330
|
+
attr_accessor security_profile_name: ::String
|
1331
|
+
attr_accessor expected_version: ::Integer
|
1332
|
+
SENSITIVE: []
|
1333
|
+
end
|
1334
|
+
|
1335
|
+
class DeleteSecurityProfileResponse < Aws::EmptyStructure
|
1336
|
+
end
|
1337
|
+
|
1338
|
+
class DeleteStreamRequest
|
1339
|
+
attr_accessor stream_id: ::String
|
1340
|
+
SENSITIVE: []
|
1341
|
+
end
|
1342
|
+
|
1343
|
+
class DeleteStreamResponse < Aws::EmptyStructure
|
1344
|
+
end
|
1345
|
+
|
1346
|
+
class DeleteThingGroupRequest
|
1347
|
+
attr_accessor thing_group_name: ::String
|
1348
|
+
attr_accessor expected_version: ::Integer
|
1349
|
+
SENSITIVE: []
|
1350
|
+
end
|
1351
|
+
|
1352
|
+
class DeleteThingGroupResponse < Aws::EmptyStructure
|
1353
|
+
end
|
1354
|
+
|
1355
|
+
class DeleteThingRequest
|
1356
|
+
attr_accessor thing_name: ::String
|
1357
|
+
attr_accessor expected_version: ::Integer
|
1358
|
+
SENSITIVE: []
|
1359
|
+
end
|
1360
|
+
|
1361
|
+
class DeleteThingResponse < Aws::EmptyStructure
|
1362
|
+
end
|
1363
|
+
|
1364
|
+
class DeleteThingTypeRequest
|
1365
|
+
attr_accessor thing_type_name: ::String
|
1366
|
+
SENSITIVE: []
|
1367
|
+
end
|
1368
|
+
|
1369
|
+
class DeleteThingTypeResponse < Aws::EmptyStructure
|
1370
|
+
end
|
1371
|
+
|
1372
|
+
class DeleteTopicRuleDestinationRequest
|
1373
|
+
attr_accessor arn: ::String
|
1374
|
+
SENSITIVE: []
|
1375
|
+
end
|
1376
|
+
|
1377
|
+
class DeleteTopicRuleDestinationResponse < Aws::EmptyStructure
|
1378
|
+
end
|
1379
|
+
|
1380
|
+
class DeleteTopicRuleRequest
|
1381
|
+
attr_accessor rule_name: ::String
|
1382
|
+
SENSITIVE: []
|
1383
|
+
end
|
1384
|
+
|
1385
|
+
class DeleteV2LoggingLevelRequest
|
1386
|
+
attr_accessor target_type: ("DEFAULT" | "THING_GROUP" | "CLIENT_ID" | "SOURCE_IP" | "PRINCIPAL_ID")
|
1387
|
+
attr_accessor target_name: ::String
|
1388
|
+
SENSITIVE: []
|
1389
|
+
end
|
1390
|
+
|
1391
|
+
class Denied
|
1392
|
+
attr_accessor implicit_deny: Types::ImplicitDeny
|
1393
|
+
attr_accessor explicit_deny: Types::ExplicitDeny
|
1394
|
+
SENSITIVE: []
|
1395
|
+
end
|
1396
|
+
|
1397
|
+
class DeprecateThingTypeRequest
|
1398
|
+
attr_accessor thing_type_name: ::String
|
1399
|
+
attr_accessor undo_deprecate: bool
|
1400
|
+
SENSITIVE: []
|
1401
|
+
end
|
1402
|
+
|
1403
|
+
class DeprecateThingTypeResponse < Aws::EmptyStructure
|
1404
|
+
end
|
1405
|
+
|
1406
|
+
class DescribeAccountAuditConfigurationRequest < Aws::EmptyStructure
|
1407
|
+
end
|
1408
|
+
|
1409
|
+
class DescribeAccountAuditConfigurationResponse
|
1410
|
+
attr_accessor role_arn: ::String
|
1411
|
+
attr_accessor audit_notification_target_configurations: ::Hash[("SNS"), Types::AuditNotificationTarget]
|
1412
|
+
attr_accessor audit_check_configurations: ::Hash[::String, Types::AuditCheckConfiguration]
|
1413
|
+
SENSITIVE: []
|
1414
|
+
end
|
1415
|
+
|
1416
|
+
class DescribeAuditFindingRequest
|
1417
|
+
attr_accessor finding_id: ::String
|
1418
|
+
SENSITIVE: []
|
1419
|
+
end
|
1420
|
+
|
1421
|
+
class DescribeAuditFindingResponse
|
1422
|
+
attr_accessor finding: Types::AuditFinding
|
1423
|
+
SENSITIVE: []
|
1424
|
+
end
|
1425
|
+
|
1426
|
+
class DescribeAuditMitigationActionsTaskRequest
|
1427
|
+
attr_accessor task_id: ::String
|
1428
|
+
SENSITIVE: []
|
1429
|
+
end
|
1430
|
+
|
1431
|
+
class DescribeAuditMitigationActionsTaskResponse
|
1432
|
+
attr_accessor task_status: ("IN_PROGRESS" | "COMPLETED" | "FAILED" | "CANCELED")
|
1433
|
+
attr_accessor start_time: ::Time
|
1434
|
+
attr_accessor end_time: ::Time
|
1435
|
+
attr_accessor task_statistics: ::Hash[::String, Types::TaskStatisticsForAuditCheck]
|
1436
|
+
attr_accessor target: Types::AuditMitigationActionsTaskTarget
|
1437
|
+
attr_accessor audit_check_to_actions_mapping: ::Hash[::String, ::Array[::String]]
|
1438
|
+
attr_accessor actions_definition: ::Array[Types::MitigationAction]
|
1439
|
+
SENSITIVE: []
|
1440
|
+
end
|
1441
|
+
|
1442
|
+
class DescribeAuditSuppressionRequest
|
1443
|
+
attr_accessor check_name: ::String
|
1444
|
+
attr_accessor resource_identifier: Types::ResourceIdentifier
|
1445
|
+
SENSITIVE: []
|
1446
|
+
end
|
1447
|
+
|
1448
|
+
class DescribeAuditSuppressionResponse
|
1449
|
+
attr_accessor check_name: ::String
|
1450
|
+
attr_accessor resource_identifier: Types::ResourceIdentifier
|
1451
|
+
attr_accessor expiration_date: ::Time
|
1452
|
+
attr_accessor suppress_indefinitely: bool
|
1453
|
+
attr_accessor description: ::String
|
1454
|
+
SENSITIVE: []
|
1455
|
+
end
|
1456
|
+
|
1457
|
+
class DescribeAuditTaskRequest
|
1458
|
+
attr_accessor task_id: ::String
|
1459
|
+
SENSITIVE: []
|
1460
|
+
end
|
1461
|
+
|
1462
|
+
class DescribeAuditTaskResponse
|
1463
|
+
attr_accessor task_status: ("IN_PROGRESS" | "COMPLETED" | "FAILED" | "CANCELED")
|
1464
|
+
attr_accessor task_type: ("ON_DEMAND_AUDIT_TASK" | "SCHEDULED_AUDIT_TASK")
|
1465
|
+
attr_accessor task_start_time: ::Time
|
1466
|
+
attr_accessor task_statistics: Types::TaskStatistics
|
1467
|
+
attr_accessor scheduled_audit_name: ::String
|
1468
|
+
attr_accessor audit_details: ::Hash[::String, Types::AuditCheckDetails]
|
1469
|
+
SENSITIVE: []
|
1470
|
+
end
|
1471
|
+
|
1472
|
+
class DescribeAuthorizerRequest
|
1473
|
+
attr_accessor authorizer_name: ::String
|
1474
|
+
SENSITIVE: []
|
1475
|
+
end
|
1476
|
+
|
1477
|
+
class DescribeAuthorizerResponse
|
1478
|
+
attr_accessor authorizer_description: Types::AuthorizerDescription
|
1479
|
+
SENSITIVE: []
|
1480
|
+
end
|
1481
|
+
|
1482
|
+
class DescribeBillingGroupRequest
|
1483
|
+
attr_accessor billing_group_name: ::String
|
1484
|
+
SENSITIVE: []
|
1485
|
+
end
|
1486
|
+
|
1487
|
+
class DescribeBillingGroupResponse
|
1488
|
+
attr_accessor billing_group_name: ::String
|
1489
|
+
attr_accessor billing_group_id: ::String
|
1490
|
+
attr_accessor billing_group_arn: ::String
|
1491
|
+
attr_accessor version: ::Integer
|
1492
|
+
attr_accessor billing_group_properties: Types::BillingGroupProperties
|
1493
|
+
attr_accessor billing_group_metadata: Types::BillingGroupMetadata
|
1494
|
+
SENSITIVE: []
|
1495
|
+
end
|
1496
|
+
|
1497
|
+
class DescribeCACertificateRequest
|
1498
|
+
attr_accessor certificate_id: ::String
|
1499
|
+
SENSITIVE: []
|
1500
|
+
end
|
1501
|
+
|
1502
|
+
class DescribeCACertificateResponse
|
1503
|
+
attr_accessor certificate_description: Types::CACertificateDescription
|
1504
|
+
attr_accessor registration_config: Types::RegistrationConfig
|
1505
|
+
SENSITIVE: []
|
1506
|
+
end
|
1507
|
+
|
1508
|
+
class DescribeCertificateProviderRequest
|
1509
|
+
attr_accessor certificate_provider_name: ::String
|
1510
|
+
SENSITIVE: []
|
1511
|
+
end
|
1512
|
+
|
1513
|
+
class DescribeCertificateProviderResponse
|
1514
|
+
attr_accessor certificate_provider_name: ::String
|
1515
|
+
attr_accessor certificate_provider_arn: ::String
|
1516
|
+
attr_accessor lambda_function_arn: ::String
|
1517
|
+
attr_accessor account_default_for_operations: ::Array[("CreateCertificateFromCsr")]
|
1518
|
+
attr_accessor creation_date: ::Time
|
1519
|
+
attr_accessor last_modified_date: ::Time
|
1520
|
+
SENSITIVE: []
|
1521
|
+
end
|
1522
|
+
|
1523
|
+
class DescribeCertificateRequest
|
1524
|
+
attr_accessor certificate_id: ::String
|
1525
|
+
SENSITIVE: []
|
1526
|
+
end
|
1527
|
+
|
1528
|
+
class DescribeCertificateResponse
|
1529
|
+
attr_accessor certificate_description: Types::CertificateDescription
|
1530
|
+
SENSITIVE: []
|
1531
|
+
end
|
1532
|
+
|
1533
|
+
class DescribeCustomMetricRequest
|
1534
|
+
attr_accessor metric_name: ::String
|
1535
|
+
SENSITIVE: []
|
1536
|
+
end
|
1537
|
+
|
1538
|
+
class DescribeCustomMetricResponse
|
1539
|
+
attr_accessor metric_name: ::String
|
1540
|
+
attr_accessor metric_arn: ::String
|
1541
|
+
attr_accessor metric_type: ("string-list" | "ip-address-list" | "number-list" | "number")
|
1542
|
+
attr_accessor display_name: ::String
|
1543
|
+
attr_accessor creation_date: ::Time
|
1544
|
+
attr_accessor last_modified_date: ::Time
|
1545
|
+
SENSITIVE: []
|
1546
|
+
end
|
1547
|
+
|
1548
|
+
class DescribeDefaultAuthorizerRequest < Aws::EmptyStructure
|
1549
|
+
end
|
1550
|
+
|
1551
|
+
class DescribeDefaultAuthorizerResponse
|
1552
|
+
attr_accessor authorizer_description: Types::AuthorizerDescription
|
1553
|
+
SENSITIVE: []
|
1554
|
+
end
|
1555
|
+
|
1556
|
+
class DescribeDetectMitigationActionsTaskRequest
|
1557
|
+
attr_accessor task_id: ::String
|
1558
|
+
SENSITIVE: []
|
1559
|
+
end
|
1560
|
+
|
1561
|
+
class DescribeDetectMitigationActionsTaskResponse
|
1562
|
+
attr_accessor task_summary: Types::DetectMitigationActionsTaskSummary
|
1563
|
+
SENSITIVE: []
|
1564
|
+
end
|
1565
|
+
|
1566
|
+
class DescribeDimensionRequest
|
1567
|
+
attr_accessor name: ::String
|
1568
|
+
SENSITIVE: []
|
1569
|
+
end
|
1570
|
+
|
1571
|
+
class DescribeDimensionResponse
|
1572
|
+
attr_accessor name: ::String
|
1573
|
+
attr_accessor arn: ::String
|
1574
|
+
attr_accessor type: ("TOPIC_FILTER")
|
1575
|
+
attr_accessor string_values: ::Array[::String]
|
1576
|
+
attr_accessor creation_date: ::Time
|
1577
|
+
attr_accessor last_modified_date: ::Time
|
1578
|
+
SENSITIVE: []
|
1579
|
+
end
|
1580
|
+
|
1581
|
+
class DescribeDomainConfigurationRequest
|
1582
|
+
attr_accessor domain_configuration_name: ::String
|
1583
|
+
SENSITIVE: []
|
1584
|
+
end
|
1585
|
+
|
1586
|
+
class DescribeDomainConfigurationResponse
|
1587
|
+
attr_accessor domain_configuration_name: ::String
|
1588
|
+
attr_accessor domain_configuration_arn: ::String
|
1589
|
+
attr_accessor domain_name: ::String
|
1590
|
+
attr_accessor server_certificates: ::Array[Types::ServerCertificateSummary]
|
1591
|
+
attr_accessor authorizer_config: Types::AuthorizerConfig
|
1592
|
+
attr_accessor domain_configuration_status: ("ENABLED" | "DISABLED")
|
1593
|
+
attr_accessor service_type: ("DATA" | "CREDENTIAL_PROVIDER" | "JOBS")
|
1594
|
+
attr_accessor domain_type: ("ENDPOINT" | "AWS_MANAGED" | "CUSTOMER_MANAGED")
|
1595
|
+
attr_accessor last_status_change_date: ::Time
|
1596
|
+
attr_accessor tls_config: Types::TlsConfig
|
1597
|
+
attr_accessor server_certificate_config: Types::ServerCertificateConfig
|
1598
|
+
SENSITIVE: []
|
1599
|
+
end
|
1600
|
+
|
1601
|
+
class DescribeEndpointRequest
|
1602
|
+
attr_accessor endpoint_type: ::String
|
1603
|
+
SENSITIVE: []
|
1604
|
+
end
|
1605
|
+
|
1606
|
+
class DescribeEndpointResponse
|
1607
|
+
attr_accessor endpoint_address: ::String
|
1608
|
+
SENSITIVE: []
|
1609
|
+
end
|
1610
|
+
|
1611
|
+
class DescribeEventConfigurationsRequest < Aws::EmptyStructure
|
1612
|
+
end
|
1613
|
+
|
1614
|
+
class DescribeEventConfigurationsResponse
|
1615
|
+
attr_accessor event_configurations: ::Hash[("THING" | "THING_GROUP" | "THING_TYPE" | "THING_GROUP_MEMBERSHIP" | "THING_GROUP_HIERARCHY" | "THING_TYPE_ASSOCIATION" | "JOB" | "JOB_EXECUTION" | "POLICY" | "CERTIFICATE" | "CA_CERTIFICATE"), Types::Configuration]
|
1616
|
+
attr_accessor creation_date: ::Time
|
1617
|
+
attr_accessor last_modified_date: ::Time
|
1618
|
+
SENSITIVE: []
|
1619
|
+
end
|
1620
|
+
|
1621
|
+
class DescribeFleetMetricRequest
|
1622
|
+
attr_accessor metric_name: ::String
|
1623
|
+
SENSITIVE: []
|
1624
|
+
end
|
1625
|
+
|
1626
|
+
class DescribeFleetMetricResponse
|
1627
|
+
attr_accessor metric_name: ::String
|
1628
|
+
attr_accessor query_string: ::String
|
1629
|
+
attr_accessor aggregation_type: Types::AggregationType
|
1630
|
+
attr_accessor period: ::Integer
|
1631
|
+
attr_accessor aggregation_field: ::String
|
1632
|
+
attr_accessor description: ::String
|
1633
|
+
attr_accessor query_version: ::String
|
1634
|
+
attr_accessor index_name: ::String
|
1635
|
+
attr_accessor creation_date: ::Time
|
1636
|
+
attr_accessor last_modified_date: ::Time
|
1637
|
+
attr_accessor unit: ("Seconds" | "Microseconds" | "Milliseconds" | "Bytes" | "Kilobytes" | "Megabytes" | "Gigabytes" | "Terabytes" | "Bits" | "Kilobits" | "Megabits" | "Gigabits" | "Terabits" | "Percent" | "Count" | "Bytes/Second" | "Kilobytes/Second" | "Megabytes/Second" | "Gigabytes/Second" | "Terabytes/Second" | "Bits/Second" | "Kilobits/Second" | "Megabits/Second" | "Gigabits/Second" | "Terabits/Second" | "Count/Second" | "None")
|
1638
|
+
attr_accessor version: ::Integer
|
1639
|
+
attr_accessor metric_arn: ::String
|
1640
|
+
SENSITIVE: []
|
1641
|
+
end
|
1642
|
+
|
1643
|
+
class DescribeIndexRequest
|
1644
|
+
attr_accessor index_name: ::String
|
1645
|
+
SENSITIVE: []
|
1646
|
+
end
|
1647
|
+
|
1648
|
+
class DescribeIndexResponse
|
1649
|
+
attr_accessor index_name: ::String
|
1650
|
+
attr_accessor index_status: ("ACTIVE" | "BUILDING" | "REBUILDING")
|
1651
|
+
attr_accessor schema: ::String
|
1652
|
+
SENSITIVE: []
|
1653
|
+
end
|
1654
|
+
|
1655
|
+
class DescribeJobExecutionRequest
|
1656
|
+
attr_accessor job_id: ::String
|
1657
|
+
attr_accessor thing_name: ::String
|
1658
|
+
attr_accessor execution_number: ::Integer
|
1659
|
+
SENSITIVE: []
|
1660
|
+
end
|
1661
|
+
|
1662
|
+
class DescribeJobExecutionResponse
|
1663
|
+
attr_accessor execution: Types::JobExecution
|
1664
|
+
SENSITIVE: []
|
1665
|
+
end
|
1666
|
+
|
1667
|
+
class DescribeJobRequest
|
1668
|
+
attr_accessor job_id: ::String
|
1669
|
+
SENSITIVE: []
|
1670
|
+
end
|
1671
|
+
|
1672
|
+
class DescribeJobResponse
|
1673
|
+
attr_accessor document_source: ::String
|
1674
|
+
attr_accessor job: Types::Job
|
1675
|
+
SENSITIVE: []
|
1676
|
+
end
|
1677
|
+
|
1678
|
+
class DescribeJobTemplateRequest
|
1679
|
+
attr_accessor job_template_id: ::String
|
1680
|
+
SENSITIVE: []
|
1681
|
+
end
|
1682
|
+
|
1683
|
+
class DescribeJobTemplateResponse
|
1684
|
+
attr_accessor job_template_arn: ::String
|
1685
|
+
attr_accessor job_template_id: ::String
|
1686
|
+
attr_accessor description: ::String
|
1687
|
+
attr_accessor document_source: ::String
|
1688
|
+
attr_accessor document: ::String
|
1689
|
+
attr_accessor created_at: ::Time
|
1690
|
+
attr_accessor presigned_url_config: Types::PresignedUrlConfig
|
1691
|
+
attr_accessor job_executions_rollout_config: Types::JobExecutionsRolloutConfig
|
1692
|
+
attr_accessor abort_config: Types::AbortConfig
|
1693
|
+
attr_accessor timeout_config: Types::TimeoutConfig
|
1694
|
+
attr_accessor job_executions_retry_config: Types::JobExecutionsRetryConfig
|
1695
|
+
attr_accessor maintenance_windows: ::Array[Types::MaintenanceWindow]
|
1696
|
+
attr_accessor destination_package_versions: ::Array[::String]
|
1697
|
+
SENSITIVE: []
|
1698
|
+
end
|
1699
|
+
|
1700
|
+
class DescribeManagedJobTemplateRequest
|
1701
|
+
attr_accessor template_name: ::String
|
1702
|
+
attr_accessor template_version: ::String
|
1703
|
+
SENSITIVE: []
|
1704
|
+
end
|
1705
|
+
|
1706
|
+
class DescribeManagedJobTemplateResponse
|
1707
|
+
attr_accessor template_name: ::String
|
1708
|
+
attr_accessor template_arn: ::String
|
1709
|
+
attr_accessor description: ::String
|
1710
|
+
attr_accessor template_version: ::String
|
1711
|
+
attr_accessor environments: ::Array[::String]
|
1712
|
+
attr_accessor document_parameters: ::Array[Types::DocumentParameter]
|
1713
|
+
attr_accessor document: ::String
|
1714
|
+
SENSITIVE: []
|
1715
|
+
end
|
1716
|
+
|
1717
|
+
class DescribeMitigationActionRequest
|
1718
|
+
attr_accessor action_name: ::String
|
1719
|
+
SENSITIVE: []
|
1720
|
+
end
|
1721
|
+
|
1722
|
+
class DescribeMitigationActionResponse
|
1723
|
+
attr_accessor action_name: ::String
|
1724
|
+
attr_accessor action_type: ("UPDATE_DEVICE_CERTIFICATE" | "UPDATE_CA_CERTIFICATE" | "ADD_THINGS_TO_THING_GROUP" | "REPLACE_DEFAULT_POLICY_VERSION" | "ENABLE_IOT_LOGGING" | "PUBLISH_FINDING_TO_SNS")
|
1725
|
+
attr_accessor action_arn: ::String
|
1726
|
+
attr_accessor action_id: ::String
|
1727
|
+
attr_accessor role_arn: ::String
|
1728
|
+
attr_accessor action_params: Types::MitigationActionParams
|
1729
|
+
attr_accessor creation_date: ::Time
|
1730
|
+
attr_accessor last_modified_date: ::Time
|
1731
|
+
SENSITIVE: []
|
1732
|
+
end
|
1733
|
+
|
1734
|
+
class DescribeProvisioningTemplateRequest
|
1735
|
+
attr_accessor template_name: ::String
|
1736
|
+
SENSITIVE: []
|
1737
|
+
end
|
1738
|
+
|
1739
|
+
class DescribeProvisioningTemplateResponse
|
1740
|
+
attr_accessor template_arn: ::String
|
1741
|
+
attr_accessor template_name: ::String
|
1742
|
+
attr_accessor description: ::String
|
1743
|
+
attr_accessor creation_date: ::Time
|
1744
|
+
attr_accessor last_modified_date: ::Time
|
1745
|
+
attr_accessor default_version_id: ::Integer
|
1746
|
+
attr_accessor template_body: ::String
|
1747
|
+
attr_accessor enabled: bool
|
1748
|
+
attr_accessor provisioning_role_arn: ::String
|
1749
|
+
attr_accessor pre_provisioning_hook: Types::ProvisioningHook
|
1750
|
+
attr_accessor type: ("FLEET_PROVISIONING" | "JITP")
|
1751
|
+
SENSITIVE: []
|
1752
|
+
end
|
1753
|
+
|
1754
|
+
class DescribeProvisioningTemplateVersionRequest
|
1755
|
+
attr_accessor template_name: ::String
|
1756
|
+
attr_accessor version_id: ::Integer
|
1757
|
+
SENSITIVE: []
|
1758
|
+
end
|
1759
|
+
|
1760
|
+
class DescribeProvisioningTemplateVersionResponse
|
1761
|
+
attr_accessor version_id: ::Integer
|
1762
|
+
attr_accessor creation_date: ::Time
|
1763
|
+
attr_accessor template_body: ::String
|
1764
|
+
attr_accessor is_default_version: bool
|
1765
|
+
SENSITIVE: []
|
1766
|
+
end
|
1767
|
+
|
1768
|
+
class DescribeRoleAliasRequest
|
1769
|
+
attr_accessor role_alias: ::String
|
1770
|
+
SENSITIVE: []
|
1771
|
+
end
|
1772
|
+
|
1773
|
+
class DescribeRoleAliasResponse
|
1774
|
+
attr_accessor role_alias_description: Types::RoleAliasDescription
|
1775
|
+
SENSITIVE: []
|
1776
|
+
end
|
1777
|
+
|
1778
|
+
class DescribeScheduledAuditRequest
|
1779
|
+
attr_accessor scheduled_audit_name: ::String
|
1780
|
+
SENSITIVE: []
|
1781
|
+
end
|
1782
|
+
|
1783
|
+
class DescribeScheduledAuditResponse
|
1784
|
+
attr_accessor frequency: ("DAILY" | "WEEKLY" | "BIWEEKLY" | "MONTHLY")
|
1785
|
+
attr_accessor day_of_month: ::String
|
1786
|
+
attr_accessor day_of_week: ("SUN" | "MON" | "TUE" | "WED" | "THU" | "FRI" | "SAT")
|
1787
|
+
attr_accessor target_check_names: ::Array[::String]
|
1788
|
+
attr_accessor scheduled_audit_name: ::String
|
1789
|
+
attr_accessor scheduled_audit_arn: ::String
|
1790
|
+
SENSITIVE: []
|
1791
|
+
end
|
1792
|
+
|
1793
|
+
class DescribeSecurityProfileRequest
|
1794
|
+
attr_accessor security_profile_name: ::String
|
1795
|
+
SENSITIVE: []
|
1796
|
+
end
|
1797
|
+
|
1798
|
+
class DescribeSecurityProfileResponse
|
1799
|
+
attr_accessor security_profile_name: ::String
|
1800
|
+
attr_accessor security_profile_arn: ::String
|
1801
|
+
attr_accessor security_profile_description: ::String
|
1802
|
+
attr_accessor behaviors: ::Array[Types::Behavior]
|
1803
|
+
attr_accessor alert_targets: ::Hash[("SNS"), Types::AlertTarget]
|
1804
|
+
attr_accessor additional_metrics_to_retain: ::Array[::String]
|
1805
|
+
attr_accessor additional_metrics_to_retain_v2: ::Array[Types::MetricToRetain]
|
1806
|
+
attr_accessor version: ::Integer
|
1807
|
+
attr_accessor creation_date: ::Time
|
1808
|
+
attr_accessor last_modified_date: ::Time
|
1809
|
+
attr_accessor metrics_export_config: Types::MetricsExportConfig
|
1810
|
+
SENSITIVE: []
|
1811
|
+
end
|
1812
|
+
|
1813
|
+
class DescribeStreamRequest
|
1814
|
+
attr_accessor stream_id: ::String
|
1815
|
+
SENSITIVE: []
|
1816
|
+
end
|
1817
|
+
|
1818
|
+
class DescribeStreamResponse
|
1819
|
+
attr_accessor stream_info: Types::StreamInfo
|
1820
|
+
SENSITIVE: []
|
1821
|
+
end
|
1822
|
+
|
1823
|
+
class DescribeThingGroupRequest
|
1824
|
+
attr_accessor thing_group_name: ::String
|
1825
|
+
SENSITIVE: []
|
1826
|
+
end
|
1827
|
+
|
1828
|
+
class DescribeThingGroupResponse
|
1829
|
+
attr_accessor thing_group_name: ::String
|
1830
|
+
attr_accessor thing_group_id: ::String
|
1831
|
+
attr_accessor thing_group_arn: ::String
|
1832
|
+
attr_accessor version: ::Integer
|
1833
|
+
attr_accessor thing_group_properties: Types::ThingGroupProperties
|
1834
|
+
attr_accessor thing_group_metadata: Types::ThingGroupMetadata
|
1835
|
+
attr_accessor index_name: ::String
|
1836
|
+
attr_accessor query_string: ::String
|
1837
|
+
attr_accessor query_version: ::String
|
1838
|
+
attr_accessor status: ("ACTIVE" | "BUILDING" | "REBUILDING")
|
1839
|
+
SENSITIVE: []
|
1840
|
+
end
|
1841
|
+
|
1842
|
+
class DescribeThingRegistrationTaskRequest
|
1843
|
+
attr_accessor task_id: ::String
|
1844
|
+
SENSITIVE: []
|
1845
|
+
end
|
1846
|
+
|
1847
|
+
class DescribeThingRegistrationTaskResponse
|
1848
|
+
attr_accessor task_id: ::String
|
1849
|
+
attr_accessor creation_date: ::Time
|
1850
|
+
attr_accessor last_modified_date: ::Time
|
1851
|
+
attr_accessor template_body: ::String
|
1852
|
+
attr_accessor input_file_bucket: ::String
|
1853
|
+
attr_accessor input_file_key: ::String
|
1854
|
+
attr_accessor role_arn: ::String
|
1855
|
+
attr_accessor status: ("InProgress" | "Completed" | "Failed" | "Cancelled" | "Cancelling")
|
1856
|
+
attr_accessor message: ::String
|
1857
|
+
attr_accessor success_count: ::Integer
|
1858
|
+
attr_accessor failure_count: ::Integer
|
1859
|
+
attr_accessor percentage_progress: ::Integer
|
1860
|
+
SENSITIVE: []
|
1861
|
+
end
|
1862
|
+
|
1863
|
+
class DescribeThingRequest
|
1864
|
+
attr_accessor thing_name: ::String
|
1865
|
+
SENSITIVE: []
|
1866
|
+
end
|
1867
|
+
|
1868
|
+
class DescribeThingResponse
|
1869
|
+
attr_accessor default_client_id: ::String
|
1870
|
+
attr_accessor thing_name: ::String
|
1871
|
+
attr_accessor thing_id: ::String
|
1872
|
+
attr_accessor thing_arn: ::String
|
1873
|
+
attr_accessor thing_type_name: ::String
|
1874
|
+
attr_accessor attributes: ::Hash[::String, ::String]
|
1875
|
+
attr_accessor version: ::Integer
|
1876
|
+
attr_accessor billing_group_name: ::String
|
1877
|
+
SENSITIVE: []
|
1878
|
+
end
|
1879
|
+
|
1880
|
+
class DescribeThingTypeRequest
|
1881
|
+
attr_accessor thing_type_name: ::String
|
1882
|
+
SENSITIVE: []
|
1883
|
+
end
|
1884
|
+
|
1885
|
+
class DescribeThingTypeResponse
|
1886
|
+
attr_accessor thing_type_name: ::String
|
1887
|
+
attr_accessor thing_type_id: ::String
|
1888
|
+
attr_accessor thing_type_arn: ::String
|
1889
|
+
attr_accessor thing_type_properties: Types::ThingTypeProperties
|
1890
|
+
attr_accessor thing_type_metadata: Types::ThingTypeMetadata
|
1891
|
+
SENSITIVE: []
|
1892
|
+
end
|
1893
|
+
|
1894
|
+
class Destination
|
1895
|
+
attr_accessor s3_destination: Types::S3Destination
|
1896
|
+
SENSITIVE: []
|
1897
|
+
end
|
1898
|
+
|
1899
|
+
class DetachPolicyRequest
|
1900
|
+
attr_accessor policy_name: ::String
|
1901
|
+
attr_accessor target: ::String
|
1902
|
+
SENSITIVE: []
|
1903
|
+
end
|
1904
|
+
|
1905
|
+
class DetachPrincipalPolicyRequest
|
1906
|
+
attr_accessor policy_name: ::String
|
1907
|
+
attr_accessor principal: ::String
|
1908
|
+
SENSITIVE: []
|
1909
|
+
end
|
1910
|
+
|
1911
|
+
class DetachSecurityProfileRequest
|
1912
|
+
attr_accessor security_profile_name: ::String
|
1913
|
+
attr_accessor security_profile_target_arn: ::String
|
1914
|
+
SENSITIVE: []
|
1915
|
+
end
|
1916
|
+
|
1917
|
+
class DetachSecurityProfileResponse < Aws::EmptyStructure
|
1918
|
+
end
|
1919
|
+
|
1920
|
+
class DetachThingPrincipalRequest
|
1921
|
+
attr_accessor thing_name: ::String
|
1922
|
+
attr_accessor principal: ::String
|
1923
|
+
SENSITIVE: []
|
1924
|
+
end
|
1925
|
+
|
1926
|
+
class DetachThingPrincipalResponse < Aws::EmptyStructure
|
1927
|
+
end
|
1928
|
+
|
1929
|
+
class DetectMitigationActionExecution
|
1930
|
+
attr_accessor task_id: ::String
|
1931
|
+
attr_accessor violation_id: ::String
|
1932
|
+
attr_accessor action_name: ::String
|
1933
|
+
attr_accessor thing_name: ::String
|
1934
|
+
attr_accessor execution_start_date: ::Time
|
1935
|
+
attr_accessor execution_end_date: ::Time
|
1936
|
+
attr_accessor status: ("IN_PROGRESS" | "SUCCESSFUL" | "FAILED" | "SKIPPED")
|
1937
|
+
attr_accessor error_code: ::String
|
1938
|
+
attr_accessor message: ::String
|
1939
|
+
SENSITIVE: []
|
1940
|
+
end
|
1941
|
+
|
1942
|
+
class DetectMitigationActionsTaskStatistics
|
1943
|
+
attr_accessor actions_executed: ::Integer
|
1944
|
+
attr_accessor actions_skipped: ::Integer
|
1945
|
+
attr_accessor actions_failed: ::Integer
|
1946
|
+
SENSITIVE: []
|
1947
|
+
end
|
1948
|
+
|
1949
|
+
class DetectMitigationActionsTaskSummary
|
1950
|
+
attr_accessor task_id: ::String
|
1951
|
+
attr_accessor task_status: ("IN_PROGRESS" | "SUCCESSFUL" | "FAILED" | "CANCELED")
|
1952
|
+
attr_accessor task_start_time: ::Time
|
1953
|
+
attr_accessor task_end_time: ::Time
|
1954
|
+
attr_accessor target: Types::DetectMitigationActionsTaskTarget
|
1955
|
+
attr_accessor violation_event_occurrence_range: Types::ViolationEventOccurrenceRange
|
1956
|
+
attr_accessor only_active_violations_included: bool
|
1957
|
+
attr_accessor suppressed_alerts_included: bool
|
1958
|
+
attr_accessor actions_definition: ::Array[Types::MitigationAction]
|
1959
|
+
attr_accessor task_statistics: Types::DetectMitigationActionsTaskStatistics
|
1960
|
+
SENSITIVE: []
|
1961
|
+
end
|
1962
|
+
|
1963
|
+
class DetectMitigationActionsTaskTarget
|
1964
|
+
attr_accessor violation_ids: ::Array[::String]
|
1965
|
+
attr_accessor security_profile_name: ::String
|
1966
|
+
attr_accessor behavior_name: ::String
|
1967
|
+
SENSITIVE: []
|
1968
|
+
end
|
1969
|
+
|
1970
|
+
class DisableTopicRuleRequest
|
1971
|
+
attr_accessor rule_name: ::String
|
1972
|
+
SENSITIVE: []
|
1973
|
+
end
|
1974
|
+
|
1975
|
+
class DocumentParameter
|
1976
|
+
attr_accessor key: ::String
|
1977
|
+
attr_accessor description: ::String
|
1978
|
+
attr_accessor regex: ::String
|
1979
|
+
attr_accessor example: ::String
|
1980
|
+
attr_accessor optional: bool
|
1981
|
+
SENSITIVE: []
|
1982
|
+
end
|
1983
|
+
|
1984
|
+
class DomainConfigurationSummary
|
1985
|
+
attr_accessor domain_configuration_name: ::String
|
1986
|
+
attr_accessor domain_configuration_arn: ::String
|
1987
|
+
attr_accessor service_type: ("DATA" | "CREDENTIAL_PROVIDER" | "JOBS")
|
1988
|
+
SENSITIVE: []
|
1989
|
+
end
|
1990
|
+
|
1991
|
+
class DynamoDBAction
|
1992
|
+
attr_accessor table_name: ::String
|
1993
|
+
attr_accessor role_arn: ::String
|
1994
|
+
attr_accessor operation: ::String
|
1995
|
+
attr_accessor hash_key_field: ::String
|
1996
|
+
attr_accessor hash_key_value: ::String
|
1997
|
+
attr_accessor hash_key_type: ("STRING" | "NUMBER")
|
1998
|
+
attr_accessor range_key_field: ::String
|
1999
|
+
attr_accessor range_key_value: ::String
|
2000
|
+
attr_accessor range_key_type: ("STRING" | "NUMBER")
|
2001
|
+
attr_accessor payload_field: ::String
|
2002
|
+
SENSITIVE: []
|
2003
|
+
end
|
2004
|
+
|
2005
|
+
class DynamoDBv2Action
|
2006
|
+
attr_accessor role_arn: ::String
|
2007
|
+
attr_accessor put_item: Types::PutItemInput
|
2008
|
+
SENSITIVE: []
|
2009
|
+
end
|
2010
|
+
|
2011
|
+
class EffectivePolicy
|
2012
|
+
attr_accessor policy_name: ::String
|
2013
|
+
attr_accessor policy_arn: ::String
|
2014
|
+
attr_accessor policy_document: ::String
|
2015
|
+
SENSITIVE: []
|
2016
|
+
end
|
2017
|
+
|
2018
|
+
class ElasticsearchAction
|
2019
|
+
attr_accessor role_arn: ::String
|
2020
|
+
attr_accessor endpoint: ::String
|
2021
|
+
attr_accessor index: ::String
|
2022
|
+
attr_accessor type: ::String
|
2023
|
+
attr_accessor id: ::String
|
2024
|
+
SENSITIVE: []
|
2025
|
+
end
|
2026
|
+
|
2027
|
+
class EnableIoTLoggingParams
|
2028
|
+
attr_accessor role_arn_for_logging: ::String
|
2029
|
+
attr_accessor log_level: ("DEBUG" | "INFO" | "ERROR" | "WARN" | "DISABLED")
|
2030
|
+
SENSITIVE: []
|
2031
|
+
end
|
2032
|
+
|
2033
|
+
class EnableTopicRuleRequest
|
2034
|
+
attr_accessor rule_name: ::String
|
2035
|
+
SENSITIVE: []
|
2036
|
+
end
|
2037
|
+
|
2038
|
+
class ErrorInfo
|
2039
|
+
attr_accessor code: ::String
|
2040
|
+
attr_accessor message: ::String
|
2041
|
+
SENSITIVE: []
|
2042
|
+
end
|
2043
|
+
|
2044
|
+
class ExplicitDeny
|
2045
|
+
attr_accessor policies: ::Array[Types::Policy]
|
2046
|
+
SENSITIVE: []
|
2047
|
+
end
|
2048
|
+
|
2049
|
+
class ExponentialRolloutRate
|
2050
|
+
attr_accessor base_rate_per_minute: ::Integer
|
2051
|
+
attr_accessor increment_factor: ::Float
|
2052
|
+
attr_accessor rate_increase_criteria: Types::RateIncreaseCriteria
|
2053
|
+
SENSITIVE: []
|
2054
|
+
end
|
2055
|
+
|
2056
|
+
class Field
|
2057
|
+
attr_accessor name: ::String
|
2058
|
+
attr_accessor type: ("Number" | "String" | "Boolean")
|
2059
|
+
SENSITIVE: []
|
2060
|
+
end
|
2061
|
+
|
2062
|
+
class FileLocation
|
2063
|
+
attr_accessor stream: Types::Stream
|
2064
|
+
attr_accessor s3_location: Types::S3Location
|
2065
|
+
SENSITIVE: []
|
2066
|
+
end
|
2067
|
+
|
2068
|
+
class FirehoseAction
|
2069
|
+
attr_accessor role_arn: ::String
|
2070
|
+
attr_accessor delivery_stream_name: ::String
|
2071
|
+
attr_accessor separator: ::String
|
2072
|
+
attr_accessor batch_mode: bool
|
2073
|
+
SENSITIVE: []
|
2074
|
+
end
|
2075
|
+
|
2076
|
+
class FleetMetricNameAndArn
|
2077
|
+
attr_accessor metric_name: ::String
|
2078
|
+
attr_accessor metric_arn: ::String
|
2079
|
+
SENSITIVE: []
|
2080
|
+
end
|
2081
|
+
|
2082
|
+
class GeoLocationTarget
|
2083
|
+
attr_accessor name: ::String
|
2084
|
+
attr_accessor order: ("LatLon" | "LonLat")
|
2085
|
+
SENSITIVE: []
|
2086
|
+
end
|
2087
|
+
|
2088
|
+
class GetBehaviorModelTrainingSummariesRequest
|
2089
|
+
attr_accessor security_profile_name: ::String
|
2090
|
+
attr_accessor max_results: ::Integer
|
2091
|
+
attr_accessor next_token: ::String
|
2092
|
+
SENSITIVE: []
|
2093
|
+
end
|
2094
|
+
|
2095
|
+
class GetBehaviorModelTrainingSummariesResponse
|
2096
|
+
attr_accessor summaries: ::Array[Types::BehaviorModelTrainingSummary]
|
2097
|
+
attr_accessor next_token: ::String
|
2098
|
+
SENSITIVE: []
|
2099
|
+
end
|
2100
|
+
|
2101
|
+
class GetBucketsAggregationRequest
|
2102
|
+
attr_accessor index_name: ::String
|
2103
|
+
attr_accessor query_string: ::String
|
2104
|
+
attr_accessor aggregation_field: ::String
|
2105
|
+
attr_accessor query_version: ::String
|
2106
|
+
attr_accessor buckets_aggregation_type: Types::BucketsAggregationType
|
2107
|
+
SENSITIVE: []
|
2108
|
+
end
|
2109
|
+
|
2110
|
+
class GetBucketsAggregationResponse
|
2111
|
+
attr_accessor total_count: ::Integer
|
2112
|
+
attr_accessor buckets: ::Array[Types::Bucket]
|
2113
|
+
SENSITIVE: []
|
2114
|
+
end
|
2115
|
+
|
2116
|
+
class GetCardinalityRequest
|
2117
|
+
attr_accessor index_name: ::String
|
2118
|
+
attr_accessor query_string: ::String
|
2119
|
+
attr_accessor aggregation_field: ::String
|
2120
|
+
attr_accessor query_version: ::String
|
2121
|
+
SENSITIVE: []
|
2122
|
+
end
|
2123
|
+
|
2124
|
+
class GetCardinalityResponse
|
2125
|
+
attr_accessor cardinality: ::Integer
|
2126
|
+
SENSITIVE: []
|
2127
|
+
end
|
2128
|
+
|
2129
|
+
class GetEffectivePoliciesRequest
|
2130
|
+
attr_accessor principal: ::String
|
2131
|
+
attr_accessor cognito_identity_pool_id: ::String
|
2132
|
+
attr_accessor thing_name: ::String
|
2133
|
+
SENSITIVE: []
|
2134
|
+
end
|
2135
|
+
|
2136
|
+
class GetEffectivePoliciesResponse
|
2137
|
+
attr_accessor effective_policies: ::Array[Types::EffectivePolicy]
|
2138
|
+
SENSITIVE: []
|
2139
|
+
end
|
2140
|
+
|
2141
|
+
class GetIndexingConfigurationRequest < Aws::EmptyStructure
|
2142
|
+
end
|
2143
|
+
|
2144
|
+
class GetIndexingConfigurationResponse
|
2145
|
+
attr_accessor thing_indexing_configuration: Types::ThingIndexingConfiguration
|
2146
|
+
attr_accessor thing_group_indexing_configuration: Types::ThingGroupIndexingConfiguration
|
2147
|
+
SENSITIVE: []
|
2148
|
+
end
|
2149
|
+
|
2150
|
+
class GetJobDocumentRequest
|
2151
|
+
attr_accessor job_id: ::String
|
2152
|
+
SENSITIVE: []
|
2153
|
+
end
|
2154
|
+
|
2155
|
+
class GetJobDocumentResponse
|
2156
|
+
attr_accessor document: ::String
|
2157
|
+
SENSITIVE: []
|
2158
|
+
end
|
2159
|
+
|
2160
|
+
class GetLoggingOptionsRequest < Aws::EmptyStructure
|
2161
|
+
end
|
2162
|
+
|
2163
|
+
class GetLoggingOptionsResponse
|
2164
|
+
attr_accessor role_arn: ::String
|
2165
|
+
attr_accessor log_level: ("DEBUG" | "INFO" | "ERROR" | "WARN" | "DISABLED")
|
2166
|
+
SENSITIVE: []
|
2167
|
+
end
|
2168
|
+
|
2169
|
+
class GetOTAUpdateRequest
|
2170
|
+
attr_accessor ota_update_id: ::String
|
2171
|
+
SENSITIVE: []
|
2172
|
+
end
|
2173
|
+
|
2174
|
+
class GetOTAUpdateResponse
|
2175
|
+
attr_accessor ota_update_info: Types::OTAUpdateInfo
|
2176
|
+
SENSITIVE: []
|
2177
|
+
end
|
2178
|
+
|
2179
|
+
class GetPackageConfigurationRequest < Aws::EmptyStructure
|
2180
|
+
end
|
2181
|
+
|
2182
|
+
class GetPackageConfigurationResponse
|
2183
|
+
attr_accessor version_update_by_jobs_config: Types::VersionUpdateByJobsConfig
|
2184
|
+
SENSITIVE: []
|
2185
|
+
end
|
2186
|
+
|
2187
|
+
class GetPackageRequest
|
2188
|
+
attr_accessor package_name: ::String
|
2189
|
+
SENSITIVE: []
|
2190
|
+
end
|
2191
|
+
|
2192
|
+
class GetPackageResponse
|
2193
|
+
attr_accessor package_name: ::String
|
2194
|
+
attr_accessor package_arn: ::String
|
2195
|
+
attr_accessor description: ::String
|
2196
|
+
attr_accessor default_version_name: ::String
|
2197
|
+
attr_accessor creation_date: ::Time
|
2198
|
+
attr_accessor last_modified_date: ::Time
|
2199
|
+
SENSITIVE: [:description]
|
2200
|
+
end
|
2201
|
+
|
2202
|
+
class GetPackageVersionRequest
|
2203
|
+
attr_accessor package_name: ::String
|
2204
|
+
attr_accessor version_name: ::String
|
2205
|
+
SENSITIVE: []
|
2206
|
+
end
|
2207
|
+
|
2208
|
+
class GetPackageVersionResponse
|
2209
|
+
attr_accessor package_version_arn: ::String
|
2210
|
+
attr_accessor package_name: ::String
|
2211
|
+
attr_accessor version_name: ::String
|
2212
|
+
attr_accessor description: ::String
|
2213
|
+
attr_accessor attributes: ::Hash[::String, ::String]
|
2214
|
+
attr_accessor status: ("DRAFT" | "PUBLISHED" | "DEPRECATED")
|
2215
|
+
attr_accessor error_reason: ::String
|
2216
|
+
attr_accessor creation_date: ::Time
|
2217
|
+
attr_accessor last_modified_date: ::Time
|
2218
|
+
SENSITIVE: [:description, :attributes]
|
2219
|
+
end
|
2220
|
+
|
2221
|
+
class GetPercentilesRequest
|
2222
|
+
attr_accessor index_name: ::String
|
2223
|
+
attr_accessor query_string: ::String
|
2224
|
+
attr_accessor aggregation_field: ::String
|
2225
|
+
attr_accessor query_version: ::String
|
2226
|
+
attr_accessor percents: ::Array[::Float]
|
2227
|
+
SENSITIVE: []
|
2228
|
+
end
|
2229
|
+
|
2230
|
+
class GetPercentilesResponse
|
2231
|
+
attr_accessor percentiles: ::Array[Types::PercentPair]
|
2232
|
+
SENSITIVE: []
|
2233
|
+
end
|
2234
|
+
|
2235
|
+
class GetPolicyRequest
|
2236
|
+
attr_accessor policy_name: ::String
|
2237
|
+
SENSITIVE: []
|
2238
|
+
end
|
2239
|
+
|
2240
|
+
class GetPolicyResponse
|
2241
|
+
attr_accessor policy_name: ::String
|
2242
|
+
attr_accessor policy_arn: ::String
|
2243
|
+
attr_accessor policy_document: ::String
|
2244
|
+
attr_accessor default_version_id: ::String
|
2245
|
+
attr_accessor creation_date: ::Time
|
2246
|
+
attr_accessor last_modified_date: ::Time
|
2247
|
+
attr_accessor generation_id: ::String
|
2248
|
+
SENSITIVE: []
|
2249
|
+
end
|
2250
|
+
|
2251
|
+
class GetPolicyVersionRequest
|
2252
|
+
attr_accessor policy_name: ::String
|
2253
|
+
attr_accessor policy_version_id: ::String
|
2254
|
+
SENSITIVE: []
|
2255
|
+
end
|
2256
|
+
|
2257
|
+
class GetPolicyVersionResponse
|
2258
|
+
attr_accessor policy_arn: ::String
|
2259
|
+
attr_accessor policy_name: ::String
|
2260
|
+
attr_accessor policy_document: ::String
|
2261
|
+
attr_accessor policy_version_id: ::String
|
2262
|
+
attr_accessor is_default_version: bool
|
2263
|
+
attr_accessor creation_date: ::Time
|
2264
|
+
attr_accessor last_modified_date: ::Time
|
2265
|
+
attr_accessor generation_id: ::String
|
2266
|
+
SENSITIVE: []
|
2267
|
+
end
|
2268
|
+
|
2269
|
+
class GetRegistrationCodeRequest < Aws::EmptyStructure
|
2270
|
+
end
|
2271
|
+
|
2272
|
+
class GetRegistrationCodeResponse
|
2273
|
+
attr_accessor registration_code: ::String
|
2274
|
+
SENSITIVE: []
|
2275
|
+
end
|
2276
|
+
|
2277
|
+
class GetStatisticsRequest
|
2278
|
+
attr_accessor index_name: ::String
|
2279
|
+
attr_accessor query_string: ::String
|
2280
|
+
attr_accessor aggregation_field: ::String
|
2281
|
+
attr_accessor query_version: ::String
|
2282
|
+
SENSITIVE: []
|
2283
|
+
end
|
2284
|
+
|
2285
|
+
class GetStatisticsResponse
|
2286
|
+
attr_accessor statistics: Types::Statistics
|
2287
|
+
SENSITIVE: []
|
2288
|
+
end
|
2289
|
+
|
2290
|
+
class GetTopicRuleDestinationRequest
|
2291
|
+
attr_accessor arn: ::String
|
2292
|
+
SENSITIVE: []
|
2293
|
+
end
|
2294
|
+
|
2295
|
+
class GetTopicRuleDestinationResponse
|
2296
|
+
attr_accessor topic_rule_destination: Types::TopicRuleDestination
|
2297
|
+
SENSITIVE: []
|
2298
|
+
end
|
2299
|
+
|
2300
|
+
class GetTopicRuleRequest
|
2301
|
+
attr_accessor rule_name: ::String
|
2302
|
+
SENSITIVE: []
|
2303
|
+
end
|
2304
|
+
|
2305
|
+
class GetTopicRuleResponse
|
2306
|
+
attr_accessor rule_arn: ::String
|
2307
|
+
attr_accessor rule: Types::TopicRule
|
2308
|
+
SENSITIVE: []
|
2309
|
+
end
|
2310
|
+
|
2311
|
+
class GetV2LoggingOptionsRequest < Aws::EmptyStructure
|
2312
|
+
end
|
2313
|
+
|
2314
|
+
class GetV2LoggingOptionsResponse
|
2315
|
+
attr_accessor role_arn: ::String
|
2316
|
+
attr_accessor default_log_level: ("DEBUG" | "INFO" | "ERROR" | "WARN" | "DISABLED")
|
2317
|
+
attr_accessor disable_all_logs: bool
|
2318
|
+
SENSITIVE: []
|
2319
|
+
end
|
2320
|
+
|
2321
|
+
class GroupNameAndArn
|
2322
|
+
attr_accessor group_name: ::String
|
2323
|
+
attr_accessor group_arn: ::String
|
2324
|
+
SENSITIVE: []
|
2325
|
+
end
|
2326
|
+
|
2327
|
+
class HttpAction
|
2328
|
+
attr_accessor url: ::String
|
2329
|
+
attr_accessor confirmation_url: ::String
|
2330
|
+
attr_accessor headers: ::Array[Types::HttpActionHeader]
|
2331
|
+
attr_accessor auth: Types::HttpAuthorization
|
2332
|
+
SENSITIVE: []
|
2333
|
+
end
|
2334
|
+
|
2335
|
+
class HttpActionHeader
|
2336
|
+
attr_accessor key: ::String
|
2337
|
+
attr_accessor value: ::String
|
2338
|
+
SENSITIVE: []
|
2339
|
+
end
|
2340
|
+
|
2341
|
+
class HttpAuthorization
|
2342
|
+
attr_accessor sigv4: Types::SigV4Authorization
|
2343
|
+
SENSITIVE: []
|
2344
|
+
end
|
2345
|
+
|
2346
|
+
class HttpContext
|
2347
|
+
attr_accessor headers: ::Hash[::String, ::String]
|
2348
|
+
attr_accessor query_string: ::String
|
2349
|
+
SENSITIVE: []
|
2350
|
+
end
|
2351
|
+
|
2352
|
+
class HttpUrlDestinationConfiguration
|
2353
|
+
attr_accessor confirmation_url: ::String
|
2354
|
+
SENSITIVE: []
|
2355
|
+
end
|
2356
|
+
|
2357
|
+
class HttpUrlDestinationProperties
|
2358
|
+
attr_accessor confirmation_url: ::String
|
2359
|
+
SENSITIVE: []
|
2360
|
+
end
|
2361
|
+
|
2362
|
+
class HttpUrlDestinationSummary
|
2363
|
+
attr_accessor confirmation_url: ::String
|
2364
|
+
SENSITIVE: []
|
2365
|
+
end
|
2366
|
+
|
2367
|
+
class ImplicitDeny
|
2368
|
+
attr_accessor policies: ::Array[Types::Policy]
|
2369
|
+
SENSITIVE: []
|
2370
|
+
end
|
2371
|
+
|
2372
|
+
class IndexNotReadyException
|
2373
|
+
attr_accessor message: ::String
|
2374
|
+
SENSITIVE: []
|
2375
|
+
end
|
2376
|
+
|
2377
|
+
class IndexingFilter
|
2378
|
+
attr_accessor named_shadow_names: ::Array[::String]
|
2379
|
+
attr_accessor geo_locations: ::Array[Types::GeoLocationTarget]
|
2380
|
+
SENSITIVE: []
|
2381
|
+
end
|
2382
|
+
|
2383
|
+
class InternalException
|
2384
|
+
attr_accessor message: ::String
|
2385
|
+
SENSITIVE: []
|
2386
|
+
end
|
2387
|
+
|
2388
|
+
class InternalFailureException
|
2389
|
+
attr_accessor message: ::String
|
2390
|
+
SENSITIVE: []
|
2391
|
+
end
|
2392
|
+
|
2393
|
+
class InternalServerException
|
2394
|
+
attr_accessor message: ::String
|
2395
|
+
SENSITIVE: []
|
2396
|
+
end
|
2397
|
+
|
2398
|
+
class InvalidAggregationException
|
2399
|
+
attr_accessor message: ::String
|
2400
|
+
SENSITIVE: []
|
2401
|
+
end
|
2402
|
+
|
2403
|
+
class InvalidQueryException
|
2404
|
+
attr_accessor message: ::String
|
2405
|
+
SENSITIVE: []
|
2406
|
+
end
|
2407
|
+
|
2408
|
+
class InvalidRequestException
|
2409
|
+
attr_accessor message: ::String
|
2410
|
+
SENSITIVE: []
|
2411
|
+
end
|
2412
|
+
|
2413
|
+
class InvalidResponseException
|
2414
|
+
attr_accessor message: ::String
|
2415
|
+
SENSITIVE: []
|
2416
|
+
end
|
2417
|
+
|
2418
|
+
class InvalidStateTransitionException
|
2419
|
+
attr_accessor message: ::String
|
2420
|
+
SENSITIVE: []
|
2421
|
+
end
|
2422
|
+
|
2423
|
+
class IotAnalyticsAction
|
2424
|
+
attr_accessor channel_arn: ::String
|
2425
|
+
attr_accessor channel_name: ::String
|
2426
|
+
attr_accessor batch_mode: bool
|
2427
|
+
attr_accessor role_arn: ::String
|
2428
|
+
SENSITIVE: []
|
2429
|
+
end
|
2430
|
+
|
2431
|
+
class IotEventsAction
|
2432
|
+
attr_accessor input_name: ::String
|
2433
|
+
attr_accessor message_id: ::String
|
2434
|
+
attr_accessor batch_mode: bool
|
2435
|
+
attr_accessor role_arn: ::String
|
2436
|
+
SENSITIVE: []
|
2437
|
+
end
|
2438
|
+
|
2439
|
+
class IotSiteWiseAction
|
2440
|
+
attr_accessor put_asset_property_value_entries: ::Array[Types::PutAssetPropertyValueEntry]
|
2441
|
+
attr_accessor role_arn: ::String
|
2442
|
+
SENSITIVE: []
|
2443
|
+
end
|
2444
|
+
|
2445
|
+
class IssuerCertificateIdentifier
|
2446
|
+
attr_accessor issuer_certificate_subject: ::String
|
2447
|
+
attr_accessor issuer_id: ::String
|
2448
|
+
attr_accessor issuer_certificate_serial_number: ::String
|
2449
|
+
SENSITIVE: []
|
2450
|
+
end
|
2451
|
+
|
2452
|
+
class Job
|
2453
|
+
attr_accessor job_arn: ::String
|
2454
|
+
attr_accessor job_id: ::String
|
2455
|
+
attr_accessor target_selection: ("CONTINUOUS" | "SNAPSHOT")
|
2456
|
+
attr_accessor status: ("IN_PROGRESS" | "CANCELED" | "COMPLETED" | "DELETION_IN_PROGRESS" | "SCHEDULED")
|
2457
|
+
attr_accessor force_canceled: bool
|
2458
|
+
attr_accessor reason_code: ::String
|
2459
|
+
attr_accessor comment: ::String
|
2460
|
+
attr_accessor targets: ::Array[::String]
|
2461
|
+
attr_accessor description: ::String
|
2462
|
+
attr_accessor presigned_url_config: Types::PresignedUrlConfig
|
2463
|
+
attr_accessor job_executions_rollout_config: Types::JobExecutionsRolloutConfig
|
2464
|
+
attr_accessor abort_config: Types::AbortConfig
|
2465
|
+
attr_accessor created_at: ::Time
|
2466
|
+
attr_accessor last_updated_at: ::Time
|
2467
|
+
attr_accessor completed_at: ::Time
|
2468
|
+
attr_accessor job_process_details: Types::JobProcessDetails
|
2469
|
+
attr_accessor timeout_config: Types::TimeoutConfig
|
2470
|
+
attr_accessor namespace_id: ::String
|
2471
|
+
attr_accessor job_template_arn: ::String
|
2472
|
+
attr_accessor job_executions_retry_config: Types::JobExecutionsRetryConfig
|
2473
|
+
attr_accessor document_parameters: ::Hash[::String, ::String]
|
2474
|
+
attr_accessor is_concurrent: bool
|
2475
|
+
attr_accessor scheduling_config: Types::SchedulingConfig
|
2476
|
+
attr_accessor scheduled_job_rollouts: ::Array[Types::ScheduledJobRollout]
|
2477
|
+
attr_accessor destination_package_versions: ::Array[::String]
|
2478
|
+
SENSITIVE: []
|
2479
|
+
end
|
2480
|
+
|
2481
|
+
class JobExecution
|
2482
|
+
attr_accessor job_id: ::String
|
2483
|
+
attr_accessor status: ("QUEUED" | "IN_PROGRESS" | "SUCCEEDED" | "FAILED" | "TIMED_OUT" | "REJECTED" | "REMOVED" | "CANCELED")
|
2484
|
+
attr_accessor force_canceled: bool
|
2485
|
+
attr_accessor status_details: Types::JobExecutionStatusDetails
|
2486
|
+
attr_accessor thing_arn: ::String
|
2487
|
+
attr_accessor queued_at: ::Time
|
2488
|
+
attr_accessor started_at: ::Time
|
2489
|
+
attr_accessor last_updated_at: ::Time
|
2490
|
+
attr_accessor execution_number: ::Integer
|
2491
|
+
attr_accessor version_number: ::Integer
|
2492
|
+
attr_accessor approximate_seconds_before_timed_out: ::Integer
|
2493
|
+
SENSITIVE: []
|
2494
|
+
end
|
2495
|
+
|
2496
|
+
class JobExecutionStatusDetails
|
2497
|
+
attr_accessor details_map: ::Hash[::String, ::String]
|
2498
|
+
SENSITIVE: []
|
2499
|
+
end
|
2500
|
+
|
2501
|
+
class JobExecutionSummary
|
2502
|
+
attr_accessor status: ("QUEUED" | "IN_PROGRESS" | "SUCCEEDED" | "FAILED" | "TIMED_OUT" | "REJECTED" | "REMOVED" | "CANCELED")
|
2503
|
+
attr_accessor queued_at: ::Time
|
2504
|
+
attr_accessor started_at: ::Time
|
2505
|
+
attr_accessor last_updated_at: ::Time
|
2506
|
+
attr_accessor execution_number: ::Integer
|
2507
|
+
attr_accessor retry_attempt: ::Integer
|
2508
|
+
SENSITIVE: []
|
2509
|
+
end
|
2510
|
+
|
2511
|
+
class JobExecutionSummaryForJob
|
2512
|
+
attr_accessor thing_arn: ::String
|
2513
|
+
attr_accessor job_execution_summary: Types::JobExecutionSummary
|
2514
|
+
SENSITIVE: []
|
2515
|
+
end
|
2516
|
+
|
2517
|
+
class JobExecutionSummaryForThing
|
2518
|
+
attr_accessor job_id: ::String
|
2519
|
+
attr_accessor job_execution_summary: Types::JobExecutionSummary
|
2520
|
+
SENSITIVE: []
|
2521
|
+
end
|
2522
|
+
|
2523
|
+
class JobExecutionsRetryConfig
|
2524
|
+
attr_accessor criteria_list: ::Array[Types::RetryCriteria]
|
2525
|
+
SENSITIVE: []
|
2526
|
+
end
|
2527
|
+
|
2528
|
+
class JobExecutionsRolloutConfig
|
2529
|
+
attr_accessor maximum_per_minute: ::Integer
|
2530
|
+
attr_accessor exponential_rate: Types::ExponentialRolloutRate
|
2531
|
+
SENSITIVE: []
|
2532
|
+
end
|
2533
|
+
|
2534
|
+
class JobProcessDetails
|
2535
|
+
attr_accessor processing_targets: ::Array[::String]
|
2536
|
+
attr_accessor number_of_canceled_things: ::Integer
|
2537
|
+
attr_accessor number_of_succeeded_things: ::Integer
|
2538
|
+
attr_accessor number_of_failed_things: ::Integer
|
2539
|
+
attr_accessor number_of_rejected_things: ::Integer
|
2540
|
+
attr_accessor number_of_queued_things: ::Integer
|
2541
|
+
attr_accessor number_of_in_progress_things: ::Integer
|
2542
|
+
attr_accessor number_of_removed_things: ::Integer
|
2543
|
+
attr_accessor number_of_timed_out_things: ::Integer
|
2544
|
+
SENSITIVE: []
|
2545
|
+
end
|
2546
|
+
|
2547
|
+
class JobSummary
|
2548
|
+
attr_accessor job_arn: ::String
|
2549
|
+
attr_accessor job_id: ::String
|
2550
|
+
attr_accessor thing_group_id: ::String
|
2551
|
+
attr_accessor target_selection: ("CONTINUOUS" | "SNAPSHOT")
|
2552
|
+
attr_accessor status: ("IN_PROGRESS" | "CANCELED" | "COMPLETED" | "DELETION_IN_PROGRESS" | "SCHEDULED")
|
2553
|
+
attr_accessor created_at: ::Time
|
2554
|
+
attr_accessor last_updated_at: ::Time
|
2555
|
+
attr_accessor completed_at: ::Time
|
2556
|
+
attr_accessor is_concurrent: bool
|
2557
|
+
SENSITIVE: []
|
2558
|
+
end
|
2559
|
+
|
2560
|
+
class JobTemplateSummary
|
2561
|
+
attr_accessor job_template_arn: ::String
|
2562
|
+
attr_accessor job_template_id: ::String
|
2563
|
+
attr_accessor description: ::String
|
2564
|
+
attr_accessor created_at: ::Time
|
2565
|
+
SENSITIVE: []
|
2566
|
+
end
|
2567
|
+
|
2568
|
+
class KafkaAction
|
2569
|
+
attr_accessor destination_arn: ::String
|
2570
|
+
attr_accessor topic: ::String
|
2571
|
+
attr_accessor key: ::String
|
2572
|
+
attr_accessor partition: ::String
|
2573
|
+
attr_accessor client_properties: ::Hash[::String, ::String]
|
2574
|
+
attr_accessor headers: ::Array[Types::KafkaActionHeader]
|
2575
|
+
SENSITIVE: []
|
2576
|
+
end
|
2577
|
+
|
2578
|
+
class KafkaActionHeader
|
2579
|
+
attr_accessor key: ::String
|
2580
|
+
attr_accessor value: ::String
|
2581
|
+
SENSITIVE: []
|
2582
|
+
end
|
2583
|
+
|
2584
|
+
class KeyPair
|
2585
|
+
attr_accessor public_key: ::String
|
2586
|
+
attr_accessor private_key: ::String
|
2587
|
+
SENSITIVE: [:private_key]
|
2588
|
+
end
|
2589
|
+
|
2590
|
+
class KinesisAction
|
2591
|
+
attr_accessor role_arn: ::String
|
2592
|
+
attr_accessor stream_name: ::String
|
2593
|
+
attr_accessor partition_key: ::String
|
2594
|
+
SENSITIVE: []
|
2595
|
+
end
|
2596
|
+
|
2597
|
+
class LambdaAction
|
2598
|
+
attr_accessor function_arn: ::String
|
2599
|
+
SENSITIVE: []
|
2600
|
+
end
|
2601
|
+
|
2602
|
+
class LimitExceededException
|
2603
|
+
attr_accessor message: ::String
|
2604
|
+
SENSITIVE: []
|
2605
|
+
end
|
2606
|
+
|
2607
|
+
class ListActiveViolationsRequest
|
2608
|
+
attr_accessor thing_name: ::String
|
2609
|
+
attr_accessor security_profile_name: ::String
|
2610
|
+
attr_accessor behavior_criteria_type: ("STATIC" | "STATISTICAL" | "MACHINE_LEARNING")
|
2611
|
+
attr_accessor list_suppressed_alerts: bool
|
2612
|
+
attr_accessor verification_state: ("FALSE_POSITIVE" | "BENIGN_POSITIVE" | "TRUE_POSITIVE" | "UNKNOWN")
|
2613
|
+
attr_accessor next_token: ::String
|
2614
|
+
attr_accessor max_results: ::Integer
|
2615
|
+
SENSITIVE: []
|
2616
|
+
end
|
2617
|
+
|
2618
|
+
class ListActiveViolationsResponse
|
2619
|
+
attr_accessor active_violations: ::Array[Types::ActiveViolation]
|
2620
|
+
attr_accessor next_token: ::String
|
2621
|
+
SENSITIVE: []
|
2622
|
+
end
|
2623
|
+
|
2624
|
+
class ListAttachedPoliciesRequest
|
2625
|
+
attr_accessor target: ::String
|
2626
|
+
attr_accessor recursive: bool
|
2627
|
+
attr_accessor marker: ::String
|
2628
|
+
attr_accessor page_size: ::Integer
|
2629
|
+
SENSITIVE: []
|
2630
|
+
end
|
2631
|
+
|
2632
|
+
class ListAttachedPoliciesResponse
|
2633
|
+
attr_accessor policies: ::Array[Types::Policy]
|
2634
|
+
attr_accessor next_marker: ::String
|
2635
|
+
SENSITIVE: []
|
2636
|
+
end
|
2637
|
+
|
2638
|
+
class ListAuditFindingsRequest
|
2639
|
+
attr_accessor task_id: ::String
|
2640
|
+
attr_accessor check_name: ::String
|
2641
|
+
attr_accessor resource_identifier: Types::ResourceIdentifier
|
2642
|
+
attr_accessor max_results: ::Integer
|
2643
|
+
attr_accessor next_token: ::String
|
2644
|
+
attr_accessor start_time: ::Time
|
2645
|
+
attr_accessor end_time: ::Time
|
2646
|
+
attr_accessor list_suppressed_findings: bool
|
2647
|
+
SENSITIVE: []
|
2648
|
+
end
|
2649
|
+
|
2650
|
+
class ListAuditFindingsResponse
|
2651
|
+
attr_accessor findings: ::Array[Types::AuditFinding]
|
2652
|
+
attr_accessor next_token: ::String
|
2653
|
+
SENSITIVE: []
|
2654
|
+
end
|
2655
|
+
|
2656
|
+
class ListAuditMitigationActionsExecutionsRequest
|
2657
|
+
attr_accessor task_id: ::String
|
2658
|
+
attr_accessor action_status: ("IN_PROGRESS" | "COMPLETED" | "FAILED" | "CANCELED" | "SKIPPED" | "PENDING")
|
2659
|
+
attr_accessor finding_id: ::String
|
2660
|
+
attr_accessor max_results: ::Integer
|
2661
|
+
attr_accessor next_token: ::String
|
2662
|
+
SENSITIVE: []
|
2663
|
+
end
|
2664
|
+
|
2665
|
+
class ListAuditMitigationActionsExecutionsResponse
|
2666
|
+
attr_accessor actions_executions: ::Array[Types::AuditMitigationActionExecutionMetadata]
|
2667
|
+
attr_accessor next_token: ::String
|
2668
|
+
SENSITIVE: []
|
2669
|
+
end
|
2670
|
+
|
2671
|
+
class ListAuditMitigationActionsTasksRequest
|
2672
|
+
attr_accessor audit_task_id: ::String
|
2673
|
+
attr_accessor finding_id: ::String
|
2674
|
+
attr_accessor task_status: ("IN_PROGRESS" | "COMPLETED" | "FAILED" | "CANCELED")
|
2675
|
+
attr_accessor max_results: ::Integer
|
2676
|
+
attr_accessor next_token: ::String
|
2677
|
+
attr_accessor start_time: ::Time
|
2678
|
+
attr_accessor end_time: ::Time
|
2679
|
+
SENSITIVE: []
|
2680
|
+
end
|
2681
|
+
|
2682
|
+
class ListAuditMitigationActionsTasksResponse
|
2683
|
+
attr_accessor tasks: ::Array[Types::AuditMitigationActionsTaskMetadata]
|
2684
|
+
attr_accessor next_token: ::String
|
2685
|
+
SENSITIVE: []
|
2686
|
+
end
|
2687
|
+
|
2688
|
+
class ListAuditSuppressionsRequest
|
2689
|
+
attr_accessor check_name: ::String
|
2690
|
+
attr_accessor resource_identifier: Types::ResourceIdentifier
|
2691
|
+
attr_accessor ascending_order: bool
|
2692
|
+
attr_accessor next_token: ::String
|
2693
|
+
attr_accessor max_results: ::Integer
|
2694
|
+
SENSITIVE: []
|
2695
|
+
end
|
2696
|
+
|
2697
|
+
class ListAuditSuppressionsResponse
|
2698
|
+
attr_accessor suppressions: ::Array[Types::AuditSuppression]
|
2699
|
+
attr_accessor next_token: ::String
|
2700
|
+
SENSITIVE: []
|
2701
|
+
end
|
2702
|
+
|
2703
|
+
class ListAuditTasksRequest
|
2704
|
+
attr_accessor start_time: ::Time
|
2705
|
+
attr_accessor end_time: ::Time
|
2706
|
+
attr_accessor task_type: ("ON_DEMAND_AUDIT_TASK" | "SCHEDULED_AUDIT_TASK")
|
2707
|
+
attr_accessor task_status: ("IN_PROGRESS" | "COMPLETED" | "FAILED" | "CANCELED")
|
2708
|
+
attr_accessor next_token: ::String
|
2709
|
+
attr_accessor max_results: ::Integer
|
2710
|
+
SENSITIVE: []
|
2711
|
+
end
|
2712
|
+
|
2713
|
+
class ListAuditTasksResponse
|
2714
|
+
attr_accessor tasks: ::Array[Types::AuditTaskMetadata]
|
2715
|
+
attr_accessor next_token: ::String
|
2716
|
+
SENSITIVE: []
|
2717
|
+
end
|
2718
|
+
|
2719
|
+
class ListAuthorizersRequest
|
2720
|
+
attr_accessor page_size: ::Integer
|
2721
|
+
attr_accessor marker: ::String
|
2722
|
+
attr_accessor ascending_order: bool
|
2723
|
+
attr_accessor status: ("ACTIVE" | "INACTIVE")
|
2724
|
+
SENSITIVE: []
|
2725
|
+
end
|
2726
|
+
|
2727
|
+
class ListAuthorizersResponse
|
2728
|
+
attr_accessor authorizers: ::Array[Types::AuthorizerSummary]
|
2729
|
+
attr_accessor next_marker: ::String
|
2730
|
+
SENSITIVE: []
|
2731
|
+
end
|
2732
|
+
|
2733
|
+
class ListBillingGroupsRequest
|
2734
|
+
attr_accessor next_token: ::String
|
2735
|
+
attr_accessor max_results: ::Integer
|
2736
|
+
attr_accessor name_prefix_filter: ::String
|
2737
|
+
SENSITIVE: []
|
2738
|
+
end
|
2739
|
+
|
2740
|
+
class ListBillingGroupsResponse
|
2741
|
+
attr_accessor billing_groups: ::Array[Types::GroupNameAndArn]
|
2742
|
+
attr_accessor next_token: ::String
|
2743
|
+
SENSITIVE: []
|
2744
|
+
end
|
2745
|
+
|
2746
|
+
class ListCACertificatesRequest
|
2747
|
+
attr_accessor page_size: ::Integer
|
2748
|
+
attr_accessor marker: ::String
|
2749
|
+
attr_accessor ascending_order: bool
|
2750
|
+
attr_accessor template_name: ::String
|
2751
|
+
SENSITIVE: []
|
2752
|
+
end
|
2753
|
+
|
2754
|
+
class ListCACertificatesResponse
|
2755
|
+
attr_accessor certificates: ::Array[Types::CACertificate]
|
2756
|
+
attr_accessor next_marker: ::String
|
2757
|
+
SENSITIVE: []
|
2758
|
+
end
|
2759
|
+
|
2760
|
+
class ListCertificateProvidersRequest
|
2761
|
+
attr_accessor next_token: ::String
|
2762
|
+
attr_accessor ascending_order: bool
|
2763
|
+
SENSITIVE: []
|
2764
|
+
end
|
2765
|
+
|
2766
|
+
class ListCertificateProvidersResponse
|
2767
|
+
attr_accessor certificate_providers: ::Array[Types::CertificateProviderSummary]
|
2768
|
+
attr_accessor next_token: ::String
|
2769
|
+
SENSITIVE: []
|
2770
|
+
end
|
2771
|
+
|
2772
|
+
class ListCertificatesByCARequest
|
2773
|
+
attr_accessor ca_certificate_id: ::String
|
2774
|
+
attr_accessor page_size: ::Integer
|
2775
|
+
attr_accessor marker: ::String
|
2776
|
+
attr_accessor ascending_order: bool
|
2777
|
+
SENSITIVE: []
|
2778
|
+
end
|
2779
|
+
|
2780
|
+
class ListCertificatesByCAResponse
|
2781
|
+
attr_accessor certificates: ::Array[Types::Certificate]
|
2782
|
+
attr_accessor next_marker: ::String
|
2783
|
+
SENSITIVE: []
|
2784
|
+
end
|
2785
|
+
|
2786
|
+
class ListCertificatesRequest
|
2787
|
+
attr_accessor page_size: ::Integer
|
2788
|
+
attr_accessor marker: ::String
|
2789
|
+
attr_accessor ascending_order: bool
|
2790
|
+
SENSITIVE: []
|
2791
|
+
end
|
2792
|
+
|
2793
|
+
class ListCertificatesResponse
|
2794
|
+
attr_accessor certificates: ::Array[Types::Certificate]
|
2795
|
+
attr_accessor next_marker: ::String
|
2796
|
+
SENSITIVE: []
|
2797
|
+
end
|
2798
|
+
|
2799
|
+
class ListCustomMetricsRequest
|
2800
|
+
attr_accessor next_token: ::String
|
2801
|
+
attr_accessor max_results: ::Integer
|
2802
|
+
SENSITIVE: []
|
2803
|
+
end
|
2804
|
+
|
2805
|
+
class ListCustomMetricsResponse
|
2806
|
+
attr_accessor metric_names: ::Array[::String]
|
2807
|
+
attr_accessor next_token: ::String
|
2808
|
+
SENSITIVE: []
|
2809
|
+
end
|
2810
|
+
|
2811
|
+
class ListDetectMitigationActionsExecutionsRequest
|
2812
|
+
attr_accessor task_id: ::String
|
2813
|
+
attr_accessor violation_id: ::String
|
2814
|
+
attr_accessor thing_name: ::String
|
2815
|
+
attr_accessor start_time: ::Time
|
2816
|
+
attr_accessor end_time: ::Time
|
2817
|
+
attr_accessor max_results: ::Integer
|
2818
|
+
attr_accessor next_token: ::String
|
2819
|
+
SENSITIVE: []
|
2820
|
+
end
|
2821
|
+
|
2822
|
+
class ListDetectMitigationActionsExecutionsResponse
|
2823
|
+
attr_accessor actions_executions: ::Array[Types::DetectMitigationActionExecution]
|
2824
|
+
attr_accessor next_token: ::String
|
2825
|
+
SENSITIVE: []
|
2826
|
+
end
|
2827
|
+
|
2828
|
+
class ListDetectMitigationActionsTasksRequest
|
2829
|
+
attr_accessor max_results: ::Integer
|
2830
|
+
attr_accessor next_token: ::String
|
2831
|
+
attr_accessor start_time: ::Time
|
2832
|
+
attr_accessor end_time: ::Time
|
2833
|
+
SENSITIVE: []
|
2834
|
+
end
|
2835
|
+
|
2836
|
+
class ListDetectMitigationActionsTasksResponse
|
2837
|
+
attr_accessor tasks: ::Array[Types::DetectMitigationActionsTaskSummary]
|
2838
|
+
attr_accessor next_token: ::String
|
2839
|
+
SENSITIVE: []
|
2840
|
+
end
|
2841
|
+
|
2842
|
+
class ListDimensionsRequest
|
2843
|
+
attr_accessor next_token: ::String
|
2844
|
+
attr_accessor max_results: ::Integer
|
2845
|
+
SENSITIVE: []
|
2846
|
+
end
|
2847
|
+
|
2848
|
+
class ListDimensionsResponse
|
2849
|
+
attr_accessor dimension_names: ::Array[::String]
|
2850
|
+
attr_accessor next_token: ::String
|
2851
|
+
SENSITIVE: []
|
2852
|
+
end
|
2853
|
+
|
2854
|
+
class ListDomainConfigurationsRequest
|
2855
|
+
attr_accessor marker: ::String
|
2856
|
+
attr_accessor page_size: ::Integer
|
2857
|
+
attr_accessor service_type: ("DATA" | "CREDENTIAL_PROVIDER" | "JOBS")
|
2858
|
+
SENSITIVE: []
|
2859
|
+
end
|
2860
|
+
|
2861
|
+
class ListDomainConfigurationsResponse
|
2862
|
+
attr_accessor domain_configurations: ::Array[Types::DomainConfigurationSummary]
|
2863
|
+
attr_accessor next_marker: ::String
|
2864
|
+
SENSITIVE: []
|
2865
|
+
end
|
2866
|
+
|
2867
|
+
class ListFleetMetricsRequest
|
2868
|
+
attr_accessor next_token: ::String
|
2869
|
+
attr_accessor max_results: ::Integer
|
2870
|
+
SENSITIVE: []
|
2871
|
+
end
|
2872
|
+
|
2873
|
+
class ListFleetMetricsResponse
|
2874
|
+
attr_accessor fleet_metrics: ::Array[Types::FleetMetricNameAndArn]
|
2875
|
+
attr_accessor next_token: ::String
|
2876
|
+
SENSITIVE: []
|
2877
|
+
end
|
2878
|
+
|
2879
|
+
class ListIndicesRequest
|
2880
|
+
attr_accessor next_token: ::String
|
2881
|
+
attr_accessor max_results: ::Integer
|
2882
|
+
SENSITIVE: []
|
2883
|
+
end
|
2884
|
+
|
2885
|
+
class ListIndicesResponse
|
2886
|
+
attr_accessor index_names: ::Array[::String]
|
2887
|
+
attr_accessor next_token: ::String
|
2888
|
+
SENSITIVE: []
|
2889
|
+
end
|
2890
|
+
|
2891
|
+
class ListJobExecutionsForJobRequest
|
2892
|
+
attr_accessor job_id: ::String
|
2893
|
+
attr_accessor status: ("QUEUED" | "IN_PROGRESS" | "SUCCEEDED" | "FAILED" | "TIMED_OUT" | "REJECTED" | "REMOVED" | "CANCELED")
|
2894
|
+
attr_accessor max_results: ::Integer
|
2895
|
+
attr_accessor next_token: ::String
|
2896
|
+
SENSITIVE: []
|
2897
|
+
end
|
2898
|
+
|
2899
|
+
class ListJobExecutionsForJobResponse
|
2900
|
+
attr_accessor execution_summaries: ::Array[Types::JobExecutionSummaryForJob]
|
2901
|
+
attr_accessor next_token: ::String
|
2902
|
+
SENSITIVE: []
|
2903
|
+
end
|
2904
|
+
|
2905
|
+
class ListJobExecutionsForThingRequest
|
2906
|
+
attr_accessor thing_name: ::String
|
2907
|
+
attr_accessor status: ("QUEUED" | "IN_PROGRESS" | "SUCCEEDED" | "FAILED" | "TIMED_OUT" | "REJECTED" | "REMOVED" | "CANCELED")
|
2908
|
+
attr_accessor namespace_id: ::String
|
2909
|
+
attr_accessor max_results: ::Integer
|
2910
|
+
attr_accessor next_token: ::String
|
2911
|
+
attr_accessor job_id: ::String
|
2912
|
+
SENSITIVE: []
|
2913
|
+
end
|
2914
|
+
|
2915
|
+
class ListJobExecutionsForThingResponse
|
2916
|
+
attr_accessor execution_summaries: ::Array[Types::JobExecutionSummaryForThing]
|
2917
|
+
attr_accessor next_token: ::String
|
2918
|
+
SENSITIVE: []
|
2919
|
+
end
|
2920
|
+
|
2921
|
+
class ListJobTemplatesRequest
|
2922
|
+
attr_accessor max_results: ::Integer
|
2923
|
+
attr_accessor next_token: ::String
|
2924
|
+
SENSITIVE: []
|
2925
|
+
end
|
2926
|
+
|
2927
|
+
class ListJobTemplatesResponse
|
2928
|
+
attr_accessor job_templates: ::Array[Types::JobTemplateSummary]
|
2929
|
+
attr_accessor next_token: ::String
|
2930
|
+
SENSITIVE: []
|
2931
|
+
end
|
2932
|
+
|
2933
|
+
class ListJobsRequest
|
2934
|
+
attr_accessor status: ("IN_PROGRESS" | "CANCELED" | "COMPLETED" | "DELETION_IN_PROGRESS" | "SCHEDULED")
|
2935
|
+
attr_accessor target_selection: ("CONTINUOUS" | "SNAPSHOT")
|
2936
|
+
attr_accessor max_results: ::Integer
|
2937
|
+
attr_accessor next_token: ::String
|
2938
|
+
attr_accessor thing_group_name: ::String
|
2939
|
+
attr_accessor thing_group_id: ::String
|
2940
|
+
attr_accessor namespace_id: ::String
|
2941
|
+
SENSITIVE: []
|
2942
|
+
end
|
2943
|
+
|
2944
|
+
class ListJobsResponse
|
2945
|
+
attr_accessor jobs: ::Array[Types::JobSummary]
|
2946
|
+
attr_accessor next_token: ::String
|
2947
|
+
SENSITIVE: []
|
2948
|
+
end
|
2949
|
+
|
2950
|
+
class ListManagedJobTemplatesRequest
|
2951
|
+
attr_accessor template_name: ::String
|
2952
|
+
attr_accessor max_results: ::Integer
|
2953
|
+
attr_accessor next_token: ::String
|
2954
|
+
SENSITIVE: []
|
2955
|
+
end
|
2956
|
+
|
2957
|
+
class ListManagedJobTemplatesResponse
|
2958
|
+
attr_accessor managed_job_templates: ::Array[Types::ManagedJobTemplateSummary]
|
2959
|
+
attr_accessor next_token: ::String
|
2960
|
+
SENSITIVE: []
|
2961
|
+
end
|
2962
|
+
|
2963
|
+
class ListMetricValuesRequest
|
2964
|
+
attr_accessor thing_name: ::String
|
2965
|
+
attr_accessor metric_name: ::String
|
2966
|
+
attr_accessor dimension_name: ::String
|
2967
|
+
attr_accessor dimension_value_operator: ("IN" | "NOT_IN")
|
2968
|
+
attr_accessor start_time: ::Time
|
2969
|
+
attr_accessor end_time: ::Time
|
2970
|
+
attr_accessor max_results: ::Integer
|
2971
|
+
attr_accessor next_token: ::String
|
2972
|
+
SENSITIVE: []
|
2973
|
+
end
|
2974
|
+
|
2975
|
+
class ListMetricValuesResponse
|
2976
|
+
attr_accessor metric_datum_list: ::Array[Types::MetricDatum]
|
2977
|
+
attr_accessor next_token: ::String
|
2978
|
+
SENSITIVE: []
|
2979
|
+
end
|
2980
|
+
|
2981
|
+
class ListMitigationActionsRequest
|
2982
|
+
attr_accessor action_type: ("UPDATE_DEVICE_CERTIFICATE" | "UPDATE_CA_CERTIFICATE" | "ADD_THINGS_TO_THING_GROUP" | "REPLACE_DEFAULT_POLICY_VERSION" | "ENABLE_IOT_LOGGING" | "PUBLISH_FINDING_TO_SNS")
|
2983
|
+
attr_accessor max_results: ::Integer
|
2984
|
+
attr_accessor next_token: ::String
|
2985
|
+
SENSITIVE: []
|
2986
|
+
end
|
2987
|
+
|
2988
|
+
class ListMitigationActionsResponse
|
2989
|
+
attr_accessor action_identifiers: ::Array[Types::MitigationActionIdentifier]
|
2990
|
+
attr_accessor next_token: ::String
|
2991
|
+
SENSITIVE: []
|
2992
|
+
end
|
2993
|
+
|
2994
|
+
class ListOTAUpdatesRequest
|
2995
|
+
attr_accessor max_results: ::Integer
|
2996
|
+
attr_accessor next_token: ::String
|
2997
|
+
attr_accessor ota_update_status: ("CREATE_PENDING" | "CREATE_IN_PROGRESS" | "CREATE_COMPLETE" | "CREATE_FAILED" | "DELETE_IN_PROGRESS" | "DELETE_FAILED")
|
2998
|
+
SENSITIVE: []
|
2999
|
+
end
|
3000
|
+
|
3001
|
+
class ListOTAUpdatesResponse
|
3002
|
+
attr_accessor ota_updates: ::Array[Types::OTAUpdateSummary]
|
3003
|
+
attr_accessor next_token: ::String
|
3004
|
+
SENSITIVE: []
|
3005
|
+
end
|
3006
|
+
|
3007
|
+
class ListOutgoingCertificatesRequest
|
3008
|
+
attr_accessor page_size: ::Integer
|
3009
|
+
attr_accessor marker: ::String
|
3010
|
+
attr_accessor ascending_order: bool
|
3011
|
+
SENSITIVE: []
|
3012
|
+
end
|
3013
|
+
|
3014
|
+
class ListOutgoingCertificatesResponse
|
3015
|
+
attr_accessor outgoing_certificates: ::Array[Types::OutgoingCertificate]
|
3016
|
+
attr_accessor next_marker: ::String
|
3017
|
+
SENSITIVE: []
|
3018
|
+
end
|
3019
|
+
|
3020
|
+
class ListPackageVersionsRequest
|
3021
|
+
attr_accessor package_name: ::String
|
3022
|
+
attr_accessor status: ("DRAFT" | "PUBLISHED" | "DEPRECATED")
|
3023
|
+
attr_accessor max_results: ::Integer
|
3024
|
+
attr_accessor next_token: ::String
|
3025
|
+
SENSITIVE: []
|
3026
|
+
end
|
3027
|
+
|
3028
|
+
class ListPackageVersionsResponse
|
3029
|
+
attr_accessor package_version_summaries: ::Array[Types::PackageVersionSummary]
|
3030
|
+
attr_accessor next_token: ::String
|
3031
|
+
SENSITIVE: []
|
3032
|
+
end
|
3033
|
+
|
3034
|
+
class ListPackagesRequest
|
3035
|
+
attr_accessor max_results: ::Integer
|
3036
|
+
attr_accessor next_token: ::String
|
3037
|
+
SENSITIVE: []
|
3038
|
+
end
|
3039
|
+
|
3040
|
+
class ListPackagesResponse
|
3041
|
+
attr_accessor package_summaries: ::Array[Types::PackageSummary]
|
3042
|
+
attr_accessor next_token: ::String
|
3043
|
+
SENSITIVE: []
|
3044
|
+
end
|
3045
|
+
|
3046
|
+
class ListPoliciesRequest
|
3047
|
+
attr_accessor marker: ::String
|
3048
|
+
attr_accessor page_size: ::Integer
|
3049
|
+
attr_accessor ascending_order: bool
|
3050
|
+
SENSITIVE: []
|
3051
|
+
end
|
3052
|
+
|
3053
|
+
class ListPoliciesResponse
|
3054
|
+
attr_accessor policies: ::Array[Types::Policy]
|
3055
|
+
attr_accessor next_marker: ::String
|
3056
|
+
SENSITIVE: []
|
3057
|
+
end
|
3058
|
+
|
3059
|
+
class ListPolicyPrincipalsRequest
|
3060
|
+
attr_accessor policy_name: ::String
|
3061
|
+
attr_accessor marker: ::String
|
3062
|
+
attr_accessor page_size: ::Integer
|
3063
|
+
attr_accessor ascending_order: bool
|
3064
|
+
SENSITIVE: []
|
3065
|
+
end
|
3066
|
+
|
3067
|
+
class ListPolicyPrincipalsResponse
|
3068
|
+
attr_accessor principals: ::Array[::String]
|
3069
|
+
attr_accessor next_marker: ::String
|
3070
|
+
SENSITIVE: []
|
3071
|
+
end
|
3072
|
+
|
3073
|
+
class ListPolicyVersionsRequest
|
3074
|
+
attr_accessor policy_name: ::String
|
3075
|
+
SENSITIVE: []
|
3076
|
+
end
|
3077
|
+
|
3078
|
+
class ListPolicyVersionsResponse
|
3079
|
+
attr_accessor policy_versions: ::Array[Types::PolicyVersion]
|
3080
|
+
SENSITIVE: []
|
3081
|
+
end
|
3082
|
+
|
3083
|
+
class ListPrincipalPoliciesRequest
|
3084
|
+
attr_accessor principal: ::String
|
3085
|
+
attr_accessor marker: ::String
|
3086
|
+
attr_accessor page_size: ::Integer
|
3087
|
+
attr_accessor ascending_order: bool
|
3088
|
+
SENSITIVE: []
|
3089
|
+
end
|
3090
|
+
|
3091
|
+
class ListPrincipalPoliciesResponse
|
3092
|
+
attr_accessor policies: ::Array[Types::Policy]
|
3093
|
+
attr_accessor next_marker: ::String
|
3094
|
+
SENSITIVE: []
|
3095
|
+
end
|
3096
|
+
|
3097
|
+
class ListPrincipalThingsRequest
|
3098
|
+
attr_accessor next_token: ::String
|
3099
|
+
attr_accessor max_results: ::Integer
|
3100
|
+
attr_accessor principal: ::String
|
3101
|
+
SENSITIVE: []
|
3102
|
+
end
|
3103
|
+
|
3104
|
+
class ListPrincipalThingsResponse
|
3105
|
+
attr_accessor things: ::Array[::String]
|
3106
|
+
attr_accessor next_token: ::String
|
3107
|
+
SENSITIVE: []
|
3108
|
+
end
|
3109
|
+
|
3110
|
+
class ListProvisioningTemplateVersionsRequest
|
3111
|
+
attr_accessor template_name: ::String
|
3112
|
+
attr_accessor max_results: ::Integer
|
3113
|
+
attr_accessor next_token: ::String
|
3114
|
+
SENSITIVE: []
|
3115
|
+
end
|
3116
|
+
|
3117
|
+
class ListProvisioningTemplateVersionsResponse
|
3118
|
+
attr_accessor versions: ::Array[Types::ProvisioningTemplateVersionSummary]
|
3119
|
+
attr_accessor next_token: ::String
|
3120
|
+
SENSITIVE: []
|
3121
|
+
end
|
3122
|
+
|
3123
|
+
class ListProvisioningTemplatesRequest
|
3124
|
+
attr_accessor max_results: ::Integer
|
3125
|
+
attr_accessor next_token: ::String
|
3126
|
+
SENSITIVE: []
|
3127
|
+
end
|
3128
|
+
|
3129
|
+
class ListProvisioningTemplatesResponse
|
3130
|
+
attr_accessor templates: ::Array[Types::ProvisioningTemplateSummary]
|
3131
|
+
attr_accessor next_token: ::String
|
3132
|
+
SENSITIVE: []
|
3133
|
+
end
|
3134
|
+
|
3135
|
+
class ListRelatedResourcesForAuditFindingRequest
|
3136
|
+
attr_accessor finding_id: ::String
|
3137
|
+
attr_accessor next_token: ::String
|
3138
|
+
attr_accessor max_results: ::Integer
|
3139
|
+
SENSITIVE: []
|
3140
|
+
end
|
3141
|
+
|
3142
|
+
class ListRelatedResourcesForAuditFindingResponse
|
3143
|
+
attr_accessor related_resources: ::Array[Types::RelatedResource]
|
3144
|
+
attr_accessor next_token: ::String
|
3145
|
+
SENSITIVE: []
|
3146
|
+
end
|
3147
|
+
|
3148
|
+
class ListRoleAliasesRequest
|
3149
|
+
attr_accessor page_size: ::Integer
|
3150
|
+
attr_accessor marker: ::String
|
3151
|
+
attr_accessor ascending_order: bool
|
3152
|
+
SENSITIVE: []
|
3153
|
+
end
|
3154
|
+
|
3155
|
+
class ListRoleAliasesResponse
|
3156
|
+
attr_accessor role_aliases: ::Array[::String]
|
3157
|
+
attr_accessor next_marker: ::String
|
3158
|
+
SENSITIVE: []
|
3159
|
+
end
|
3160
|
+
|
3161
|
+
class ListScheduledAuditsRequest
|
3162
|
+
attr_accessor next_token: ::String
|
3163
|
+
attr_accessor max_results: ::Integer
|
3164
|
+
SENSITIVE: []
|
3165
|
+
end
|
3166
|
+
|
3167
|
+
class ListScheduledAuditsResponse
|
3168
|
+
attr_accessor scheduled_audits: ::Array[Types::ScheduledAuditMetadata]
|
3169
|
+
attr_accessor next_token: ::String
|
3170
|
+
SENSITIVE: []
|
3171
|
+
end
|
3172
|
+
|
3173
|
+
class ListSecurityProfilesForTargetRequest
|
3174
|
+
attr_accessor next_token: ::String
|
3175
|
+
attr_accessor max_results: ::Integer
|
3176
|
+
attr_accessor recursive: bool
|
3177
|
+
attr_accessor security_profile_target_arn: ::String
|
3178
|
+
SENSITIVE: []
|
3179
|
+
end
|
3180
|
+
|
3181
|
+
class ListSecurityProfilesForTargetResponse
|
3182
|
+
attr_accessor security_profile_target_mappings: ::Array[Types::SecurityProfileTargetMapping]
|
3183
|
+
attr_accessor next_token: ::String
|
3184
|
+
SENSITIVE: []
|
3185
|
+
end
|
3186
|
+
|
3187
|
+
class ListSecurityProfilesRequest
|
3188
|
+
attr_accessor next_token: ::String
|
3189
|
+
attr_accessor max_results: ::Integer
|
3190
|
+
attr_accessor dimension_name: ::String
|
3191
|
+
attr_accessor metric_name: ::String
|
3192
|
+
SENSITIVE: []
|
3193
|
+
end
|
3194
|
+
|
3195
|
+
class ListSecurityProfilesResponse
|
3196
|
+
attr_accessor security_profile_identifiers: ::Array[Types::SecurityProfileIdentifier]
|
3197
|
+
attr_accessor next_token: ::String
|
3198
|
+
SENSITIVE: []
|
3199
|
+
end
|
3200
|
+
|
3201
|
+
class ListStreamsRequest
|
3202
|
+
attr_accessor max_results: ::Integer
|
3203
|
+
attr_accessor next_token: ::String
|
3204
|
+
attr_accessor ascending_order: bool
|
3205
|
+
SENSITIVE: []
|
3206
|
+
end
|
3207
|
+
|
3208
|
+
class ListStreamsResponse
|
3209
|
+
attr_accessor streams: ::Array[Types::StreamSummary]
|
3210
|
+
attr_accessor next_token: ::String
|
3211
|
+
SENSITIVE: []
|
3212
|
+
end
|
3213
|
+
|
3214
|
+
class ListTagsForResourceRequest
|
3215
|
+
attr_accessor resource_arn: ::String
|
3216
|
+
attr_accessor next_token: ::String
|
3217
|
+
SENSITIVE: []
|
3218
|
+
end
|
3219
|
+
|
3220
|
+
class ListTagsForResourceResponse
|
3221
|
+
attr_accessor tags: ::Array[Types::Tag]
|
3222
|
+
attr_accessor next_token: ::String
|
3223
|
+
SENSITIVE: []
|
3224
|
+
end
|
3225
|
+
|
3226
|
+
class ListTargetsForPolicyRequest
|
3227
|
+
attr_accessor policy_name: ::String
|
3228
|
+
attr_accessor marker: ::String
|
3229
|
+
attr_accessor page_size: ::Integer
|
3230
|
+
SENSITIVE: []
|
3231
|
+
end
|
3232
|
+
|
3233
|
+
class ListTargetsForPolicyResponse
|
3234
|
+
attr_accessor targets: ::Array[::String]
|
3235
|
+
attr_accessor next_marker: ::String
|
3236
|
+
SENSITIVE: []
|
3237
|
+
end
|
3238
|
+
|
3239
|
+
class ListTargetsForSecurityProfileRequest
|
3240
|
+
attr_accessor security_profile_name: ::String
|
3241
|
+
attr_accessor next_token: ::String
|
3242
|
+
attr_accessor max_results: ::Integer
|
3243
|
+
SENSITIVE: []
|
3244
|
+
end
|
3245
|
+
|
3246
|
+
class ListTargetsForSecurityProfileResponse
|
3247
|
+
attr_accessor security_profile_targets: ::Array[Types::SecurityProfileTarget]
|
3248
|
+
attr_accessor next_token: ::String
|
3249
|
+
SENSITIVE: []
|
3250
|
+
end
|
3251
|
+
|
3252
|
+
class ListThingGroupsForThingRequest
|
3253
|
+
attr_accessor thing_name: ::String
|
3254
|
+
attr_accessor next_token: ::String
|
3255
|
+
attr_accessor max_results: ::Integer
|
3256
|
+
SENSITIVE: []
|
3257
|
+
end
|
3258
|
+
|
3259
|
+
class ListThingGroupsForThingResponse
|
3260
|
+
attr_accessor thing_groups: ::Array[Types::GroupNameAndArn]
|
3261
|
+
attr_accessor next_token: ::String
|
3262
|
+
SENSITIVE: []
|
3263
|
+
end
|
3264
|
+
|
3265
|
+
class ListThingGroupsRequest
|
3266
|
+
attr_accessor next_token: ::String
|
3267
|
+
attr_accessor max_results: ::Integer
|
3268
|
+
attr_accessor parent_group: ::String
|
3269
|
+
attr_accessor name_prefix_filter: ::String
|
3270
|
+
attr_accessor recursive: bool
|
3271
|
+
SENSITIVE: []
|
3272
|
+
end
|
3273
|
+
|
3274
|
+
class ListThingGroupsResponse
|
3275
|
+
attr_accessor thing_groups: ::Array[Types::GroupNameAndArn]
|
3276
|
+
attr_accessor next_token: ::String
|
3277
|
+
SENSITIVE: []
|
3278
|
+
end
|
3279
|
+
|
3280
|
+
class ListThingPrincipalsRequest
|
3281
|
+
attr_accessor next_token: ::String
|
3282
|
+
attr_accessor max_results: ::Integer
|
3283
|
+
attr_accessor thing_name: ::String
|
3284
|
+
SENSITIVE: []
|
3285
|
+
end
|
3286
|
+
|
3287
|
+
class ListThingPrincipalsResponse
|
3288
|
+
attr_accessor principals: ::Array[::String]
|
3289
|
+
attr_accessor next_token: ::String
|
3290
|
+
SENSITIVE: []
|
3291
|
+
end
|
3292
|
+
|
3293
|
+
class ListThingRegistrationTaskReportsRequest
|
3294
|
+
attr_accessor task_id: ::String
|
3295
|
+
attr_accessor report_type: ("ERRORS" | "RESULTS")
|
3296
|
+
attr_accessor next_token: ::String
|
3297
|
+
attr_accessor max_results: ::Integer
|
3298
|
+
SENSITIVE: []
|
3299
|
+
end
|
3300
|
+
|
3301
|
+
class ListThingRegistrationTaskReportsResponse
|
3302
|
+
attr_accessor resource_links: ::Array[::String]
|
3303
|
+
attr_accessor report_type: ("ERRORS" | "RESULTS")
|
3304
|
+
attr_accessor next_token: ::String
|
3305
|
+
SENSITIVE: []
|
3306
|
+
end
|
3307
|
+
|
3308
|
+
class ListThingRegistrationTasksRequest
|
3309
|
+
attr_accessor next_token: ::String
|
3310
|
+
attr_accessor max_results: ::Integer
|
3311
|
+
attr_accessor status: ("InProgress" | "Completed" | "Failed" | "Cancelled" | "Cancelling")
|
3312
|
+
SENSITIVE: []
|
3313
|
+
end
|
3314
|
+
|
3315
|
+
class ListThingRegistrationTasksResponse
|
3316
|
+
attr_accessor task_ids: ::Array[::String]
|
3317
|
+
attr_accessor next_token: ::String
|
3318
|
+
SENSITIVE: []
|
3319
|
+
end
|
3320
|
+
|
3321
|
+
class ListThingTypesRequest
|
3322
|
+
attr_accessor next_token: ::String
|
3323
|
+
attr_accessor max_results: ::Integer
|
3324
|
+
attr_accessor thing_type_name: ::String
|
3325
|
+
SENSITIVE: []
|
3326
|
+
end
|
3327
|
+
|
3328
|
+
class ListThingTypesResponse
|
3329
|
+
attr_accessor thing_types: ::Array[Types::ThingTypeDefinition]
|
3330
|
+
attr_accessor next_token: ::String
|
3331
|
+
SENSITIVE: []
|
3332
|
+
end
|
3333
|
+
|
3334
|
+
class ListThingsInBillingGroupRequest
|
3335
|
+
attr_accessor billing_group_name: ::String
|
3336
|
+
attr_accessor next_token: ::String
|
3337
|
+
attr_accessor max_results: ::Integer
|
3338
|
+
SENSITIVE: []
|
3339
|
+
end
|
3340
|
+
|
3341
|
+
class ListThingsInBillingGroupResponse
|
3342
|
+
attr_accessor things: ::Array[::String]
|
3343
|
+
attr_accessor next_token: ::String
|
3344
|
+
SENSITIVE: []
|
3345
|
+
end
|
3346
|
+
|
3347
|
+
class ListThingsInThingGroupRequest
|
3348
|
+
attr_accessor thing_group_name: ::String
|
3349
|
+
attr_accessor recursive: bool
|
3350
|
+
attr_accessor next_token: ::String
|
3351
|
+
attr_accessor max_results: ::Integer
|
3352
|
+
SENSITIVE: []
|
3353
|
+
end
|
3354
|
+
|
3355
|
+
class ListThingsInThingGroupResponse
|
3356
|
+
attr_accessor things: ::Array[::String]
|
3357
|
+
attr_accessor next_token: ::String
|
3358
|
+
SENSITIVE: []
|
3359
|
+
end
|
3360
|
+
|
3361
|
+
class ListThingsRequest
|
3362
|
+
attr_accessor next_token: ::String
|
3363
|
+
attr_accessor max_results: ::Integer
|
3364
|
+
attr_accessor attribute_name: ::String
|
3365
|
+
attr_accessor attribute_value: ::String
|
3366
|
+
attr_accessor thing_type_name: ::String
|
3367
|
+
attr_accessor use_prefix_attribute_value: bool
|
3368
|
+
SENSITIVE: []
|
3369
|
+
end
|
3370
|
+
|
3371
|
+
class ListThingsResponse
|
3372
|
+
attr_accessor things: ::Array[Types::ThingAttribute]
|
3373
|
+
attr_accessor next_token: ::String
|
3374
|
+
SENSITIVE: []
|
3375
|
+
end
|
3376
|
+
|
3377
|
+
class ListTopicRuleDestinationsRequest
|
3378
|
+
attr_accessor max_results: ::Integer
|
3379
|
+
attr_accessor next_token: ::String
|
3380
|
+
SENSITIVE: []
|
3381
|
+
end
|
3382
|
+
|
3383
|
+
class ListTopicRuleDestinationsResponse
|
3384
|
+
attr_accessor destination_summaries: ::Array[Types::TopicRuleDestinationSummary]
|
3385
|
+
attr_accessor next_token: ::String
|
3386
|
+
SENSITIVE: []
|
3387
|
+
end
|
3388
|
+
|
3389
|
+
class ListTopicRulesRequest
|
3390
|
+
attr_accessor topic: ::String
|
3391
|
+
attr_accessor max_results: ::Integer
|
3392
|
+
attr_accessor next_token: ::String
|
3393
|
+
attr_accessor rule_disabled: bool
|
3394
|
+
SENSITIVE: []
|
3395
|
+
end
|
3396
|
+
|
3397
|
+
class ListTopicRulesResponse
|
3398
|
+
attr_accessor rules: ::Array[Types::TopicRuleListItem]
|
3399
|
+
attr_accessor next_token: ::String
|
3400
|
+
SENSITIVE: []
|
3401
|
+
end
|
3402
|
+
|
3403
|
+
class ListV2LoggingLevelsRequest
|
3404
|
+
attr_accessor target_type: ("DEFAULT" | "THING_GROUP" | "CLIENT_ID" | "SOURCE_IP" | "PRINCIPAL_ID")
|
3405
|
+
attr_accessor next_token: ::String
|
3406
|
+
attr_accessor max_results: ::Integer
|
3407
|
+
SENSITIVE: []
|
3408
|
+
end
|
3409
|
+
|
3410
|
+
class ListV2LoggingLevelsResponse
|
3411
|
+
attr_accessor log_target_configurations: ::Array[Types::LogTargetConfiguration]
|
3412
|
+
attr_accessor next_token: ::String
|
3413
|
+
SENSITIVE: []
|
3414
|
+
end
|
3415
|
+
|
3416
|
+
class ListViolationEventsRequest
|
3417
|
+
attr_accessor start_time: ::Time
|
3418
|
+
attr_accessor end_time: ::Time
|
3419
|
+
attr_accessor thing_name: ::String
|
3420
|
+
attr_accessor security_profile_name: ::String
|
3421
|
+
attr_accessor behavior_criteria_type: ("STATIC" | "STATISTICAL" | "MACHINE_LEARNING")
|
3422
|
+
attr_accessor list_suppressed_alerts: bool
|
3423
|
+
attr_accessor verification_state: ("FALSE_POSITIVE" | "BENIGN_POSITIVE" | "TRUE_POSITIVE" | "UNKNOWN")
|
3424
|
+
attr_accessor next_token: ::String
|
3425
|
+
attr_accessor max_results: ::Integer
|
3426
|
+
SENSITIVE: []
|
3427
|
+
end
|
3428
|
+
|
3429
|
+
class ListViolationEventsResponse
|
3430
|
+
attr_accessor violation_events: ::Array[Types::ViolationEvent]
|
3431
|
+
attr_accessor next_token: ::String
|
3432
|
+
SENSITIVE: []
|
3433
|
+
end
|
3434
|
+
|
3435
|
+
class LocationAction
|
3436
|
+
attr_accessor role_arn: ::String
|
3437
|
+
attr_accessor tracker_name: ::String
|
3438
|
+
attr_accessor device_id: ::String
|
3439
|
+
attr_accessor timestamp: Types::LocationTimestamp
|
3440
|
+
attr_accessor latitude: ::String
|
3441
|
+
attr_accessor longitude: ::String
|
3442
|
+
SENSITIVE: []
|
3443
|
+
end
|
3444
|
+
|
3445
|
+
class LocationTimestamp
|
3446
|
+
attr_accessor value: ::String
|
3447
|
+
attr_accessor unit: ::String
|
3448
|
+
SENSITIVE: []
|
3449
|
+
end
|
3450
|
+
|
3451
|
+
class LogTarget
|
3452
|
+
attr_accessor target_type: ("DEFAULT" | "THING_GROUP" | "CLIENT_ID" | "SOURCE_IP" | "PRINCIPAL_ID")
|
3453
|
+
attr_accessor target_name: ::String
|
3454
|
+
SENSITIVE: []
|
3455
|
+
end
|
3456
|
+
|
3457
|
+
class LogTargetConfiguration
|
3458
|
+
attr_accessor log_target: Types::LogTarget
|
3459
|
+
attr_accessor log_level: ("DEBUG" | "INFO" | "ERROR" | "WARN" | "DISABLED")
|
3460
|
+
SENSITIVE: []
|
3461
|
+
end
|
3462
|
+
|
3463
|
+
class LoggingOptionsPayload
|
3464
|
+
attr_accessor role_arn: ::String
|
3465
|
+
attr_accessor log_level: ("DEBUG" | "INFO" | "ERROR" | "WARN" | "DISABLED")
|
3466
|
+
SENSITIVE: []
|
3467
|
+
end
|
3468
|
+
|
3469
|
+
class MachineLearningDetectionConfig
|
3470
|
+
attr_accessor confidence_level: ("LOW" | "MEDIUM" | "HIGH")
|
3471
|
+
SENSITIVE: []
|
3472
|
+
end
|
3473
|
+
|
3474
|
+
class MaintenanceWindow
|
3475
|
+
attr_accessor start_time: ::String
|
3476
|
+
attr_accessor duration_in_minutes: ::Integer
|
3477
|
+
SENSITIVE: []
|
3478
|
+
end
|
3479
|
+
|
3480
|
+
class MalformedPolicyException
|
3481
|
+
attr_accessor message: ::String
|
3482
|
+
SENSITIVE: []
|
3483
|
+
end
|
3484
|
+
|
3485
|
+
class ManagedJobTemplateSummary
|
3486
|
+
attr_accessor template_arn: ::String
|
3487
|
+
attr_accessor template_name: ::String
|
3488
|
+
attr_accessor description: ::String
|
3489
|
+
attr_accessor environments: ::Array[::String]
|
3490
|
+
attr_accessor template_version: ::String
|
3491
|
+
SENSITIVE: []
|
3492
|
+
end
|
3493
|
+
|
3494
|
+
class MetricDatum
|
3495
|
+
attr_accessor timestamp: ::Time
|
3496
|
+
attr_accessor value: Types::MetricValue
|
3497
|
+
SENSITIVE: []
|
3498
|
+
end
|
3499
|
+
|
3500
|
+
class MetricDimension
|
3501
|
+
attr_accessor dimension_name: ::String
|
3502
|
+
attr_accessor operator: ("IN" | "NOT_IN")
|
3503
|
+
SENSITIVE: []
|
3504
|
+
end
|
3505
|
+
|
3506
|
+
class MetricToRetain
|
3507
|
+
attr_accessor metric: ::String
|
3508
|
+
attr_accessor metric_dimension: Types::MetricDimension
|
3509
|
+
attr_accessor export_metric: bool
|
3510
|
+
SENSITIVE: []
|
3511
|
+
end
|
3512
|
+
|
3513
|
+
class MetricValue
|
3514
|
+
attr_accessor count: ::Integer
|
3515
|
+
attr_accessor cidrs: ::Array[::String]
|
3516
|
+
attr_accessor ports: ::Array[::Integer]
|
3517
|
+
attr_accessor number: ::Float
|
3518
|
+
attr_accessor numbers: ::Array[::Float]
|
3519
|
+
attr_accessor strings: ::Array[::String]
|
3520
|
+
SENSITIVE: []
|
3521
|
+
end
|
3522
|
+
|
3523
|
+
class MetricsExportConfig
|
3524
|
+
attr_accessor mqtt_topic: ::String
|
3525
|
+
attr_accessor role_arn: ::String
|
3526
|
+
SENSITIVE: []
|
3527
|
+
end
|
3528
|
+
|
3529
|
+
class MitigationAction
|
3530
|
+
attr_accessor name: ::String
|
3531
|
+
attr_accessor id: ::String
|
3532
|
+
attr_accessor role_arn: ::String
|
3533
|
+
attr_accessor action_params: Types::MitigationActionParams
|
3534
|
+
SENSITIVE: []
|
3535
|
+
end
|
3536
|
+
|
3537
|
+
class MitigationActionIdentifier
|
3538
|
+
attr_accessor action_name: ::String
|
3539
|
+
attr_accessor action_arn: ::String
|
3540
|
+
attr_accessor creation_date: ::Time
|
3541
|
+
SENSITIVE: []
|
3542
|
+
end
|
3543
|
+
|
3544
|
+
class MitigationActionParams
|
3545
|
+
attr_accessor update_device_certificate_params: Types::UpdateDeviceCertificateParams
|
3546
|
+
attr_accessor update_ca_certificate_params: Types::UpdateCACertificateParams
|
3547
|
+
attr_accessor add_things_to_thing_group_params: Types::AddThingsToThingGroupParams
|
3548
|
+
attr_accessor replace_default_policy_version_params: Types::ReplaceDefaultPolicyVersionParams
|
3549
|
+
attr_accessor enable_io_t_logging_params: Types::EnableIoTLoggingParams
|
3550
|
+
attr_accessor publish_finding_to_sns_params: Types::PublishFindingToSnsParams
|
3551
|
+
SENSITIVE: []
|
3552
|
+
end
|
3553
|
+
|
3554
|
+
class MqttContext
|
3555
|
+
attr_accessor username: ::String
|
3556
|
+
attr_accessor password: ::String
|
3557
|
+
attr_accessor client_id: ::String
|
3558
|
+
SENSITIVE: []
|
3559
|
+
end
|
3560
|
+
|
3561
|
+
class MqttHeaders
|
3562
|
+
attr_accessor payload_format_indicator: ::String
|
3563
|
+
attr_accessor content_type: ::String
|
3564
|
+
attr_accessor response_topic: ::String
|
3565
|
+
attr_accessor correlation_data: ::String
|
3566
|
+
attr_accessor message_expiry: ::String
|
3567
|
+
attr_accessor user_properties: ::Array[Types::UserProperty]
|
3568
|
+
SENSITIVE: []
|
3569
|
+
end
|
3570
|
+
|
3571
|
+
class NonCompliantResource
|
3572
|
+
attr_accessor resource_type: ("DEVICE_CERTIFICATE" | "CA_CERTIFICATE" | "IOT_POLICY" | "COGNITO_IDENTITY_POOL" | "CLIENT_ID" | "ACCOUNT_SETTINGS" | "ROLE_ALIAS" | "IAM_ROLE" | "ISSUER_CERTIFICATE")
|
3573
|
+
attr_accessor resource_identifier: Types::ResourceIdentifier
|
3574
|
+
attr_accessor additional_info: ::Hash[::String, ::String]
|
3575
|
+
SENSITIVE: []
|
3576
|
+
end
|
3577
|
+
|
3578
|
+
class NotConfiguredException
|
3579
|
+
attr_accessor message: ::String
|
3580
|
+
SENSITIVE: []
|
3581
|
+
end
|
3582
|
+
|
3583
|
+
class OTAUpdateFile
|
3584
|
+
attr_accessor file_name: ::String
|
3585
|
+
attr_accessor file_type: ::Integer
|
3586
|
+
attr_accessor file_version: ::String
|
3587
|
+
attr_accessor file_location: Types::FileLocation
|
3588
|
+
attr_accessor code_signing: Types::CodeSigning
|
3589
|
+
attr_accessor attributes: ::Hash[::String, ::String]
|
3590
|
+
SENSITIVE: []
|
3591
|
+
end
|
3592
|
+
|
3593
|
+
class OTAUpdateInfo
|
3594
|
+
attr_accessor ota_update_id: ::String
|
3595
|
+
attr_accessor ota_update_arn: ::String
|
3596
|
+
attr_accessor creation_date: ::Time
|
3597
|
+
attr_accessor last_modified_date: ::Time
|
3598
|
+
attr_accessor description: ::String
|
3599
|
+
attr_accessor targets: ::Array[::String]
|
3600
|
+
attr_accessor protocols: ::Array[("MQTT" | "HTTP")]
|
3601
|
+
attr_accessor aws_job_executions_rollout_config: Types::AwsJobExecutionsRolloutConfig
|
3602
|
+
attr_accessor aws_job_presigned_url_config: Types::AwsJobPresignedUrlConfig
|
3603
|
+
attr_accessor target_selection: ("CONTINUOUS" | "SNAPSHOT")
|
3604
|
+
attr_accessor ota_update_files: ::Array[Types::OTAUpdateFile]
|
3605
|
+
attr_accessor ota_update_status: ("CREATE_PENDING" | "CREATE_IN_PROGRESS" | "CREATE_COMPLETE" | "CREATE_FAILED" | "DELETE_IN_PROGRESS" | "DELETE_FAILED")
|
3606
|
+
attr_accessor aws_iot_job_id: ::String
|
3607
|
+
attr_accessor aws_iot_job_arn: ::String
|
3608
|
+
attr_accessor error_info: Types::ErrorInfo
|
3609
|
+
attr_accessor additional_parameters: ::Hash[::String, ::String]
|
3610
|
+
SENSITIVE: []
|
3611
|
+
end
|
3612
|
+
|
3613
|
+
class OTAUpdateSummary
|
3614
|
+
attr_accessor ota_update_id: ::String
|
3615
|
+
attr_accessor ota_update_arn: ::String
|
3616
|
+
attr_accessor creation_date: ::Time
|
3617
|
+
SENSITIVE: []
|
3618
|
+
end
|
3619
|
+
|
3620
|
+
class OpenSearchAction
|
3621
|
+
attr_accessor role_arn: ::String
|
3622
|
+
attr_accessor endpoint: ::String
|
3623
|
+
attr_accessor index: ::String
|
3624
|
+
attr_accessor type: ::String
|
3625
|
+
attr_accessor id: ::String
|
3626
|
+
SENSITIVE: []
|
3627
|
+
end
|
3628
|
+
|
3629
|
+
class OutgoingCertificate
|
3630
|
+
attr_accessor certificate_arn: ::String
|
3631
|
+
attr_accessor certificate_id: ::String
|
3632
|
+
attr_accessor transferred_to: ::String
|
3633
|
+
attr_accessor transfer_date: ::Time
|
3634
|
+
attr_accessor transfer_message: ::String
|
3635
|
+
attr_accessor creation_date: ::Time
|
3636
|
+
SENSITIVE: []
|
3637
|
+
end
|
3638
|
+
|
3639
|
+
class PackageSummary
|
3640
|
+
attr_accessor package_name: ::String
|
3641
|
+
attr_accessor default_version_name: ::String
|
3642
|
+
attr_accessor creation_date: ::Time
|
3643
|
+
attr_accessor last_modified_date: ::Time
|
3644
|
+
SENSITIVE: []
|
3645
|
+
end
|
3646
|
+
|
3647
|
+
class PackageVersionSummary
|
3648
|
+
attr_accessor package_name: ::String
|
3649
|
+
attr_accessor version_name: ::String
|
3650
|
+
attr_accessor status: ("DRAFT" | "PUBLISHED" | "DEPRECATED")
|
3651
|
+
attr_accessor creation_date: ::Time
|
3652
|
+
attr_accessor last_modified_date: ::Time
|
3653
|
+
SENSITIVE: []
|
3654
|
+
end
|
3655
|
+
|
3656
|
+
class PercentPair
|
3657
|
+
attr_accessor percent: ::Float
|
3658
|
+
attr_accessor value: ::Float
|
3659
|
+
SENSITIVE: []
|
3660
|
+
end
|
3661
|
+
|
3662
|
+
class Policy
|
3663
|
+
attr_accessor policy_name: ::String
|
3664
|
+
attr_accessor policy_arn: ::String
|
3665
|
+
SENSITIVE: []
|
3666
|
+
end
|
3667
|
+
|
3668
|
+
class PolicyVersion
|
3669
|
+
attr_accessor version_id: ::String
|
3670
|
+
attr_accessor is_default_version: bool
|
3671
|
+
attr_accessor create_date: ::Time
|
3672
|
+
SENSITIVE: []
|
3673
|
+
end
|
3674
|
+
|
3675
|
+
class PolicyVersionIdentifier
|
3676
|
+
attr_accessor policy_name: ::String
|
3677
|
+
attr_accessor policy_version_id: ::String
|
3678
|
+
SENSITIVE: []
|
3679
|
+
end
|
3680
|
+
|
3681
|
+
class PresignedUrlConfig
|
3682
|
+
attr_accessor role_arn: ::String
|
3683
|
+
attr_accessor expires_in_sec: ::Integer
|
3684
|
+
SENSITIVE: []
|
3685
|
+
end
|
3686
|
+
|
3687
|
+
class ProvisioningHook
|
3688
|
+
attr_accessor payload_version: ::String
|
3689
|
+
attr_accessor target_arn: ::String
|
3690
|
+
SENSITIVE: []
|
3691
|
+
end
|
3692
|
+
|
3693
|
+
class ProvisioningTemplateSummary
|
3694
|
+
attr_accessor template_arn: ::String
|
3695
|
+
attr_accessor template_name: ::String
|
3696
|
+
attr_accessor description: ::String
|
3697
|
+
attr_accessor creation_date: ::Time
|
3698
|
+
attr_accessor last_modified_date: ::Time
|
3699
|
+
attr_accessor enabled: bool
|
3700
|
+
attr_accessor type: ("FLEET_PROVISIONING" | "JITP")
|
3701
|
+
SENSITIVE: []
|
3702
|
+
end
|
3703
|
+
|
3704
|
+
class ProvisioningTemplateVersionSummary
|
3705
|
+
attr_accessor version_id: ::Integer
|
3706
|
+
attr_accessor creation_date: ::Time
|
3707
|
+
attr_accessor is_default_version: bool
|
3708
|
+
SENSITIVE: []
|
3709
|
+
end
|
3710
|
+
|
3711
|
+
class PublishFindingToSnsParams
|
3712
|
+
attr_accessor topic_arn: ::String
|
3713
|
+
SENSITIVE: []
|
3714
|
+
end
|
3715
|
+
|
3716
|
+
class PutAssetPropertyValueEntry
|
3717
|
+
attr_accessor entry_id: ::String
|
3718
|
+
attr_accessor asset_id: ::String
|
3719
|
+
attr_accessor property_id: ::String
|
3720
|
+
attr_accessor property_alias: ::String
|
3721
|
+
attr_accessor property_values: ::Array[Types::AssetPropertyValue]
|
3722
|
+
SENSITIVE: []
|
3723
|
+
end
|
3724
|
+
|
3725
|
+
class PutItemInput
|
3726
|
+
attr_accessor table_name: ::String
|
3727
|
+
SENSITIVE: []
|
3728
|
+
end
|
3729
|
+
|
3730
|
+
class PutVerificationStateOnViolationRequest
|
3731
|
+
attr_accessor violation_id: ::String
|
3732
|
+
attr_accessor verification_state: ("FALSE_POSITIVE" | "BENIGN_POSITIVE" | "TRUE_POSITIVE" | "UNKNOWN")
|
3733
|
+
attr_accessor verification_state_description: ::String
|
3734
|
+
SENSITIVE: []
|
3735
|
+
end
|
3736
|
+
|
3737
|
+
class PutVerificationStateOnViolationResponse < Aws::EmptyStructure
|
3738
|
+
end
|
3739
|
+
|
3740
|
+
class RateIncreaseCriteria
|
3741
|
+
attr_accessor number_of_notified_things: ::Integer
|
3742
|
+
attr_accessor number_of_succeeded_things: ::Integer
|
3743
|
+
SENSITIVE: []
|
3744
|
+
end
|
3745
|
+
|
3746
|
+
class RegisterCACertificateRequest
|
3747
|
+
attr_accessor ca_certificate: ::String
|
3748
|
+
attr_accessor verification_certificate: ::String
|
3749
|
+
attr_accessor set_as_active: bool
|
3750
|
+
attr_accessor allow_auto_registration: bool
|
3751
|
+
attr_accessor registration_config: Types::RegistrationConfig
|
3752
|
+
attr_accessor tags: ::Array[Types::Tag]
|
3753
|
+
attr_accessor certificate_mode: ("DEFAULT" | "SNI_ONLY")
|
3754
|
+
SENSITIVE: []
|
3755
|
+
end
|
3756
|
+
|
3757
|
+
class RegisterCACertificateResponse
|
3758
|
+
attr_accessor certificate_arn: ::String
|
3759
|
+
attr_accessor certificate_id: ::String
|
3760
|
+
SENSITIVE: []
|
3761
|
+
end
|
3762
|
+
|
3763
|
+
class RegisterCertificateRequest
|
3764
|
+
attr_accessor certificate_pem: ::String
|
3765
|
+
attr_accessor ca_certificate_pem: ::String
|
3766
|
+
attr_accessor set_as_active: bool
|
3767
|
+
attr_accessor status: ("ACTIVE" | "INACTIVE" | "REVOKED" | "PENDING_TRANSFER" | "REGISTER_INACTIVE" | "PENDING_ACTIVATION")
|
3768
|
+
SENSITIVE: []
|
3769
|
+
end
|
3770
|
+
|
3771
|
+
class RegisterCertificateResponse
|
3772
|
+
attr_accessor certificate_arn: ::String
|
3773
|
+
attr_accessor certificate_id: ::String
|
3774
|
+
SENSITIVE: []
|
3775
|
+
end
|
3776
|
+
|
3777
|
+
class RegisterCertificateWithoutCARequest
|
3778
|
+
attr_accessor certificate_pem: ::String
|
3779
|
+
attr_accessor status: ("ACTIVE" | "INACTIVE" | "REVOKED" | "PENDING_TRANSFER" | "REGISTER_INACTIVE" | "PENDING_ACTIVATION")
|
3780
|
+
SENSITIVE: []
|
3781
|
+
end
|
3782
|
+
|
3783
|
+
class RegisterCertificateWithoutCAResponse
|
3784
|
+
attr_accessor certificate_arn: ::String
|
3785
|
+
attr_accessor certificate_id: ::String
|
3786
|
+
SENSITIVE: []
|
3787
|
+
end
|
3788
|
+
|
3789
|
+
class RegisterThingRequest
|
3790
|
+
attr_accessor template_body: ::String
|
3791
|
+
attr_accessor parameters: ::Hash[::String, ::String]
|
3792
|
+
SENSITIVE: []
|
3793
|
+
end
|
3794
|
+
|
3795
|
+
class RegisterThingResponse
|
3796
|
+
attr_accessor certificate_pem: ::String
|
3797
|
+
attr_accessor resource_arns: ::Hash[::String, ::String]
|
3798
|
+
SENSITIVE: []
|
3799
|
+
end
|
3800
|
+
|
3801
|
+
class RegistrationCodeValidationException
|
3802
|
+
attr_accessor message: ::String
|
3803
|
+
SENSITIVE: []
|
3804
|
+
end
|
3805
|
+
|
3806
|
+
class RegistrationConfig
|
3807
|
+
attr_accessor template_body: ::String
|
3808
|
+
attr_accessor role_arn: ::String
|
3809
|
+
attr_accessor template_name: ::String
|
3810
|
+
SENSITIVE: []
|
3811
|
+
end
|
3812
|
+
|
3813
|
+
class RejectCertificateTransferRequest
|
3814
|
+
attr_accessor certificate_id: ::String
|
3815
|
+
attr_accessor reject_reason: ::String
|
3816
|
+
SENSITIVE: []
|
3817
|
+
end
|
3818
|
+
|
3819
|
+
class RelatedResource
|
3820
|
+
attr_accessor resource_type: ("DEVICE_CERTIFICATE" | "CA_CERTIFICATE" | "IOT_POLICY" | "COGNITO_IDENTITY_POOL" | "CLIENT_ID" | "ACCOUNT_SETTINGS" | "ROLE_ALIAS" | "IAM_ROLE" | "ISSUER_CERTIFICATE")
|
3821
|
+
attr_accessor resource_identifier: Types::ResourceIdentifier
|
3822
|
+
attr_accessor additional_info: ::Hash[::String, ::String]
|
3823
|
+
SENSITIVE: []
|
3824
|
+
end
|
3825
|
+
|
3826
|
+
class RemoveThingFromBillingGroupRequest
|
3827
|
+
attr_accessor billing_group_name: ::String
|
3828
|
+
attr_accessor billing_group_arn: ::String
|
3829
|
+
attr_accessor thing_name: ::String
|
3830
|
+
attr_accessor thing_arn: ::String
|
3831
|
+
SENSITIVE: []
|
3832
|
+
end
|
3833
|
+
|
3834
|
+
class RemoveThingFromBillingGroupResponse < Aws::EmptyStructure
|
3835
|
+
end
|
3836
|
+
|
3837
|
+
class RemoveThingFromThingGroupRequest
|
3838
|
+
attr_accessor thing_group_name: ::String
|
3839
|
+
attr_accessor thing_group_arn: ::String
|
3840
|
+
attr_accessor thing_name: ::String
|
3841
|
+
attr_accessor thing_arn: ::String
|
3842
|
+
SENSITIVE: []
|
3843
|
+
end
|
3844
|
+
|
3845
|
+
class RemoveThingFromThingGroupResponse < Aws::EmptyStructure
|
3846
|
+
end
|
3847
|
+
|
3848
|
+
class ReplaceDefaultPolicyVersionParams
|
3849
|
+
attr_accessor template_name: ("BLANK_POLICY")
|
3850
|
+
SENSITIVE: []
|
3851
|
+
end
|
3852
|
+
|
3853
|
+
class ReplaceTopicRuleRequest
|
3854
|
+
attr_accessor rule_name: ::String
|
3855
|
+
attr_accessor topic_rule_payload: Types::TopicRulePayload
|
3856
|
+
SENSITIVE: []
|
3857
|
+
end
|
3858
|
+
|
3859
|
+
class RepublishAction
|
3860
|
+
attr_accessor role_arn: ::String
|
3861
|
+
attr_accessor topic: ::String
|
3862
|
+
attr_accessor qos: ::Integer
|
3863
|
+
attr_accessor headers: Types::MqttHeaders
|
3864
|
+
SENSITIVE: []
|
3865
|
+
end
|
3866
|
+
|
3867
|
+
class ResourceAlreadyExistsException
|
3868
|
+
attr_accessor message: ::String
|
3869
|
+
attr_accessor resource_id: ::String
|
3870
|
+
attr_accessor resource_arn: ::String
|
3871
|
+
SENSITIVE: []
|
3872
|
+
end
|
3873
|
+
|
3874
|
+
class ResourceIdentifier
|
3875
|
+
attr_accessor device_certificate_id: ::String
|
3876
|
+
attr_accessor ca_certificate_id: ::String
|
3877
|
+
attr_accessor cognito_identity_pool_id: ::String
|
3878
|
+
attr_accessor client_id: ::String
|
3879
|
+
attr_accessor policy_version_identifier: Types::PolicyVersionIdentifier
|
3880
|
+
attr_accessor account: ::String
|
3881
|
+
attr_accessor iam_role_arn: ::String
|
3882
|
+
attr_accessor role_alias_arn: ::String
|
3883
|
+
attr_accessor issuer_certificate_identifier: Types::IssuerCertificateIdentifier
|
3884
|
+
attr_accessor device_certificate_arn: ::String
|
3885
|
+
SENSITIVE: []
|
3886
|
+
end
|
3887
|
+
|
3888
|
+
class ResourceNotFoundException
|
3889
|
+
attr_accessor message: ::String
|
3890
|
+
SENSITIVE: []
|
3891
|
+
end
|
3892
|
+
|
3893
|
+
class ResourceRegistrationFailureException
|
3894
|
+
attr_accessor message: ::String
|
3895
|
+
SENSITIVE: []
|
3896
|
+
end
|
3897
|
+
|
3898
|
+
class RetryCriteria
|
3899
|
+
attr_accessor failure_type: ("FAILED" | "TIMED_OUT" | "ALL")
|
3900
|
+
attr_accessor number_of_retries: ::Integer
|
3901
|
+
SENSITIVE: []
|
3902
|
+
end
|
3903
|
+
|
3904
|
+
class RoleAliasDescription
|
3905
|
+
attr_accessor role_alias: ::String
|
3906
|
+
attr_accessor role_alias_arn: ::String
|
3907
|
+
attr_accessor role_arn: ::String
|
3908
|
+
attr_accessor owner: ::String
|
3909
|
+
attr_accessor credential_duration_seconds: ::Integer
|
3910
|
+
attr_accessor creation_date: ::Time
|
3911
|
+
attr_accessor last_modified_date: ::Time
|
3912
|
+
SENSITIVE: []
|
3913
|
+
end
|
3914
|
+
|
3915
|
+
class S3Action
|
3916
|
+
attr_accessor role_arn: ::String
|
3917
|
+
attr_accessor bucket_name: ::String
|
3918
|
+
attr_accessor key: ::String
|
3919
|
+
attr_accessor canned_acl: ("private" | "public-read" | "public-read-write" | "aws-exec-read" | "authenticated-read" | "bucket-owner-read" | "bucket-owner-full-control" | "log-delivery-write")
|
3920
|
+
SENSITIVE: []
|
3921
|
+
end
|
3922
|
+
|
3923
|
+
class S3Destination
|
3924
|
+
attr_accessor bucket: ::String
|
3925
|
+
attr_accessor prefix: ::String
|
3926
|
+
SENSITIVE: []
|
3927
|
+
end
|
3928
|
+
|
3929
|
+
class S3Location
|
3930
|
+
attr_accessor bucket: ::String
|
3931
|
+
attr_accessor key: ::String
|
3932
|
+
attr_accessor version: ::String
|
3933
|
+
SENSITIVE: []
|
3934
|
+
end
|
3935
|
+
|
3936
|
+
class SalesforceAction
|
3937
|
+
attr_accessor token: ::String
|
3938
|
+
attr_accessor url: ::String
|
3939
|
+
SENSITIVE: []
|
3940
|
+
end
|
3941
|
+
|
3942
|
+
class ScheduledAuditMetadata
|
3943
|
+
attr_accessor scheduled_audit_name: ::String
|
3944
|
+
attr_accessor scheduled_audit_arn: ::String
|
3945
|
+
attr_accessor frequency: ("DAILY" | "WEEKLY" | "BIWEEKLY" | "MONTHLY")
|
3946
|
+
attr_accessor day_of_month: ::String
|
3947
|
+
attr_accessor day_of_week: ("SUN" | "MON" | "TUE" | "WED" | "THU" | "FRI" | "SAT")
|
3948
|
+
SENSITIVE: []
|
3949
|
+
end
|
3950
|
+
|
3951
|
+
class ScheduledJobRollout
|
3952
|
+
attr_accessor start_time: ::String
|
3953
|
+
SENSITIVE: []
|
3954
|
+
end
|
3955
|
+
|
3956
|
+
class SchedulingConfig
|
3957
|
+
attr_accessor start_time: ::String
|
3958
|
+
attr_accessor end_time: ::String
|
3959
|
+
attr_accessor end_behavior: ("STOP_ROLLOUT" | "CANCEL" | "FORCE_CANCEL")
|
3960
|
+
attr_accessor maintenance_windows: ::Array[Types::MaintenanceWindow]
|
3961
|
+
SENSITIVE: []
|
3962
|
+
end
|
3963
|
+
|
3964
|
+
class SearchIndexRequest
|
3965
|
+
attr_accessor index_name: ::String
|
3966
|
+
attr_accessor query_string: ::String
|
3967
|
+
attr_accessor next_token: ::String
|
3968
|
+
attr_accessor max_results: ::Integer
|
3969
|
+
attr_accessor query_version: ::String
|
3970
|
+
SENSITIVE: []
|
3971
|
+
end
|
3972
|
+
|
3973
|
+
class SearchIndexResponse
|
3974
|
+
attr_accessor next_token: ::String
|
3975
|
+
attr_accessor things: ::Array[Types::ThingDocument]
|
3976
|
+
attr_accessor thing_groups: ::Array[Types::ThingGroupDocument]
|
3977
|
+
SENSITIVE: []
|
3978
|
+
end
|
3979
|
+
|
3980
|
+
class SecurityProfileIdentifier
|
3981
|
+
attr_accessor name: ::String
|
3982
|
+
attr_accessor arn: ::String
|
3983
|
+
SENSITIVE: []
|
3984
|
+
end
|
3985
|
+
|
3986
|
+
class SecurityProfileTarget
|
3987
|
+
attr_accessor arn: ::String
|
3988
|
+
SENSITIVE: []
|
3989
|
+
end
|
3990
|
+
|
3991
|
+
class SecurityProfileTargetMapping
|
3992
|
+
attr_accessor security_profile_identifier: Types::SecurityProfileIdentifier
|
3993
|
+
attr_accessor target: Types::SecurityProfileTarget
|
3994
|
+
SENSITIVE: []
|
3995
|
+
end
|
3996
|
+
|
3997
|
+
class ServerCertificateConfig
|
3998
|
+
attr_accessor enable_ocsp_check: bool
|
3999
|
+
SENSITIVE: []
|
4000
|
+
end
|
4001
|
+
|
4002
|
+
class ServerCertificateSummary
|
4003
|
+
attr_accessor server_certificate_arn: ::String
|
4004
|
+
attr_accessor server_certificate_status: ("INVALID" | "VALID")
|
4005
|
+
attr_accessor server_certificate_status_detail: ::String
|
4006
|
+
SENSITIVE: []
|
4007
|
+
end
|
4008
|
+
|
4009
|
+
class ServiceQuotaExceededException
|
4010
|
+
attr_accessor message: ::String
|
4011
|
+
SENSITIVE: []
|
4012
|
+
end
|
4013
|
+
|
4014
|
+
class ServiceUnavailableException
|
4015
|
+
attr_accessor message: ::String
|
4016
|
+
SENSITIVE: []
|
4017
|
+
end
|
4018
|
+
|
4019
|
+
class SetDefaultAuthorizerRequest
|
4020
|
+
attr_accessor authorizer_name: ::String
|
4021
|
+
SENSITIVE: []
|
4022
|
+
end
|
4023
|
+
|
4024
|
+
class SetDefaultAuthorizerResponse
|
4025
|
+
attr_accessor authorizer_name: ::String
|
4026
|
+
attr_accessor authorizer_arn: ::String
|
4027
|
+
SENSITIVE: []
|
4028
|
+
end
|
4029
|
+
|
4030
|
+
class SetDefaultPolicyVersionRequest
|
4031
|
+
attr_accessor policy_name: ::String
|
4032
|
+
attr_accessor policy_version_id: ::String
|
4033
|
+
SENSITIVE: []
|
4034
|
+
end
|
4035
|
+
|
4036
|
+
class SetLoggingOptionsRequest
|
4037
|
+
attr_accessor logging_options_payload: Types::LoggingOptionsPayload
|
4038
|
+
SENSITIVE: []
|
4039
|
+
end
|
4040
|
+
|
4041
|
+
class SetV2LoggingLevelRequest
|
4042
|
+
attr_accessor log_target: Types::LogTarget
|
4043
|
+
attr_accessor log_level: ("DEBUG" | "INFO" | "ERROR" | "WARN" | "DISABLED")
|
4044
|
+
SENSITIVE: []
|
4045
|
+
end
|
4046
|
+
|
4047
|
+
class SetV2LoggingOptionsRequest
|
4048
|
+
attr_accessor role_arn: ::String
|
4049
|
+
attr_accessor default_log_level: ("DEBUG" | "INFO" | "ERROR" | "WARN" | "DISABLED")
|
4050
|
+
attr_accessor disable_all_logs: bool
|
4051
|
+
SENSITIVE: []
|
4052
|
+
end
|
4053
|
+
|
4054
|
+
class SigV4Authorization
|
4055
|
+
attr_accessor signing_region: ::String
|
4056
|
+
attr_accessor service_name: ::String
|
4057
|
+
attr_accessor role_arn: ::String
|
4058
|
+
SENSITIVE: []
|
4059
|
+
end
|
4060
|
+
|
4061
|
+
class SigningProfileParameter
|
4062
|
+
attr_accessor certificate_arn: ::String
|
4063
|
+
attr_accessor platform: ::String
|
4064
|
+
attr_accessor certificate_path_on_device: ::String
|
4065
|
+
SENSITIVE: []
|
4066
|
+
end
|
4067
|
+
|
4068
|
+
class SnsAction
|
4069
|
+
attr_accessor target_arn: ::String
|
4070
|
+
attr_accessor role_arn: ::String
|
4071
|
+
attr_accessor message_format: ("RAW" | "JSON")
|
4072
|
+
SENSITIVE: []
|
4073
|
+
end
|
4074
|
+
|
4075
|
+
class SqlParseException
|
4076
|
+
attr_accessor message: ::String
|
4077
|
+
SENSITIVE: []
|
4078
|
+
end
|
4079
|
+
|
4080
|
+
class SqsAction
|
4081
|
+
attr_accessor role_arn: ::String
|
4082
|
+
attr_accessor queue_url: ::String
|
4083
|
+
attr_accessor use_base_64: bool
|
4084
|
+
SENSITIVE: []
|
4085
|
+
end
|
4086
|
+
|
4087
|
+
class StartAuditMitigationActionsTaskRequest
|
4088
|
+
attr_accessor task_id: ::String
|
4089
|
+
attr_accessor target: Types::AuditMitigationActionsTaskTarget
|
4090
|
+
attr_accessor audit_check_to_actions_mapping: ::Hash[::String, ::Array[::String]]
|
4091
|
+
attr_accessor client_request_token: ::String
|
4092
|
+
SENSITIVE: []
|
4093
|
+
end
|
4094
|
+
|
4095
|
+
class StartAuditMitigationActionsTaskResponse
|
4096
|
+
attr_accessor task_id: ::String
|
4097
|
+
SENSITIVE: []
|
4098
|
+
end
|
4099
|
+
|
4100
|
+
class StartDetectMitigationActionsTaskRequest
|
4101
|
+
attr_accessor task_id: ::String
|
4102
|
+
attr_accessor target: Types::DetectMitigationActionsTaskTarget
|
4103
|
+
attr_accessor actions: ::Array[::String]
|
4104
|
+
attr_accessor violation_event_occurrence_range: Types::ViolationEventOccurrenceRange
|
4105
|
+
attr_accessor include_only_active_violations: bool
|
4106
|
+
attr_accessor include_suppressed_alerts: bool
|
4107
|
+
attr_accessor client_request_token: ::String
|
4108
|
+
SENSITIVE: []
|
4109
|
+
end
|
4110
|
+
|
4111
|
+
class StartDetectMitigationActionsTaskResponse
|
4112
|
+
attr_accessor task_id: ::String
|
4113
|
+
SENSITIVE: []
|
4114
|
+
end
|
4115
|
+
|
4116
|
+
class StartOnDemandAuditTaskRequest
|
4117
|
+
attr_accessor target_check_names: ::Array[::String]
|
4118
|
+
SENSITIVE: []
|
4119
|
+
end
|
4120
|
+
|
4121
|
+
class StartOnDemandAuditTaskResponse
|
4122
|
+
attr_accessor task_id: ::String
|
4123
|
+
SENSITIVE: []
|
4124
|
+
end
|
4125
|
+
|
4126
|
+
class StartSigningJobParameter
|
4127
|
+
attr_accessor signing_profile_parameter: Types::SigningProfileParameter
|
4128
|
+
attr_accessor signing_profile_name: ::String
|
4129
|
+
attr_accessor destination: Types::Destination
|
4130
|
+
SENSITIVE: []
|
4131
|
+
end
|
4132
|
+
|
4133
|
+
class StartThingRegistrationTaskRequest
|
4134
|
+
attr_accessor template_body: ::String
|
4135
|
+
attr_accessor input_file_bucket: ::String
|
4136
|
+
attr_accessor input_file_key: ::String
|
4137
|
+
attr_accessor role_arn: ::String
|
4138
|
+
SENSITIVE: []
|
4139
|
+
end
|
4140
|
+
|
4141
|
+
class StartThingRegistrationTaskResponse
|
4142
|
+
attr_accessor task_id: ::String
|
4143
|
+
SENSITIVE: []
|
4144
|
+
end
|
4145
|
+
|
4146
|
+
class StatisticalThreshold
|
4147
|
+
attr_accessor statistic: ::String
|
4148
|
+
SENSITIVE: []
|
4149
|
+
end
|
4150
|
+
|
4151
|
+
class Statistics
|
4152
|
+
attr_accessor count: ::Integer
|
4153
|
+
attr_accessor average: ::Float
|
4154
|
+
attr_accessor sum: ::Float
|
4155
|
+
attr_accessor minimum: ::Float
|
4156
|
+
attr_accessor maximum: ::Float
|
4157
|
+
attr_accessor sum_of_squares: ::Float
|
4158
|
+
attr_accessor variance: ::Float
|
4159
|
+
attr_accessor std_deviation: ::Float
|
4160
|
+
SENSITIVE: []
|
4161
|
+
end
|
4162
|
+
|
4163
|
+
class StepFunctionsAction
|
4164
|
+
attr_accessor execution_name_prefix: ::String
|
4165
|
+
attr_accessor state_machine_name: ::String
|
4166
|
+
attr_accessor role_arn: ::String
|
4167
|
+
SENSITIVE: []
|
4168
|
+
end
|
4169
|
+
|
4170
|
+
class StopThingRegistrationTaskRequest
|
4171
|
+
attr_accessor task_id: ::String
|
4172
|
+
SENSITIVE: []
|
4173
|
+
end
|
4174
|
+
|
4175
|
+
class StopThingRegistrationTaskResponse < Aws::EmptyStructure
|
4176
|
+
end
|
4177
|
+
|
4178
|
+
class Stream
|
4179
|
+
attr_accessor stream_id: ::String
|
4180
|
+
attr_accessor file_id: ::Integer
|
4181
|
+
SENSITIVE: []
|
4182
|
+
end
|
4183
|
+
|
4184
|
+
class StreamFile
|
4185
|
+
attr_accessor file_id: ::Integer
|
4186
|
+
attr_accessor s3_location: Types::S3Location
|
4187
|
+
SENSITIVE: []
|
4188
|
+
end
|
4189
|
+
|
4190
|
+
class StreamInfo
|
4191
|
+
attr_accessor stream_id: ::String
|
4192
|
+
attr_accessor stream_arn: ::String
|
4193
|
+
attr_accessor stream_version: ::Integer
|
4194
|
+
attr_accessor description: ::String
|
4195
|
+
attr_accessor files: ::Array[Types::StreamFile]
|
4196
|
+
attr_accessor created_at: ::Time
|
4197
|
+
attr_accessor last_updated_at: ::Time
|
4198
|
+
attr_accessor role_arn: ::String
|
4199
|
+
SENSITIVE: []
|
4200
|
+
end
|
4201
|
+
|
4202
|
+
class StreamSummary
|
4203
|
+
attr_accessor stream_id: ::String
|
4204
|
+
attr_accessor stream_arn: ::String
|
4205
|
+
attr_accessor stream_version: ::Integer
|
4206
|
+
attr_accessor description: ::String
|
4207
|
+
SENSITIVE: []
|
4208
|
+
end
|
4209
|
+
|
4210
|
+
class Tag
|
4211
|
+
attr_accessor key: ::String
|
4212
|
+
attr_accessor value: ::String
|
4213
|
+
SENSITIVE: []
|
4214
|
+
end
|
4215
|
+
|
4216
|
+
class TagResourceRequest
|
4217
|
+
attr_accessor resource_arn: ::String
|
4218
|
+
attr_accessor tags: ::Array[Types::Tag]
|
4219
|
+
SENSITIVE: []
|
4220
|
+
end
|
4221
|
+
|
4222
|
+
class TagResourceResponse < Aws::EmptyStructure
|
4223
|
+
end
|
4224
|
+
|
4225
|
+
class TaskAlreadyExistsException
|
4226
|
+
attr_accessor message: ::String
|
4227
|
+
SENSITIVE: []
|
4228
|
+
end
|
4229
|
+
|
4230
|
+
class TaskStatistics
|
4231
|
+
attr_accessor total_checks: ::Integer
|
4232
|
+
attr_accessor in_progress_checks: ::Integer
|
4233
|
+
attr_accessor waiting_for_data_collection_checks: ::Integer
|
4234
|
+
attr_accessor compliant_checks: ::Integer
|
4235
|
+
attr_accessor non_compliant_checks: ::Integer
|
4236
|
+
attr_accessor failed_checks: ::Integer
|
4237
|
+
attr_accessor canceled_checks: ::Integer
|
4238
|
+
SENSITIVE: []
|
4239
|
+
end
|
4240
|
+
|
4241
|
+
class TaskStatisticsForAuditCheck
|
4242
|
+
attr_accessor total_findings_count: ::Integer
|
4243
|
+
attr_accessor failed_findings_count: ::Integer
|
4244
|
+
attr_accessor succeeded_findings_count: ::Integer
|
4245
|
+
attr_accessor skipped_findings_count: ::Integer
|
4246
|
+
attr_accessor canceled_findings_count: ::Integer
|
4247
|
+
SENSITIVE: []
|
4248
|
+
end
|
4249
|
+
|
4250
|
+
class TermsAggregation
|
4251
|
+
attr_accessor max_buckets: ::Integer
|
4252
|
+
SENSITIVE: []
|
4253
|
+
end
|
4254
|
+
|
4255
|
+
class TestAuthorizationRequest
|
4256
|
+
attr_accessor principal: ::String
|
4257
|
+
attr_accessor cognito_identity_pool_id: ::String
|
4258
|
+
attr_accessor auth_infos: ::Array[Types::AuthInfo]
|
4259
|
+
attr_accessor client_id: ::String
|
4260
|
+
attr_accessor policy_names_to_add: ::Array[::String]
|
4261
|
+
attr_accessor policy_names_to_skip: ::Array[::String]
|
4262
|
+
SENSITIVE: []
|
4263
|
+
end
|
4264
|
+
|
4265
|
+
class TestAuthorizationResponse
|
4266
|
+
attr_accessor auth_results: ::Array[Types::AuthResult]
|
4267
|
+
SENSITIVE: []
|
4268
|
+
end
|
4269
|
+
|
4270
|
+
class TestInvokeAuthorizerRequest
|
4271
|
+
attr_accessor authorizer_name: ::String
|
4272
|
+
attr_accessor token: ::String
|
4273
|
+
attr_accessor token_signature: ::String
|
4274
|
+
attr_accessor http_context: Types::HttpContext
|
4275
|
+
attr_accessor mqtt_context: Types::MqttContext
|
4276
|
+
attr_accessor tls_context: Types::TlsContext
|
4277
|
+
SENSITIVE: []
|
4278
|
+
end
|
4279
|
+
|
4280
|
+
class TestInvokeAuthorizerResponse
|
4281
|
+
attr_accessor is_authenticated: bool
|
4282
|
+
attr_accessor principal_id: ::String
|
4283
|
+
attr_accessor policy_documents: ::Array[::String]
|
4284
|
+
attr_accessor refresh_after_in_seconds: ::Integer
|
4285
|
+
attr_accessor disconnect_after_in_seconds: ::Integer
|
4286
|
+
SENSITIVE: []
|
4287
|
+
end
|
4288
|
+
|
4289
|
+
class ThingAttribute
|
4290
|
+
attr_accessor thing_name: ::String
|
4291
|
+
attr_accessor thing_type_name: ::String
|
4292
|
+
attr_accessor thing_arn: ::String
|
4293
|
+
attr_accessor attributes: ::Hash[::String, ::String]
|
4294
|
+
attr_accessor version: ::Integer
|
4295
|
+
SENSITIVE: []
|
4296
|
+
end
|
4297
|
+
|
4298
|
+
class ThingConnectivity
|
4299
|
+
attr_accessor connected: bool
|
4300
|
+
attr_accessor timestamp: ::Integer
|
4301
|
+
attr_accessor disconnect_reason: ::String
|
4302
|
+
SENSITIVE: []
|
4303
|
+
end
|
4304
|
+
|
4305
|
+
class ThingDocument
|
4306
|
+
attr_accessor thing_name: ::String
|
4307
|
+
attr_accessor thing_id: ::String
|
4308
|
+
attr_accessor thing_type_name: ::String
|
4309
|
+
attr_accessor thing_group_names: ::Array[::String]
|
4310
|
+
attr_accessor attributes: ::Hash[::String, ::String]
|
4311
|
+
attr_accessor shadow: ::String
|
4312
|
+
attr_accessor device_defender: ::String
|
4313
|
+
attr_accessor connectivity: Types::ThingConnectivity
|
4314
|
+
SENSITIVE: []
|
4315
|
+
end
|
4316
|
+
|
4317
|
+
class ThingGroupDocument
|
4318
|
+
attr_accessor thing_group_name: ::String
|
4319
|
+
attr_accessor thing_group_id: ::String
|
4320
|
+
attr_accessor thing_group_description: ::String
|
4321
|
+
attr_accessor attributes: ::Hash[::String, ::String]
|
4322
|
+
attr_accessor parent_group_names: ::Array[::String]
|
4323
|
+
SENSITIVE: []
|
4324
|
+
end
|
4325
|
+
|
4326
|
+
class ThingGroupIndexingConfiguration
|
4327
|
+
attr_accessor thing_group_indexing_mode: ("OFF" | "ON")
|
4328
|
+
attr_accessor managed_fields: ::Array[Types::Field]
|
4329
|
+
attr_accessor custom_fields: ::Array[Types::Field]
|
4330
|
+
SENSITIVE: []
|
4331
|
+
end
|
4332
|
+
|
4333
|
+
class ThingGroupMetadata
|
4334
|
+
attr_accessor parent_group_name: ::String
|
4335
|
+
attr_accessor root_to_parent_thing_groups: ::Array[Types::GroupNameAndArn]
|
4336
|
+
attr_accessor creation_date: ::Time
|
4337
|
+
SENSITIVE: []
|
4338
|
+
end
|
4339
|
+
|
4340
|
+
class ThingGroupProperties
|
4341
|
+
attr_accessor thing_group_description: ::String
|
4342
|
+
attr_accessor attribute_payload: Types::AttributePayload
|
4343
|
+
SENSITIVE: []
|
4344
|
+
end
|
4345
|
+
|
4346
|
+
class ThingIndexingConfiguration
|
4347
|
+
attr_accessor thing_indexing_mode: ("OFF" | "REGISTRY" | "REGISTRY_AND_SHADOW")
|
4348
|
+
attr_accessor thing_connectivity_indexing_mode: ("OFF" | "STATUS")
|
4349
|
+
attr_accessor device_defender_indexing_mode: ("OFF" | "VIOLATIONS")
|
4350
|
+
attr_accessor named_shadow_indexing_mode: ("OFF" | "ON")
|
4351
|
+
attr_accessor managed_fields: ::Array[Types::Field]
|
4352
|
+
attr_accessor custom_fields: ::Array[Types::Field]
|
4353
|
+
attr_accessor filter: Types::IndexingFilter
|
4354
|
+
SENSITIVE: []
|
4355
|
+
end
|
4356
|
+
|
4357
|
+
class ThingTypeDefinition
|
4358
|
+
attr_accessor thing_type_name: ::String
|
4359
|
+
attr_accessor thing_type_arn: ::String
|
4360
|
+
attr_accessor thing_type_properties: Types::ThingTypeProperties
|
4361
|
+
attr_accessor thing_type_metadata: Types::ThingTypeMetadata
|
4362
|
+
SENSITIVE: []
|
4363
|
+
end
|
4364
|
+
|
4365
|
+
class ThingTypeMetadata
|
4366
|
+
attr_accessor deprecated: bool
|
4367
|
+
attr_accessor deprecation_date: ::Time
|
4368
|
+
attr_accessor creation_date: ::Time
|
4369
|
+
SENSITIVE: []
|
4370
|
+
end
|
4371
|
+
|
4372
|
+
class ThingTypeProperties
|
4373
|
+
attr_accessor thing_type_description: ::String
|
4374
|
+
attr_accessor searchable_attributes: ::Array[::String]
|
4375
|
+
SENSITIVE: []
|
4376
|
+
end
|
4377
|
+
|
4378
|
+
class ThrottlingException
|
4379
|
+
attr_accessor message: ::String
|
4380
|
+
SENSITIVE: []
|
4381
|
+
end
|
4382
|
+
|
4383
|
+
class TimeoutConfig
|
4384
|
+
attr_accessor in_progress_timeout_in_minutes: ::Integer
|
4385
|
+
SENSITIVE: []
|
4386
|
+
end
|
4387
|
+
|
4388
|
+
class TimestreamAction
|
4389
|
+
attr_accessor role_arn: ::String
|
4390
|
+
attr_accessor database_name: ::String
|
4391
|
+
attr_accessor table_name: ::String
|
4392
|
+
attr_accessor dimensions: ::Array[Types::TimestreamDimension]
|
4393
|
+
attr_accessor timestamp: Types::TimestreamTimestamp
|
4394
|
+
SENSITIVE: []
|
4395
|
+
end
|
4396
|
+
|
4397
|
+
class TimestreamDimension
|
4398
|
+
attr_accessor name: ::String
|
4399
|
+
attr_accessor value: ::String
|
4400
|
+
SENSITIVE: []
|
4401
|
+
end
|
4402
|
+
|
4403
|
+
class TimestreamTimestamp
|
4404
|
+
attr_accessor value: ::String
|
4405
|
+
attr_accessor unit: ::String
|
4406
|
+
SENSITIVE: []
|
4407
|
+
end
|
4408
|
+
|
4409
|
+
class TlsConfig
|
4410
|
+
attr_accessor security_policy: ::String
|
4411
|
+
SENSITIVE: []
|
4412
|
+
end
|
4413
|
+
|
4414
|
+
class TlsContext
|
4415
|
+
attr_accessor server_name: ::String
|
4416
|
+
SENSITIVE: []
|
4417
|
+
end
|
4418
|
+
|
4419
|
+
class TopicRule
|
4420
|
+
attr_accessor rule_name: ::String
|
4421
|
+
attr_accessor sql: ::String
|
4422
|
+
attr_accessor description: ::String
|
4423
|
+
attr_accessor created_at: ::Time
|
4424
|
+
attr_accessor actions: ::Array[Types::Action]
|
4425
|
+
attr_accessor rule_disabled: bool
|
4426
|
+
attr_accessor aws_iot_sql_version: ::String
|
4427
|
+
attr_accessor error_action: Types::Action
|
4428
|
+
SENSITIVE: []
|
4429
|
+
end
|
4430
|
+
|
4431
|
+
class TopicRuleDestination
|
4432
|
+
attr_accessor arn: ::String
|
4433
|
+
attr_accessor status: ("ENABLED" | "IN_PROGRESS" | "DISABLED" | "ERROR" | "DELETING")
|
4434
|
+
attr_accessor created_at: ::Time
|
4435
|
+
attr_accessor last_updated_at: ::Time
|
4436
|
+
attr_accessor status_reason: ::String
|
4437
|
+
attr_accessor http_url_properties: Types::HttpUrlDestinationProperties
|
4438
|
+
attr_accessor vpc_properties: Types::VpcDestinationProperties
|
4439
|
+
SENSITIVE: []
|
4440
|
+
end
|
4441
|
+
|
4442
|
+
class TopicRuleDestinationConfiguration
|
4443
|
+
attr_accessor http_url_configuration: Types::HttpUrlDestinationConfiguration
|
4444
|
+
attr_accessor vpc_configuration: Types::VpcDestinationConfiguration
|
4445
|
+
SENSITIVE: []
|
4446
|
+
end
|
4447
|
+
|
4448
|
+
class TopicRuleDestinationSummary
|
4449
|
+
attr_accessor arn: ::String
|
4450
|
+
attr_accessor status: ("ENABLED" | "IN_PROGRESS" | "DISABLED" | "ERROR" | "DELETING")
|
4451
|
+
attr_accessor created_at: ::Time
|
4452
|
+
attr_accessor last_updated_at: ::Time
|
4453
|
+
attr_accessor status_reason: ::String
|
4454
|
+
attr_accessor http_url_summary: Types::HttpUrlDestinationSummary
|
4455
|
+
attr_accessor vpc_destination_summary: Types::VpcDestinationSummary
|
4456
|
+
SENSITIVE: []
|
4457
|
+
end
|
4458
|
+
|
4459
|
+
class TopicRuleListItem
|
4460
|
+
attr_accessor rule_arn: ::String
|
4461
|
+
attr_accessor rule_name: ::String
|
4462
|
+
attr_accessor topic_pattern: ::String
|
4463
|
+
attr_accessor created_at: ::Time
|
4464
|
+
attr_accessor rule_disabled: bool
|
4465
|
+
SENSITIVE: []
|
4466
|
+
end
|
4467
|
+
|
4468
|
+
class TopicRulePayload
|
4469
|
+
attr_accessor sql: ::String
|
4470
|
+
attr_accessor description: ::String
|
4471
|
+
attr_accessor actions: ::Array[Types::Action]
|
4472
|
+
attr_accessor rule_disabled: bool
|
4473
|
+
attr_accessor aws_iot_sql_version: ::String
|
4474
|
+
attr_accessor error_action: Types::Action
|
4475
|
+
SENSITIVE: []
|
4476
|
+
end
|
4477
|
+
|
4478
|
+
class TransferAlreadyCompletedException
|
4479
|
+
attr_accessor message: ::String
|
4480
|
+
SENSITIVE: []
|
4481
|
+
end
|
4482
|
+
|
4483
|
+
class TransferCertificateRequest
|
4484
|
+
attr_accessor certificate_id: ::String
|
4485
|
+
attr_accessor target_aws_account: ::String
|
4486
|
+
attr_accessor transfer_message: ::String
|
4487
|
+
SENSITIVE: []
|
4488
|
+
end
|
4489
|
+
|
4490
|
+
class TransferCertificateResponse
|
4491
|
+
attr_accessor transferred_certificate_arn: ::String
|
4492
|
+
SENSITIVE: []
|
4493
|
+
end
|
4494
|
+
|
4495
|
+
class TransferConflictException
|
4496
|
+
attr_accessor message: ::String
|
4497
|
+
SENSITIVE: []
|
4498
|
+
end
|
4499
|
+
|
4500
|
+
class TransferData
|
4501
|
+
attr_accessor transfer_message: ::String
|
4502
|
+
attr_accessor reject_reason: ::String
|
4503
|
+
attr_accessor transfer_date: ::Time
|
4504
|
+
attr_accessor accept_date: ::Time
|
4505
|
+
attr_accessor reject_date: ::Time
|
4506
|
+
SENSITIVE: []
|
4507
|
+
end
|
4508
|
+
|
4509
|
+
class UnauthorizedException
|
4510
|
+
attr_accessor message: ::String
|
4511
|
+
SENSITIVE: []
|
4512
|
+
end
|
4513
|
+
|
4514
|
+
class UntagResourceRequest
|
4515
|
+
attr_accessor resource_arn: ::String
|
4516
|
+
attr_accessor tag_keys: ::Array[::String]
|
4517
|
+
SENSITIVE: []
|
4518
|
+
end
|
4519
|
+
|
4520
|
+
class UntagResourceResponse < Aws::EmptyStructure
|
4521
|
+
end
|
4522
|
+
|
4523
|
+
class UpdateAccountAuditConfigurationRequest
|
4524
|
+
attr_accessor role_arn: ::String
|
4525
|
+
attr_accessor audit_notification_target_configurations: ::Hash[("SNS"), Types::AuditNotificationTarget]
|
4526
|
+
attr_accessor audit_check_configurations: ::Hash[::String, Types::AuditCheckConfiguration]
|
4527
|
+
SENSITIVE: []
|
4528
|
+
end
|
4529
|
+
|
4530
|
+
class UpdateAccountAuditConfigurationResponse < Aws::EmptyStructure
|
4531
|
+
end
|
4532
|
+
|
4533
|
+
class UpdateAuditSuppressionRequest
|
4534
|
+
attr_accessor check_name: ::String
|
4535
|
+
attr_accessor resource_identifier: Types::ResourceIdentifier
|
4536
|
+
attr_accessor expiration_date: ::Time
|
4537
|
+
attr_accessor suppress_indefinitely: bool
|
4538
|
+
attr_accessor description: ::String
|
4539
|
+
SENSITIVE: []
|
4540
|
+
end
|
4541
|
+
|
4542
|
+
class UpdateAuditSuppressionResponse < Aws::EmptyStructure
|
4543
|
+
end
|
4544
|
+
|
4545
|
+
class UpdateAuthorizerRequest
|
4546
|
+
attr_accessor authorizer_name: ::String
|
4547
|
+
attr_accessor authorizer_function_arn: ::String
|
4548
|
+
attr_accessor token_key_name: ::String
|
4549
|
+
attr_accessor token_signing_public_keys: ::Hash[::String, ::String]
|
4550
|
+
attr_accessor status: ("ACTIVE" | "INACTIVE")
|
4551
|
+
attr_accessor enable_caching_for_http: bool
|
4552
|
+
SENSITIVE: []
|
4553
|
+
end
|
4554
|
+
|
4555
|
+
class UpdateAuthorizerResponse
|
4556
|
+
attr_accessor authorizer_name: ::String
|
4557
|
+
attr_accessor authorizer_arn: ::String
|
4558
|
+
SENSITIVE: []
|
4559
|
+
end
|
4560
|
+
|
4561
|
+
class UpdateBillingGroupRequest
|
4562
|
+
attr_accessor billing_group_name: ::String
|
4563
|
+
attr_accessor billing_group_properties: Types::BillingGroupProperties
|
4564
|
+
attr_accessor expected_version: ::Integer
|
4565
|
+
SENSITIVE: []
|
4566
|
+
end
|
4567
|
+
|
4568
|
+
class UpdateBillingGroupResponse
|
4569
|
+
attr_accessor version: ::Integer
|
4570
|
+
SENSITIVE: []
|
4571
|
+
end
|
4572
|
+
|
4573
|
+
class UpdateCACertificateParams
|
4574
|
+
attr_accessor action: ("DEACTIVATE")
|
4575
|
+
SENSITIVE: []
|
4576
|
+
end
|
4577
|
+
|
4578
|
+
class UpdateCACertificateRequest
|
4579
|
+
attr_accessor certificate_id: ::String
|
4580
|
+
attr_accessor new_status: ("ACTIVE" | "INACTIVE")
|
4581
|
+
attr_accessor new_auto_registration_status: ("ENABLE" | "DISABLE")
|
4582
|
+
attr_accessor registration_config: Types::RegistrationConfig
|
4583
|
+
attr_accessor remove_auto_registration: bool
|
4584
|
+
SENSITIVE: []
|
4585
|
+
end
|
4586
|
+
|
4587
|
+
class UpdateCertificateProviderRequest
|
4588
|
+
attr_accessor certificate_provider_name: ::String
|
4589
|
+
attr_accessor lambda_function_arn: ::String
|
4590
|
+
attr_accessor account_default_for_operations: ::Array[("CreateCertificateFromCsr")]
|
4591
|
+
SENSITIVE: []
|
4592
|
+
end
|
4593
|
+
|
4594
|
+
class UpdateCertificateProviderResponse
|
4595
|
+
attr_accessor certificate_provider_name: ::String
|
4596
|
+
attr_accessor certificate_provider_arn: ::String
|
4597
|
+
SENSITIVE: []
|
4598
|
+
end
|
4599
|
+
|
4600
|
+
class UpdateCertificateRequest
|
4601
|
+
attr_accessor certificate_id: ::String
|
4602
|
+
attr_accessor new_status: ("ACTIVE" | "INACTIVE" | "REVOKED" | "PENDING_TRANSFER" | "REGISTER_INACTIVE" | "PENDING_ACTIVATION")
|
4603
|
+
SENSITIVE: []
|
4604
|
+
end
|
4605
|
+
|
4606
|
+
class UpdateCustomMetricRequest
|
4607
|
+
attr_accessor metric_name: ::String
|
4608
|
+
attr_accessor display_name: ::String
|
4609
|
+
SENSITIVE: []
|
4610
|
+
end
|
4611
|
+
|
4612
|
+
class UpdateCustomMetricResponse
|
4613
|
+
attr_accessor metric_name: ::String
|
4614
|
+
attr_accessor metric_arn: ::String
|
4615
|
+
attr_accessor metric_type: ("string-list" | "ip-address-list" | "number-list" | "number")
|
4616
|
+
attr_accessor display_name: ::String
|
4617
|
+
attr_accessor creation_date: ::Time
|
4618
|
+
attr_accessor last_modified_date: ::Time
|
4619
|
+
SENSITIVE: []
|
4620
|
+
end
|
4621
|
+
|
4622
|
+
class UpdateDeviceCertificateParams
|
4623
|
+
attr_accessor action: ("DEACTIVATE")
|
4624
|
+
SENSITIVE: []
|
4625
|
+
end
|
4626
|
+
|
4627
|
+
class UpdateDimensionRequest
|
4628
|
+
attr_accessor name: ::String
|
4629
|
+
attr_accessor string_values: ::Array[::String]
|
4630
|
+
SENSITIVE: []
|
4631
|
+
end
|
4632
|
+
|
4633
|
+
class UpdateDimensionResponse
|
4634
|
+
attr_accessor name: ::String
|
4635
|
+
attr_accessor arn: ::String
|
4636
|
+
attr_accessor type: ("TOPIC_FILTER")
|
4637
|
+
attr_accessor string_values: ::Array[::String]
|
4638
|
+
attr_accessor creation_date: ::Time
|
4639
|
+
attr_accessor last_modified_date: ::Time
|
4640
|
+
SENSITIVE: []
|
4641
|
+
end
|
4642
|
+
|
4643
|
+
class UpdateDomainConfigurationRequest
|
4644
|
+
attr_accessor domain_configuration_name: ::String
|
4645
|
+
attr_accessor authorizer_config: Types::AuthorizerConfig
|
4646
|
+
attr_accessor domain_configuration_status: ("ENABLED" | "DISABLED")
|
4647
|
+
attr_accessor remove_authorizer_config: bool
|
4648
|
+
attr_accessor tls_config: Types::TlsConfig
|
4649
|
+
attr_accessor server_certificate_config: Types::ServerCertificateConfig
|
4650
|
+
SENSITIVE: []
|
4651
|
+
end
|
4652
|
+
|
4653
|
+
class UpdateDomainConfigurationResponse
|
4654
|
+
attr_accessor domain_configuration_name: ::String
|
4655
|
+
attr_accessor domain_configuration_arn: ::String
|
4656
|
+
SENSITIVE: []
|
4657
|
+
end
|
4658
|
+
|
4659
|
+
class UpdateDynamicThingGroupRequest
|
4660
|
+
attr_accessor thing_group_name: ::String
|
4661
|
+
attr_accessor thing_group_properties: Types::ThingGroupProperties
|
4662
|
+
attr_accessor expected_version: ::Integer
|
4663
|
+
attr_accessor index_name: ::String
|
4664
|
+
attr_accessor query_string: ::String
|
4665
|
+
attr_accessor query_version: ::String
|
4666
|
+
SENSITIVE: []
|
4667
|
+
end
|
4668
|
+
|
4669
|
+
class UpdateDynamicThingGroupResponse
|
4670
|
+
attr_accessor version: ::Integer
|
4671
|
+
SENSITIVE: []
|
4672
|
+
end
|
4673
|
+
|
4674
|
+
class UpdateEventConfigurationsRequest
|
4675
|
+
attr_accessor event_configurations: ::Hash[("THING" | "THING_GROUP" | "THING_TYPE" | "THING_GROUP_MEMBERSHIP" | "THING_GROUP_HIERARCHY" | "THING_TYPE_ASSOCIATION" | "JOB" | "JOB_EXECUTION" | "POLICY" | "CERTIFICATE" | "CA_CERTIFICATE"), Types::Configuration]
|
4676
|
+
SENSITIVE: []
|
4677
|
+
end
|
4678
|
+
|
4679
|
+
class UpdateEventConfigurationsResponse < Aws::EmptyStructure
|
4680
|
+
end
|
4681
|
+
|
4682
|
+
class UpdateFleetMetricRequest
|
4683
|
+
attr_accessor metric_name: ::String
|
4684
|
+
attr_accessor query_string: ::String
|
4685
|
+
attr_accessor aggregation_type: Types::AggregationType
|
4686
|
+
attr_accessor period: ::Integer
|
4687
|
+
attr_accessor aggregation_field: ::String
|
4688
|
+
attr_accessor description: ::String
|
4689
|
+
attr_accessor query_version: ::String
|
4690
|
+
attr_accessor index_name: ::String
|
4691
|
+
attr_accessor unit: ("Seconds" | "Microseconds" | "Milliseconds" | "Bytes" | "Kilobytes" | "Megabytes" | "Gigabytes" | "Terabytes" | "Bits" | "Kilobits" | "Megabits" | "Gigabits" | "Terabits" | "Percent" | "Count" | "Bytes/Second" | "Kilobytes/Second" | "Megabytes/Second" | "Gigabytes/Second" | "Terabytes/Second" | "Bits/Second" | "Kilobits/Second" | "Megabits/Second" | "Gigabits/Second" | "Terabits/Second" | "Count/Second" | "None")
|
4692
|
+
attr_accessor expected_version: ::Integer
|
4693
|
+
SENSITIVE: []
|
4694
|
+
end
|
4695
|
+
|
4696
|
+
class UpdateIndexingConfigurationRequest
|
4697
|
+
attr_accessor thing_indexing_configuration: Types::ThingIndexingConfiguration
|
4698
|
+
attr_accessor thing_group_indexing_configuration: Types::ThingGroupIndexingConfiguration
|
4699
|
+
SENSITIVE: []
|
4700
|
+
end
|
4701
|
+
|
4702
|
+
class UpdateIndexingConfigurationResponse < Aws::EmptyStructure
|
4703
|
+
end
|
4704
|
+
|
4705
|
+
class UpdateJobRequest
|
4706
|
+
attr_accessor job_id: ::String
|
4707
|
+
attr_accessor description: ::String
|
4708
|
+
attr_accessor presigned_url_config: Types::PresignedUrlConfig
|
4709
|
+
attr_accessor job_executions_rollout_config: Types::JobExecutionsRolloutConfig
|
4710
|
+
attr_accessor abort_config: Types::AbortConfig
|
4711
|
+
attr_accessor timeout_config: Types::TimeoutConfig
|
4712
|
+
attr_accessor namespace_id: ::String
|
4713
|
+
attr_accessor job_executions_retry_config: Types::JobExecutionsRetryConfig
|
4714
|
+
SENSITIVE: []
|
4715
|
+
end
|
4716
|
+
|
4717
|
+
class UpdateMitigationActionRequest
|
4718
|
+
attr_accessor action_name: ::String
|
4719
|
+
attr_accessor role_arn: ::String
|
4720
|
+
attr_accessor action_params: Types::MitigationActionParams
|
4721
|
+
SENSITIVE: []
|
4722
|
+
end
|
4723
|
+
|
4724
|
+
class UpdateMitigationActionResponse
|
4725
|
+
attr_accessor action_arn: ::String
|
4726
|
+
attr_accessor action_id: ::String
|
4727
|
+
SENSITIVE: []
|
4728
|
+
end
|
4729
|
+
|
4730
|
+
class UpdatePackageConfigurationRequest
|
4731
|
+
attr_accessor version_update_by_jobs_config: Types::VersionUpdateByJobsConfig
|
4732
|
+
attr_accessor client_token: ::String
|
4733
|
+
SENSITIVE: []
|
4734
|
+
end
|
4735
|
+
|
4736
|
+
class UpdatePackageConfigurationResponse < Aws::EmptyStructure
|
4737
|
+
end
|
4738
|
+
|
4739
|
+
class UpdatePackageRequest
|
4740
|
+
attr_accessor package_name: ::String
|
4741
|
+
attr_accessor description: ::String
|
4742
|
+
attr_accessor default_version_name: ::String
|
4743
|
+
attr_accessor unset_default_version: bool
|
4744
|
+
attr_accessor client_token: ::String
|
4745
|
+
SENSITIVE: [:description]
|
4746
|
+
end
|
4747
|
+
|
4748
|
+
class UpdatePackageResponse < Aws::EmptyStructure
|
4749
|
+
end
|
4750
|
+
|
4751
|
+
class UpdatePackageVersionRequest
|
4752
|
+
attr_accessor package_name: ::String
|
4753
|
+
attr_accessor version_name: ::String
|
4754
|
+
attr_accessor description: ::String
|
4755
|
+
attr_accessor attributes: ::Hash[::String, ::String]
|
4756
|
+
attr_accessor action: ("PUBLISH" | "DEPRECATE")
|
4757
|
+
attr_accessor client_token: ::String
|
4758
|
+
SENSITIVE: [:description, :attributes]
|
4759
|
+
end
|
4760
|
+
|
4761
|
+
class UpdatePackageVersionResponse < Aws::EmptyStructure
|
4762
|
+
end
|
4763
|
+
|
4764
|
+
class UpdateProvisioningTemplateRequest
|
4765
|
+
attr_accessor template_name: ::String
|
4766
|
+
attr_accessor description: ::String
|
4767
|
+
attr_accessor enabled: bool
|
4768
|
+
attr_accessor default_version_id: ::Integer
|
4769
|
+
attr_accessor provisioning_role_arn: ::String
|
4770
|
+
attr_accessor pre_provisioning_hook: Types::ProvisioningHook
|
4771
|
+
attr_accessor remove_pre_provisioning_hook: bool
|
4772
|
+
SENSITIVE: []
|
4773
|
+
end
|
4774
|
+
|
4775
|
+
class UpdateProvisioningTemplateResponse < Aws::EmptyStructure
|
4776
|
+
end
|
4777
|
+
|
4778
|
+
class UpdateRoleAliasRequest
|
4779
|
+
attr_accessor role_alias: ::String
|
4780
|
+
attr_accessor role_arn: ::String
|
4781
|
+
attr_accessor credential_duration_seconds: ::Integer
|
4782
|
+
SENSITIVE: []
|
4783
|
+
end
|
4784
|
+
|
4785
|
+
class UpdateRoleAliasResponse
|
4786
|
+
attr_accessor role_alias: ::String
|
4787
|
+
attr_accessor role_alias_arn: ::String
|
4788
|
+
SENSITIVE: []
|
4789
|
+
end
|
4790
|
+
|
4791
|
+
class UpdateScheduledAuditRequest
|
4792
|
+
attr_accessor frequency: ("DAILY" | "WEEKLY" | "BIWEEKLY" | "MONTHLY")
|
4793
|
+
attr_accessor day_of_month: ::String
|
4794
|
+
attr_accessor day_of_week: ("SUN" | "MON" | "TUE" | "WED" | "THU" | "FRI" | "SAT")
|
4795
|
+
attr_accessor target_check_names: ::Array[::String]
|
4796
|
+
attr_accessor scheduled_audit_name: ::String
|
4797
|
+
SENSITIVE: []
|
4798
|
+
end
|
4799
|
+
|
4800
|
+
class UpdateScheduledAuditResponse
|
4801
|
+
attr_accessor scheduled_audit_arn: ::String
|
4802
|
+
SENSITIVE: []
|
4803
|
+
end
|
4804
|
+
|
4805
|
+
class UpdateSecurityProfileRequest
|
4806
|
+
attr_accessor security_profile_name: ::String
|
4807
|
+
attr_accessor security_profile_description: ::String
|
4808
|
+
attr_accessor behaviors: ::Array[Types::Behavior]
|
4809
|
+
attr_accessor alert_targets: ::Hash[("SNS"), Types::AlertTarget]
|
4810
|
+
attr_accessor additional_metrics_to_retain: ::Array[::String]
|
4811
|
+
attr_accessor additional_metrics_to_retain_v2: ::Array[Types::MetricToRetain]
|
4812
|
+
attr_accessor delete_behaviors: bool
|
4813
|
+
attr_accessor delete_alert_targets: bool
|
4814
|
+
attr_accessor delete_additional_metrics_to_retain: bool
|
4815
|
+
attr_accessor expected_version: ::Integer
|
4816
|
+
attr_accessor metrics_export_config: Types::MetricsExportConfig
|
4817
|
+
attr_accessor delete_metrics_export_config: bool
|
4818
|
+
SENSITIVE: []
|
4819
|
+
end
|
4820
|
+
|
4821
|
+
class UpdateSecurityProfileResponse
|
4822
|
+
attr_accessor security_profile_name: ::String
|
4823
|
+
attr_accessor security_profile_arn: ::String
|
4824
|
+
attr_accessor security_profile_description: ::String
|
4825
|
+
attr_accessor behaviors: ::Array[Types::Behavior]
|
4826
|
+
attr_accessor alert_targets: ::Hash[("SNS"), Types::AlertTarget]
|
4827
|
+
attr_accessor additional_metrics_to_retain: ::Array[::String]
|
4828
|
+
attr_accessor additional_metrics_to_retain_v2: ::Array[Types::MetricToRetain]
|
4829
|
+
attr_accessor version: ::Integer
|
4830
|
+
attr_accessor creation_date: ::Time
|
4831
|
+
attr_accessor last_modified_date: ::Time
|
4832
|
+
attr_accessor metrics_export_config: Types::MetricsExportConfig
|
4833
|
+
SENSITIVE: []
|
4834
|
+
end
|
4835
|
+
|
4836
|
+
class UpdateStreamRequest
|
4837
|
+
attr_accessor stream_id: ::String
|
4838
|
+
attr_accessor description: ::String
|
4839
|
+
attr_accessor files: ::Array[Types::StreamFile]
|
4840
|
+
attr_accessor role_arn: ::String
|
4841
|
+
SENSITIVE: []
|
4842
|
+
end
|
4843
|
+
|
4844
|
+
class UpdateStreamResponse
|
4845
|
+
attr_accessor stream_id: ::String
|
4846
|
+
attr_accessor stream_arn: ::String
|
4847
|
+
attr_accessor description: ::String
|
4848
|
+
attr_accessor stream_version: ::Integer
|
4849
|
+
SENSITIVE: []
|
4850
|
+
end
|
4851
|
+
|
4852
|
+
class UpdateThingGroupRequest
|
4853
|
+
attr_accessor thing_group_name: ::String
|
4854
|
+
attr_accessor thing_group_properties: Types::ThingGroupProperties
|
4855
|
+
attr_accessor expected_version: ::Integer
|
4856
|
+
SENSITIVE: []
|
4857
|
+
end
|
4858
|
+
|
4859
|
+
class UpdateThingGroupResponse
|
4860
|
+
attr_accessor version: ::Integer
|
4861
|
+
SENSITIVE: []
|
4862
|
+
end
|
4863
|
+
|
4864
|
+
class UpdateThingGroupsForThingRequest
|
4865
|
+
attr_accessor thing_name: ::String
|
4866
|
+
attr_accessor thing_groups_to_add: ::Array[::String]
|
4867
|
+
attr_accessor thing_groups_to_remove: ::Array[::String]
|
4868
|
+
attr_accessor override_dynamic_groups: bool
|
4869
|
+
SENSITIVE: []
|
4870
|
+
end
|
4871
|
+
|
4872
|
+
class UpdateThingGroupsForThingResponse < Aws::EmptyStructure
|
4873
|
+
end
|
4874
|
+
|
4875
|
+
class UpdateThingRequest
|
4876
|
+
attr_accessor thing_name: ::String
|
4877
|
+
attr_accessor thing_type_name: ::String
|
4878
|
+
attr_accessor attribute_payload: Types::AttributePayload
|
4879
|
+
attr_accessor expected_version: ::Integer
|
4880
|
+
attr_accessor remove_thing_type: bool
|
4881
|
+
SENSITIVE: []
|
4882
|
+
end
|
4883
|
+
|
4884
|
+
class UpdateThingResponse < Aws::EmptyStructure
|
4885
|
+
end
|
4886
|
+
|
4887
|
+
class UpdateTopicRuleDestinationRequest
|
4888
|
+
attr_accessor arn: ::String
|
4889
|
+
attr_accessor status: ("ENABLED" | "IN_PROGRESS" | "DISABLED" | "ERROR" | "DELETING")
|
4890
|
+
SENSITIVE: []
|
4891
|
+
end
|
4892
|
+
|
4893
|
+
class UpdateTopicRuleDestinationResponse < Aws::EmptyStructure
|
4894
|
+
end
|
4895
|
+
|
4896
|
+
class UserProperty
|
4897
|
+
attr_accessor key: ::String
|
4898
|
+
attr_accessor value: ::String
|
4899
|
+
SENSITIVE: []
|
4900
|
+
end
|
4901
|
+
|
4902
|
+
class ValidateSecurityProfileBehaviorsRequest
|
4903
|
+
attr_accessor behaviors: ::Array[Types::Behavior]
|
4904
|
+
SENSITIVE: []
|
4905
|
+
end
|
4906
|
+
|
4907
|
+
class ValidateSecurityProfileBehaviorsResponse
|
4908
|
+
attr_accessor valid: bool
|
4909
|
+
attr_accessor validation_errors: ::Array[Types::ValidationError]
|
4910
|
+
SENSITIVE: []
|
4911
|
+
end
|
4912
|
+
|
4913
|
+
class ValidationError
|
4914
|
+
attr_accessor error_message: ::String
|
4915
|
+
SENSITIVE: []
|
4916
|
+
end
|
4917
|
+
|
4918
|
+
class ValidationException
|
4919
|
+
attr_accessor message: ::String
|
4920
|
+
SENSITIVE: []
|
4921
|
+
end
|
4922
|
+
|
4923
|
+
class VersionConflictException
|
4924
|
+
attr_accessor message: ::String
|
4925
|
+
SENSITIVE: []
|
4926
|
+
end
|
4927
|
+
|
4928
|
+
class VersionUpdateByJobsConfig
|
4929
|
+
attr_accessor enabled: bool
|
4930
|
+
attr_accessor role_arn: ::String
|
4931
|
+
SENSITIVE: []
|
4932
|
+
end
|
4933
|
+
|
4934
|
+
class VersionsLimitExceededException
|
4935
|
+
attr_accessor message: ::String
|
4936
|
+
SENSITIVE: []
|
4937
|
+
end
|
4938
|
+
|
4939
|
+
class ViolationEvent
|
4940
|
+
attr_accessor violation_id: ::String
|
4941
|
+
attr_accessor thing_name: ::String
|
4942
|
+
attr_accessor security_profile_name: ::String
|
4943
|
+
attr_accessor behavior: Types::Behavior
|
4944
|
+
attr_accessor metric_value: Types::MetricValue
|
4945
|
+
attr_accessor violation_event_additional_info: Types::ViolationEventAdditionalInfo
|
4946
|
+
attr_accessor violation_event_type: ("in-alarm" | "alarm-cleared" | "alarm-invalidated")
|
4947
|
+
attr_accessor verification_state: ("FALSE_POSITIVE" | "BENIGN_POSITIVE" | "TRUE_POSITIVE" | "UNKNOWN")
|
4948
|
+
attr_accessor verification_state_description: ::String
|
4949
|
+
attr_accessor violation_event_time: ::Time
|
4950
|
+
SENSITIVE: []
|
4951
|
+
end
|
4952
|
+
|
4953
|
+
class ViolationEventAdditionalInfo
|
4954
|
+
attr_accessor confidence_level: ("LOW" | "MEDIUM" | "HIGH")
|
4955
|
+
SENSITIVE: []
|
4956
|
+
end
|
4957
|
+
|
4958
|
+
class ViolationEventOccurrenceRange
|
4959
|
+
attr_accessor start_time: ::Time
|
4960
|
+
attr_accessor end_time: ::Time
|
4961
|
+
SENSITIVE: []
|
4962
|
+
end
|
4963
|
+
|
4964
|
+
class VpcDestinationConfiguration
|
4965
|
+
attr_accessor subnet_ids: ::Array[::String]
|
4966
|
+
attr_accessor security_groups: ::Array[::String]
|
4967
|
+
attr_accessor vpc_id: ::String
|
4968
|
+
attr_accessor role_arn: ::String
|
4969
|
+
SENSITIVE: []
|
4970
|
+
end
|
4971
|
+
|
4972
|
+
class VpcDestinationProperties
|
4973
|
+
attr_accessor subnet_ids: ::Array[::String]
|
4974
|
+
attr_accessor security_groups: ::Array[::String]
|
4975
|
+
attr_accessor vpc_id: ::String
|
4976
|
+
attr_accessor role_arn: ::String
|
4977
|
+
SENSITIVE: []
|
4978
|
+
end
|
4979
|
+
|
4980
|
+
class VpcDestinationSummary
|
4981
|
+
attr_accessor subnet_ids: ::Array[::String]
|
4982
|
+
attr_accessor security_groups: ::Array[::String]
|
4983
|
+
attr_accessor vpc_id: ::String
|
4984
|
+
attr_accessor role_arn: ::String
|
4985
|
+
SENSITIVE: []
|
4986
|
+
end
|
4987
|
+
end
|
4988
|
+
end
|