aws-sdk-iotmanagedintegrations 1.2.0 → 1.4.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/CHANGELOG.md +10 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-iotmanagedintegrations/client.rb +1374 -32
- data/lib/aws-sdk-iotmanagedintegrations/client_api.rb +939 -12
- data/lib/aws-sdk-iotmanagedintegrations/errors.rb +42 -0
- data/lib/aws-sdk-iotmanagedintegrations/types.rb +1776 -85
- data/lib/aws-sdk-iotmanagedintegrations.rb +2 -2
- data/sig/client.rbs +437 -10
- data/sig/errors.rbs +8 -0
- data/sig/types.rbs +504 -12
- metadata +4 -4
@@ -23,7 +23,7 @@ Aws::Plugins::GlobalConfiguration.add_identifier(:iotmanagedintegrations)
|
|
23
23
|
# structure.
|
24
24
|
#
|
25
25
|
# io_t_managed_integrations = Aws::IoTManagedIntegrations::Client.new
|
26
|
-
# resp = io_t_managed_integrations.
|
26
|
+
# resp = io_t_managed_integrations.create_account_association(params)
|
27
27
|
#
|
28
28
|
# See {Client} for more information.
|
29
29
|
#
|
@@ -54,7 +54,7 @@ module Aws::IoTManagedIntegrations
|
|
54
54
|
autoload :EndpointProvider, 'aws-sdk-iotmanagedintegrations/endpoint_provider'
|
55
55
|
autoload :Endpoints, 'aws-sdk-iotmanagedintegrations/endpoints'
|
56
56
|
|
57
|
-
GEM_VERSION = '1.
|
57
|
+
GEM_VERSION = '1.4.0'
|
58
58
|
|
59
59
|
end
|
60
60
|
|
data/sig/client.rbs
CHANGED
@@ -77,6 +77,72 @@ module Aws
|
|
77
77
|
| (?Hash[Symbol, untyped]) -> instance
|
78
78
|
|
79
79
|
|
80
|
+
interface _CreateAccountAssociationResponseSuccess
|
81
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::CreateAccountAssociationResponse]
|
82
|
+
def o_auth_authorization_url: () -> ::String
|
83
|
+
def account_association_id: () -> ::String
|
84
|
+
def association_state: () -> ("ASSOCIATION_IN_PROGRESS" | "ASSOCIATION_FAILED" | "ASSOCIATION_SUCCEEDED" | "ASSOCIATION_DELETING" | "REFRESH_TOKEN_EXPIRED")
|
85
|
+
def arn: () -> ::String
|
86
|
+
end
|
87
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/IoTManagedIntegrations/Client.html#create_account_association-instance_method
|
88
|
+
def create_account_association: (
|
89
|
+
?client_token: ::String,
|
90
|
+
connector_destination_id: ::String,
|
91
|
+
?name: ::String,
|
92
|
+
?description: ::String,
|
93
|
+
?tags: Hash[::String, ::String]
|
94
|
+
) -> _CreateAccountAssociationResponseSuccess
|
95
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateAccountAssociationResponseSuccess
|
96
|
+
|
97
|
+
interface _CreateCloudConnectorResponseSuccess
|
98
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::CreateCloudConnectorResponse]
|
99
|
+
def id: () -> ::String
|
100
|
+
end
|
101
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/IoTManagedIntegrations/Client.html#create_cloud_connector-instance_method
|
102
|
+
def create_cloud_connector: (
|
103
|
+
name: ::String,
|
104
|
+
endpoint_config: {
|
105
|
+
lambda: {
|
106
|
+
arn: ::String
|
107
|
+
}?
|
108
|
+
},
|
109
|
+
?description: ::String,
|
110
|
+
?endpoint_type: ("LAMBDA"),
|
111
|
+
?client_token: ::String
|
112
|
+
) -> _CreateCloudConnectorResponseSuccess
|
113
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateCloudConnectorResponseSuccess
|
114
|
+
|
115
|
+
interface _CreateConnectorDestinationResponseSuccess
|
116
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::CreateConnectorDestinationResponse]
|
117
|
+
def id: () -> ::String
|
118
|
+
end
|
119
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/IoTManagedIntegrations/Client.html#create_connector_destination-instance_method
|
120
|
+
def create_connector_destination: (
|
121
|
+
?name: ::String,
|
122
|
+
?description: ::String,
|
123
|
+
cloud_connector_id: ::String,
|
124
|
+
auth_type: ("OAUTH"),
|
125
|
+
auth_config: {
|
126
|
+
o_auth: {
|
127
|
+
auth_url: ::String,
|
128
|
+
token_url: ::String,
|
129
|
+
scope: ::String?,
|
130
|
+
token_endpoint_authentication_scheme: ("HTTP_BASIC" | "REQUEST_BODY_CREDENTIALS"),
|
131
|
+
o_auth_complete_redirect_url: ::String?,
|
132
|
+
proactive_refresh_token_renewal: {
|
133
|
+
enabled: bool?,
|
134
|
+
days_before_renewal: ::Integer?
|
135
|
+
}?
|
136
|
+
}?
|
137
|
+
},
|
138
|
+
secrets_manager: {
|
139
|
+
arn: ::String,
|
140
|
+
version_id: ::String
|
141
|
+
},
|
142
|
+
?client_token: ::String
|
143
|
+
) -> _CreateConnectorDestinationResponseSuccess
|
144
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateConnectorDestinationResponseSuccess
|
145
|
+
|
80
146
|
interface _CreateCredentialLockerResponseSuccess
|
81
147
|
include ::Seahorse::Client::_ResponseSuccess[Types::CreateCredentialLockerResponse]
|
82
148
|
def id: () -> ::String
|
@@ -132,7 +198,7 @@ module Aws
|
|
132
198
|
?owner: ::String,
|
133
199
|
?credential_locker_id: ::String,
|
134
200
|
authentication_material: ::String,
|
135
|
-
authentication_material_type: ("WIFI_SETUP_QR_BAR_CODE" | "ZWAVE_QR_BAR_CODE" | "ZIGBEE_QR_BAR_CODE"),
|
201
|
+
authentication_material_type: ("CUSTOM_PROTOCOL_QR_BAR_CODE" | "WIFI_SETUP_QR_BAR_CODE" | "ZWAVE_QR_BAR_CODE" | "ZIGBEE_QR_BAR_CODE" | "DISCOVERED_DEVICE"),
|
136
202
|
?serial_number: ::String,
|
137
203
|
?brand: ::String,
|
138
204
|
?model: ::String,
|
@@ -157,6 +223,16 @@ module Aws
|
|
157
223
|
},
|
158
224
|
]
|
159
225
|
},
|
226
|
+
?capability_schemas: Array[
|
227
|
+
{
|
228
|
+
format: ("AWS" | "ZCL" | "CONNECTOR"),
|
229
|
+
capability_id: ::String,
|
230
|
+
extrinsic_id: ::String,
|
231
|
+
extrinsic_version: ::Integer,
|
232
|
+
schema: {
|
233
|
+
}
|
234
|
+
},
|
235
|
+
],
|
160
236
|
?capabilities: ::String,
|
161
237
|
?client_token: ::String,
|
162
238
|
?classification: ::String,
|
@@ -167,11 +243,11 @@ module Aws
|
|
167
243
|
|
168
244
|
interface _CreateNotificationConfigurationResponseSuccess
|
169
245
|
include ::Seahorse::Client::_ResponseSuccess[Types::CreateNotificationConfigurationResponse]
|
170
|
-
def event_type: () -> ("DEVICE_COMMAND" | "DEVICE_COMMAND_REQUEST" | "DEVICE_EVENT" | "DEVICE_LIFE_CYCLE" | "DEVICE_STATE" | "DEVICE_OTA" | "CONNECTOR_ASSOCIATION" | "CONNECTOR_ERROR_REPORT")
|
246
|
+
def event_type: () -> ("DEVICE_COMMAND" | "DEVICE_COMMAND_REQUEST" | "DEVICE_DISCOVERY_STATUS" | "DEVICE_EVENT" | "DEVICE_LIFE_CYCLE" | "DEVICE_STATE" | "DEVICE_OTA" | "CONNECTOR_ASSOCIATION" | "ACCOUNT_ASSOCIATION" | "CONNECTOR_ERROR_REPORT")
|
171
247
|
end
|
172
248
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/IoTManagedIntegrations/Client.html#create_notification_configuration-instance_method
|
173
249
|
def create_notification_configuration: (
|
174
|
-
event_type: ("DEVICE_COMMAND" | "DEVICE_COMMAND_REQUEST" | "DEVICE_EVENT" | "DEVICE_LIFE_CYCLE" | "DEVICE_STATE" | "DEVICE_OTA" | "CONNECTOR_ASSOCIATION" | "CONNECTOR_ERROR_REPORT"),
|
250
|
+
event_type: ("DEVICE_COMMAND" | "DEVICE_COMMAND_REQUEST" | "DEVICE_DISCOVERY_STATUS" | "DEVICE_EVENT" | "DEVICE_LIFE_CYCLE" | "DEVICE_STATE" | "DEVICE_OTA" | "CONNECTOR_ASSOCIATION" | "ACCOUNT_ASSOCIATION" | "CONNECTOR_ERROR_REPORT"),
|
175
251
|
destination_name: ::String,
|
176
252
|
?client_token: ::String,
|
177
253
|
?tags: Hash[::String, ::String]
|
@@ -275,6 +351,24 @@ module Aws
|
|
275
351
|
) -> _CreateProvisioningProfileResponseSuccess
|
276
352
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateProvisioningProfileResponseSuccess
|
277
353
|
|
354
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/IoTManagedIntegrations/Client.html#delete_account_association-instance_method
|
355
|
+
def delete_account_association: (
|
356
|
+
account_association_id: ::String
|
357
|
+
) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
|
358
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
|
359
|
+
|
360
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/IoTManagedIntegrations/Client.html#delete_cloud_connector-instance_method
|
361
|
+
def delete_cloud_connector: (
|
362
|
+
identifier: ::String
|
363
|
+
) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
|
364
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
|
365
|
+
|
366
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/IoTManagedIntegrations/Client.html#delete_connector_destination-instance_method
|
367
|
+
def delete_connector_destination: (
|
368
|
+
identifier: ::String
|
369
|
+
) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
|
370
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
|
371
|
+
|
278
372
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/IoTManagedIntegrations/Client.html#delete_credential_locker-instance_method
|
279
373
|
def delete_credential_locker: (
|
280
374
|
identifier: ::String
|
@@ -302,7 +396,7 @@ module Aws
|
|
302
396
|
|
303
397
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/IoTManagedIntegrations/Client.html#delete_notification_configuration-instance_method
|
304
398
|
def delete_notification_configuration: (
|
305
|
-
event_type: ("DEVICE_COMMAND" | "DEVICE_COMMAND_REQUEST" | "DEVICE_EVENT" | "DEVICE_LIFE_CYCLE" | "DEVICE_STATE" | "DEVICE_OTA" | "CONNECTOR_ASSOCIATION" | "CONNECTOR_ERROR_REPORT")
|
399
|
+
event_type: ("DEVICE_COMMAND" | "DEVICE_COMMAND_REQUEST" | "DEVICE_DISCOVERY_STATUS" | "DEVICE_EVENT" | "DEVICE_LIFE_CYCLE" | "DEVICE_STATE" | "DEVICE_OTA" | "CONNECTOR_ASSOCIATION" | "ACCOUNT_ASSOCIATION" | "CONNECTOR_ERROR_REPORT")
|
306
400
|
) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
|
307
401
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
|
308
402
|
|
@@ -324,6 +418,63 @@ module Aws
|
|
324
418
|
) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
|
325
419
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
|
326
420
|
|
421
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/IoTManagedIntegrations/Client.html#deregister_account_association-instance_method
|
422
|
+
def deregister_account_association: (
|
423
|
+
managed_thing_id: ::String,
|
424
|
+
account_association_id: ::String
|
425
|
+
) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
|
426
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
|
427
|
+
|
428
|
+
interface _GetAccountAssociationResponseSuccess
|
429
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::GetAccountAssociationResponse]
|
430
|
+
def account_association_id: () -> ::String
|
431
|
+
def association_state: () -> ("ASSOCIATION_IN_PROGRESS" | "ASSOCIATION_FAILED" | "ASSOCIATION_SUCCEEDED" | "ASSOCIATION_DELETING" | "REFRESH_TOKEN_EXPIRED")
|
432
|
+
def error_message: () -> ::String
|
433
|
+
def connector_destination_id: () -> ::String
|
434
|
+
def name: () -> ::String
|
435
|
+
def description: () -> ::String
|
436
|
+
def arn: () -> ::String
|
437
|
+
def o_auth_authorization_url: () -> ::String
|
438
|
+
def tags: () -> ::Hash[::String, ::String]
|
439
|
+
end
|
440
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/IoTManagedIntegrations/Client.html#get_account_association-instance_method
|
441
|
+
def get_account_association: (
|
442
|
+
account_association_id: ::String
|
443
|
+
) -> _GetAccountAssociationResponseSuccess
|
444
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetAccountAssociationResponseSuccess
|
445
|
+
|
446
|
+
interface _GetCloudConnectorResponseSuccess
|
447
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::GetCloudConnectorResponse]
|
448
|
+
def name: () -> ::String
|
449
|
+
def endpoint_config: () -> Types::EndpointConfig
|
450
|
+
def description: () -> ::String
|
451
|
+
def endpoint_type: () -> ("LAMBDA")
|
452
|
+
def id: () -> ::String
|
453
|
+
def type: () -> ("LISTED" | "UNLISTED")
|
454
|
+
end
|
455
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/IoTManagedIntegrations/Client.html#get_cloud_connector-instance_method
|
456
|
+
def get_cloud_connector: (
|
457
|
+
identifier: ::String
|
458
|
+
) -> _GetCloudConnectorResponseSuccess
|
459
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetCloudConnectorResponseSuccess
|
460
|
+
|
461
|
+
interface _GetConnectorDestinationResponseSuccess
|
462
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::GetConnectorDestinationResponse]
|
463
|
+
def name: () -> ::String
|
464
|
+
def description: () -> ::String
|
465
|
+
def cloud_connector_id: () -> ::String
|
466
|
+
def id: () -> ::String
|
467
|
+
def auth_type: () -> ("OAUTH")
|
468
|
+
def auth_config: () -> Types::AuthConfig
|
469
|
+
def secrets_manager: () -> Types::SecretsManager
|
470
|
+
def o_auth_complete_redirect_url: () -> ::String
|
471
|
+
end
|
472
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/IoTManagedIntegrations/Client.html#get_connector_destination-instance_method
|
473
|
+
def get_connector_destination: (
|
474
|
+
identifier: ::String
|
475
|
+
) -> _GetConnectorDestinationResponseSuccess
|
476
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetConnectorDestinationResponseSuccess
|
477
|
+
|
327
478
|
interface _GetCredentialLockerResponseSuccess
|
328
479
|
include ::Seahorse::Client::_ResponseSuccess[Types::GetCredentialLockerResponse]
|
329
480
|
def id: () -> ::String
|
@@ -379,11 +530,12 @@ module Aws
|
|
379
530
|
include ::Seahorse::Client::_ResponseSuccess[Types::GetDeviceDiscoveryResponse]
|
380
531
|
def id: () -> ::String
|
381
532
|
def arn: () -> ::String
|
382
|
-
def discovery_type: () -> ("ZWAVE" | "ZIGBEE" | "CLOUD")
|
533
|
+
def discovery_type: () -> ("ZWAVE" | "ZIGBEE" | "CLOUD" | "CUSTOM")
|
383
534
|
def status: () -> ("RUNNING" | "SUCCEEDED" | "FAILED" | "TIMED_OUT")
|
384
535
|
def started_at: () -> ::Time
|
385
536
|
def controller_id: () -> ::String
|
386
537
|
def connector_association_id: () -> ::String
|
538
|
+
def account_association_id: () -> ::String
|
387
539
|
def finished_at: () -> ::Time
|
388
540
|
def tags: () -> ::Hash[::String, ::String]
|
389
541
|
end
|
@@ -432,6 +584,7 @@ module Aws
|
|
432
584
|
def universal_product_code: () -> ::String
|
433
585
|
def international_article_number: () -> ::String
|
434
586
|
def connector_policy_id: () -> ::String
|
587
|
+
def connector_destination_id: () -> ::String
|
435
588
|
def connector_device_id: () -> ::String
|
436
589
|
def device_specific_key: () -> ::String
|
437
590
|
def mac_address: () -> ::String
|
@@ -498,7 +651,7 @@ module Aws
|
|
498
651
|
|
499
652
|
interface _GetNotificationConfigurationResponseSuccess
|
500
653
|
include ::Seahorse::Client::_ResponseSuccess[Types::GetNotificationConfigurationResponse]
|
501
|
-
def event_type: () -> ("DEVICE_COMMAND" | "DEVICE_COMMAND_REQUEST" | "DEVICE_EVENT" | "DEVICE_LIFE_CYCLE" | "DEVICE_STATE" | "DEVICE_OTA" | "CONNECTOR_ASSOCIATION" | "CONNECTOR_ERROR_REPORT")
|
654
|
+
def event_type: () -> ("DEVICE_COMMAND" | "DEVICE_COMMAND_REQUEST" | "DEVICE_DISCOVERY_STATUS" | "DEVICE_EVENT" | "DEVICE_LIFE_CYCLE" | "DEVICE_STATE" | "DEVICE_OTA" | "CONNECTOR_ASSOCIATION" | "ACCOUNT_ASSOCIATION" | "CONNECTOR_ERROR_REPORT")
|
502
655
|
def destination_name: () -> ::String
|
503
656
|
def created_at: () -> ::Time
|
504
657
|
def updated_at: () -> ::Time
|
@@ -506,7 +659,7 @@ module Aws
|
|
506
659
|
end
|
507
660
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/IoTManagedIntegrations/Client.html#get_notification_configuration-instance_method
|
508
661
|
def get_notification_configuration: (
|
509
|
-
event_type: ("DEVICE_COMMAND" | "DEVICE_COMMAND_REQUEST" | "DEVICE_EVENT" | "DEVICE_LIFE_CYCLE" | "DEVICE_STATE" | "DEVICE_OTA" | "CONNECTOR_ASSOCIATION" | "CONNECTOR_ERROR_REPORT")
|
662
|
+
event_type: ("DEVICE_COMMAND" | "DEVICE_COMMAND_REQUEST" | "DEVICE_DISCOVERY_STATUS" | "DEVICE_EVENT" | "DEVICE_LIFE_CYCLE" | "DEVICE_STATE" | "DEVICE_OTA" | "CONNECTOR_ASSOCIATION" | "ACCOUNT_ASSOCIATION" | "CONNECTOR_ERROR_REPORT")
|
510
663
|
) -> _GetNotificationConfigurationResponseSuccess
|
511
664
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetNotificationConfigurationResponseSuccess
|
512
665
|
|
@@ -528,6 +681,7 @@ module Aws
|
|
528
681
|
def ota_scheduling_config: () -> Types::OtaTaskSchedulingConfig
|
529
682
|
def ota_task_execution_retry_config: () -> Types::OtaTaskExecutionRetryConfig
|
530
683
|
def status: () -> ("IN_PROGRESS" | "CANCELED" | "COMPLETED" | "DELETION_IN_PROGRESS" | "SCHEDULED")
|
684
|
+
def tags: () -> ::Hash[::String, ::String]
|
531
685
|
end
|
532
686
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/IoTManagedIntegrations/Client.html#get_ota_task-instance_method
|
533
687
|
def get_ota_task: (
|
@@ -593,6 +747,46 @@ module Aws
|
|
593
747
|
) -> _GetSchemaVersionResponseSuccess
|
594
748
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetSchemaVersionResponseSuccess
|
595
749
|
|
750
|
+
interface _ListAccountAssociationsResponseSuccess
|
751
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::ListAccountAssociationsResponse]
|
752
|
+
def items: () -> ::Array[Types::AccountAssociationItem]
|
753
|
+
def next_token: () -> ::String
|
754
|
+
end
|
755
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/IoTManagedIntegrations/Client.html#list_account_associations-instance_method
|
756
|
+
def list_account_associations: (
|
757
|
+
?connector_destination_id: ::String,
|
758
|
+
?max_results: ::Integer,
|
759
|
+
?next_token: ::String
|
760
|
+
) -> _ListAccountAssociationsResponseSuccess
|
761
|
+
| (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListAccountAssociationsResponseSuccess
|
762
|
+
|
763
|
+
interface _ListCloudConnectorsResponseSuccess
|
764
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::ListCloudConnectorsResponse]
|
765
|
+
def items: () -> ::Array[Types::ConnectorItem]
|
766
|
+
def next_token: () -> ::String
|
767
|
+
end
|
768
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/IoTManagedIntegrations/Client.html#list_cloud_connectors-instance_method
|
769
|
+
def list_cloud_connectors: (
|
770
|
+
?type: ("LISTED" | "UNLISTED"),
|
771
|
+
?lambda_arn: ::String,
|
772
|
+
?max_results: ::Integer,
|
773
|
+
?next_token: ::String
|
774
|
+
) -> _ListCloudConnectorsResponseSuccess
|
775
|
+
| (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListCloudConnectorsResponseSuccess
|
776
|
+
|
777
|
+
interface _ListConnectorDestinationsResponseSuccess
|
778
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::ListConnectorDestinationsResponse]
|
779
|
+
def connector_destination_list: () -> ::Array[Types::ConnectorDestinationSummary]
|
780
|
+
def next_token: () -> ::String
|
781
|
+
end
|
782
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/IoTManagedIntegrations/Client.html#list_connector_destinations-instance_method
|
783
|
+
def list_connector_destinations: (
|
784
|
+
?cloud_connector_id: ::String,
|
785
|
+
?next_token: ::String,
|
786
|
+
?max_results: ::Integer
|
787
|
+
) -> _ListConnectorDestinationsResponseSuccess
|
788
|
+
| (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListConnectorDestinationsResponseSuccess
|
789
|
+
|
596
790
|
interface _ListCredentialLockersResponseSuccess
|
597
791
|
include ::Seahorse::Client::_ResponseSuccess[Types::ListCredentialLockersResponse]
|
598
792
|
def items: () -> ::Array[Types::CredentialLockerSummary]
|
@@ -617,6 +811,33 @@ module Aws
|
|
617
811
|
) -> _ListDestinationsResponseSuccess
|
618
812
|
| (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListDestinationsResponseSuccess
|
619
813
|
|
814
|
+
interface _ListDeviceDiscoveriesResponseSuccess
|
815
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::ListDeviceDiscoveriesResponse]
|
816
|
+
def items: () -> ::Array[Types::DeviceDiscoverySummary]
|
817
|
+
def next_token: () -> ::String
|
818
|
+
end
|
819
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/IoTManagedIntegrations/Client.html#list_device_discoveries-instance_method
|
820
|
+
def list_device_discoveries: (
|
821
|
+
?next_token: ::String,
|
822
|
+
?max_results: ::Integer,
|
823
|
+
?type_filter: ("ZWAVE" | "ZIGBEE" | "CLOUD" | "CUSTOM"),
|
824
|
+
?status_filter: ("RUNNING" | "SUCCEEDED" | "FAILED" | "TIMED_OUT")
|
825
|
+
) -> _ListDeviceDiscoveriesResponseSuccess
|
826
|
+
| (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListDeviceDiscoveriesResponseSuccess
|
827
|
+
|
828
|
+
interface _ListDiscoveredDevicesResponseSuccess
|
829
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::ListDiscoveredDevicesResponse]
|
830
|
+
def items: () -> ::Array[Types::DiscoveredDeviceSummary]
|
831
|
+
def next_token: () -> ::String
|
832
|
+
end
|
833
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/IoTManagedIntegrations/Client.html#list_discovered_devices-instance_method
|
834
|
+
def list_discovered_devices: (
|
835
|
+
identifier: ::String,
|
836
|
+
?next_token: ::String,
|
837
|
+
?max_results: ::Integer
|
838
|
+
) -> _ListDiscoveredDevicesResponseSuccess
|
839
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListDiscoveredDevicesResponseSuccess
|
840
|
+
|
620
841
|
interface _ListEventLogConfigurationsResponseSuccess
|
621
842
|
include ::Seahorse::Client::_ResponseSuccess[Types::ListEventLogConfigurationsResponse]
|
622
843
|
def event_log_configuration_list: () -> ::Array[Types::EventLogConfigurationSummary]
|
@@ -629,6 +850,20 @@ module Aws
|
|
629
850
|
) -> _ListEventLogConfigurationsResponseSuccess
|
630
851
|
| (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListEventLogConfigurationsResponseSuccess
|
631
852
|
|
853
|
+
interface _ListManagedThingAccountAssociationsResponseSuccess
|
854
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::ListManagedThingAccountAssociationsResponse]
|
855
|
+
def items: () -> ::Array[Types::ManagedThingAssociation]
|
856
|
+
def next_token: () -> ::String
|
857
|
+
end
|
858
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/IoTManagedIntegrations/Client.html#list_managed_thing_account_associations-instance_method
|
859
|
+
def list_managed_thing_account_associations: (
|
860
|
+
?managed_thing_id: ::String,
|
861
|
+
?account_association_id: ::String,
|
862
|
+
?max_results: ::Integer,
|
863
|
+
?next_token: ::String
|
864
|
+
) -> _ListManagedThingAccountAssociationsResponseSuccess
|
865
|
+
| (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListManagedThingAccountAssociationsResponseSuccess
|
866
|
+
|
632
867
|
interface _ListManagedThingSchemasResponseSuccess
|
633
868
|
include ::Seahorse::Client::_ResponseSuccess[Types::ListManagedThingSchemasResponse]
|
634
869
|
def items: () -> ::Array[Types::ManagedThingSchemaListItem]
|
@@ -656,6 +891,8 @@ module Aws
|
|
656
891
|
?role_filter: ("CONTROLLER" | "DEVICE"),
|
657
892
|
?parent_controller_identifier_filter: ::String,
|
658
893
|
?connector_policy_id_filter: ::String,
|
894
|
+
?connector_destination_id_filter: ::String,
|
895
|
+
?connector_device_id_filter: ::String,
|
659
896
|
?serial_number_filter: ::String,
|
660
897
|
?provisioning_status_filter: ("UNASSOCIATED" | "PRE_ASSOCIATED" | "DISCOVERED" | "ACTIVATED" | "DELETION_FAILED" | "DELETE_IN_PROGRESS" | "ISOLATED" | "DELETED"),
|
661
898
|
?next_token: ::String,
|
@@ -741,6 +978,16 @@ module Aws
|
|
741
978
|
) -> _ListSchemaVersionsResponseSuccess
|
742
979
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListSchemaVersionsResponseSuccess
|
743
980
|
|
981
|
+
interface _ListTagsForResourceResponseSuccess
|
982
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::ListTagsForResourceResponse]
|
983
|
+
def tags: () -> ::Hash[::String, ::String]
|
984
|
+
end
|
985
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/IoTManagedIntegrations/Client.html#list_tags_for_resource-instance_method
|
986
|
+
def list_tags_for_resource: (
|
987
|
+
resource_arn: ::String
|
988
|
+
) -> _ListTagsForResourceResponseSuccess
|
989
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListTagsForResourceResponseSuccess
|
990
|
+
|
744
991
|
interface _PutDefaultEncryptionConfigurationResponseSuccess
|
745
992
|
include ::Seahorse::Client::_ResponseSuccess[Types::PutDefaultEncryptionConfigurationResponse]
|
746
993
|
def configuration_status: () -> Types::ConfigurationStatus
|
@@ -780,6 +1027,20 @@ module Aws
|
|
780
1027
|
) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
|
781
1028
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
|
782
1029
|
|
1030
|
+
interface _RegisterAccountAssociationResponseSuccess
|
1031
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::RegisterAccountAssociationResponse]
|
1032
|
+
def account_association_id: () -> ::String
|
1033
|
+
def device_discovery_id: () -> ::String
|
1034
|
+
def managed_thing_id: () -> ::String
|
1035
|
+
end
|
1036
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/IoTManagedIntegrations/Client.html#register_account_association-instance_method
|
1037
|
+
def register_account_association: (
|
1038
|
+
managed_thing_id: ::String,
|
1039
|
+
account_association_id: ::String,
|
1040
|
+
device_discovery_id: ::String
|
1041
|
+
) -> _RegisterAccountAssociationResponseSuccess
|
1042
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _RegisterAccountAssociationResponseSuccess
|
1043
|
+
|
783
1044
|
interface _RegisterCustomEndpointResponseSuccess
|
784
1045
|
include ::Seahorse::Client::_ResponseSuccess[Types::RegisterCustomEndpointResponse]
|
785
1046
|
def endpoint_address: () -> ::String
|
@@ -795,6 +1056,91 @@ module Aws
|
|
795
1056
|
) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
|
796
1057
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
|
797
1058
|
|
1059
|
+
interface _SendConnectorEventResponseSuccess
|
1060
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::SendConnectorEventResponse]
|
1061
|
+
def connector_id: () -> ::String
|
1062
|
+
end
|
1063
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/IoTManagedIntegrations/Client.html#send_connector_event-instance_method
|
1064
|
+
def send_connector_event: (
|
1065
|
+
connector_id: ::String,
|
1066
|
+
?user_id: ::String,
|
1067
|
+
operation: ("DEVICE_COMMAND_RESPONSE" | "DEVICE_DISCOVERY" | "DEVICE_EVENT" | "DEVICE_COMMAND_REQUEST"),
|
1068
|
+
?operation_version: ::String,
|
1069
|
+
?status_code: ::Integer,
|
1070
|
+
?message: ::String,
|
1071
|
+
?device_discovery_id: ::String,
|
1072
|
+
?connector_device_id: ::String,
|
1073
|
+
?trace_id: ::String,
|
1074
|
+
?devices: Array[
|
1075
|
+
{
|
1076
|
+
connector_device_id: ::String,
|
1077
|
+
connector_device_name: ::String?,
|
1078
|
+
capability_report: {
|
1079
|
+
version: ::String,
|
1080
|
+
node_id: ::String?,
|
1081
|
+
endpoints: Array[
|
1082
|
+
{
|
1083
|
+
id: ::String,
|
1084
|
+
device_types: Array[::String],
|
1085
|
+
clusters: Array[
|
1086
|
+
{
|
1087
|
+
id: ::String,
|
1088
|
+
revision: ::Integer,
|
1089
|
+
public_id: ::String?,
|
1090
|
+
name: ::String?,
|
1091
|
+
spec_version: ::String?,
|
1092
|
+
attributes: Array[
|
1093
|
+
{
|
1094
|
+
id: ::String?,
|
1095
|
+
name: ::String?,
|
1096
|
+
value: {
|
1097
|
+
}?
|
1098
|
+
},
|
1099
|
+
]?,
|
1100
|
+
commands: Array[::String]?,
|
1101
|
+
events: Array[::String]?,
|
1102
|
+
feature_map: ::Integer?,
|
1103
|
+
generated_commands: Array[::String]?,
|
1104
|
+
fabric_index: ::Integer?
|
1105
|
+
},
|
1106
|
+
],
|
1107
|
+
parts: Array[::String]?,
|
1108
|
+
semantic_tags: Array[::String]?,
|
1109
|
+
client_clusters: Array[::String]?
|
1110
|
+
},
|
1111
|
+
]
|
1112
|
+
},
|
1113
|
+
capability_schemas: Array[
|
1114
|
+
{
|
1115
|
+
format: ("AWS" | "ZCL" | "CONNECTOR"),
|
1116
|
+
capability_id: ::String,
|
1117
|
+
extrinsic_id: ::String,
|
1118
|
+
extrinsic_version: ::Integer,
|
1119
|
+
schema: {
|
1120
|
+
}
|
1121
|
+
},
|
1122
|
+
]?,
|
1123
|
+
device_metadata: {
|
1124
|
+
}?
|
1125
|
+
},
|
1126
|
+
],
|
1127
|
+
?matter_endpoint: {
|
1128
|
+
id: ::String?,
|
1129
|
+
clusters: Array[
|
1130
|
+
{
|
1131
|
+
id: ::String?,
|
1132
|
+
attributes: {
|
1133
|
+
}?,
|
1134
|
+
commands: Hash[::String, {
|
1135
|
+
}]?,
|
1136
|
+
events: Hash[::String, {
|
1137
|
+
}]?
|
1138
|
+
},
|
1139
|
+
]?
|
1140
|
+
}
|
1141
|
+
) -> _SendConnectorEventResponseSuccess
|
1142
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _SendConnectorEventResponseSuccess
|
1143
|
+
|
798
1144
|
interface _SendManagedThingCommandResponseSuccess
|
799
1145
|
include ::Seahorse::Client::_ResponseSuccess[Types::SendManagedThingCommandResponse]
|
800
1146
|
def trace_id: () -> ::String
|
@@ -823,10 +1169,21 @@ module Aws
|
|
823
1169
|
]
|
824
1170
|
},
|
825
1171
|
],
|
826
|
-
?connector_association_id: ::String
|
1172
|
+
?connector_association_id: ::String,
|
1173
|
+
?account_association_id: ::String
|
827
1174
|
) -> _SendManagedThingCommandResponseSuccess
|
828
1175
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _SendManagedThingCommandResponseSuccess
|
829
1176
|
|
1177
|
+
interface _StartAccountAssociationRefreshResponseSuccess
|
1178
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::StartAccountAssociationRefreshResponse]
|
1179
|
+
def o_auth_authorization_url: () -> ::String
|
1180
|
+
end
|
1181
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/IoTManagedIntegrations/Client.html#start_account_association_refresh-instance_method
|
1182
|
+
def start_account_association_refresh: (
|
1183
|
+
account_association_id: ::String
|
1184
|
+
) -> _StartAccountAssociationRefreshResponseSuccess
|
1185
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _StartAccountAssociationRefreshResponseSuccess
|
1186
|
+
|
830
1187
|
interface _StartDeviceDiscoveryResponseSuccess
|
831
1188
|
include ::Seahorse::Client::_ResponseSuccess[Types::StartDeviceDiscoveryResponse]
|
832
1189
|
def id: () -> ::String
|
@@ -834,9 +1191,11 @@ module Aws
|
|
834
1191
|
end
|
835
1192
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/IoTManagedIntegrations/Client.html#start_device_discovery-instance_method
|
836
1193
|
def start_device_discovery: (
|
837
|
-
discovery_type: ("ZWAVE" | "ZIGBEE" | "CLOUD"),
|
1194
|
+
discovery_type: ("ZWAVE" | "ZIGBEE" | "CLOUD" | "CUSTOM"),
|
1195
|
+
?custom_protocol_detail: Hash[::String, ::String],
|
838
1196
|
?controller_identifier: ::String,
|
839
1197
|
?connector_association_identifier: ::String,
|
1198
|
+
?account_association_id: ::String,
|
840
1199
|
?authentication_material: ::String,
|
841
1200
|
?authentication_material_type: ("ZWAVE_INSTALL_CODE"),
|
842
1201
|
?client_token: ::String,
|
@@ -844,6 +1203,64 @@ module Aws
|
|
844
1203
|
) -> _StartDeviceDiscoveryResponseSuccess
|
845
1204
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _StartDeviceDiscoveryResponseSuccess
|
846
1205
|
|
1206
|
+
interface _TagResourceResponseSuccess
|
1207
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::TagResourceResponse]
|
1208
|
+
end
|
1209
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/IoTManagedIntegrations/Client.html#tag_resource-instance_method
|
1210
|
+
def tag_resource: (
|
1211
|
+
resource_arn: ::String,
|
1212
|
+
tags: Hash[::String, ::String]
|
1213
|
+
) -> _TagResourceResponseSuccess
|
1214
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _TagResourceResponseSuccess
|
1215
|
+
|
1216
|
+
interface _UntagResourceResponseSuccess
|
1217
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::UntagResourceResponse]
|
1218
|
+
end
|
1219
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/IoTManagedIntegrations/Client.html#untag_resource-instance_method
|
1220
|
+
def untag_resource: (
|
1221
|
+
resource_arn: ::String,
|
1222
|
+
tag_keys: Array[::String]
|
1223
|
+
) -> _UntagResourceResponseSuccess
|
1224
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UntagResourceResponseSuccess
|
1225
|
+
|
1226
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/IoTManagedIntegrations/Client.html#update_account_association-instance_method
|
1227
|
+
def update_account_association: (
|
1228
|
+
account_association_id: ::String,
|
1229
|
+
?name: ::String,
|
1230
|
+
?description: ::String
|
1231
|
+
) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
|
1232
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
|
1233
|
+
|
1234
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/IoTManagedIntegrations/Client.html#update_cloud_connector-instance_method
|
1235
|
+
def update_cloud_connector: (
|
1236
|
+
identifier: ::String,
|
1237
|
+
?name: ::String,
|
1238
|
+
?description: ::String
|
1239
|
+
) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
|
1240
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
|
1241
|
+
|
1242
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/IoTManagedIntegrations/Client.html#update_connector_destination-instance_method
|
1243
|
+
def update_connector_destination: (
|
1244
|
+
identifier: ::String,
|
1245
|
+
?description: ::String,
|
1246
|
+
?name: ::String,
|
1247
|
+
?auth_type: ("OAUTH"),
|
1248
|
+
?auth_config: {
|
1249
|
+
o_auth_update: {
|
1250
|
+
o_auth_complete_redirect_url: ::String?,
|
1251
|
+
proactive_refresh_token_renewal: {
|
1252
|
+
enabled: bool?,
|
1253
|
+
days_before_renewal: ::Integer?
|
1254
|
+
}?
|
1255
|
+
}?
|
1256
|
+
},
|
1257
|
+
?secrets_manager: {
|
1258
|
+
arn: ::String,
|
1259
|
+
version_id: ::String
|
1260
|
+
}
|
1261
|
+
) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
|
1262
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
|
1263
|
+
|
847
1264
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/IoTManagedIntegrations/Client.html#update_destination-instance_method
|
848
1265
|
def update_destination: (
|
849
1266
|
name: ::String,
|
@@ -890,6 +1307,16 @@ module Aws
|
|
890
1307
|
},
|
891
1308
|
]
|
892
1309
|
},
|
1310
|
+
?capability_schemas: Array[
|
1311
|
+
{
|
1312
|
+
format: ("AWS" | "ZCL" | "CONNECTOR"),
|
1313
|
+
capability_id: ::String,
|
1314
|
+
extrinsic_id: ::String,
|
1315
|
+
extrinsic_version: ::Integer,
|
1316
|
+
schema: {
|
1317
|
+
}
|
1318
|
+
},
|
1319
|
+
],
|
893
1320
|
?capabilities: ::String,
|
894
1321
|
?classification: ::String,
|
895
1322
|
?hub_network_mode: ("STANDARD" | "NETWORK_WIDE_EXCLUSION"),
|
@@ -899,7 +1326,7 @@ module Aws
|
|
899
1326
|
|
900
1327
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/IoTManagedIntegrations/Client.html#update_notification_configuration-instance_method
|
901
1328
|
def update_notification_configuration: (
|
902
|
-
event_type: ("DEVICE_COMMAND" | "DEVICE_COMMAND_REQUEST" | "DEVICE_EVENT" | "DEVICE_LIFE_CYCLE" | "DEVICE_STATE" | "DEVICE_OTA" | "CONNECTOR_ASSOCIATION" | "CONNECTOR_ERROR_REPORT"),
|
1329
|
+
event_type: ("DEVICE_COMMAND" | "DEVICE_COMMAND_REQUEST" | "DEVICE_DISCOVERY_STATUS" | "DEVICE_EVENT" | "DEVICE_LIFE_CYCLE" | "DEVICE_STATE" | "DEVICE_OTA" | "CONNECTOR_ASSOCIATION" | "ACCOUNT_ASSOCIATION" | "CONNECTOR_ERROR_REPORT"),
|
903
1330
|
destination_name: ::String
|
904
1331
|
) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
|
905
1332
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
|