aws-sdk-greengrass 1.0.0.rc1

Sign up to get free protection for your applications and to get access to all the features.
File without changes
@@ -0,0 +1,14 @@
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/master/CONTRIBUTING.md
5
+ #
6
+ # WARNING ABOUT GENERATED CODE
7
+
8
+ module Aws::Greengrass
9
+ module Errors
10
+
11
+ extend Aws::Errors::DynamicErrors
12
+
13
+ end
14
+ end
@@ -0,0 +1,23 @@
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/master/CONTRIBUTING.md
5
+ #
6
+ # WARNING ABOUT GENERATED CODE
7
+
8
+ module Aws::Greengrass
9
+ class Resource
10
+
11
+ # @param options ({})
12
+ # @option options [Client] :client
13
+ def initialize(options = {})
14
+ @client = options[:client] || Client.new(options)
15
+ end
16
+
17
+ # @return [Client]
18
+ def client
19
+ @client
20
+ end
21
+
22
+ end
23
+ end
@@ -0,0 +1,3534 @@
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/master/CONTRIBUTING.md
5
+ #
6
+ # WARNING ABOUT GENERATED CODE
7
+
8
+ module Aws::Greengrass
9
+ module Types
10
+
11
+ # @note When making an API call, you may pass AssociateRoleToGroupRequest
12
+ # data as a hash:
13
+ #
14
+ # {
15
+ # group_id: "__string", # required
16
+ # role_arn: "__string",
17
+ # }
18
+ #
19
+ # @!attribute [rw] group_id
20
+ # @return [String]
21
+ #
22
+ # @!attribute [rw] role_arn
23
+ # Role arn you wish to associate with this group.
24
+ # @return [String]
25
+ #
26
+ # @see http://docs.aws.amazon.com/goto/WebAPI/greengrass-2017-06-07/AssociateRoleToGroupRequest AWS API Documentation
27
+ #
28
+ class AssociateRoleToGroupRequest < Struct.new(
29
+ :group_id,
30
+ :role_arn)
31
+ include Aws::Structure
32
+ end
33
+
34
+ # @!attribute [rw] associated_at
35
+ # Time the role arn was associated to your group.
36
+ # @return [String]
37
+ #
38
+ # @see http://docs.aws.amazon.com/goto/WebAPI/greengrass-2017-06-07/AssociateRoleToGroupResponse AWS API Documentation
39
+ #
40
+ class AssociateRoleToGroupResponse < Struct.new(
41
+ :associated_at)
42
+ include Aws::Structure
43
+ end
44
+
45
+ # @note When making an API call, you may pass AssociateServiceRoleToAccountRequest
46
+ # data as a hash:
47
+ #
48
+ # {
49
+ # role_arn: "__string",
50
+ # }
51
+ #
52
+ # @!attribute [rw] role_arn
53
+ # Role arn you wish to associate with this account.
54
+ # @return [String]
55
+ #
56
+ # @see http://docs.aws.amazon.com/goto/WebAPI/greengrass-2017-06-07/AssociateServiceRoleToAccountRequest AWS API Documentation
57
+ #
58
+ class AssociateServiceRoleToAccountRequest < Struct.new(
59
+ :role_arn)
60
+ include Aws::Structure
61
+ end
62
+
63
+ # @!attribute [rw] associated_at
64
+ # Time when the service role was associated to the account.
65
+ # @return [String]
66
+ #
67
+ # @see http://docs.aws.amazon.com/goto/WebAPI/greengrass-2017-06-07/AssociateServiceRoleToAccountResponse AWS API Documentation
68
+ #
69
+ class AssociateServiceRoleToAccountResponse < Struct.new(
70
+ :associated_at)
71
+ include Aws::Structure
72
+ end
73
+
74
+ # Connectivity Info
75
+ #
76
+ # @note When making an API call, you may pass ConnectivityInfo
77
+ # data as a hash:
78
+ #
79
+ # {
80
+ # host_address: "__string",
81
+ # id: "__string",
82
+ # metadata: "__string",
83
+ # port_number: 1,
84
+ # }
85
+ #
86
+ # @!attribute [rw] host_address
87
+ # Endpoint for the GGC. Can be an IP address or DNS.
88
+ # @return [String]
89
+ #
90
+ # @!attribute [rw] id
91
+ # Element Id for this entry in the list.
92
+ # @return [String]
93
+ #
94
+ # @!attribute [rw] metadata
95
+ # Metadata for this endpoint.
96
+ # @return [String]
97
+ #
98
+ # @!attribute [rw] port_number
99
+ # Port of the GGC. Usually 8883.
100
+ # @return [Integer]
101
+ #
102
+ # @see http://docs.aws.amazon.com/goto/WebAPI/greengrass-2017-06-07/ConnectivityInfo AWS API Documentation
103
+ #
104
+ class ConnectivityInfo < Struct.new(
105
+ :host_address,
106
+ :id,
107
+ :metadata,
108
+ :port_number)
109
+ include Aws::Structure
110
+ end
111
+
112
+ # Information on the core
113
+ #
114
+ # @note When making an API call, you may pass Core
115
+ # data as a hash:
116
+ #
117
+ # {
118
+ # certificate_arn: "__string",
119
+ # id: "__string",
120
+ # sync_shadow: false,
121
+ # thing_arn: "__string",
122
+ # }
123
+ #
124
+ # @!attribute [rw] certificate_arn
125
+ # Certificate arn of the core.
126
+ # @return [String]
127
+ #
128
+ # @!attribute [rw] id
129
+ # Element Id for this entry in the list.
130
+ # @return [String]
131
+ #
132
+ # @!attribute [rw] sync_shadow
133
+ # If true, the local shadow value automatically syncs with the
134
+ # cloud's shadow state.
135
+ # @return [Boolean]
136
+ #
137
+ # @!attribute [rw] thing_arn
138
+ # Thing arn of the core.
139
+ # @return [String]
140
+ #
141
+ # @see http://docs.aws.amazon.com/goto/WebAPI/greengrass-2017-06-07/Core AWS API Documentation
142
+ #
143
+ class Core < Struct.new(
144
+ :certificate_arn,
145
+ :id,
146
+ :sync_shadow,
147
+ :thing_arn)
148
+ include Aws::Structure
149
+ end
150
+
151
+ # Information on core definition version
152
+ #
153
+ # @note When making an API call, you may pass CoreDefinitionVersion
154
+ # data as a hash:
155
+ #
156
+ # {
157
+ # cores: [
158
+ # {
159
+ # certificate_arn: "__string",
160
+ # id: "__string",
161
+ # sync_shadow: false,
162
+ # thing_arn: "__string",
163
+ # },
164
+ # ],
165
+ # }
166
+ #
167
+ # @!attribute [rw] cores
168
+ # Cores in the definition version.
169
+ # @return [Array<Types::Core>]
170
+ #
171
+ # @see http://docs.aws.amazon.com/goto/WebAPI/greengrass-2017-06-07/CoreDefinitionVersion AWS API Documentation
172
+ #
173
+ class CoreDefinitionVersion < Struct.new(
174
+ :cores)
175
+ include Aws::Structure
176
+ end
177
+
178
+ # @note When making an API call, you may pass CreateCoreDefinitionRequest
179
+ # data as a hash:
180
+ #
181
+ # {
182
+ # amzn_client_token: "__string",
183
+ # initial_version: {
184
+ # cores: [
185
+ # {
186
+ # certificate_arn: "__string",
187
+ # id: "__string",
188
+ # sync_shadow: false,
189
+ # thing_arn: "__string",
190
+ # },
191
+ # ],
192
+ # },
193
+ # name: "__string",
194
+ # }
195
+ #
196
+ # @!attribute [rw] amzn_client_token
197
+ # @return [String]
198
+ #
199
+ # @!attribute [rw] initial_version
200
+ # Information on core definition version
201
+ # @return [Types::CoreDefinitionVersion]
202
+ #
203
+ # @!attribute [rw] name
204
+ # @return [String]
205
+ #
206
+ # @see http://docs.aws.amazon.com/goto/WebAPI/greengrass-2017-06-07/CreateCoreDefinitionRequest AWS API Documentation
207
+ #
208
+ class CreateCoreDefinitionRequest < Struct.new(
209
+ :amzn_client_token,
210
+ :initial_version,
211
+ :name)
212
+ include Aws::Structure
213
+ end
214
+
215
+ # @!attribute [rw] arn
216
+ # @return [String]
217
+ #
218
+ # @!attribute [rw] creation_timestamp
219
+ # @return [String]
220
+ #
221
+ # @!attribute [rw] id
222
+ # @return [String]
223
+ #
224
+ # @!attribute [rw] last_updated_timestamp
225
+ # @return [String]
226
+ #
227
+ # @!attribute [rw] latest_version
228
+ # @return [String]
229
+ #
230
+ # @!attribute [rw] latest_version_arn
231
+ # @return [String]
232
+ #
233
+ # @!attribute [rw] name
234
+ # @return [String]
235
+ #
236
+ # @see http://docs.aws.amazon.com/goto/WebAPI/greengrass-2017-06-07/CreateCoreDefinitionResponse AWS API Documentation
237
+ #
238
+ class CreateCoreDefinitionResponse < Struct.new(
239
+ :arn,
240
+ :creation_timestamp,
241
+ :id,
242
+ :last_updated_timestamp,
243
+ :latest_version,
244
+ :latest_version_arn,
245
+ :name)
246
+ include Aws::Structure
247
+ end
248
+
249
+ # @note When making an API call, you may pass CreateCoreDefinitionVersionRequest
250
+ # data as a hash:
251
+ #
252
+ # {
253
+ # amzn_client_token: "__string",
254
+ # core_definition_id: "__string", # required
255
+ # cores: [
256
+ # {
257
+ # certificate_arn: "__string",
258
+ # id: "__string",
259
+ # sync_shadow: false,
260
+ # thing_arn: "__string",
261
+ # },
262
+ # ],
263
+ # }
264
+ #
265
+ # @!attribute [rw] amzn_client_token
266
+ # @return [String]
267
+ #
268
+ # @!attribute [rw] core_definition_id
269
+ # @return [String]
270
+ #
271
+ # @!attribute [rw] cores
272
+ # @return [Array<Types::Core>]
273
+ #
274
+ # @see http://docs.aws.amazon.com/goto/WebAPI/greengrass-2017-06-07/CreateCoreDefinitionVersionRequest AWS API Documentation
275
+ #
276
+ class CreateCoreDefinitionVersionRequest < Struct.new(
277
+ :amzn_client_token,
278
+ :core_definition_id,
279
+ :cores)
280
+ include Aws::Structure
281
+ end
282
+
283
+ # @!attribute [rw] arn
284
+ # @return [String]
285
+ #
286
+ # @!attribute [rw] creation_timestamp
287
+ # @return [String]
288
+ #
289
+ # @!attribute [rw] id
290
+ # @return [String]
291
+ #
292
+ # @!attribute [rw] version
293
+ # @return [String]
294
+ #
295
+ # @see http://docs.aws.amazon.com/goto/WebAPI/greengrass-2017-06-07/CreateCoreDefinitionVersionResponse AWS API Documentation
296
+ #
297
+ class CreateCoreDefinitionVersionResponse < Struct.new(
298
+ :arn,
299
+ :creation_timestamp,
300
+ :id,
301
+ :version)
302
+ include Aws::Structure
303
+ end
304
+
305
+ # Information on Deployment
306
+ #
307
+ # @note When making an API call, you may pass CreateDeploymentRequest
308
+ # data as a hash:
309
+ #
310
+ # {
311
+ # amzn_client_token: "__string",
312
+ # deployment_id: "__string",
313
+ # deployment_type: "NewDeployment", # accepts NewDeployment, Redeployment
314
+ # group_id: "__string", # required
315
+ # group_version_id: "__string",
316
+ # }
317
+ #
318
+ # @!attribute [rw] amzn_client_token
319
+ # @return [String]
320
+ #
321
+ # @!attribute [rw] deployment_id
322
+ # Id of the deployment if you wish to redeploy a previous deployment.
323
+ # @return [String]
324
+ #
325
+ # @!attribute [rw] deployment_type
326
+ # Type of deployment
327
+ # @return [String]
328
+ #
329
+ # @!attribute [rw] group_id
330
+ # @return [String]
331
+ #
332
+ # @!attribute [rw] group_version_id
333
+ # Group Version you wish to deploy.
334
+ # @return [String]
335
+ #
336
+ # @see http://docs.aws.amazon.com/goto/WebAPI/greengrass-2017-06-07/CreateDeploymentRequest AWS API Documentation
337
+ #
338
+ class CreateDeploymentRequest < Struct.new(
339
+ :amzn_client_token,
340
+ :deployment_id,
341
+ :deployment_type,
342
+ :group_id,
343
+ :group_version_id)
344
+ include Aws::Structure
345
+ end
346
+
347
+ # @!attribute [rw] deployment_arn
348
+ # Arn of the deployment.
349
+ # @return [String]
350
+ #
351
+ # @!attribute [rw] deployment_id
352
+ # Id of the deployment.
353
+ # @return [String]
354
+ #
355
+ # @see http://docs.aws.amazon.com/goto/WebAPI/greengrass-2017-06-07/CreateDeploymentResponse AWS API Documentation
356
+ #
357
+ class CreateDeploymentResponse < Struct.new(
358
+ :deployment_arn,
359
+ :deployment_id)
360
+ include Aws::Structure
361
+ end
362
+
363
+ # @note When making an API call, you may pass CreateDeviceDefinitionRequest
364
+ # data as a hash:
365
+ #
366
+ # {
367
+ # amzn_client_token: "__string",
368
+ # initial_version: {
369
+ # devices: [
370
+ # {
371
+ # certificate_arn: "__string",
372
+ # id: "__string",
373
+ # sync_shadow: false,
374
+ # thing_arn: "__string",
375
+ # },
376
+ # ],
377
+ # },
378
+ # name: "__string",
379
+ # }
380
+ #
381
+ # @!attribute [rw] amzn_client_token
382
+ # @return [String]
383
+ #
384
+ # @!attribute [rw] initial_version
385
+ # Information on device definition version
386
+ # @return [Types::DeviceDefinitionVersion]
387
+ #
388
+ # @!attribute [rw] name
389
+ # @return [String]
390
+ #
391
+ # @see http://docs.aws.amazon.com/goto/WebAPI/greengrass-2017-06-07/CreateDeviceDefinitionRequest AWS API Documentation
392
+ #
393
+ class CreateDeviceDefinitionRequest < Struct.new(
394
+ :amzn_client_token,
395
+ :initial_version,
396
+ :name)
397
+ include Aws::Structure
398
+ end
399
+
400
+ # @!attribute [rw] arn
401
+ # @return [String]
402
+ #
403
+ # @!attribute [rw] creation_timestamp
404
+ # @return [String]
405
+ #
406
+ # @!attribute [rw] id
407
+ # @return [String]
408
+ #
409
+ # @!attribute [rw] last_updated_timestamp
410
+ # @return [String]
411
+ #
412
+ # @!attribute [rw] latest_version
413
+ # @return [String]
414
+ #
415
+ # @!attribute [rw] latest_version_arn
416
+ # @return [String]
417
+ #
418
+ # @!attribute [rw] name
419
+ # @return [String]
420
+ #
421
+ # @see http://docs.aws.amazon.com/goto/WebAPI/greengrass-2017-06-07/CreateDeviceDefinitionResponse AWS API Documentation
422
+ #
423
+ class CreateDeviceDefinitionResponse < Struct.new(
424
+ :arn,
425
+ :creation_timestamp,
426
+ :id,
427
+ :last_updated_timestamp,
428
+ :latest_version,
429
+ :latest_version_arn,
430
+ :name)
431
+ include Aws::Structure
432
+ end
433
+
434
+ # @note When making an API call, you may pass CreateDeviceDefinitionVersionRequest
435
+ # data as a hash:
436
+ #
437
+ # {
438
+ # amzn_client_token: "__string",
439
+ # device_definition_id: "__string", # required
440
+ # devices: [
441
+ # {
442
+ # certificate_arn: "__string",
443
+ # id: "__string",
444
+ # sync_shadow: false,
445
+ # thing_arn: "__string",
446
+ # },
447
+ # ],
448
+ # }
449
+ #
450
+ # @!attribute [rw] amzn_client_token
451
+ # @return [String]
452
+ #
453
+ # @!attribute [rw] device_definition_id
454
+ # @return [String]
455
+ #
456
+ # @!attribute [rw] devices
457
+ # @return [Array<Types::Device>]
458
+ #
459
+ # @see http://docs.aws.amazon.com/goto/WebAPI/greengrass-2017-06-07/CreateDeviceDefinitionVersionRequest AWS API Documentation
460
+ #
461
+ class CreateDeviceDefinitionVersionRequest < Struct.new(
462
+ :amzn_client_token,
463
+ :device_definition_id,
464
+ :devices)
465
+ include Aws::Structure
466
+ end
467
+
468
+ # @!attribute [rw] arn
469
+ # @return [String]
470
+ #
471
+ # @!attribute [rw] creation_timestamp
472
+ # @return [String]
473
+ #
474
+ # @!attribute [rw] id
475
+ # @return [String]
476
+ #
477
+ # @!attribute [rw] version
478
+ # @return [String]
479
+ #
480
+ # @see http://docs.aws.amazon.com/goto/WebAPI/greengrass-2017-06-07/CreateDeviceDefinitionVersionResponse AWS API Documentation
481
+ #
482
+ class CreateDeviceDefinitionVersionResponse < Struct.new(
483
+ :arn,
484
+ :creation_timestamp,
485
+ :id,
486
+ :version)
487
+ include Aws::Structure
488
+ end
489
+
490
+ # @note When making an API call, you may pass CreateFunctionDefinitionRequest
491
+ # data as a hash:
492
+ #
493
+ # {
494
+ # amzn_client_token: "__string",
495
+ # initial_version: {
496
+ # functions: [
497
+ # {
498
+ # function_arn: "__string",
499
+ # function_configuration: {
500
+ # environment: {
501
+ # variables: {
502
+ # "__string" => "__string",
503
+ # },
504
+ # },
505
+ # exec_args: "__string",
506
+ # executable: "__string",
507
+ # memory_size: 1,
508
+ # pinned: false,
509
+ # timeout: 1,
510
+ # },
511
+ # id: "__string",
512
+ # },
513
+ # ],
514
+ # },
515
+ # name: "__string",
516
+ # }
517
+ #
518
+ # @!attribute [rw] amzn_client_token
519
+ # @return [String]
520
+ #
521
+ # @!attribute [rw] initial_version
522
+ # Information on the function definition version
523
+ # @return [Types::FunctionDefinitionVersion]
524
+ #
525
+ # @!attribute [rw] name
526
+ # @return [String]
527
+ #
528
+ # @see http://docs.aws.amazon.com/goto/WebAPI/greengrass-2017-06-07/CreateFunctionDefinitionRequest AWS API Documentation
529
+ #
530
+ class CreateFunctionDefinitionRequest < Struct.new(
531
+ :amzn_client_token,
532
+ :initial_version,
533
+ :name)
534
+ include Aws::Structure
535
+ end
536
+
537
+ # @!attribute [rw] arn
538
+ # @return [String]
539
+ #
540
+ # @!attribute [rw] creation_timestamp
541
+ # @return [String]
542
+ #
543
+ # @!attribute [rw] id
544
+ # @return [String]
545
+ #
546
+ # @!attribute [rw] last_updated_timestamp
547
+ # @return [String]
548
+ #
549
+ # @!attribute [rw] latest_version
550
+ # @return [String]
551
+ #
552
+ # @!attribute [rw] latest_version_arn
553
+ # @return [String]
554
+ #
555
+ # @!attribute [rw] name
556
+ # @return [String]
557
+ #
558
+ # @see http://docs.aws.amazon.com/goto/WebAPI/greengrass-2017-06-07/CreateFunctionDefinitionResponse AWS API Documentation
559
+ #
560
+ class CreateFunctionDefinitionResponse < Struct.new(
561
+ :arn,
562
+ :creation_timestamp,
563
+ :id,
564
+ :last_updated_timestamp,
565
+ :latest_version,
566
+ :latest_version_arn,
567
+ :name)
568
+ include Aws::Structure
569
+ end
570
+
571
+ # @note When making an API call, you may pass CreateFunctionDefinitionVersionRequest
572
+ # data as a hash:
573
+ #
574
+ # {
575
+ # amzn_client_token: "__string",
576
+ # function_definition_id: "__string", # required
577
+ # functions: [
578
+ # {
579
+ # function_arn: "__string",
580
+ # function_configuration: {
581
+ # environment: {
582
+ # variables: {
583
+ # "__string" => "__string",
584
+ # },
585
+ # },
586
+ # exec_args: "__string",
587
+ # executable: "__string",
588
+ # memory_size: 1,
589
+ # pinned: false,
590
+ # timeout: 1,
591
+ # },
592
+ # id: "__string",
593
+ # },
594
+ # ],
595
+ # }
596
+ #
597
+ # @!attribute [rw] amzn_client_token
598
+ # @return [String]
599
+ #
600
+ # @!attribute [rw] function_definition_id
601
+ # @return [String]
602
+ #
603
+ # @!attribute [rw] functions
604
+ # @return [Array<Types::Function>]
605
+ #
606
+ # @see http://docs.aws.amazon.com/goto/WebAPI/greengrass-2017-06-07/CreateFunctionDefinitionVersionRequest AWS API Documentation
607
+ #
608
+ class CreateFunctionDefinitionVersionRequest < Struct.new(
609
+ :amzn_client_token,
610
+ :function_definition_id,
611
+ :functions)
612
+ include Aws::Structure
613
+ end
614
+
615
+ # @!attribute [rw] arn
616
+ # @return [String]
617
+ #
618
+ # @!attribute [rw] creation_timestamp
619
+ # @return [String]
620
+ #
621
+ # @!attribute [rw] id
622
+ # @return [String]
623
+ #
624
+ # @!attribute [rw] version
625
+ # @return [String]
626
+ #
627
+ # @see http://docs.aws.amazon.com/goto/WebAPI/greengrass-2017-06-07/CreateFunctionDefinitionVersionResponse AWS API Documentation
628
+ #
629
+ class CreateFunctionDefinitionVersionResponse < Struct.new(
630
+ :arn,
631
+ :creation_timestamp,
632
+ :id,
633
+ :version)
634
+ include Aws::Structure
635
+ end
636
+
637
+ # @note When making an API call, you may pass CreateGroupCertificateAuthorityRequest
638
+ # data as a hash:
639
+ #
640
+ # {
641
+ # amzn_client_token: "__string",
642
+ # group_id: "__string", # required
643
+ # }
644
+ #
645
+ # @!attribute [rw] amzn_client_token
646
+ # @return [String]
647
+ #
648
+ # @!attribute [rw] group_id
649
+ # @return [String]
650
+ #
651
+ # @see http://docs.aws.amazon.com/goto/WebAPI/greengrass-2017-06-07/CreateGroupCertificateAuthorityRequest AWS API Documentation
652
+ #
653
+ class CreateGroupCertificateAuthorityRequest < Struct.new(
654
+ :amzn_client_token,
655
+ :group_id)
656
+ include Aws::Structure
657
+ end
658
+
659
+ # @!attribute [rw] group_certificate_authority_arn
660
+ # Arn of the group certificate authority.
661
+ # @return [String]
662
+ #
663
+ # @see http://docs.aws.amazon.com/goto/WebAPI/greengrass-2017-06-07/CreateGroupCertificateAuthorityResponse AWS API Documentation
664
+ #
665
+ class CreateGroupCertificateAuthorityResponse < Struct.new(
666
+ :group_certificate_authority_arn)
667
+ include Aws::Structure
668
+ end
669
+
670
+ # @note When making an API call, you may pass CreateGroupRequest
671
+ # data as a hash:
672
+ #
673
+ # {
674
+ # amzn_client_token: "__string",
675
+ # initial_version: {
676
+ # core_definition_version_arn: "__string",
677
+ # device_definition_version_arn: "__string",
678
+ # function_definition_version_arn: "__string",
679
+ # logger_definition_version_arn: "__string",
680
+ # subscription_definition_version_arn: "__string",
681
+ # },
682
+ # name: "__string",
683
+ # }
684
+ #
685
+ # @!attribute [rw] amzn_client_token
686
+ # @return [String]
687
+ #
688
+ # @!attribute [rw] initial_version
689
+ # Information on group version
690
+ # @return [Types::GroupVersion]
691
+ #
692
+ # @!attribute [rw] name
693
+ # @return [String]
694
+ #
695
+ # @see http://docs.aws.amazon.com/goto/WebAPI/greengrass-2017-06-07/CreateGroupRequest AWS API Documentation
696
+ #
697
+ class CreateGroupRequest < Struct.new(
698
+ :amzn_client_token,
699
+ :initial_version,
700
+ :name)
701
+ include Aws::Structure
702
+ end
703
+
704
+ # @!attribute [rw] arn
705
+ # @return [String]
706
+ #
707
+ # @!attribute [rw] creation_timestamp
708
+ # @return [String]
709
+ #
710
+ # @!attribute [rw] id
711
+ # @return [String]
712
+ #
713
+ # @!attribute [rw] last_updated_timestamp
714
+ # @return [String]
715
+ #
716
+ # @!attribute [rw] latest_version
717
+ # @return [String]
718
+ #
719
+ # @!attribute [rw] latest_version_arn
720
+ # @return [String]
721
+ #
722
+ # @!attribute [rw] name
723
+ # @return [String]
724
+ #
725
+ # @see http://docs.aws.amazon.com/goto/WebAPI/greengrass-2017-06-07/CreateGroupResponse AWS API Documentation
726
+ #
727
+ class CreateGroupResponse < Struct.new(
728
+ :arn,
729
+ :creation_timestamp,
730
+ :id,
731
+ :last_updated_timestamp,
732
+ :latest_version,
733
+ :latest_version_arn,
734
+ :name)
735
+ include Aws::Structure
736
+ end
737
+
738
+ # @note When making an API call, you may pass CreateGroupVersionRequest
739
+ # data as a hash:
740
+ #
741
+ # {
742
+ # amzn_client_token: "__string",
743
+ # core_definition_version_arn: "__string",
744
+ # device_definition_version_arn: "__string",
745
+ # function_definition_version_arn: "__string",
746
+ # group_id: "__string", # required
747
+ # logger_definition_version_arn: "__string",
748
+ # subscription_definition_version_arn: "__string",
749
+ # }
750
+ #
751
+ # @!attribute [rw] amzn_client_token
752
+ # @return [String]
753
+ #
754
+ # @!attribute [rw] core_definition_version_arn
755
+ # @return [String]
756
+ #
757
+ # @!attribute [rw] device_definition_version_arn
758
+ # @return [String]
759
+ #
760
+ # @!attribute [rw] function_definition_version_arn
761
+ # @return [String]
762
+ #
763
+ # @!attribute [rw] group_id
764
+ # @return [String]
765
+ #
766
+ # @!attribute [rw] logger_definition_version_arn
767
+ # @return [String]
768
+ #
769
+ # @!attribute [rw] subscription_definition_version_arn
770
+ # @return [String]
771
+ #
772
+ # @see http://docs.aws.amazon.com/goto/WebAPI/greengrass-2017-06-07/CreateGroupVersionRequest AWS API Documentation
773
+ #
774
+ class CreateGroupVersionRequest < Struct.new(
775
+ :amzn_client_token,
776
+ :core_definition_version_arn,
777
+ :device_definition_version_arn,
778
+ :function_definition_version_arn,
779
+ :group_id,
780
+ :logger_definition_version_arn,
781
+ :subscription_definition_version_arn)
782
+ include Aws::Structure
783
+ end
784
+
785
+ # @!attribute [rw] arn
786
+ # @return [String]
787
+ #
788
+ # @!attribute [rw] creation_timestamp
789
+ # @return [String]
790
+ #
791
+ # @!attribute [rw] id
792
+ # @return [String]
793
+ #
794
+ # @!attribute [rw] version
795
+ # @return [String]
796
+ #
797
+ # @see http://docs.aws.amazon.com/goto/WebAPI/greengrass-2017-06-07/CreateGroupVersionResponse AWS API Documentation
798
+ #
799
+ class CreateGroupVersionResponse < Struct.new(
800
+ :arn,
801
+ :creation_timestamp,
802
+ :id,
803
+ :version)
804
+ include Aws::Structure
805
+ end
806
+
807
+ # @note When making an API call, you may pass CreateLoggerDefinitionRequest
808
+ # data as a hash:
809
+ #
810
+ # {
811
+ # amzn_client_token: "__string",
812
+ # initial_version: {
813
+ # loggers: [
814
+ # {
815
+ # component: "GreengrassSystem", # accepts GreengrassSystem, Lambda
816
+ # id: "__string",
817
+ # level: "DEBUG", # accepts DEBUG, INFO, WARN, ERROR, FATAL
818
+ # space: 1,
819
+ # type: "FileSystem", # accepts FileSystem, AWSCloudWatch
820
+ # },
821
+ # ],
822
+ # },
823
+ # name: "__string",
824
+ # }
825
+ #
826
+ # @!attribute [rw] amzn_client_token
827
+ # @return [String]
828
+ #
829
+ # @!attribute [rw] initial_version
830
+ # Information on logger definition version
831
+ # @return [Types::LoggerDefinitionVersion]
832
+ #
833
+ # @!attribute [rw] name
834
+ # @return [String]
835
+ #
836
+ # @see http://docs.aws.amazon.com/goto/WebAPI/greengrass-2017-06-07/CreateLoggerDefinitionRequest AWS API Documentation
837
+ #
838
+ class CreateLoggerDefinitionRequest < Struct.new(
839
+ :amzn_client_token,
840
+ :initial_version,
841
+ :name)
842
+ include Aws::Structure
843
+ end
844
+
845
+ # @!attribute [rw] arn
846
+ # @return [String]
847
+ #
848
+ # @!attribute [rw] creation_timestamp
849
+ # @return [String]
850
+ #
851
+ # @!attribute [rw] id
852
+ # @return [String]
853
+ #
854
+ # @!attribute [rw] last_updated_timestamp
855
+ # @return [String]
856
+ #
857
+ # @!attribute [rw] latest_version
858
+ # @return [String]
859
+ #
860
+ # @!attribute [rw] latest_version_arn
861
+ # @return [String]
862
+ #
863
+ # @!attribute [rw] name
864
+ # @return [String]
865
+ #
866
+ # @see http://docs.aws.amazon.com/goto/WebAPI/greengrass-2017-06-07/CreateLoggerDefinitionResponse AWS API Documentation
867
+ #
868
+ class CreateLoggerDefinitionResponse < Struct.new(
869
+ :arn,
870
+ :creation_timestamp,
871
+ :id,
872
+ :last_updated_timestamp,
873
+ :latest_version,
874
+ :latest_version_arn,
875
+ :name)
876
+ include Aws::Structure
877
+ end
878
+
879
+ # @note When making an API call, you may pass CreateLoggerDefinitionVersionRequest
880
+ # data as a hash:
881
+ #
882
+ # {
883
+ # amzn_client_token: "__string",
884
+ # logger_definition_id: "__string", # required
885
+ # loggers: [
886
+ # {
887
+ # component: "GreengrassSystem", # accepts GreengrassSystem, Lambda
888
+ # id: "__string",
889
+ # level: "DEBUG", # accepts DEBUG, INFO, WARN, ERROR, FATAL
890
+ # space: 1,
891
+ # type: "FileSystem", # accepts FileSystem, AWSCloudWatch
892
+ # },
893
+ # ],
894
+ # }
895
+ #
896
+ # @!attribute [rw] amzn_client_token
897
+ # @return [String]
898
+ #
899
+ # @!attribute [rw] logger_definition_id
900
+ # @return [String]
901
+ #
902
+ # @!attribute [rw] loggers
903
+ # @return [Array<Types::Logger>]
904
+ #
905
+ # @see http://docs.aws.amazon.com/goto/WebAPI/greengrass-2017-06-07/CreateLoggerDefinitionVersionRequest AWS API Documentation
906
+ #
907
+ class CreateLoggerDefinitionVersionRequest < Struct.new(
908
+ :amzn_client_token,
909
+ :logger_definition_id,
910
+ :loggers)
911
+ include Aws::Structure
912
+ end
913
+
914
+ # @!attribute [rw] arn
915
+ # @return [String]
916
+ #
917
+ # @!attribute [rw] creation_timestamp
918
+ # @return [String]
919
+ #
920
+ # @!attribute [rw] id
921
+ # @return [String]
922
+ #
923
+ # @!attribute [rw] version
924
+ # @return [String]
925
+ #
926
+ # @see http://docs.aws.amazon.com/goto/WebAPI/greengrass-2017-06-07/CreateLoggerDefinitionVersionResponse AWS API Documentation
927
+ #
928
+ class CreateLoggerDefinitionVersionResponse < Struct.new(
929
+ :arn,
930
+ :creation_timestamp,
931
+ :id,
932
+ :version)
933
+ include Aws::Structure
934
+ end
935
+
936
+ # @note When making an API call, you may pass CreateSubscriptionDefinitionRequest
937
+ # data as a hash:
938
+ #
939
+ # {
940
+ # amzn_client_token: "__string",
941
+ # initial_version: {
942
+ # subscriptions: [
943
+ # {
944
+ # id: "__string",
945
+ # source: "__string",
946
+ # subject: "__string",
947
+ # target: "__string",
948
+ # },
949
+ # ],
950
+ # },
951
+ # name: "__string",
952
+ # }
953
+ #
954
+ # @!attribute [rw] amzn_client_token
955
+ # @return [String]
956
+ #
957
+ # @!attribute [rw] initial_version
958
+ # Information on subscription definition version
959
+ # @return [Types::SubscriptionDefinitionVersion]
960
+ #
961
+ # @!attribute [rw] name
962
+ # @return [String]
963
+ #
964
+ # @see http://docs.aws.amazon.com/goto/WebAPI/greengrass-2017-06-07/CreateSubscriptionDefinitionRequest AWS API Documentation
965
+ #
966
+ class CreateSubscriptionDefinitionRequest < Struct.new(
967
+ :amzn_client_token,
968
+ :initial_version,
969
+ :name)
970
+ include Aws::Structure
971
+ end
972
+
973
+ # @!attribute [rw] arn
974
+ # @return [String]
975
+ #
976
+ # @!attribute [rw] creation_timestamp
977
+ # @return [String]
978
+ #
979
+ # @!attribute [rw] id
980
+ # @return [String]
981
+ #
982
+ # @!attribute [rw] last_updated_timestamp
983
+ # @return [String]
984
+ #
985
+ # @!attribute [rw] latest_version
986
+ # @return [String]
987
+ #
988
+ # @!attribute [rw] latest_version_arn
989
+ # @return [String]
990
+ #
991
+ # @!attribute [rw] name
992
+ # @return [String]
993
+ #
994
+ # @see http://docs.aws.amazon.com/goto/WebAPI/greengrass-2017-06-07/CreateSubscriptionDefinitionResponse AWS API Documentation
995
+ #
996
+ class CreateSubscriptionDefinitionResponse < Struct.new(
997
+ :arn,
998
+ :creation_timestamp,
999
+ :id,
1000
+ :last_updated_timestamp,
1001
+ :latest_version,
1002
+ :latest_version_arn,
1003
+ :name)
1004
+ include Aws::Structure
1005
+ end
1006
+
1007
+ # @note When making an API call, you may pass CreateSubscriptionDefinitionVersionRequest
1008
+ # data as a hash:
1009
+ #
1010
+ # {
1011
+ # amzn_client_token: "__string",
1012
+ # subscription_definition_id: "__string", # required
1013
+ # subscriptions: [
1014
+ # {
1015
+ # id: "__string",
1016
+ # source: "__string",
1017
+ # subject: "__string",
1018
+ # target: "__string",
1019
+ # },
1020
+ # ],
1021
+ # }
1022
+ #
1023
+ # @!attribute [rw] amzn_client_token
1024
+ # @return [String]
1025
+ #
1026
+ # @!attribute [rw] subscription_definition_id
1027
+ # @return [String]
1028
+ #
1029
+ # @!attribute [rw] subscriptions
1030
+ # @return [Array<Types::Subscription>]
1031
+ #
1032
+ # @see http://docs.aws.amazon.com/goto/WebAPI/greengrass-2017-06-07/CreateSubscriptionDefinitionVersionRequest AWS API Documentation
1033
+ #
1034
+ class CreateSubscriptionDefinitionVersionRequest < Struct.new(
1035
+ :amzn_client_token,
1036
+ :subscription_definition_id,
1037
+ :subscriptions)
1038
+ include Aws::Structure
1039
+ end
1040
+
1041
+ # @!attribute [rw] arn
1042
+ # @return [String]
1043
+ #
1044
+ # @!attribute [rw] creation_timestamp
1045
+ # @return [String]
1046
+ #
1047
+ # @!attribute [rw] id
1048
+ # @return [String]
1049
+ #
1050
+ # @!attribute [rw] version
1051
+ # @return [String]
1052
+ #
1053
+ # @see http://docs.aws.amazon.com/goto/WebAPI/greengrass-2017-06-07/CreateSubscriptionDefinitionVersionResponse AWS API Documentation
1054
+ #
1055
+ class CreateSubscriptionDefinitionVersionResponse < Struct.new(
1056
+ :arn,
1057
+ :creation_timestamp,
1058
+ :id,
1059
+ :version)
1060
+ include Aws::Structure
1061
+ end
1062
+
1063
+ # Information on the Definition
1064
+ #
1065
+ # @!attribute [rw] arn
1066
+ # Arn of the definition.
1067
+ # @return [String]
1068
+ #
1069
+ # @!attribute [rw] creation_timestamp
1070
+ # Timestamp of when the definition was created.
1071
+ # @return [String]
1072
+ #
1073
+ # @!attribute [rw] id
1074
+ # Id of the definition.
1075
+ # @return [String]
1076
+ #
1077
+ # @!attribute [rw] last_updated_timestamp
1078
+ # Last updated timestamp of the definition.
1079
+ # @return [String]
1080
+ #
1081
+ # @!attribute [rw] latest_version
1082
+ # Last version of the definition.
1083
+ # @return [String]
1084
+ #
1085
+ # @!attribute [rw] latest_version_arn
1086
+ # Latest version arn of the definition.
1087
+ # @return [String]
1088
+ #
1089
+ # @!attribute [rw] name
1090
+ # Name of the definition.
1091
+ # @return [String]
1092
+ #
1093
+ # @see http://docs.aws.amazon.com/goto/WebAPI/greengrass-2017-06-07/DefinitionInformation AWS API Documentation
1094
+ #
1095
+ class DefinitionInformation < Struct.new(
1096
+ :arn,
1097
+ :creation_timestamp,
1098
+ :id,
1099
+ :last_updated_timestamp,
1100
+ :latest_version,
1101
+ :latest_version_arn,
1102
+ :name)
1103
+ include Aws::Structure
1104
+ end
1105
+
1106
+ # @note When making an API call, you may pass DeleteCoreDefinitionRequest
1107
+ # data as a hash:
1108
+ #
1109
+ # {
1110
+ # core_definition_id: "__string", # required
1111
+ # }
1112
+ #
1113
+ # @!attribute [rw] core_definition_id
1114
+ # @return [String]
1115
+ #
1116
+ # @see http://docs.aws.amazon.com/goto/WebAPI/greengrass-2017-06-07/DeleteCoreDefinitionRequest AWS API Documentation
1117
+ #
1118
+ class DeleteCoreDefinitionRequest < Struct.new(
1119
+ :core_definition_id)
1120
+ include Aws::Structure
1121
+ end
1122
+
1123
+ # @see http://docs.aws.amazon.com/goto/WebAPI/greengrass-2017-06-07/DeleteCoreDefinitionResponse AWS API Documentation
1124
+ #
1125
+ class DeleteCoreDefinitionResponse < Aws::EmptyStructure; end
1126
+
1127
+ # @note When making an API call, you may pass DeleteDeviceDefinitionRequest
1128
+ # data as a hash:
1129
+ #
1130
+ # {
1131
+ # device_definition_id: "__string", # required
1132
+ # }
1133
+ #
1134
+ # @!attribute [rw] device_definition_id
1135
+ # @return [String]
1136
+ #
1137
+ # @see http://docs.aws.amazon.com/goto/WebAPI/greengrass-2017-06-07/DeleteDeviceDefinitionRequest AWS API Documentation
1138
+ #
1139
+ class DeleteDeviceDefinitionRequest < Struct.new(
1140
+ :device_definition_id)
1141
+ include Aws::Structure
1142
+ end
1143
+
1144
+ # @see http://docs.aws.amazon.com/goto/WebAPI/greengrass-2017-06-07/DeleteDeviceDefinitionResponse AWS API Documentation
1145
+ #
1146
+ class DeleteDeviceDefinitionResponse < Aws::EmptyStructure; end
1147
+
1148
+ # @note When making an API call, you may pass DeleteFunctionDefinitionRequest
1149
+ # data as a hash:
1150
+ #
1151
+ # {
1152
+ # function_definition_id: "__string", # required
1153
+ # }
1154
+ #
1155
+ # @!attribute [rw] function_definition_id
1156
+ # @return [String]
1157
+ #
1158
+ # @see http://docs.aws.amazon.com/goto/WebAPI/greengrass-2017-06-07/DeleteFunctionDefinitionRequest AWS API Documentation
1159
+ #
1160
+ class DeleteFunctionDefinitionRequest < Struct.new(
1161
+ :function_definition_id)
1162
+ include Aws::Structure
1163
+ end
1164
+
1165
+ # @see http://docs.aws.amazon.com/goto/WebAPI/greengrass-2017-06-07/DeleteFunctionDefinitionResponse AWS API Documentation
1166
+ #
1167
+ class DeleteFunctionDefinitionResponse < Aws::EmptyStructure; end
1168
+
1169
+ # @note When making an API call, you may pass DeleteGroupRequest
1170
+ # data as a hash:
1171
+ #
1172
+ # {
1173
+ # group_id: "__string", # required
1174
+ # }
1175
+ #
1176
+ # @!attribute [rw] group_id
1177
+ # @return [String]
1178
+ #
1179
+ # @see http://docs.aws.amazon.com/goto/WebAPI/greengrass-2017-06-07/DeleteGroupRequest AWS API Documentation
1180
+ #
1181
+ class DeleteGroupRequest < Struct.new(
1182
+ :group_id)
1183
+ include Aws::Structure
1184
+ end
1185
+
1186
+ # @see http://docs.aws.amazon.com/goto/WebAPI/greengrass-2017-06-07/DeleteGroupResponse AWS API Documentation
1187
+ #
1188
+ class DeleteGroupResponse < Aws::EmptyStructure; end
1189
+
1190
+ # @note When making an API call, you may pass DeleteLoggerDefinitionRequest
1191
+ # data as a hash:
1192
+ #
1193
+ # {
1194
+ # logger_definition_id: "__string", # required
1195
+ # }
1196
+ #
1197
+ # @!attribute [rw] logger_definition_id
1198
+ # @return [String]
1199
+ #
1200
+ # @see http://docs.aws.amazon.com/goto/WebAPI/greengrass-2017-06-07/DeleteLoggerDefinitionRequest AWS API Documentation
1201
+ #
1202
+ class DeleteLoggerDefinitionRequest < Struct.new(
1203
+ :logger_definition_id)
1204
+ include Aws::Structure
1205
+ end
1206
+
1207
+ # @see http://docs.aws.amazon.com/goto/WebAPI/greengrass-2017-06-07/DeleteLoggerDefinitionResponse AWS API Documentation
1208
+ #
1209
+ class DeleteLoggerDefinitionResponse < Aws::EmptyStructure; end
1210
+
1211
+ # @note When making an API call, you may pass DeleteSubscriptionDefinitionRequest
1212
+ # data as a hash:
1213
+ #
1214
+ # {
1215
+ # subscription_definition_id: "__string", # required
1216
+ # }
1217
+ #
1218
+ # @!attribute [rw] subscription_definition_id
1219
+ # @return [String]
1220
+ #
1221
+ # @see http://docs.aws.amazon.com/goto/WebAPI/greengrass-2017-06-07/DeleteSubscriptionDefinitionRequest AWS API Documentation
1222
+ #
1223
+ class DeleteSubscriptionDefinitionRequest < Struct.new(
1224
+ :subscription_definition_id)
1225
+ include Aws::Structure
1226
+ end
1227
+
1228
+ # @see http://docs.aws.amazon.com/goto/WebAPI/greengrass-2017-06-07/DeleteSubscriptionDefinitionResponse AWS API Documentation
1229
+ #
1230
+ class DeleteSubscriptionDefinitionResponse < Aws::EmptyStructure; end
1231
+
1232
+ # Information on the deployment
1233
+ #
1234
+ # @!attribute [rw] created_at
1235
+ # Timestamp when the deployment was created.
1236
+ # @return [String]
1237
+ #
1238
+ # @!attribute [rw] deployment_arn
1239
+ # Arn of the deployment.
1240
+ # @return [String]
1241
+ #
1242
+ # @!attribute [rw] deployment_id
1243
+ # Id of the deployment.
1244
+ # @return [String]
1245
+ #
1246
+ # @!attribute [rw] group_arn
1247
+ # Arn of the group for this deployment.
1248
+ # @return [String]
1249
+ #
1250
+ # @see http://docs.aws.amazon.com/goto/WebAPI/greengrass-2017-06-07/Deployment AWS API Documentation
1251
+ #
1252
+ class Deployment < Struct.new(
1253
+ :created_at,
1254
+ :deployment_arn,
1255
+ :deployment_id,
1256
+ :group_arn)
1257
+ include Aws::Structure
1258
+ end
1259
+
1260
+ # Information on a Device
1261
+ #
1262
+ # @note When making an API call, you may pass Device
1263
+ # data as a hash:
1264
+ #
1265
+ # {
1266
+ # certificate_arn: "__string",
1267
+ # id: "__string",
1268
+ # sync_shadow: false,
1269
+ # thing_arn: "__string",
1270
+ # }
1271
+ #
1272
+ # @!attribute [rw] certificate_arn
1273
+ # Certificate arn of the device.
1274
+ # @return [String]
1275
+ #
1276
+ # @!attribute [rw] id
1277
+ # Element Id for this entry in the list.
1278
+ # @return [String]
1279
+ #
1280
+ # @!attribute [rw] sync_shadow
1281
+ # If true, the local shadow value automatically syncs with the
1282
+ # cloud's shadow state.
1283
+ # @return [Boolean]
1284
+ #
1285
+ # @!attribute [rw] thing_arn
1286
+ # Thing arn of the device.
1287
+ # @return [String]
1288
+ #
1289
+ # @see http://docs.aws.amazon.com/goto/WebAPI/greengrass-2017-06-07/Device AWS API Documentation
1290
+ #
1291
+ class Device < Struct.new(
1292
+ :certificate_arn,
1293
+ :id,
1294
+ :sync_shadow,
1295
+ :thing_arn)
1296
+ include Aws::Structure
1297
+ end
1298
+
1299
+ # Information on device definition version
1300
+ #
1301
+ # @note When making an API call, you may pass DeviceDefinitionVersion
1302
+ # data as a hash:
1303
+ #
1304
+ # {
1305
+ # devices: [
1306
+ # {
1307
+ # certificate_arn: "__string",
1308
+ # id: "__string",
1309
+ # sync_shadow: false,
1310
+ # thing_arn: "__string",
1311
+ # },
1312
+ # ],
1313
+ # }
1314
+ #
1315
+ # @!attribute [rw] devices
1316
+ # Devices in the definition version.
1317
+ # @return [Array<Types::Device>]
1318
+ #
1319
+ # @see http://docs.aws.amazon.com/goto/WebAPI/greengrass-2017-06-07/DeviceDefinitionVersion AWS API Documentation
1320
+ #
1321
+ class DeviceDefinitionVersion < Struct.new(
1322
+ :devices)
1323
+ include Aws::Structure
1324
+ end
1325
+
1326
+ # @note When making an API call, you may pass DisassociateRoleFromGroupRequest
1327
+ # data as a hash:
1328
+ #
1329
+ # {
1330
+ # group_id: "__string", # required
1331
+ # }
1332
+ #
1333
+ # @!attribute [rw] group_id
1334
+ # @return [String]
1335
+ #
1336
+ # @see http://docs.aws.amazon.com/goto/WebAPI/greengrass-2017-06-07/DisassociateRoleFromGroupRequest AWS API Documentation
1337
+ #
1338
+ class DisassociateRoleFromGroupRequest < Struct.new(
1339
+ :group_id)
1340
+ include Aws::Structure
1341
+ end
1342
+
1343
+ # @!attribute [rw] disassociated_at
1344
+ # Time when the role was disassociated from the group.
1345
+ # @return [String]
1346
+ #
1347
+ # @see http://docs.aws.amazon.com/goto/WebAPI/greengrass-2017-06-07/DisassociateRoleFromGroupResponse AWS API Documentation
1348
+ #
1349
+ class DisassociateRoleFromGroupResponse < Struct.new(
1350
+ :disassociated_at)
1351
+ include Aws::Structure
1352
+ end
1353
+
1354
+ # @api private
1355
+ #
1356
+ # @see http://docs.aws.amazon.com/goto/WebAPI/greengrass-2017-06-07/DisassociateServiceRoleFromAccountRequest AWS API Documentation
1357
+ #
1358
+ class DisassociateServiceRoleFromAccountRequest < Aws::EmptyStructure; end
1359
+
1360
+ # @!attribute [rw] disassociated_at
1361
+ # Time when the service role was disassociated from the account.
1362
+ # @return [String]
1363
+ #
1364
+ # @see http://docs.aws.amazon.com/goto/WebAPI/greengrass-2017-06-07/DisassociateServiceRoleFromAccountResponse AWS API Documentation
1365
+ #
1366
+ class DisassociateServiceRoleFromAccountResponse < Struct.new(
1367
+ :disassociated_at)
1368
+ include Aws::Structure
1369
+ end
1370
+
1371
+ # Empty
1372
+ #
1373
+ # @see http://docs.aws.amazon.com/goto/WebAPI/greengrass-2017-06-07/Empty AWS API Documentation
1374
+ #
1375
+ class Empty < Aws::EmptyStructure; end
1376
+
1377
+ # ErrorDetail
1378
+ #
1379
+ # @!attribute [rw] detailed_error_code
1380
+ # Detailed Error Code
1381
+ # @return [String]
1382
+ #
1383
+ # @!attribute [rw] detailed_error_message
1384
+ # Detailed Error Message
1385
+ # @return [String]
1386
+ #
1387
+ # @see http://docs.aws.amazon.com/goto/WebAPI/greengrass-2017-06-07/ErrorDetail AWS API Documentation
1388
+ #
1389
+ class ErrorDetail < Struct.new(
1390
+ :detailed_error_code,
1391
+ :detailed_error_message)
1392
+ include Aws::Structure
1393
+ end
1394
+
1395
+ # Information on function
1396
+ #
1397
+ # @note When making an API call, you may pass Function
1398
+ # data as a hash:
1399
+ #
1400
+ # {
1401
+ # function_arn: "__string",
1402
+ # function_configuration: {
1403
+ # environment: {
1404
+ # variables: {
1405
+ # "__string" => "__string",
1406
+ # },
1407
+ # },
1408
+ # exec_args: "__string",
1409
+ # executable: "__string",
1410
+ # memory_size: 1,
1411
+ # pinned: false,
1412
+ # timeout: 1,
1413
+ # },
1414
+ # id: "__string",
1415
+ # }
1416
+ #
1417
+ # @!attribute [rw] function_arn
1418
+ # Arn of the Lambda function.
1419
+ # @return [String]
1420
+ #
1421
+ # @!attribute [rw] function_configuration
1422
+ # Configuration of the function
1423
+ # @return [Types::FunctionConfiguration]
1424
+ #
1425
+ # @!attribute [rw] id
1426
+ # Id of the function in this version.
1427
+ # @return [String]
1428
+ #
1429
+ # @see http://docs.aws.amazon.com/goto/WebAPI/greengrass-2017-06-07/Function AWS API Documentation
1430
+ #
1431
+ class Function < Struct.new(
1432
+ :function_arn,
1433
+ :function_configuration,
1434
+ :id)
1435
+ include Aws::Structure
1436
+ end
1437
+
1438
+ # Configuration of the function
1439
+ #
1440
+ # @note When making an API call, you may pass FunctionConfiguration
1441
+ # data as a hash:
1442
+ #
1443
+ # {
1444
+ # environment: {
1445
+ # variables: {
1446
+ # "__string" => "__string",
1447
+ # },
1448
+ # },
1449
+ # exec_args: "__string",
1450
+ # executable: "__string",
1451
+ # memory_size: 1,
1452
+ # pinned: false,
1453
+ # timeout: 1,
1454
+ # }
1455
+ #
1456
+ # @!attribute [rw] environment
1457
+ # Environment of the function configuration
1458
+ # @return [Types::FunctionConfigurationEnvironment]
1459
+ #
1460
+ # @!attribute [rw] exec_args
1461
+ # Execution Arguments
1462
+ # @return [String]
1463
+ #
1464
+ # @!attribute [rw] executable
1465
+ # Executable
1466
+ # @return [String]
1467
+ #
1468
+ # @!attribute [rw] memory_size
1469
+ # The memory size, in KB, you configured for the function.
1470
+ # @return [Integer]
1471
+ #
1472
+ # @!attribute [rw] pinned
1473
+ # Whether the function is pinned or not. Pinned means the function is
1474
+ # long-lived and starts when the core starts.
1475
+ # @return [Boolean]
1476
+ #
1477
+ # @!attribute [rw] timeout
1478
+ # The function execution time at which Lambda should terminate the
1479
+ # function. This timeout still applies to pinned lambdas for each
1480
+ # request.
1481
+ # @return [Integer]
1482
+ #
1483
+ # @see http://docs.aws.amazon.com/goto/WebAPI/greengrass-2017-06-07/FunctionConfiguration AWS API Documentation
1484
+ #
1485
+ class FunctionConfiguration < Struct.new(
1486
+ :environment,
1487
+ :exec_args,
1488
+ :executable,
1489
+ :memory_size,
1490
+ :pinned,
1491
+ :timeout)
1492
+ include Aws::Structure
1493
+ end
1494
+
1495
+ # Environment of the function configuration
1496
+ #
1497
+ # @note When making an API call, you may pass FunctionConfigurationEnvironment
1498
+ # data as a hash:
1499
+ #
1500
+ # {
1501
+ # variables: {
1502
+ # "__string" => "__string",
1503
+ # },
1504
+ # }
1505
+ #
1506
+ # @!attribute [rw] variables
1507
+ # @return [Hash<String,String>]
1508
+ #
1509
+ # @see http://docs.aws.amazon.com/goto/WebAPI/greengrass-2017-06-07/FunctionConfigurationEnvironment AWS API Documentation
1510
+ #
1511
+ class FunctionConfigurationEnvironment < Struct.new(
1512
+ :variables)
1513
+ include Aws::Structure
1514
+ end
1515
+
1516
+ # Information on the function definition version
1517
+ #
1518
+ # @note When making an API call, you may pass FunctionDefinitionVersion
1519
+ # data as a hash:
1520
+ #
1521
+ # {
1522
+ # functions: [
1523
+ # {
1524
+ # function_arn: "__string",
1525
+ # function_configuration: {
1526
+ # environment: {
1527
+ # variables: {
1528
+ # "__string" => "__string",
1529
+ # },
1530
+ # },
1531
+ # exec_args: "__string",
1532
+ # executable: "__string",
1533
+ # memory_size: 1,
1534
+ # pinned: false,
1535
+ # timeout: 1,
1536
+ # },
1537
+ # id: "__string",
1538
+ # },
1539
+ # ],
1540
+ # }
1541
+ #
1542
+ # @!attribute [rw] functions
1543
+ # Lambda functions in this function definition version.
1544
+ # @return [Array<Types::Function>]
1545
+ #
1546
+ # @see http://docs.aws.amazon.com/goto/WebAPI/greengrass-2017-06-07/FunctionDefinitionVersion AWS API Documentation
1547
+ #
1548
+ class FunctionDefinitionVersion < Struct.new(
1549
+ :functions)
1550
+ include Aws::Structure
1551
+ end
1552
+
1553
+ # General Error
1554
+ #
1555
+ # @!attribute [rw] error_details
1556
+ # Error Details
1557
+ # @return [Array<Types::ErrorDetail>]
1558
+ #
1559
+ # @!attribute [rw] message
1560
+ # Message
1561
+ # @return [String]
1562
+ #
1563
+ # @see http://docs.aws.amazon.com/goto/WebAPI/greengrass-2017-06-07/GeneralError AWS API Documentation
1564
+ #
1565
+ class GeneralError < Struct.new(
1566
+ :error_details,
1567
+ :message)
1568
+ include Aws::Structure
1569
+ end
1570
+
1571
+ # @note When making an API call, you may pass GetAssociatedRoleRequest
1572
+ # data as a hash:
1573
+ #
1574
+ # {
1575
+ # group_id: "__string", # required
1576
+ # }
1577
+ #
1578
+ # @!attribute [rw] group_id
1579
+ # @return [String]
1580
+ #
1581
+ # @see http://docs.aws.amazon.com/goto/WebAPI/greengrass-2017-06-07/GetAssociatedRoleRequest AWS API Documentation
1582
+ #
1583
+ class GetAssociatedRoleRequest < Struct.new(
1584
+ :group_id)
1585
+ include Aws::Structure
1586
+ end
1587
+
1588
+ # @!attribute [rw] associated_at
1589
+ # Time when the role was associated for the group.
1590
+ # @return [String]
1591
+ #
1592
+ # @!attribute [rw] role_arn
1593
+ # Arn of the role that is associated with the group.
1594
+ # @return [String]
1595
+ #
1596
+ # @see http://docs.aws.amazon.com/goto/WebAPI/greengrass-2017-06-07/GetAssociatedRoleResponse AWS API Documentation
1597
+ #
1598
+ class GetAssociatedRoleResponse < Struct.new(
1599
+ :associated_at,
1600
+ :role_arn)
1601
+ include Aws::Structure
1602
+ end
1603
+
1604
+ # @note When making an API call, you may pass GetConnectivityInfoRequest
1605
+ # data as a hash:
1606
+ #
1607
+ # {
1608
+ # thing_name: "__string", # required
1609
+ # }
1610
+ #
1611
+ # @!attribute [rw] thing_name
1612
+ # @return [String]
1613
+ #
1614
+ # @see http://docs.aws.amazon.com/goto/WebAPI/greengrass-2017-06-07/GetConnectivityInfoRequest AWS API Documentation
1615
+ #
1616
+ class GetConnectivityInfoRequest < Struct.new(
1617
+ :thing_name)
1618
+ include Aws::Structure
1619
+ end
1620
+
1621
+ # connectivity info response
1622
+ #
1623
+ # @!attribute [rw] connectivity_info
1624
+ # Connectivity info array
1625
+ # @return [Array<Types::ConnectivityInfo>]
1626
+ #
1627
+ # @!attribute [rw] message
1628
+ # @return [String]
1629
+ #
1630
+ # @see http://docs.aws.amazon.com/goto/WebAPI/greengrass-2017-06-07/GetConnectivityInfoResponse AWS API Documentation
1631
+ #
1632
+ class GetConnectivityInfoResponse < Struct.new(
1633
+ :connectivity_info,
1634
+ :message)
1635
+ include Aws::Structure
1636
+ end
1637
+
1638
+ # @note When making an API call, you may pass GetCoreDefinitionRequest
1639
+ # data as a hash:
1640
+ #
1641
+ # {
1642
+ # core_definition_id: "__string", # required
1643
+ # }
1644
+ #
1645
+ # @!attribute [rw] core_definition_id
1646
+ # @return [String]
1647
+ #
1648
+ # @see http://docs.aws.amazon.com/goto/WebAPI/greengrass-2017-06-07/GetCoreDefinitionRequest AWS API Documentation
1649
+ #
1650
+ class GetCoreDefinitionRequest < Struct.new(
1651
+ :core_definition_id)
1652
+ include Aws::Structure
1653
+ end
1654
+
1655
+ # @!attribute [rw] arn
1656
+ # @return [String]
1657
+ #
1658
+ # @!attribute [rw] creation_timestamp
1659
+ # @return [String]
1660
+ #
1661
+ # @!attribute [rw] id
1662
+ # @return [String]
1663
+ #
1664
+ # @!attribute [rw] last_updated_timestamp
1665
+ # @return [String]
1666
+ #
1667
+ # @!attribute [rw] latest_version
1668
+ # @return [String]
1669
+ #
1670
+ # @!attribute [rw] latest_version_arn
1671
+ # @return [String]
1672
+ #
1673
+ # @!attribute [rw] name
1674
+ # @return [String]
1675
+ #
1676
+ # @see http://docs.aws.amazon.com/goto/WebAPI/greengrass-2017-06-07/GetCoreDefinitionResponse AWS API Documentation
1677
+ #
1678
+ class GetCoreDefinitionResponse < Struct.new(
1679
+ :arn,
1680
+ :creation_timestamp,
1681
+ :id,
1682
+ :last_updated_timestamp,
1683
+ :latest_version,
1684
+ :latest_version_arn,
1685
+ :name)
1686
+ include Aws::Structure
1687
+ end
1688
+
1689
+ # @note When making an API call, you may pass GetCoreDefinitionVersionRequest
1690
+ # data as a hash:
1691
+ #
1692
+ # {
1693
+ # core_definition_id: "__string", # required
1694
+ # core_definition_version_id: "__string", # required
1695
+ # }
1696
+ #
1697
+ # @!attribute [rw] core_definition_id
1698
+ # @return [String]
1699
+ #
1700
+ # @!attribute [rw] core_definition_version_id
1701
+ # @return [String]
1702
+ #
1703
+ # @see http://docs.aws.amazon.com/goto/WebAPI/greengrass-2017-06-07/GetCoreDefinitionVersionRequest AWS API Documentation
1704
+ #
1705
+ class GetCoreDefinitionVersionRequest < Struct.new(
1706
+ :core_definition_id,
1707
+ :core_definition_version_id)
1708
+ include Aws::Structure
1709
+ end
1710
+
1711
+ # @!attribute [rw] arn
1712
+ # Arn of the core definition version.
1713
+ # @return [String]
1714
+ #
1715
+ # @!attribute [rw] creation_timestamp
1716
+ # Timestamp of when the core definition version was created.
1717
+ # @return [String]
1718
+ #
1719
+ # @!attribute [rw] definition
1720
+ # Information on definition
1721
+ # @return [Types::CoreDefinitionVersion]
1722
+ #
1723
+ # @!attribute [rw] id
1724
+ # Id of the core definition the version belongs to.
1725
+ # @return [String]
1726
+ #
1727
+ # @!attribute [rw] version
1728
+ # Version of the core definition version.
1729
+ # @return [String]
1730
+ #
1731
+ # @see http://docs.aws.amazon.com/goto/WebAPI/greengrass-2017-06-07/GetCoreDefinitionVersionResponse AWS API Documentation
1732
+ #
1733
+ class GetCoreDefinitionVersionResponse < Struct.new(
1734
+ :arn,
1735
+ :creation_timestamp,
1736
+ :definition,
1737
+ :id,
1738
+ :version)
1739
+ include Aws::Structure
1740
+ end
1741
+
1742
+ # @note When making an API call, you may pass GetDeploymentStatusRequest
1743
+ # data as a hash:
1744
+ #
1745
+ # {
1746
+ # deployment_id: "__string", # required
1747
+ # group_id: "__string", # required
1748
+ # }
1749
+ #
1750
+ # @!attribute [rw] deployment_id
1751
+ # @return [String]
1752
+ #
1753
+ # @!attribute [rw] group_id
1754
+ # @return [String]
1755
+ #
1756
+ # @see http://docs.aws.amazon.com/goto/WebAPI/greengrass-2017-06-07/GetDeploymentStatusRequest AWS API Documentation
1757
+ #
1758
+ class GetDeploymentStatusRequest < Struct.new(
1759
+ :deployment_id,
1760
+ :group_id)
1761
+ include Aws::Structure
1762
+ end
1763
+
1764
+ # The response body contains the status of a deployment for a group.
1765
+ #
1766
+ # @!attribute [rw] deployment_status
1767
+ # Status of the deployment.
1768
+ # @return [String]
1769
+ #
1770
+ # @!attribute [rw] error_message
1771
+ # Error Message
1772
+ # @return [String]
1773
+ #
1774
+ # @!attribute [rw] updated_at
1775
+ # Last time the deployment status was updated.
1776
+ # @return [String]
1777
+ #
1778
+ # @see http://docs.aws.amazon.com/goto/WebAPI/greengrass-2017-06-07/GetDeploymentStatusResponse AWS API Documentation
1779
+ #
1780
+ class GetDeploymentStatusResponse < Struct.new(
1781
+ :deployment_status,
1782
+ :error_message,
1783
+ :updated_at)
1784
+ include Aws::Structure
1785
+ end
1786
+
1787
+ # @note When making an API call, you may pass GetDeviceDefinitionRequest
1788
+ # data as a hash:
1789
+ #
1790
+ # {
1791
+ # device_definition_id: "__string", # required
1792
+ # }
1793
+ #
1794
+ # @!attribute [rw] device_definition_id
1795
+ # @return [String]
1796
+ #
1797
+ # @see http://docs.aws.amazon.com/goto/WebAPI/greengrass-2017-06-07/GetDeviceDefinitionRequest AWS API Documentation
1798
+ #
1799
+ class GetDeviceDefinitionRequest < Struct.new(
1800
+ :device_definition_id)
1801
+ include Aws::Structure
1802
+ end
1803
+
1804
+ # @!attribute [rw] arn
1805
+ # @return [String]
1806
+ #
1807
+ # @!attribute [rw] creation_timestamp
1808
+ # @return [String]
1809
+ #
1810
+ # @!attribute [rw] id
1811
+ # @return [String]
1812
+ #
1813
+ # @!attribute [rw] last_updated_timestamp
1814
+ # @return [String]
1815
+ #
1816
+ # @!attribute [rw] latest_version
1817
+ # @return [String]
1818
+ #
1819
+ # @!attribute [rw] latest_version_arn
1820
+ # @return [String]
1821
+ #
1822
+ # @!attribute [rw] name
1823
+ # @return [String]
1824
+ #
1825
+ # @see http://docs.aws.amazon.com/goto/WebAPI/greengrass-2017-06-07/GetDeviceDefinitionResponse AWS API Documentation
1826
+ #
1827
+ class GetDeviceDefinitionResponse < Struct.new(
1828
+ :arn,
1829
+ :creation_timestamp,
1830
+ :id,
1831
+ :last_updated_timestamp,
1832
+ :latest_version,
1833
+ :latest_version_arn,
1834
+ :name)
1835
+ include Aws::Structure
1836
+ end
1837
+
1838
+ # @note When making an API call, you may pass GetDeviceDefinitionVersionRequest
1839
+ # data as a hash:
1840
+ #
1841
+ # {
1842
+ # device_definition_id: "__string", # required
1843
+ # device_definition_version_id: "__string", # required
1844
+ # }
1845
+ #
1846
+ # @!attribute [rw] device_definition_id
1847
+ # @return [String]
1848
+ #
1849
+ # @!attribute [rw] device_definition_version_id
1850
+ # @return [String]
1851
+ #
1852
+ # @see http://docs.aws.amazon.com/goto/WebAPI/greengrass-2017-06-07/GetDeviceDefinitionVersionRequest AWS API Documentation
1853
+ #
1854
+ class GetDeviceDefinitionVersionRequest < Struct.new(
1855
+ :device_definition_id,
1856
+ :device_definition_version_id)
1857
+ include Aws::Structure
1858
+ end
1859
+
1860
+ # @!attribute [rw] arn
1861
+ # Arn of the device definition version.
1862
+ # @return [String]
1863
+ #
1864
+ # @!attribute [rw] creation_timestamp
1865
+ # Timestamp of when the device definition version was created.
1866
+ # @return [String]
1867
+ #
1868
+ # @!attribute [rw] definition
1869
+ # Device definition version
1870
+ # @return [Types::DeviceDefinitionVersion]
1871
+ #
1872
+ # @!attribute [rw] id
1873
+ # Id of the device definition the version belongs to.
1874
+ # @return [String]
1875
+ #
1876
+ # @!attribute [rw] version
1877
+ # Version of the device definition version.
1878
+ # @return [String]
1879
+ #
1880
+ # @see http://docs.aws.amazon.com/goto/WebAPI/greengrass-2017-06-07/GetDeviceDefinitionVersionResponse AWS API Documentation
1881
+ #
1882
+ class GetDeviceDefinitionVersionResponse < Struct.new(
1883
+ :arn,
1884
+ :creation_timestamp,
1885
+ :definition,
1886
+ :id,
1887
+ :version)
1888
+ include Aws::Structure
1889
+ end
1890
+
1891
+ # @note When making an API call, you may pass GetFunctionDefinitionRequest
1892
+ # data as a hash:
1893
+ #
1894
+ # {
1895
+ # function_definition_id: "__string", # required
1896
+ # }
1897
+ #
1898
+ # @!attribute [rw] function_definition_id
1899
+ # @return [String]
1900
+ #
1901
+ # @see http://docs.aws.amazon.com/goto/WebAPI/greengrass-2017-06-07/GetFunctionDefinitionRequest AWS API Documentation
1902
+ #
1903
+ class GetFunctionDefinitionRequest < Struct.new(
1904
+ :function_definition_id)
1905
+ include Aws::Structure
1906
+ end
1907
+
1908
+ # @!attribute [rw] arn
1909
+ # @return [String]
1910
+ #
1911
+ # @!attribute [rw] creation_timestamp
1912
+ # @return [String]
1913
+ #
1914
+ # @!attribute [rw] id
1915
+ # @return [String]
1916
+ #
1917
+ # @!attribute [rw] last_updated_timestamp
1918
+ # @return [String]
1919
+ #
1920
+ # @!attribute [rw] latest_version
1921
+ # @return [String]
1922
+ #
1923
+ # @!attribute [rw] latest_version_arn
1924
+ # @return [String]
1925
+ #
1926
+ # @!attribute [rw] name
1927
+ # @return [String]
1928
+ #
1929
+ # @see http://docs.aws.amazon.com/goto/WebAPI/greengrass-2017-06-07/GetFunctionDefinitionResponse AWS API Documentation
1930
+ #
1931
+ class GetFunctionDefinitionResponse < Struct.new(
1932
+ :arn,
1933
+ :creation_timestamp,
1934
+ :id,
1935
+ :last_updated_timestamp,
1936
+ :latest_version,
1937
+ :latest_version_arn,
1938
+ :name)
1939
+ include Aws::Structure
1940
+ end
1941
+
1942
+ # @note When making an API call, you may pass GetFunctionDefinitionVersionRequest
1943
+ # data as a hash:
1944
+ #
1945
+ # {
1946
+ # function_definition_id: "__string", # required
1947
+ # function_definition_version_id: "__string", # required
1948
+ # }
1949
+ #
1950
+ # @!attribute [rw] function_definition_id
1951
+ # @return [String]
1952
+ #
1953
+ # @!attribute [rw] function_definition_version_id
1954
+ # @return [String]
1955
+ #
1956
+ # @see http://docs.aws.amazon.com/goto/WebAPI/greengrass-2017-06-07/GetFunctionDefinitionVersionRequest AWS API Documentation
1957
+ #
1958
+ class GetFunctionDefinitionVersionRequest < Struct.new(
1959
+ :function_definition_id,
1960
+ :function_definition_version_id)
1961
+ include Aws::Structure
1962
+ end
1963
+
1964
+ # Function definition version
1965
+ #
1966
+ # @!attribute [rw] arn
1967
+ # Arn of the function definition version.
1968
+ # @return [String]
1969
+ #
1970
+ # @!attribute [rw] creation_timestamp
1971
+ # Timestamp when the funtion definition version was created.
1972
+ # @return [String]
1973
+ #
1974
+ # @!attribute [rw] definition
1975
+ # Information on the definition
1976
+ # @return [Types::FunctionDefinitionVersion]
1977
+ #
1978
+ # @!attribute [rw] id
1979
+ # Id of the function definition the version belongs to.
1980
+ # @return [String]
1981
+ #
1982
+ # @!attribute [rw] version
1983
+ # Version of the function definition version.
1984
+ # @return [String]
1985
+ #
1986
+ # @see http://docs.aws.amazon.com/goto/WebAPI/greengrass-2017-06-07/GetFunctionDefinitionVersionResponse AWS API Documentation
1987
+ #
1988
+ class GetFunctionDefinitionVersionResponse < Struct.new(
1989
+ :arn,
1990
+ :creation_timestamp,
1991
+ :definition,
1992
+ :id,
1993
+ :version)
1994
+ include Aws::Structure
1995
+ end
1996
+
1997
+ # @note When making an API call, you may pass GetGroupCertificateAuthorityRequest
1998
+ # data as a hash:
1999
+ #
2000
+ # {
2001
+ # certificate_authority_id: "__string", # required
2002
+ # group_id: "__string", # required
2003
+ # }
2004
+ #
2005
+ # @!attribute [rw] certificate_authority_id
2006
+ # @return [String]
2007
+ #
2008
+ # @!attribute [rw] group_id
2009
+ # @return [String]
2010
+ #
2011
+ # @see http://docs.aws.amazon.com/goto/WebAPI/greengrass-2017-06-07/GetGroupCertificateAuthorityRequest AWS API Documentation
2012
+ #
2013
+ class GetGroupCertificateAuthorityRequest < Struct.new(
2014
+ :certificate_authority_id,
2015
+ :group_id)
2016
+ include Aws::Structure
2017
+ end
2018
+
2019
+ # Certificate authority for the group.
2020
+ #
2021
+ # @!attribute [rw] group_certificate_authority_arn
2022
+ # Arn of the certificate authority for the group.
2023
+ # @return [String]
2024
+ #
2025
+ # @!attribute [rw] group_certificate_authority_id
2026
+ # Id of the certificate authority for the group.
2027
+ # @return [String]
2028
+ #
2029
+ # @!attribute [rw] pem_encoded_certificate
2030
+ # PEM encoded certificate for the group.
2031
+ # @return [String]
2032
+ #
2033
+ # @see http://docs.aws.amazon.com/goto/WebAPI/greengrass-2017-06-07/GetGroupCertificateAuthorityResponse AWS API Documentation
2034
+ #
2035
+ class GetGroupCertificateAuthorityResponse < Struct.new(
2036
+ :group_certificate_authority_arn,
2037
+ :group_certificate_authority_id,
2038
+ :pem_encoded_certificate)
2039
+ include Aws::Structure
2040
+ end
2041
+
2042
+ # @note When making an API call, you may pass GetGroupCertificateConfigurationRequest
2043
+ # data as a hash:
2044
+ #
2045
+ # {
2046
+ # group_id: "__string", # required
2047
+ # }
2048
+ #
2049
+ # @!attribute [rw] group_id
2050
+ # @return [String]
2051
+ #
2052
+ # @see http://docs.aws.amazon.com/goto/WebAPI/greengrass-2017-06-07/GetGroupCertificateConfigurationRequest AWS API Documentation
2053
+ #
2054
+ class GetGroupCertificateConfigurationRequest < Struct.new(
2055
+ :group_id)
2056
+ include Aws::Structure
2057
+ end
2058
+
2059
+ # @!attribute [rw] certificate_authority_expiry_in_milliseconds
2060
+ # @return [String]
2061
+ #
2062
+ # @!attribute [rw] certificate_expiry_in_milliseconds
2063
+ # @return [String]
2064
+ #
2065
+ # @!attribute [rw] group_id
2066
+ # @return [String]
2067
+ #
2068
+ # @see http://docs.aws.amazon.com/goto/WebAPI/greengrass-2017-06-07/GetGroupCertificateConfigurationResponse AWS API Documentation
2069
+ #
2070
+ class GetGroupCertificateConfigurationResponse < Struct.new(
2071
+ :certificate_authority_expiry_in_milliseconds,
2072
+ :certificate_expiry_in_milliseconds,
2073
+ :group_id)
2074
+ include Aws::Structure
2075
+ end
2076
+
2077
+ # @note When making an API call, you may pass GetGroupRequest
2078
+ # data as a hash:
2079
+ #
2080
+ # {
2081
+ # group_id: "__string", # required
2082
+ # }
2083
+ #
2084
+ # @!attribute [rw] group_id
2085
+ # @return [String]
2086
+ #
2087
+ # @see http://docs.aws.amazon.com/goto/WebAPI/greengrass-2017-06-07/GetGroupRequest AWS API Documentation
2088
+ #
2089
+ class GetGroupRequest < Struct.new(
2090
+ :group_id)
2091
+ include Aws::Structure
2092
+ end
2093
+
2094
+ # @!attribute [rw] arn
2095
+ # @return [String]
2096
+ #
2097
+ # @!attribute [rw] creation_timestamp
2098
+ # @return [String]
2099
+ #
2100
+ # @!attribute [rw] id
2101
+ # @return [String]
2102
+ #
2103
+ # @!attribute [rw] last_updated_timestamp
2104
+ # @return [String]
2105
+ #
2106
+ # @!attribute [rw] latest_version
2107
+ # @return [String]
2108
+ #
2109
+ # @!attribute [rw] latest_version_arn
2110
+ # @return [String]
2111
+ #
2112
+ # @!attribute [rw] name
2113
+ # @return [String]
2114
+ #
2115
+ # @see http://docs.aws.amazon.com/goto/WebAPI/greengrass-2017-06-07/GetGroupResponse AWS API Documentation
2116
+ #
2117
+ class GetGroupResponse < Struct.new(
2118
+ :arn,
2119
+ :creation_timestamp,
2120
+ :id,
2121
+ :last_updated_timestamp,
2122
+ :latest_version,
2123
+ :latest_version_arn,
2124
+ :name)
2125
+ include Aws::Structure
2126
+ end
2127
+
2128
+ # @note When making an API call, you may pass GetGroupVersionRequest
2129
+ # data as a hash:
2130
+ #
2131
+ # {
2132
+ # group_id: "__string", # required
2133
+ # group_version_id: "__string", # required
2134
+ # }
2135
+ #
2136
+ # @!attribute [rw] group_id
2137
+ # @return [String]
2138
+ #
2139
+ # @!attribute [rw] group_version_id
2140
+ # @return [String]
2141
+ #
2142
+ # @see http://docs.aws.amazon.com/goto/WebAPI/greengrass-2017-06-07/GetGroupVersionRequest AWS API Documentation
2143
+ #
2144
+ class GetGroupVersionRequest < Struct.new(
2145
+ :group_id,
2146
+ :group_version_id)
2147
+ include Aws::Structure
2148
+ end
2149
+
2150
+ # Information on the group version
2151
+ #
2152
+ # @!attribute [rw] arn
2153
+ # Arn of the group version.
2154
+ # @return [String]
2155
+ #
2156
+ # @!attribute [rw] creation_timestamp
2157
+ # Timestamp when the group version was created.
2158
+ # @return [String]
2159
+ #
2160
+ # @!attribute [rw] definition
2161
+ # Information on the definition
2162
+ # @return [Types::GroupVersion]
2163
+ #
2164
+ # @!attribute [rw] id
2165
+ # Id of the group version.
2166
+ # @return [String]
2167
+ #
2168
+ # @!attribute [rw] version
2169
+ # Unique Id for a version of the Group.
2170
+ # @return [String]
2171
+ #
2172
+ # @see http://docs.aws.amazon.com/goto/WebAPI/greengrass-2017-06-07/GetGroupVersionResponse AWS API Documentation
2173
+ #
2174
+ class GetGroupVersionResponse < Struct.new(
2175
+ :arn,
2176
+ :creation_timestamp,
2177
+ :definition,
2178
+ :id,
2179
+ :version)
2180
+ include Aws::Structure
2181
+ end
2182
+
2183
+ # @note When making an API call, you may pass GetLoggerDefinitionRequest
2184
+ # data as a hash:
2185
+ #
2186
+ # {
2187
+ # logger_definition_id: "__string", # required
2188
+ # }
2189
+ #
2190
+ # @!attribute [rw] logger_definition_id
2191
+ # @return [String]
2192
+ #
2193
+ # @see http://docs.aws.amazon.com/goto/WebAPI/greengrass-2017-06-07/GetLoggerDefinitionRequest AWS API Documentation
2194
+ #
2195
+ class GetLoggerDefinitionRequest < Struct.new(
2196
+ :logger_definition_id)
2197
+ include Aws::Structure
2198
+ end
2199
+
2200
+ # @!attribute [rw] arn
2201
+ # @return [String]
2202
+ #
2203
+ # @!attribute [rw] creation_timestamp
2204
+ # @return [String]
2205
+ #
2206
+ # @!attribute [rw] id
2207
+ # @return [String]
2208
+ #
2209
+ # @!attribute [rw] last_updated_timestamp
2210
+ # @return [String]
2211
+ #
2212
+ # @!attribute [rw] latest_version
2213
+ # @return [String]
2214
+ #
2215
+ # @!attribute [rw] latest_version_arn
2216
+ # @return [String]
2217
+ #
2218
+ # @!attribute [rw] name
2219
+ # @return [String]
2220
+ #
2221
+ # @see http://docs.aws.amazon.com/goto/WebAPI/greengrass-2017-06-07/GetLoggerDefinitionResponse AWS API Documentation
2222
+ #
2223
+ class GetLoggerDefinitionResponse < Struct.new(
2224
+ :arn,
2225
+ :creation_timestamp,
2226
+ :id,
2227
+ :last_updated_timestamp,
2228
+ :latest_version,
2229
+ :latest_version_arn,
2230
+ :name)
2231
+ include Aws::Structure
2232
+ end
2233
+
2234
+ # @note When making an API call, you may pass GetLoggerDefinitionVersionRequest
2235
+ # data as a hash:
2236
+ #
2237
+ # {
2238
+ # logger_definition_id: "__string", # required
2239
+ # logger_definition_version_id: "__string", # required
2240
+ # }
2241
+ #
2242
+ # @!attribute [rw] logger_definition_id
2243
+ # @return [String]
2244
+ #
2245
+ # @!attribute [rw] logger_definition_version_id
2246
+ # @return [String]
2247
+ #
2248
+ # @see http://docs.aws.amazon.com/goto/WebAPI/greengrass-2017-06-07/GetLoggerDefinitionVersionRequest AWS API Documentation
2249
+ #
2250
+ class GetLoggerDefinitionVersionRequest < Struct.new(
2251
+ :logger_definition_id,
2252
+ :logger_definition_version_id)
2253
+ include Aws::Structure
2254
+ end
2255
+
2256
+ # Information on logger definition version response
2257
+ #
2258
+ # @!attribute [rw] arn
2259
+ # Arn of the logger definition version.
2260
+ # @return [String]
2261
+ #
2262
+ # @!attribute [rw] creation_timestamp
2263
+ # Timestamp of when the logger definition version was created.
2264
+ # @return [String]
2265
+ #
2266
+ # @!attribute [rw] definition
2267
+ # Information on definition
2268
+ # @return [Types::LoggerDefinitionVersion]
2269
+ #
2270
+ # @!attribute [rw] id
2271
+ # Id of the logger definition the version belongs to.
2272
+ # @return [String]
2273
+ #
2274
+ # @!attribute [rw] version
2275
+ # Version of the logger definition version.
2276
+ # @return [String]
2277
+ #
2278
+ # @see http://docs.aws.amazon.com/goto/WebAPI/greengrass-2017-06-07/GetLoggerDefinitionVersionResponse AWS API Documentation
2279
+ #
2280
+ class GetLoggerDefinitionVersionResponse < Struct.new(
2281
+ :arn,
2282
+ :creation_timestamp,
2283
+ :definition,
2284
+ :id,
2285
+ :version)
2286
+ include Aws::Structure
2287
+ end
2288
+
2289
+ # @api private
2290
+ #
2291
+ # @see http://docs.aws.amazon.com/goto/WebAPI/greengrass-2017-06-07/GetServiceRoleForAccountRequest AWS API Documentation
2292
+ #
2293
+ class GetServiceRoleForAccountRequest < Aws::EmptyStructure; end
2294
+
2295
+ # @!attribute [rw] associated_at
2296
+ # Time when the service role was associated to the account.
2297
+ # @return [String]
2298
+ #
2299
+ # @!attribute [rw] role_arn
2300
+ # Role arn which is associated to the account.
2301
+ # @return [String]
2302
+ #
2303
+ # @see http://docs.aws.amazon.com/goto/WebAPI/greengrass-2017-06-07/GetServiceRoleForAccountResponse AWS API Documentation
2304
+ #
2305
+ class GetServiceRoleForAccountResponse < Struct.new(
2306
+ :associated_at,
2307
+ :role_arn)
2308
+ include Aws::Structure
2309
+ end
2310
+
2311
+ # @note When making an API call, you may pass GetSubscriptionDefinitionRequest
2312
+ # data as a hash:
2313
+ #
2314
+ # {
2315
+ # subscription_definition_id: "__string", # required
2316
+ # }
2317
+ #
2318
+ # @!attribute [rw] subscription_definition_id
2319
+ # @return [String]
2320
+ #
2321
+ # @see http://docs.aws.amazon.com/goto/WebAPI/greengrass-2017-06-07/GetSubscriptionDefinitionRequest AWS API Documentation
2322
+ #
2323
+ class GetSubscriptionDefinitionRequest < Struct.new(
2324
+ :subscription_definition_id)
2325
+ include Aws::Structure
2326
+ end
2327
+
2328
+ # @!attribute [rw] arn
2329
+ # @return [String]
2330
+ #
2331
+ # @!attribute [rw] creation_timestamp
2332
+ # @return [String]
2333
+ #
2334
+ # @!attribute [rw] id
2335
+ # @return [String]
2336
+ #
2337
+ # @!attribute [rw] last_updated_timestamp
2338
+ # @return [String]
2339
+ #
2340
+ # @!attribute [rw] latest_version
2341
+ # @return [String]
2342
+ #
2343
+ # @!attribute [rw] latest_version_arn
2344
+ # @return [String]
2345
+ #
2346
+ # @!attribute [rw] name
2347
+ # @return [String]
2348
+ #
2349
+ # @see http://docs.aws.amazon.com/goto/WebAPI/greengrass-2017-06-07/GetSubscriptionDefinitionResponse AWS API Documentation
2350
+ #
2351
+ class GetSubscriptionDefinitionResponse < Struct.new(
2352
+ :arn,
2353
+ :creation_timestamp,
2354
+ :id,
2355
+ :last_updated_timestamp,
2356
+ :latest_version,
2357
+ :latest_version_arn,
2358
+ :name)
2359
+ include Aws::Structure
2360
+ end
2361
+
2362
+ # @note When making an API call, you may pass GetSubscriptionDefinitionVersionRequest
2363
+ # data as a hash:
2364
+ #
2365
+ # {
2366
+ # subscription_definition_id: "__string", # required
2367
+ # subscription_definition_version_id: "__string", # required
2368
+ # }
2369
+ #
2370
+ # @!attribute [rw] subscription_definition_id
2371
+ # @return [String]
2372
+ #
2373
+ # @!attribute [rw] subscription_definition_version_id
2374
+ # @return [String]
2375
+ #
2376
+ # @see http://docs.aws.amazon.com/goto/WebAPI/greengrass-2017-06-07/GetSubscriptionDefinitionVersionRequest AWS API Documentation
2377
+ #
2378
+ class GetSubscriptionDefinitionVersionRequest < Struct.new(
2379
+ :subscription_definition_id,
2380
+ :subscription_definition_version_id)
2381
+ include Aws::Structure
2382
+ end
2383
+
2384
+ # Information on the Subscription Definition Version
2385
+ #
2386
+ # @!attribute [rw] arn
2387
+ # Arn of the subscription definition version.
2388
+ # @return [String]
2389
+ #
2390
+ # @!attribute [rw] creation_timestamp
2391
+ # Timestamp of when the subscription definition version was created.
2392
+ # @return [String]
2393
+ #
2394
+ # @!attribute [rw] definition
2395
+ # Information on the definition
2396
+ # @return [Types::SubscriptionDefinitionVersion]
2397
+ #
2398
+ # @!attribute [rw] id
2399
+ # Id of the subscription definition the version belongs to.
2400
+ # @return [String]
2401
+ #
2402
+ # @!attribute [rw] version
2403
+ # Version of the subscription definition version.
2404
+ # @return [String]
2405
+ #
2406
+ # @see http://docs.aws.amazon.com/goto/WebAPI/greengrass-2017-06-07/GetSubscriptionDefinitionVersionResponse AWS API Documentation
2407
+ #
2408
+ class GetSubscriptionDefinitionVersionResponse < Struct.new(
2409
+ :arn,
2410
+ :creation_timestamp,
2411
+ :definition,
2412
+ :id,
2413
+ :version)
2414
+ include Aws::Structure
2415
+ end
2416
+
2417
+ # Information on group certificate authority properties
2418
+ #
2419
+ # @!attribute [rw] group_certificate_authority_arn
2420
+ # Arn of the certificate authority for the group.
2421
+ # @return [String]
2422
+ #
2423
+ # @!attribute [rw] group_certificate_authority_id
2424
+ # Id of the certificate authority for the group.
2425
+ # @return [String]
2426
+ #
2427
+ # @see http://docs.aws.amazon.com/goto/WebAPI/greengrass-2017-06-07/GroupCertificateAuthorityProperties AWS API Documentation
2428
+ #
2429
+ class GroupCertificateAuthorityProperties < Struct.new(
2430
+ :group_certificate_authority_arn,
2431
+ :group_certificate_authority_id)
2432
+ include Aws::Structure
2433
+ end
2434
+
2435
+ # Information on the group certificate configuration
2436
+ #
2437
+ # @!attribute [rw] certificate_authority_expiry_in_milliseconds
2438
+ # Amount of time when the certificate authority expires in
2439
+ # milliseconds.
2440
+ # @return [String]
2441
+ #
2442
+ # @!attribute [rw] certificate_expiry_in_milliseconds
2443
+ # Amount of time when the certificate expires in milliseconds.
2444
+ # @return [String]
2445
+ #
2446
+ # @!attribute [rw] group_id
2447
+ # Id of the group the certificate configuration belongs to.
2448
+ # @return [String]
2449
+ #
2450
+ # @see http://docs.aws.amazon.com/goto/WebAPI/greengrass-2017-06-07/GroupCertificateConfiguration AWS API Documentation
2451
+ #
2452
+ class GroupCertificateConfiguration < Struct.new(
2453
+ :certificate_authority_expiry_in_milliseconds,
2454
+ :certificate_expiry_in_milliseconds,
2455
+ :group_id)
2456
+ include Aws::Structure
2457
+ end
2458
+
2459
+ # Information of a group
2460
+ #
2461
+ # @!attribute [rw] arn
2462
+ # Arn of a group.
2463
+ # @return [String]
2464
+ #
2465
+ # @!attribute [rw] creation_timestamp
2466
+ # Timestamp of when the group was created.
2467
+ # @return [String]
2468
+ #
2469
+ # @!attribute [rw] id
2470
+ # Id of a group.
2471
+ # @return [String]
2472
+ #
2473
+ # @!attribute [rw] last_updated_timestamp
2474
+ # Last updated timestamp of the group.
2475
+ # @return [String]
2476
+ #
2477
+ # @!attribute [rw] latest_version
2478
+ # Last version of the group.
2479
+ # @return [String]
2480
+ #
2481
+ # @!attribute [rw] latest_version_arn
2482
+ # Latest version arn of the group.
2483
+ # @return [String]
2484
+ #
2485
+ # @!attribute [rw] name
2486
+ # Name of a group.
2487
+ # @return [String]
2488
+ #
2489
+ # @see http://docs.aws.amazon.com/goto/WebAPI/greengrass-2017-06-07/GroupInformation AWS API Documentation
2490
+ #
2491
+ class GroupInformation < Struct.new(
2492
+ :arn,
2493
+ :creation_timestamp,
2494
+ :id,
2495
+ :last_updated_timestamp,
2496
+ :latest_version,
2497
+ :latest_version_arn,
2498
+ :name)
2499
+ include Aws::Structure
2500
+ end
2501
+
2502
+ # Information on group version
2503
+ #
2504
+ # @note When making an API call, you may pass GroupVersion
2505
+ # data as a hash:
2506
+ #
2507
+ # {
2508
+ # core_definition_version_arn: "__string",
2509
+ # device_definition_version_arn: "__string",
2510
+ # function_definition_version_arn: "__string",
2511
+ # logger_definition_version_arn: "__string",
2512
+ # subscription_definition_version_arn: "__string",
2513
+ # }
2514
+ #
2515
+ # @!attribute [rw] core_definition_version_arn
2516
+ # Core definition version arn for this group.
2517
+ # @return [String]
2518
+ #
2519
+ # @!attribute [rw] device_definition_version_arn
2520
+ # Device definition version arn for this group.
2521
+ # @return [String]
2522
+ #
2523
+ # @!attribute [rw] function_definition_version_arn
2524
+ # Function definition version arn for this group.
2525
+ # @return [String]
2526
+ #
2527
+ # @!attribute [rw] logger_definition_version_arn
2528
+ # Logger definitionv ersion arn for this group.
2529
+ # @return [String]
2530
+ #
2531
+ # @!attribute [rw] subscription_definition_version_arn
2532
+ # Subscription definition version arn for this group.
2533
+ # @return [String]
2534
+ #
2535
+ # @see http://docs.aws.amazon.com/goto/WebAPI/greengrass-2017-06-07/GroupVersion AWS API Documentation
2536
+ #
2537
+ class GroupVersion < Struct.new(
2538
+ :core_definition_version_arn,
2539
+ :device_definition_version_arn,
2540
+ :function_definition_version_arn,
2541
+ :logger_definition_version_arn,
2542
+ :subscription_definition_version_arn)
2543
+ include Aws::Structure
2544
+ end
2545
+
2546
+ # @note When making an API call, you may pass ListCoreDefinitionVersionsRequest
2547
+ # data as a hash:
2548
+ #
2549
+ # {
2550
+ # core_definition_id: "__string", # required
2551
+ # max_results: "__string",
2552
+ # next_token: "__string",
2553
+ # }
2554
+ #
2555
+ # @!attribute [rw] core_definition_id
2556
+ # @return [String]
2557
+ #
2558
+ # @!attribute [rw] max_results
2559
+ # @return [String]
2560
+ #
2561
+ # @!attribute [rw] next_token
2562
+ # @return [String]
2563
+ #
2564
+ # @see http://docs.aws.amazon.com/goto/WebAPI/greengrass-2017-06-07/ListCoreDefinitionVersionsRequest AWS API Documentation
2565
+ #
2566
+ class ListCoreDefinitionVersionsRequest < Struct.new(
2567
+ :core_definition_id,
2568
+ :max_results,
2569
+ :next_token)
2570
+ include Aws::Structure
2571
+ end
2572
+
2573
+ # @!attribute [rw] next_token
2574
+ # @return [String]
2575
+ #
2576
+ # @!attribute [rw] versions
2577
+ # @return [Array<Types::VersionInformation>]
2578
+ #
2579
+ # @see http://docs.aws.amazon.com/goto/WebAPI/greengrass-2017-06-07/ListCoreDefinitionVersionsResponse AWS API Documentation
2580
+ #
2581
+ class ListCoreDefinitionVersionsResponse < Struct.new(
2582
+ :next_token,
2583
+ :versions)
2584
+ include Aws::Structure
2585
+ end
2586
+
2587
+ # @note When making an API call, you may pass ListCoreDefinitionsRequest
2588
+ # data as a hash:
2589
+ #
2590
+ # {
2591
+ # max_results: "__string",
2592
+ # next_token: "__string",
2593
+ # }
2594
+ #
2595
+ # @!attribute [rw] max_results
2596
+ # @return [String]
2597
+ #
2598
+ # @!attribute [rw] next_token
2599
+ # @return [String]
2600
+ #
2601
+ # @see http://docs.aws.amazon.com/goto/WebAPI/greengrass-2017-06-07/ListCoreDefinitionsRequest AWS API Documentation
2602
+ #
2603
+ class ListCoreDefinitionsRequest < Struct.new(
2604
+ :max_results,
2605
+ :next_token)
2606
+ include Aws::Structure
2607
+ end
2608
+
2609
+ # @!attribute [rw] definitions
2610
+ # @return [Array<Types::DefinitionInformation>]
2611
+ #
2612
+ # @!attribute [rw] next_token
2613
+ # @return [String]
2614
+ #
2615
+ # @see http://docs.aws.amazon.com/goto/WebAPI/greengrass-2017-06-07/ListCoreDefinitionsResponse AWS API Documentation
2616
+ #
2617
+ class ListCoreDefinitionsResponse < Struct.new(
2618
+ :definitions,
2619
+ :next_token)
2620
+ include Aws::Structure
2621
+ end
2622
+
2623
+ # List of definition response
2624
+ #
2625
+ # @!attribute [rw] definitions
2626
+ # Definitions
2627
+ # @return [Array<Types::DefinitionInformation>]
2628
+ #
2629
+ # @!attribute [rw] next_token
2630
+ # The token for the next set of results, or ''null'' if there are
2631
+ # no additional results.
2632
+ # @return [String]
2633
+ #
2634
+ # @see http://docs.aws.amazon.com/goto/WebAPI/greengrass-2017-06-07/ListDefinitionsResponse AWS API Documentation
2635
+ #
2636
+ class ListDefinitionsResponse < Struct.new(
2637
+ :definitions,
2638
+ :next_token)
2639
+ include Aws::Structure
2640
+ end
2641
+
2642
+ # @note When making an API call, you may pass ListDeploymentsRequest
2643
+ # data as a hash:
2644
+ #
2645
+ # {
2646
+ # group_id: "__string", # required
2647
+ # max_results: "__string",
2648
+ # next_token: "__string",
2649
+ # }
2650
+ #
2651
+ # @!attribute [rw] group_id
2652
+ # @return [String]
2653
+ #
2654
+ # @!attribute [rw] max_results
2655
+ # @return [String]
2656
+ #
2657
+ # @!attribute [rw] next_token
2658
+ # @return [String]
2659
+ #
2660
+ # @see http://docs.aws.amazon.com/goto/WebAPI/greengrass-2017-06-07/ListDeploymentsRequest AWS API Documentation
2661
+ #
2662
+ class ListDeploymentsRequest < Struct.new(
2663
+ :group_id,
2664
+ :max_results,
2665
+ :next_token)
2666
+ include Aws::Structure
2667
+ end
2668
+
2669
+ # @!attribute [rw] deployments
2670
+ # Information on deployments
2671
+ # @return [Array<Types::Deployment>]
2672
+ #
2673
+ # @!attribute [rw] next_token
2674
+ # The token for the next set of results, or ''null'' if there are
2675
+ # no additional results.
2676
+ # @return [String]
2677
+ #
2678
+ # @see http://docs.aws.amazon.com/goto/WebAPI/greengrass-2017-06-07/ListDeploymentsResponse AWS API Documentation
2679
+ #
2680
+ class ListDeploymentsResponse < Struct.new(
2681
+ :deployments,
2682
+ :next_token)
2683
+ include Aws::Structure
2684
+ end
2685
+
2686
+ # @note When making an API call, you may pass ListDeviceDefinitionVersionsRequest
2687
+ # data as a hash:
2688
+ #
2689
+ # {
2690
+ # device_definition_id: "__string", # required
2691
+ # max_results: "__string",
2692
+ # next_token: "__string",
2693
+ # }
2694
+ #
2695
+ # @!attribute [rw] device_definition_id
2696
+ # @return [String]
2697
+ #
2698
+ # @!attribute [rw] max_results
2699
+ # @return [String]
2700
+ #
2701
+ # @!attribute [rw] next_token
2702
+ # @return [String]
2703
+ #
2704
+ # @see http://docs.aws.amazon.com/goto/WebAPI/greengrass-2017-06-07/ListDeviceDefinitionVersionsRequest AWS API Documentation
2705
+ #
2706
+ class ListDeviceDefinitionVersionsRequest < Struct.new(
2707
+ :device_definition_id,
2708
+ :max_results,
2709
+ :next_token)
2710
+ include Aws::Structure
2711
+ end
2712
+
2713
+ # @!attribute [rw] next_token
2714
+ # @return [String]
2715
+ #
2716
+ # @!attribute [rw] versions
2717
+ # @return [Array<Types::VersionInformation>]
2718
+ #
2719
+ # @see http://docs.aws.amazon.com/goto/WebAPI/greengrass-2017-06-07/ListDeviceDefinitionVersionsResponse AWS API Documentation
2720
+ #
2721
+ class ListDeviceDefinitionVersionsResponse < Struct.new(
2722
+ :next_token,
2723
+ :versions)
2724
+ include Aws::Structure
2725
+ end
2726
+
2727
+ # @note When making an API call, you may pass ListDeviceDefinitionsRequest
2728
+ # data as a hash:
2729
+ #
2730
+ # {
2731
+ # max_results: "__string",
2732
+ # next_token: "__string",
2733
+ # }
2734
+ #
2735
+ # @!attribute [rw] max_results
2736
+ # @return [String]
2737
+ #
2738
+ # @!attribute [rw] next_token
2739
+ # @return [String]
2740
+ #
2741
+ # @see http://docs.aws.amazon.com/goto/WebAPI/greengrass-2017-06-07/ListDeviceDefinitionsRequest AWS API Documentation
2742
+ #
2743
+ class ListDeviceDefinitionsRequest < Struct.new(
2744
+ :max_results,
2745
+ :next_token)
2746
+ include Aws::Structure
2747
+ end
2748
+
2749
+ # @!attribute [rw] definitions
2750
+ # @return [Array<Types::DefinitionInformation>]
2751
+ #
2752
+ # @!attribute [rw] next_token
2753
+ # @return [String]
2754
+ #
2755
+ # @see http://docs.aws.amazon.com/goto/WebAPI/greengrass-2017-06-07/ListDeviceDefinitionsResponse AWS API Documentation
2756
+ #
2757
+ class ListDeviceDefinitionsResponse < Struct.new(
2758
+ :definitions,
2759
+ :next_token)
2760
+ include Aws::Structure
2761
+ end
2762
+
2763
+ # @note When making an API call, you may pass ListFunctionDefinitionVersionsRequest
2764
+ # data as a hash:
2765
+ #
2766
+ # {
2767
+ # function_definition_id: "__string", # required
2768
+ # max_results: "__string",
2769
+ # next_token: "__string",
2770
+ # }
2771
+ #
2772
+ # @!attribute [rw] function_definition_id
2773
+ # @return [String]
2774
+ #
2775
+ # @!attribute [rw] max_results
2776
+ # @return [String]
2777
+ #
2778
+ # @!attribute [rw] next_token
2779
+ # @return [String]
2780
+ #
2781
+ # @see http://docs.aws.amazon.com/goto/WebAPI/greengrass-2017-06-07/ListFunctionDefinitionVersionsRequest AWS API Documentation
2782
+ #
2783
+ class ListFunctionDefinitionVersionsRequest < Struct.new(
2784
+ :function_definition_id,
2785
+ :max_results,
2786
+ :next_token)
2787
+ include Aws::Structure
2788
+ end
2789
+
2790
+ # @!attribute [rw] next_token
2791
+ # @return [String]
2792
+ #
2793
+ # @!attribute [rw] versions
2794
+ # @return [Array<Types::VersionInformation>]
2795
+ #
2796
+ # @see http://docs.aws.amazon.com/goto/WebAPI/greengrass-2017-06-07/ListFunctionDefinitionVersionsResponse AWS API Documentation
2797
+ #
2798
+ class ListFunctionDefinitionVersionsResponse < Struct.new(
2799
+ :next_token,
2800
+ :versions)
2801
+ include Aws::Structure
2802
+ end
2803
+
2804
+ # @note When making an API call, you may pass ListFunctionDefinitionsRequest
2805
+ # data as a hash:
2806
+ #
2807
+ # {
2808
+ # max_results: "__string",
2809
+ # next_token: "__string",
2810
+ # }
2811
+ #
2812
+ # @!attribute [rw] max_results
2813
+ # @return [String]
2814
+ #
2815
+ # @!attribute [rw] next_token
2816
+ # @return [String]
2817
+ #
2818
+ # @see http://docs.aws.amazon.com/goto/WebAPI/greengrass-2017-06-07/ListFunctionDefinitionsRequest AWS API Documentation
2819
+ #
2820
+ class ListFunctionDefinitionsRequest < Struct.new(
2821
+ :max_results,
2822
+ :next_token)
2823
+ include Aws::Structure
2824
+ end
2825
+
2826
+ # @!attribute [rw] definitions
2827
+ # @return [Array<Types::DefinitionInformation>]
2828
+ #
2829
+ # @!attribute [rw] next_token
2830
+ # @return [String]
2831
+ #
2832
+ # @see http://docs.aws.amazon.com/goto/WebAPI/greengrass-2017-06-07/ListFunctionDefinitionsResponse AWS API Documentation
2833
+ #
2834
+ class ListFunctionDefinitionsResponse < Struct.new(
2835
+ :definitions,
2836
+ :next_token)
2837
+ include Aws::Structure
2838
+ end
2839
+
2840
+ # @note When making an API call, you may pass ListGroupCertificateAuthoritiesRequest
2841
+ # data as a hash:
2842
+ #
2843
+ # {
2844
+ # group_id: "__string", # required
2845
+ # }
2846
+ #
2847
+ # @!attribute [rw] group_id
2848
+ # @return [String]
2849
+ #
2850
+ # @see http://docs.aws.amazon.com/goto/WebAPI/greengrass-2017-06-07/ListGroupCertificateAuthoritiesRequest AWS API Documentation
2851
+ #
2852
+ class ListGroupCertificateAuthoritiesRequest < Struct.new(
2853
+ :group_id)
2854
+ include Aws::Structure
2855
+ end
2856
+
2857
+ # @!attribute [rw] group_certificate_authorities
2858
+ # List of certificate authorities associated with the group.
2859
+ # @return [Array<Types::GroupCertificateAuthorityProperties>]
2860
+ #
2861
+ # @see http://docs.aws.amazon.com/goto/WebAPI/greengrass-2017-06-07/ListGroupCertificateAuthoritiesResponse AWS API Documentation
2862
+ #
2863
+ class ListGroupCertificateAuthoritiesResponse < Struct.new(
2864
+ :group_certificate_authorities)
2865
+ include Aws::Structure
2866
+ end
2867
+
2868
+ # @note When making an API call, you may pass ListGroupVersionsRequest
2869
+ # data as a hash:
2870
+ #
2871
+ # {
2872
+ # group_id: "__string", # required
2873
+ # max_results: "__string",
2874
+ # next_token: "__string",
2875
+ # }
2876
+ #
2877
+ # @!attribute [rw] group_id
2878
+ # @return [String]
2879
+ #
2880
+ # @!attribute [rw] max_results
2881
+ # @return [String]
2882
+ #
2883
+ # @!attribute [rw] next_token
2884
+ # @return [String]
2885
+ #
2886
+ # @see http://docs.aws.amazon.com/goto/WebAPI/greengrass-2017-06-07/ListGroupVersionsRequest AWS API Documentation
2887
+ #
2888
+ class ListGroupVersionsRequest < Struct.new(
2889
+ :group_id,
2890
+ :max_results,
2891
+ :next_token)
2892
+ include Aws::Structure
2893
+ end
2894
+
2895
+ # @!attribute [rw] next_token
2896
+ # @return [String]
2897
+ #
2898
+ # @!attribute [rw] versions
2899
+ # @return [Array<Types::VersionInformation>]
2900
+ #
2901
+ # @see http://docs.aws.amazon.com/goto/WebAPI/greengrass-2017-06-07/ListGroupVersionsResponse AWS API Documentation
2902
+ #
2903
+ class ListGroupVersionsResponse < Struct.new(
2904
+ :next_token,
2905
+ :versions)
2906
+ include Aws::Structure
2907
+ end
2908
+
2909
+ # @note When making an API call, you may pass ListGroupsRequest
2910
+ # data as a hash:
2911
+ #
2912
+ # {
2913
+ # max_results: "__string",
2914
+ # next_token: "__string",
2915
+ # }
2916
+ #
2917
+ # @!attribute [rw] max_results
2918
+ # @return [String]
2919
+ #
2920
+ # @!attribute [rw] next_token
2921
+ # @return [String]
2922
+ #
2923
+ # @see http://docs.aws.amazon.com/goto/WebAPI/greengrass-2017-06-07/ListGroupsRequest AWS API Documentation
2924
+ #
2925
+ class ListGroupsRequest < Struct.new(
2926
+ :max_results,
2927
+ :next_token)
2928
+ include Aws::Structure
2929
+ end
2930
+
2931
+ # @!attribute [rw] groups
2932
+ # Groups
2933
+ # @return [Array<Types::GroupInformation>]
2934
+ #
2935
+ # @!attribute [rw] next_token
2936
+ # The token for the next set of results, or ''null'' if there are
2937
+ # no additional results.
2938
+ # @return [String]
2939
+ #
2940
+ # @see http://docs.aws.amazon.com/goto/WebAPI/greengrass-2017-06-07/ListGroupsResponse AWS API Documentation
2941
+ #
2942
+ class ListGroupsResponse < Struct.new(
2943
+ :groups,
2944
+ :next_token)
2945
+ include Aws::Structure
2946
+ end
2947
+
2948
+ # @note When making an API call, you may pass ListLoggerDefinitionVersionsRequest
2949
+ # data as a hash:
2950
+ #
2951
+ # {
2952
+ # logger_definition_id: "__string", # required
2953
+ # max_results: "__string",
2954
+ # next_token: "__string",
2955
+ # }
2956
+ #
2957
+ # @!attribute [rw] logger_definition_id
2958
+ # @return [String]
2959
+ #
2960
+ # @!attribute [rw] max_results
2961
+ # @return [String]
2962
+ #
2963
+ # @!attribute [rw] next_token
2964
+ # @return [String]
2965
+ #
2966
+ # @see http://docs.aws.amazon.com/goto/WebAPI/greengrass-2017-06-07/ListLoggerDefinitionVersionsRequest AWS API Documentation
2967
+ #
2968
+ class ListLoggerDefinitionVersionsRequest < Struct.new(
2969
+ :logger_definition_id,
2970
+ :max_results,
2971
+ :next_token)
2972
+ include Aws::Structure
2973
+ end
2974
+
2975
+ # @!attribute [rw] next_token
2976
+ # @return [String]
2977
+ #
2978
+ # @!attribute [rw] versions
2979
+ # @return [Array<Types::VersionInformation>]
2980
+ #
2981
+ # @see http://docs.aws.amazon.com/goto/WebAPI/greengrass-2017-06-07/ListLoggerDefinitionVersionsResponse AWS API Documentation
2982
+ #
2983
+ class ListLoggerDefinitionVersionsResponse < Struct.new(
2984
+ :next_token,
2985
+ :versions)
2986
+ include Aws::Structure
2987
+ end
2988
+
2989
+ # @note When making an API call, you may pass ListLoggerDefinitionsRequest
2990
+ # data as a hash:
2991
+ #
2992
+ # {
2993
+ # max_results: "__string",
2994
+ # next_token: "__string",
2995
+ # }
2996
+ #
2997
+ # @!attribute [rw] max_results
2998
+ # @return [String]
2999
+ #
3000
+ # @!attribute [rw] next_token
3001
+ # @return [String]
3002
+ #
3003
+ # @see http://docs.aws.amazon.com/goto/WebAPI/greengrass-2017-06-07/ListLoggerDefinitionsRequest AWS API Documentation
3004
+ #
3005
+ class ListLoggerDefinitionsRequest < Struct.new(
3006
+ :max_results,
3007
+ :next_token)
3008
+ include Aws::Structure
3009
+ end
3010
+
3011
+ # @!attribute [rw] definitions
3012
+ # @return [Array<Types::DefinitionInformation>]
3013
+ #
3014
+ # @!attribute [rw] next_token
3015
+ # @return [String]
3016
+ #
3017
+ # @see http://docs.aws.amazon.com/goto/WebAPI/greengrass-2017-06-07/ListLoggerDefinitionsResponse AWS API Documentation
3018
+ #
3019
+ class ListLoggerDefinitionsResponse < Struct.new(
3020
+ :definitions,
3021
+ :next_token)
3022
+ include Aws::Structure
3023
+ end
3024
+
3025
+ # @note When making an API call, you may pass ListSubscriptionDefinitionVersionsRequest
3026
+ # data as a hash:
3027
+ #
3028
+ # {
3029
+ # max_results: "__string",
3030
+ # next_token: "__string",
3031
+ # subscription_definition_id: "__string", # required
3032
+ # }
3033
+ #
3034
+ # @!attribute [rw] max_results
3035
+ # @return [String]
3036
+ #
3037
+ # @!attribute [rw] next_token
3038
+ # @return [String]
3039
+ #
3040
+ # @!attribute [rw] subscription_definition_id
3041
+ # @return [String]
3042
+ #
3043
+ # @see http://docs.aws.amazon.com/goto/WebAPI/greengrass-2017-06-07/ListSubscriptionDefinitionVersionsRequest AWS API Documentation
3044
+ #
3045
+ class ListSubscriptionDefinitionVersionsRequest < Struct.new(
3046
+ :max_results,
3047
+ :next_token,
3048
+ :subscription_definition_id)
3049
+ include Aws::Structure
3050
+ end
3051
+
3052
+ # @!attribute [rw] next_token
3053
+ # @return [String]
3054
+ #
3055
+ # @!attribute [rw] versions
3056
+ # @return [Array<Types::VersionInformation>]
3057
+ #
3058
+ # @see http://docs.aws.amazon.com/goto/WebAPI/greengrass-2017-06-07/ListSubscriptionDefinitionVersionsResponse AWS API Documentation
3059
+ #
3060
+ class ListSubscriptionDefinitionVersionsResponse < Struct.new(
3061
+ :next_token,
3062
+ :versions)
3063
+ include Aws::Structure
3064
+ end
3065
+
3066
+ # @note When making an API call, you may pass ListSubscriptionDefinitionsRequest
3067
+ # data as a hash:
3068
+ #
3069
+ # {
3070
+ # max_results: "__string",
3071
+ # next_token: "__string",
3072
+ # }
3073
+ #
3074
+ # @!attribute [rw] max_results
3075
+ # @return [String]
3076
+ #
3077
+ # @!attribute [rw] next_token
3078
+ # @return [String]
3079
+ #
3080
+ # @see http://docs.aws.amazon.com/goto/WebAPI/greengrass-2017-06-07/ListSubscriptionDefinitionsRequest AWS API Documentation
3081
+ #
3082
+ class ListSubscriptionDefinitionsRequest < Struct.new(
3083
+ :max_results,
3084
+ :next_token)
3085
+ include Aws::Structure
3086
+ end
3087
+
3088
+ # @!attribute [rw] definitions
3089
+ # @return [Array<Types::DefinitionInformation>]
3090
+ #
3091
+ # @!attribute [rw] next_token
3092
+ # @return [String]
3093
+ #
3094
+ # @see http://docs.aws.amazon.com/goto/WebAPI/greengrass-2017-06-07/ListSubscriptionDefinitionsResponse AWS API Documentation
3095
+ #
3096
+ class ListSubscriptionDefinitionsResponse < Struct.new(
3097
+ :definitions,
3098
+ :next_token)
3099
+ include Aws::Structure
3100
+ end
3101
+
3102
+ # List of versions response
3103
+ #
3104
+ # @!attribute [rw] next_token
3105
+ # The token for the next set of results, or ''null'' if there are
3106
+ # no additional results.
3107
+ # @return [String]
3108
+ #
3109
+ # @!attribute [rw] versions
3110
+ # Versions
3111
+ # @return [Array<Types::VersionInformation>]
3112
+ #
3113
+ # @see http://docs.aws.amazon.com/goto/WebAPI/greengrass-2017-06-07/ListVersionsResponse AWS API Documentation
3114
+ #
3115
+ class ListVersionsResponse < Struct.new(
3116
+ :next_token,
3117
+ :versions)
3118
+ include Aws::Structure
3119
+ end
3120
+
3121
+ # Information on the Logger
3122
+ #
3123
+ # @note When making an API call, you may pass Logger
3124
+ # data as a hash:
3125
+ #
3126
+ # {
3127
+ # component: "GreengrassSystem", # accepts GreengrassSystem, Lambda
3128
+ # id: "__string",
3129
+ # level: "DEBUG", # accepts DEBUG, INFO, WARN, ERROR, FATAL
3130
+ # space: 1,
3131
+ # type: "FileSystem", # accepts FileSystem, AWSCloudWatch
3132
+ # }
3133
+ #
3134
+ # @!attribute [rw] component
3135
+ # The component that will be subject to logs
3136
+ # @return [String]
3137
+ #
3138
+ # @!attribute [rw] id
3139
+ # Element Id for this entry in the list.
3140
+ # @return [String]
3141
+ #
3142
+ # @!attribute [rw] level
3143
+ # The level of the logs
3144
+ # @return [String]
3145
+ #
3146
+ # @!attribute [rw] space
3147
+ # Amount of hardware space, in KB, to use if file system is used for
3148
+ # logging purposes.
3149
+ # @return [Integer]
3150
+ #
3151
+ # @!attribute [rw] type
3152
+ # The type which will be use for log output
3153
+ # @return [String]
3154
+ #
3155
+ # @see http://docs.aws.amazon.com/goto/WebAPI/greengrass-2017-06-07/Logger AWS API Documentation
3156
+ #
3157
+ class Logger < Struct.new(
3158
+ :component,
3159
+ :id,
3160
+ :level,
3161
+ :space,
3162
+ :type)
3163
+ include Aws::Structure
3164
+ end
3165
+
3166
+ # Information on logger definition version
3167
+ #
3168
+ # @note When making an API call, you may pass LoggerDefinitionVersion
3169
+ # data as a hash:
3170
+ #
3171
+ # {
3172
+ # loggers: [
3173
+ # {
3174
+ # component: "GreengrassSystem", # accepts GreengrassSystem, Lambda
3175
+ # id: "__string",
3176
+ # level: "DEBUG", # accepts DEBUG, INFO, WARN, ERROR, FATAL
3177
+ # space: 1,
3178
+ # type: "FileSystem", # accepts FileSystem, AWSCloudWatch
3179
+ # },
3180
+ # ],
3181
+ # }
3182
+ #
3183
+ # @!attribute [rw] loggers
3184
+ # List of loggers.
3185
+ # @return [Array<Types::Logger>]
3186
+ #
3187
+ # @see http://docs.aws.amazon.com/goto/WebAPI/greengrass-2017-06-07/LoggerDefinitionVersion AWS API Documentation
3188
+ #
3189
+ class LoggerDefinitionVersion < Struct.new(
3190
+ :loggers)
3191
+ include Aws::Structure
3192
+ end
3193
+
3194
+ # Information on subscription
3195
+ #
3196
+ # @note When making an API call, you may pass Subscription
3197
+ # data as a hash:
3198
+ #
3199
+ # {
3200
+ # id: "__string",
3201
+ # source: "__string",
3202
+ # subject: "__string",
3203
+ # target: "__string",
3204
+ # }
3205
+ #
3206
+ # @!attribute [rw] id
3207
+ # Element Id for this entry in the list.
3208
+ # @return [String]
3209
+ #
3210
+ # @!attribute [rw] source
3211
+ # Source of the subscription. Can be a thing arn, lambda arn or word
3212
+ # 'cloud'
3213
+ # @return [String]
3214
+ #
3215
+ # @!attribute [rw] subject
3216
+ # Subject of the message.
3217
+ # @return [String]
3218
+ #
3219
+ # @!attribute [rw] target
3220
+ # Where the message is sent to. Can be a thing arn, lambda arn or word
3221
+ # 'cloud'.
3222
+ # @return [String]
3223
+ #
3224
+ # @see http://docs.aws.amazon.com/goto/WebAPI/greengrass-2017-06-07/Subscription AWS API Documentation
3225
+ #
3226
+ class Subscription < Struct.new(
3227
+ :id,
3228
+ :source,
3229
+ :subject,
3230
+ :target)
3231
+ include Aws::Structure
3232
+ end
3233
+
3234
+ # Information on subscription definition version
3235
+ #
3236
+ # @note When making an API call, you may pass SubscriptionDefinitionVersion
3237
+ # data as a hash:
3238
+ #
3239
+ # {
3240
+ # subscriptions: [
3241
+ # {
3242
+ # id: "__string",
3243
+ # source: "__string",
3244
+ # subject: "__string",
3245
+ # target: "__string",
3246
+ # },
3247
+ # ],
3248
+ # }
3249
+ #
3250
+ # @!attribute [rw] subscriptions
3251
+ # Subscriptions in the version.
3252
+ # @return [Array<Types::Subscription>]
3253
+ #
3254
+ # @see http://docs.aws.amazon.com/goto/WebAPI/greengrass-2017-06-07/SubscriptionDefinitionVersion AWS API Documentation
3255
+ #
3256
+ class SubscriptionDefinitionVersion < Struct.new(
3257
+ :subscriptions)
3258
+ include Aws::Structure
3259
+ end
3260
+
3261
+ # Information on connectivity info
3262
+ #
3263
+ # @note When making an API call, you may pass UpdateConnectivityInfoRequest
3264
+ # data as a hash:
3265
+ #
3266
+ # {
3267
+ # connectivity_info: [
3268
+ # {
3269
+ # host_address: "__string",
3270
+ # id: "__string",
3271
+ # metadata: "__string",
3272
+ # port_number: 1,
3273
+ # },
3274
+ # ],
3275
+ # thing_name: "__string", # required
3276
+ # }
3277
+ #
3278
+ # @!attribute [rw] connectivity_info
3279
+ # Connectivity info array
3280
+ # @return [Array<Types::ConnectivityInfo>]
3281
+ #
3282
+ # @!attribute [rw] thing_name
3283
+ # @return [String]
3284
+ #
3285
+ # @see http://docs.aws.amazon.com/goto/WebAPI/greengrass-2017-06-07/UpdateConnectivityInfoRequest AWS API Documentation
3286
+ #
3287
+ class UpdateConnectivityInfoRequest < Struct.new(
3288
+ :connectivity_info,
3289
+ :thing_name)
3290
+ include Aws::Structure
3291
+ end
3292
+
3293
+ # @!attribute [rw] message
3294
+ # @return [String]
3295
+ #
3296
+ # @!attribute [rw] version
3297
+ # New Version
3298
+ # @return [String]
3299
+ #
3300
+ # @see http://docs.aws.amazon.com/goto/WebAPI/greengrass-2017-06-07/UpdateConnectivityInfoResponse AWS API Documentation
3301
+ #
3302
+ class UpdateConnectivityInfoResponse < Struct.new(
3303
+ :message,
3304
+ :version)
3305
+ include Aws::Structure
3306
+ end
3307
+
3308
+ # @note When making an API call, you may pass UpdateCoreDefinitionRequest
3309
+ # data as a hash:
3310
+ #
3311
+ # {
3312
+ # core_definition_id: "__string", # required
3313
+ # name: "__string",
3314
+ # }
3315
+ #
3316
+ # @!attribute [rw] core_definition_id
3317
+ # @return [String]
3318
+ #
3319
+ # @!attribute [rw] name
3320
+ # @return [String]
3321
+ #
3322
+ # @see http://docs.aws.amazon.com/goto/WebAPI/greengrass-2017-06-07/UpdateCoreDefinitionRequest AWS API Documentation
3323
+ #
3324
+ class UpdateCoreDefinitionRequest < Struct.new(
3325
+ :core_definition_id,
3326
+ :name)
3327
+ include Aws::Structure
3328
+ end
3329
+
3330
+ # @see http://docs.aws.amazon.com/goto/WebAPI/greengrass-2017-06-07/UpdateCoreDefinitionResponse AWS API Documentation
3331
+ #
3332
+ class UpdateCoreDefinitionResponse < Aws::EmptyStructure; end
3333
+
3334
+ # @note When making an API call, you may pass UpdateDeviceDefinitionRequest
3335
+ # data as a hash:
3336
+ #
3337
+ # {
3338
+ # device_definition_id: "__string", # required
3339
+ # name: "__string",
3340
+ # }
3341
+ #
3342
+ # @!attribute [rw] device_definition_id
3343
+ # @return [String]
3344
+ #
3345
+ # @!attribute [rw] name
3346
+ # @return [String]
3347
+ #
3348
+ # @see http://docs.aws.amazon.com/goto/WebAPI/greengrass-2017-06-07/UpdateDeviceDefinitionRequest AWS API Documentation
3349
+ #
3350
+ class UpdateDeviceDefinitionRequest < Struct.new(
3351
+ :device_definition_id,
3352
+ :name)
3353
+ include Aws::Structure
3354
+ end
3355
+
3356
+ # @see http://docs.aws.amazon.com/goto/WebAPI/greengrass-2017-06-07/UpdateDeviceDefinitionResponse AWS API Documentation
3357
+ #
3358
+ class UpdateDeviceDefinitionResponse < Aws::EmptyStructure; end
3359
+
3360
+ # @note When making an API call, you may pass UpdateFunctionDefinitionRequest
3361
+ # data as a hash:
3362
+ #
3363
+ # {
3364
+ # function_definition_id: "__string", # required
3365
+ # name: "__string",
3366
+ # }
3367
+ #
3368
+ # @!attribute [rw] function_definition_id
3369
+ # @return [String]
3370
+ #
3371
+ # @!attribute [rw] name
3372
+ # @return [String]
3373
+ #
3374
+ # @see http://docs.aws.amazon.com/goto/WebAPI/greengrass-2017-06-07/UpdateFunctionDefinitionRequest AWS API Documentation
3375
+ #
3376
+ class UpdateFunctionDefinitionRequest < Struct.new(
3377
+ :function_definition_id,
3378
+ :name)
3379
+ include Aws::Structure
3380
+ end
3381
+
3382
+ # @see http://docs.aws.amazon.com/goto/WebAPI/greengrass-2017-06-07/UpdateFunctionDefinitionResponse AWS API Documentation
3383
+ #
3384
+ class UpdateFunctionDefinitionResponse < Aws::EmptyStructure; end
3385
+
3386
+ # @note When making an API call, you may pass UpdateGroupCertificateConfigurationRequest
3387
+ # data as a hash:
3388
+ #
3389
+ # {
3390
+ # certificate_expiry_in_milliseconds: "__string",
3391
+ # group_id: "__string", # required
3392
+ # }
3393
+ #
3394
+ # @!attribute [rw] certificate_expiry_in_milliseconds
3395
+ # Amount of time when the certificate expires in milliseconds.
3396
+ # @return [String]
3397
+ #
3398
+ # @!attribute [rw] group_id
3399
+ # @return [String]
3400
+ #
3401
+ # @see http://docs.aws.amazon.com/goto/WebAPI/greengrass-2017-06-07/UpdateGroupCertificateConfigurationRequest AWS API Documentation
3402
+ #
3403
+ class UpdateGroupCertificateConfigurationRequest < Struct.new(
3404
+ :certificate_expiry_in_milliseconds,
3405
+ :group_id)
3406
+ include Aws::Structure
3407
+ end
3408
+
3409
+ # @!attribute [rw] certificate_authority_expiry_in_milliseconds
3410
+ # @return [String]
3411
+ #
3412
+ # @!attribute [rw] certificate_expiry_in_milliseconds
3413
+ # @return [String]
3414
+ #
3415
+ # @!attribute [rw] group_id
3416
+ # @return [String]
3417
+ #
3418
+ # @see http://docs.aws.amazon.com/goto/WebAPI/greengrass-2017-06-07/UpdateGroupCertificateConfigurationResponse AWS API Documentation
3419
+ #
3420
+ class UpdateGroupCertificateConfigurationResponse < Struct.new(
3421
+ :certificate_authority_expiry_in_milliseconds,
3422
+ :certificate_expiry_in_milliseconds,
3423
+ :group_id)
3424
+ include Aws::Structure
3425
+ end
3426
+
3427
+ # @note When making an API call, you may pass UpdateGroupRequest
3428
+ # data as a hash:
3429
+ #
3430
+ # {
3431
+ # group_id: "__string", # required
3432
+ # name: "__string",
3433
+ # }
3434
+ #
3435
+ # @!attribute [rw] group_id
3436
+ # @return [String]
3437
+ #
3438
+ # @!attribute [rw] name
3439
+ # @return [String]
3440
+ #
3441
+ # @see http://docs.aws.amazon.com/goto/WebAPI/greengrass-2017-06-07/UpdateGroupRequest AWS API Documentation
3442
+ #
3443
+ class UpdateGroupRequest < Struct.new(
3444
+ :group_id,
3445
+ :name)
3446
+ include Aws::Structure
3447
+ end
3448
+
3449
+ # @see http://docs.aws.amazon.com/goto/WebAPI/greengrass-2017-06-07/UpdateGroupResponse AWS API Documentation
3450
+ #
3451
+ class UpdateGroupResponse < Aws::EmptyStructure; end
3452
+
3453
+ # @note When making an API call, you may pass UpdateLoggerDefinitionRequest
3454
+ # data as a hash:
3455
+ #
3456
+ # {
3457
+ # logger_definition_id: "__string", # required
3458
+ # name: "__string",
3459
+ # }
3460
+ #
3461
+ # @!attribute [rw] logger_definition_id
3462
+ # @return [String]
3463
+ #
3464
+ # @!attribute [rw] name
3465
+ # @return [String]
3466
+ #
3467
+ # @see http://docs.aws.amazon.com/goto/WebAPI/greengrass-2017-06-07/UpdateLoggerDefinitionRequest AWS API Documentation
3468
+ #
3469
+ class UpdateLoggerDefinitionRequest < Struct.new(
3470
+ :logger_definition_id,
3471
+ :name)
3472
+ include Aws::Structure
3473
+ end
3474
+
3475
+ # @see http://docs.aws.amazon.com/goto/WebAPI/greengrass-2017-06-07/UpdateLoggerDefinitionResponse AWS API Documentation
3476
+ #
3477
+ class UpdateLoggerDefinitionResponse < Aws::EmptyStructure; end
3478
+
3479
+ # @note When making an API call, you may pass UpdateSubscriptionDefinitionRequest
3480
+ # data as a hash:
3481
+ #
3482
+ # {
3483
+ # name: "__string",
3484
+ # subscription_definition_id: "__string", # required
3485
+ # }
3486
+ #
3487
+ # @!attribute [rw] name
3488
+ # @return [String]
3489
+ #
3490
+ # @!attribute [rw] subscription_definition_id
3491
+ # @return [String]
3492
+ #
3493
+ # @see http://docs.aws.amazon.com/goto/WebAPI/greengrass-2017-06-07/UpdateSubscriptionDefinitionRequest AWS API Documentation
3494
+ #
3495
+ class UpdateSubscriptionDefinitionRequest < Struct.new(
3496
+ :name,
3497
+ :subscription_definition_id)
3498
+ include Aws::Structure
3499
+ end
3500
+
3501
+ # @see http://docs.aws.amazon.com/goto/WebAPI/greengrass-2017-06-07/UpdateSubscriptionDefinitionResponse AWS API Documentation
3502
+ #
3503
+ class UpdateSubscriptionDefinitionResponse < Aws::EmptyStructure; end
3504
+
3505
+ # Information on the version
3506
+ #
3507
+ # @!attribute [rw] arn
3508
+ # Arn of the version.
3509
+ # @return [String]
3510
+ #
3511
+ # @!attribute [rw] creation_timestamp
3512
+ # Timestamp of when the version was created.
3513
+ # @return [String]
3514
+ #
3515
+ # @!attribute [rw] id
3516
+ # Id of the resource container.
3517
+ # @return [String]
3518
+ #
3519
+ # @!attribute [rw] version
3520
+ # Unique Id of a version.
3521
+ # @return [String]
3522
+ #
3523
+ # @see http://docs.aws.amazon.com/goto/WebAPI/greengrass-2017-06-07/VersionInformation AWS API Documentation
3524
+ #
3525
+ class VersionInformation < Struct.new(
3526
+ :arn,
3527
+ :creation_timestamp,
3528
+ :id,
3529
+ :version)
3530
+ include Aws::Structure
3531
+ end
3532
+
3533
+ end
3534
+ end