@aws-sdk/client-iot-managed-integrations 3.835.0 → 3.838.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.
Files changed (206) hide show
  1. package/README.md +200 -0
  2. package/dist-cjs/IoTManagedIntegrations.js +50 -0
  3. package/dist-cjs/commands/CreateAccountAssociationCommand.js +27 -0
  4. package/dist-cjs/commands/CreateCloudConnectorCommand.js +26 -0
  5. package/dist-cjs/commands/CreateConnectorDestinationCommand.js +26 -0
  6. package/dist-cjs/commands/DeleteAccountAssociationCommand.js +26 -0
  7. package/dist-cjs/commands/DeleteCloudConnectorCommand.js +26 -0
  8. package/dist-cjs/commands/DeleteConnectorDestinationCommand.js +26 -0
  9. package/dist-cjs/commands/DeregisterAccountAssociationCommand.js +26 -0
  10. package/dist-cjs/commands/GetAccountAssociationCommand.js +27 -0
  11. package/dist-cjs/commands/GetCloudConnectorCommand.js +26 -0
  12. package/dist-cjs/commands/GetConnectorDestinationCommand.js +26 -0
  13. package/dist-cjs/commands/GetOtaTaskCommand.js +2 -1
  14. package/dist-cjs/commands/ListAccountAssociationsCommand.js +26 -0
  15. package/dist-cjs/commands/ListCloudConnectorsCommand.js +26 -0
  16. package/dist-cjs/commands/ListConnectorDestinationsCommand.js +26 -0
  17. package/dist-cjs/commands/ListDeviceDiscoveriesCommand.js +26 -0
  18. package/dist-cjs/commands/ListDiscoveredDevicesCommand.js +27 -0
  19. package/dist-cjs/commands/ListManagedThingAccountAssociationsCommand.js +26 -0
  20. package/dist-cjs/commands/ListTagsForResourceCommand.js +27 -0
  21. package/dist-cjs/commands/RegisterAccountAssociationCommand.js +26 -0
  22. package/dist-cjs/commands/SendConnectorEventCommand.js +27 -0
  23. package/dist-cjs/commands/StartAccountAssociationRefreshCommand.js +27 -0
  24. package/dist-cjs/commands/TagResourceCommand.js +27 -0
  25. package/dist-cjs/commands/UntagResourceCommand.js +26 -0
  26. package/dist-cjs/commands/UpdateAccountAssociationCommand.js +26 -0
  27. package/dist-cjs/commands/UpdateCloudConnectorCommand.js +26 -0
  28. package/dist-cjs/commands/UpdateConnectorDestinationCommand.js +26 -0
  29. package/dist-cjs/commands/index.js +25 -0
  30. package/dist-cjs/models/models_0.js +187 -36
  31. package/dist-cjs/pagination/ListAccountAssociationsPaginator.js +7 -0
  32. package/dist-cjs/pagination/ListCloudConnectorsPaginator.js +7 -0
  33. package/dist-cjs/pagination/ListConnectorDestinationsPaginator.js +7 -0
  34. package/dist-cjs/pagination/ListDeviceDiscoveriesPaginator.js +7 -0
  35. package/dist-cjs/pagination/ListDiscoveredDevicesPaginator.js +7 -0
  36. package/dist-cjs/pagination/ListManagedThingAccountAssociationsPaginator.js +7 -0
  37. package/dist-cjs/pagination/index.js +6 -0
  38. package/dist-cjs/protocols/Aws_restJson1.js +974 -22
  39. package/dist-es/IoTManagedIntegrations.js +50 -0
  40. package/dist-es/commands/CreateAccountAssociationCommand.js +23 -0
  41. package/dist-es/commands/CreateCloudConnectorCommand.js +22 -0
  42. package/dist-es/commands/CreateConnectorDestinationCommand.js +22 -0
  43. package/dist-es/commands/DeleteAccountAssociationCommand.js +22 -0
  44. package/dist-es/commands/DeleteCloudConnectorCommand.js +22 -0
  45. package/dist-es/commands/DeleteConnectorDestinationCommand.js +22 -0
  46. package/dist-es/commands/DeregisterAccountAssociationCommand.js +22 -0
  47. package/dist-es/commands/GetAccountAssociationCommand.js +23 -0
  48. package/dist-es/commands/GetCloudConnectorCommand.js +22 -0
  49. package/dist-es/commands/GetConnectorDestinationCommand.js +22 -0
  50. package/dist-es/commands/GetOtaTaskCommand.js +2 -1
  51. package/dist-es/commands/ListAccountAssociationsCommand.js +22 -0
  52. package/dist-es/commands/ListCloudConnectorsCommand.js +22 -0
  53. package/dist-es/commands/ListConnectorDestinationsCommand.js +22 -0
  54. package/dist-es/commands/ListDeviceDiscoveriesCommand.js +22 -0
  55. package/dist-es/commands/ListDiscoveredDevicesCommand.js +23 -0
  56. package/dist-es/commands/ListManagedThingAccountAssociationsCommand.js +22 -0
  57. package/dist-es/commands/ListTagsForResourceCommand.js +23 -0
  58. package/dist-es/commands/RegisterAccountAssociationCommand.js +22 -0
  59. package/dist-es/commands/SendConnectorEventCommand.js +23 -0
  60. package/dist-es/commands/StartAccountAssociationRefreshCommand.js +23 -0
  61. package/dist-es/commands/TagResourceCommand.js +23 -0
  62. package/dist-es/commands/UntagResourceCommand.js +22 -0
  63. package/dist-es/commands/UpdateAccountAssociationCommand.js +22 -0
  64. package/dist-es/commands/UpdateCloudConnectorCommand.js +22 -0
  65. package/dist-es/commands/UpdateConnectorDestinationCommand.js +22 -0
  66. package/dist-es/commands/index.js +25 -0
  67. package/dist-es/models/models_0.js +168 -32
  68. package/dist-es/pagination/ListAccountAssociationsPaginator.js +4 -0
  69. package/dist-es/pagination/ListCloudConnectorsPaginator.js +4 -0
  70. package/dist-es/pagination/ListConnectorDestinationsPaginator.js +4 -0
  71. package/dist-es/pagination/ListDeviceDiscoveriesPaginator.js +4 -0
  72. package/dist-es/pagination/ListDiscoveredDevicesPaginator.js +4 -0
  73. package/dist-es/pagination/ListManagedThingAccountAssociationsPaginator.js +4 -0
  74. package/dist-es/pagination/index.js +6 -0
  75. package/dist-es/protocols/Aws_restJson1.js +918 -17
  76. package/dist-types/IoTManagedIntegrations.d.ts +180 -0
  77. package/dist-types/IoTManagedIntegrationsClient.d.ts +27 -2
  78. package/dist-types/commands/CreateAccountAssociationCommand.d.ts +102 -0
  79. package/dist-types/commands/CreateCloudConnectorCommand.d.ts +159 -0
  80. package/dist-types/commands/CreateConnectorDestinationCommand.d.ts +108 -0
  81. package/dist-types/commands/CreateCredentialLockerCommand.d.ts +2 -4
  82. package/dist-types/commands/CreateDestinationCommand.d.ts +2 -4
  83. package/dist-types/commands/CreateEventLogConfigurationCommand.d.ts +2 -4
  84. package/dist-types/commands/CreateManagedThingCommand.d.ts +12 -5
  85. package/dist-types/commands/CreateNotificationConfigurationCommand.d.ts +4 -6
  86. package/dist-types/commands/CreateOtaTaskCommand.d.ts +7 -2
  87. package/dist-types/commands/CreateOtaTaskConfigurationCommand.d.ts +1 -2
  88. package/dist-types/commands/CreateProvisioningProfileCommand.d.ts +5 -5
  89. package/dist-types/commands/DeleteAccountAssociationCommand.d.ts +88 -0
  90. package/dist-types/commands/DeleteCloudConnectorCommand.d.ts +85 -0
  91. package/dist-types/commands/DeleteConnectorDestinationCommand.d.ts +85 -0
  92. package/dist-types/commands/DeleteCredentialLockerCommand.d.ts +2 -7
  93. package/dist-types/commands/DeleteDestinationCommand.d.ts +1 -2
  94. package/dist-types/commands/DeleteEventLogConfigurationCommand.d.ts +1 -2
  95. package/dist-types/commands/DeleteManagedThingCommand.d.ts +2 -5
  96. package/dist-types/commands/DeleteNotificationConfigurationCommand.d.ts +2 -3
  97. package/dist-types/commands/DeleteOtaTaskCommand.d.ts +4 -2
  98. package/dist-types/commands/DeleteOtaTaskConfigurationCommand.d.ts +1 -2
  99. package/dist-types/commands/DeleteProvisioningProfileCommand.d.ts +1 -2
  100. package/dist-types/commands/DeregisterAccountAssociationCommand.d.ts +86 -0
  101. package/dist-types/commands/GetAccountAssociationCommand.d.ts +100 -0
  102. package/dist-types/commands/GetCloudConnectorCommand.d.ts +151 -0
  103. package/dist-types/commands/GetConnectorDestinationCommand.d.ts +109 -0
  104. package/dist-types/commands/GetCredentialLockerCommand.d.ts +1 -2
  105. package/dist-types/commands/GetCustomEndpointCommand.d.ts +1 -2
  106. package/dist-types/commands/GetDefaultEncryptionConfigurationCommand.d.ts +1 -3
  107. package/dist-types/commands/GetDestinationCommand.d.ts +1 -2
  108. package/dist-types/commands/GetDeviceDiscoveryCommand.d.ts +3 -3
  109. package/dist-types/commands/GetEventLogConfigurationCommand.d.ts +1 -2
  110. package/dist-types/commands/GetHubConfigurationCommand.d.ts +1 -2
  111. package/dist-types/commands/GetManagedThingCapabilitiesCommand.d.ts +1 -2
  112. package/dist-types/commands/GetManagedThingCommand.d.ts +2 -2
  113. package/dist-types/commands/GetManagedThingConnectivityDataCommand.d.ts +1 -2
  114. package/dist-types/commands/GetManagedThingMetaDataCommand.d.ts +2 -3
  115. package/dist-types/commands/GetNotificationConfigurationCommand.d.ts +3 -4
  116. package/dist-types/commands/GetOtaTaskCommand.d.ts +4 -2
  117. package/dist-types/commands/GetOtaTaskConfigurationCommand.d.ts +1 -2
  118. package/dist-types/commands/GetProvisioningProfileCommand.d.ts +1 -2
  119. package/dist-types/commands/GetRuntimeLogConfigurationCommand.d.ts +2 -4
  120. package/dist-types/commands/GetSchemaVersionCommand.d.ts +7 -14
  121. package/dist-types/commands/ListAccountAssociationsCommand.d.ts +100 -0
  122. package/dist-types/commands/ListCloudConnectorsCommand.d.ts +150 -0
  123. package/dist-types/commands/ListConnectorDestinationsCommand.d.ts +94 -0
  124. package/dist-types/commands/ListCredentialLockersCommand.d.ts +1 -2
  125. package/dist-types/commands/ListDestinationsCommand.d.ts +1 -2
  126. package/dist-types/commands/ListDeviceDiscoveriesCommand.d.ts +100 -0
  127. package/dist-types/commands/ListDiscoveredDevicesCommand.d.ts +110 -0
  128. package/dist-types/commands/ListEventLogConfigurationsCommand.d.ts +1 -2
  129. package/dist-types/commands/ListManagedThingAccountAssociationsCommand.d.ts +93 -0
  130. package/dist-types/commands/ListManagedThingSchemasCommand.d.ts +1 -2
  131. package/dist-types/commands/ListManagedThingsCommand.d.ts +5 -3
  132. package/dist-types/commands/ListNotificationConfigurationsCommand.d.ts +2 -3
  133. package/dist-types/commands/ListOtaTaskConfigurationsCommand.d.ts +1 -2
  134. package/dist-types/commands/ListOtaTaskExecutionsCommand.d.ts +4 -2
  135. package/dist-types/commands/ListOtaTasksCommand.d.ts +4 -2
  136. package/dist-types/commands/ListProvisioningProfilesCommand.d.ts +1 -2
  137. package/dist-types/commands/ListSchemaVersionsCommand.d.ts +7 -8
  138. package/dist-types/commands/ListTagsForResourceCommand.d.ts +86 -0
  139. package/dist-types/commands/PutDefaultEncryptionConfigurationCommand.d.ts +1 -3
  140. package/dist-types/commands/PutHubConfigurationCommand.d.ts +1 -2
  141. package/dist-types/commands/PutRuntimeLogConfigurationCommand.d.ts +2 -4
  142. package/dist-types/commands/RegisterAccountAssociationCommand.d.ts +94 -0
  143. package/dist-types/commands/RegisterCustomEndpointCommand.d.ts +2 -4
  144. package/dist-types/commands/ResetRuntimeLogConfigurationCommand.d.ts +2 -4
  145. package/dist-types/commands/SendConnectorEventCommand.d.ts +309 -0
  146. package/dist-types/commands/SendManagedThingCommandCommand.d.ts +5 -2
  147. package/dist-types/commands/StartAccountAssociationRefreshCommand.d.ts +90 -0
  148. package/dist-types/commands/StartDeviceDiscoveryCommand.d.ts +7 -6
  149. package/dist-types/commands/TagResourceCommand.d.ts +88 -0
  150. package/dist-types/commands/UntagResourceCommand.d.ts +88 -0
  151. package/dist-types/commands/UpdateAccountAssociationCommand.d.ts +93 -0
  152. package/dist-types/commands/UpdateCloudConnectorCommand.d.ts +115 -0
  153. package/dist-types/commands/UpdateConnectorDestinationCommand.d.ts +101 -0
  154. package/dist-types/commands/UpdateDestinationCommand.d.ts +1 -2
  155. package/dist-types/commands/UpdateEventLogConfigurationCommand.d.ts +1 -2
  156. package/dist-types/commands/UpdateManagedThingCommand.d.ts +10 -2
  157. package/dist-types/commands/UpdateNotificationConfigurationCommand.d.ts +2 -3
  158. package/dist-types/commands/UpdateOtaTaskCommand.d.ts +1 -2
  159. package/dist-types/commands/index.d.ts +25 -0
  160. package/dist-types/models/models_0.d.ts +1953 -394
  161. package/dist-types/pagination/ListAccountAssociationsPaginator.d.ts +7 -0
  162. package/dist-types/pagination/ListCloudConnectorsPaginator.d.ts +7 -0
  163. package/dist-types/pagination/ListConnectorDestinationsPaginator.d.ts +7 -0
  164. package/dist-types/pagination/ListDeviceDiscoveriesPaginator.d.ts +7 -0
  165. package/dist-types/pagination/ListDiscoveredDevicesPaginator.d.ts +7 -0
  166. package/dist-types/pagination/ListManagedThingAccountAssociationsPaginator.d.ts +7 -0
  167. package/dist-types/pagination/index.d.ts +6 -0
  168. package/dist-types/protocols/Aws_restJson1.d.ts +225 -0
  169. package/dist-types/ts3.4/IoTManagedIntegrations.d.ts +436 -0
  170. package/dist-types/ts3.4/IoTManagedIntegrationsClient.d.ts +150 -0
  171. package/dist-types/ts3.4/commands/CreateAccountAssociationCommand.d.ts +51 -0
  172. package/dist-types/ts3.4/commands/CreateCloudConnectorCommand.d.ts +51 -0
  173. package/dist-types/ts3.4/commands/CreateConnectorDestinationCommand.d.ts +51 -0
  174. package/dist-types/ts3.4/commands/DeleteAccountAssociationCommand.d.ts +47 -0
  175. package/dist-types/ts3.4/commands/DeleteCloudConnectorCommand.d.ts +46 -0
  176. package/dist-types/ts3.4/commands/DeleteConnectorDestinationCommand.d.ts +47 -0
  177. package/dist-types/ts3.4/commands/DeregisterAccountAssociationCommand.d.ts +47 -0
  178. package/dist-types/ts3.4/commands/GetAccountAssociationCommand.d.ts +51 -0
  179. package/dist-types/ts3.4/commands/GetCloudConnectorCommand.d.ts +51 -0
  180. package/dist-types/ts3.4/commands/GetConnectorDestinationCommand.d.ts +51 -0
  181. package/dist-types/ts3.4/commands/ListAccountAssociationsCommand.d.ts +51 -0
  182. package/dist-types/ts3.4/commands/ListCloudConnectorsCommand.d.ts +51 -0
  183. package/dist-types/ts3.4/commands/ListConnectorDestinationsCommand.d.ts +51 -0
  184. package/dist-types/ts3.4/commands/ListDeviceDiscoveriesCommand.d.ts +51 -0
  185. package/dist-types/ts3.4/commands/ListDiscoveredDevicesCommand.d.ts +51 -0
  186. package/dist-types/ts3.4/commands/ListManagedThingAccountAssociationsCommand.d.ts +51 -0
  187. package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +51 -0
  188. package/dist-types/ts3.4/commands/RegisterAccountAssociationCommand.d.ts +51 -0
  189. package/dist-types/ts3.4/commands/SendConnectorEventCommand.d.ts +51 -0
  190. package/dist-types/ts3.4/commands/StartAccountAssociationRefreshCommand.d.ts +51 -0
  191. package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +47 -0
  192. package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +50 -0
  193. package/dist-types/ts3.4/commands/UpdateAccountAssociationCommand.d.ts +47 -0
  194. package/dist-types/ts3.4/commands/UpdateCloudConnectorCommand.d.ts +46 -0
  195. package/dist-types/ts3.4/commands/UpdateConnectorDestinationCommand.d.ts +47 -0
  196. package/dist-types/ts3.4/commands/index.d.ts +25 -0
  197. package/dist-types/ts3.4/models/models_0.d.ts +510 -54
  198. package/dist-types/ts3.4/pagination/ListAccountAssociationsPaginator.d.ts +11 -0
  199. package/dist-types/ts3.4/pagination/ListCloudConnectorsPaginator.d.ts +11 -0
  200. package/dist-types/ts3.4/pagination/ListConnectorDestinationsPaginator.d.ts +11 -0
  201. package/dist-types/ts3.4/pagination/ListDeviceDiscoveriesPaginator.d.ts +11 -0
  202. package/dist-types/ts3.4/pagination/ListDiscoveredDevicesPaginator.d.ts +11 -0
  203. package/dist-types/ts3.4/pagination/ListManagedThingAccountAssociationsPaginator.d.ts +11 -0
  204. package/dist-types/ts3.4/pagination/index.d.ts +6 -0
  205. package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +300 -0
  206. package/package.json +1 -1
@@ -28,13 +28,165 @@ export declare class AccessDeniedException extends __BaseException {
28
28
  opts: __ExceptionOptionType<AccessDeniedException, __BaseException>
29
29
  );
30
30
  }
31
+ export declare const AssociationState: {
32
+ readonly ASSOCIATION_DELETING: "ASSOCIATION_DELETING";
33
+ readonly ASSOCIATION_FAILED: "ASSOCIATION_FAILED";
34
+ readonly ASSOCIATION_IN_PROGRESS: "ASSOCIATION_IN_PROGRESS";
35
+ readonly ASSOCIATION_SUCCEEDED: "ASSOCIATION_SUCCEEDED";
36
+ readonly REFRESH_TOKEN_EXPIRED: "REFRESH_TOKEN_EXPIRED";
37
+ };
38
+ export type AssociationState =
39
+ (typeof AssociationState)[keyof typeof AssociationState];
40
+ export interface AccountAssociationItem {
41
+ AccountAssociationId: string | undefined;
42
+ AssociationState: AssociationState | undefined;
43
+ ErrorMessage?: string | undefined;
44
+ ConnectorDestinationId?: string | undefined;
45
+ Name?: string | undefined;
46
+ Description?: string | undefined;
47
+ Arn?: string | undefined;
48
+ }
49
+ export declare class ConflictException extends __BaseException {
50
+ readonly name: "ConflictException";
51
+ readonly $fault: "client";
52
+ Message?: string | undefined;
53
+ constructor(opts: __ExceptionOptionType<ConflictException, __BaseException>);
54
+ }
55
+ export interface CreateAccountAssociationRequest {
56
+ ClientToken?: string | undefined;
57
+ ConnectorDestinationId: string | undefined;
58
+ Name?: string | undefined;
59
+ Description?: string | undefined;
60
+ Tags?: Record<string, string> | undefined;
61
+ }
62
+ export interface CreateAccountAssociationResponse {
63
+ OAuthAuthorizationUrl: string | undefined;
64
+ AccountAssociationId: string | undefined;
65
+ AssociationState: AssociationState | undefined;
66
+ Arn?: string | undefined;
67
+ }
68
+ export declare class InternalServerException extends __BaseException {
69
+ readonly name: "InternalServerException";
70
+ readonly $fault: "server";
71
+ Message?: string | undefined;
72
+ constructor(
73
+ opts: __ExceptionOptionType<InternalServerException, __BaseException>
74
+ );
75
+ }
76
+ export declare class ResourceNotFoundException extends __BaseException {
77
+ readonly name: "ResourceNotFoundException";
78
+ readonly $fault: "client";
79
+ Message?: string | undefined;
80
+ ResourceId?: string | undefined;
81
+ ResourceType?: string | undefined;
82
+ constructor(
83
+ opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>
84
+ );
85
+ }
86
+ export declare class ServiceUnavailableException extends __BaseException {
87
+ readonly name: "ServiceUnavailableException";
88
+ readonly $fault: "server";
89
+ Message?: string | undefined;
90
+ constructor(
91
+ opts: __ExceptionOptionType<ServiceUnavailableException, __BaseException>
92
+ );
93
+ }
94
+ export declare class ThrottlingException extends __BaseException {
95
+ readonly name: "ThrottlingException";
96
+ readonly $fault: "client";
97
+ Message?: string | undefined;
98
+ constructor(
99
+ opts: __ExceptionOptionType<ThrottlingException, __BaseException>
100
+ );
101
+ }
102
+ export declare class ValidationException extends __BaseException {
103
+ readonly name: "ValidationException";
104
+ readonly $fault: "client";
105
+ Message?: string | undefined;
106
+ constructor(
107
+ opts: __ExceptionOptionType<ValidationException, __BaseException>
108
+ );
109
+ }
110
+ export interface DeleteAccountAssociationRequest {
111
+ AccountAssociationId: string | undefined;
112
+ }
113
+ export interface GetAccountAssociationRequest {
114
+ AccountAssociationId: string | undefined;
115
+ }
116
+ export interface GetAccountAssociationResponse {
117
+ AccountAssociationId: string | undefined;
118
+ AssociationState: AssociationState | undefined;
119
+ ErrorMessage?: string | undefined;
120
+ ConnectorDestinationId?: string | undefined;
121
+ Name?: string | undefined;
122
+ Description?: string | undefined;
123
+ Arn?: string | undefined;
124
+ OAuthAuthorizationUrl: string | undefined;
125
+ Tags?: Record<string, string> | undefined;
126
+ }
127
+ export interface ListAccountAssociationsRequest {
128
+ ConnectorDestinationId?: string | undefined;
129
+ MaxResults?: number | undefined;
130
+ NextToken?: string | undefined;
131
+ }
132
+ export interface ListAccountAssociationsResponse {
133
+ Items?: AccountAssociationItem[] | undefined;
134
+ NextToken?: string | undefined;
135
+ }
136
+ export interface StartAccountAssociationRefreshRequest {
137
+ AccountAssociationId: string | undefined;
138
+ }
139
+ export interface StartAccountAssociationRefreshResponse {
140
+ OAuthAuthorizationUrl: string | undefined;
141
+ }
142
+ export interface UpdateAccountAssociationRequest {
143
+ AccountAssociationId: string | undefined;
144
+ Name?: string | undefined;
145
+ Description?: string | undefined;
146
+ }
147
+ export interface ProactiveRefreshTokenRenewal {
148
+ enabled?: boolean | undefined;
149
+ DaysBeforeRenewal?: number | undefined;
150
+ }
151
+ export declare const TokenEndpointAuthenticationScheme: {
152
+ readonly HTTP_BASIC: "HTTP_BASIC";
153
+ readonly REQUEST_BODY_CREDENTIALS: "REQUEST_BODY_CREDENTIALS";
154
+ };
155
+ export type TokenEndpointAuthenticationScheme =
156
+ (typeof TokenEndpointAuthenticationScheme)[keyof typeof TokenEndpointAuthenticationScheme];
157
+ export interface OAuthConfig {
158
+ authUrl: string | undefined;
159
+ tokenUrl: string | undefined;
160
+ scope?: string | undefined;
161
+ tokenEndpointAuthenticationScheme:
162
+ | TokenEndpointAuthenticationScheme
163
+ | undefined;
164
+ oAuthCompleteRedirectUrl?: string | undefined;
165
+ proactiveRefreshTokenRenewal?: ProactiveRefreshTokenRenewal | undefined;
166
+ }
167
+ export interface AuthConfig {
168
+ oAuth?: OAuthConfig | undefined;
169
+ }
170
+ export interface OAuthUpdate {
171
+ oAuthCompleteRedirectUrl?: string | undefined;
172
+ proactiveRefreshTokenRenewal?: ProactiveRefreshTokenRenewal | undefined;
173
+ }
174
+ export interface AuthConfigUpdate {
175
+ oAuthUpdate?: OAuthUpdate | undefined;
176
+ }
31
177
  export declare const AuthMaterialType: {
178
+ readonly CUSTOM_PROTOCOL_QR_BAR_CODE: "CUSTOM_PROTOCOL_QR_BAR_CODE";
179
+ readonly DISCOVERED_DEVICE: "DISCOVERED_DEVICE";
32
180
  readonly WIFI_SETUP_QR_BAR_CODE: "WIFI_SETUP_QR_BAR_CODE";
33
181
  readonly ZIGBEE_QR_BAR_CODE: "ZIGBEE_QR_BAR_CODE";
34
182
  readonly ZWAVE_QR_BAR_CODE: "ZWAVE_QR_BAR_CODE";
35
183
  };
36
184
  export type AuthMaterialType =
37
185
  (typeof AuthMaterialType)[keyof typeof AuthMaterialType];
186
+ export declare const AuthType: {
187
+ readonly OAUTH: "OAUTH";
188
+ };
189
+ export type AuthType = (typeof AuthType)[keyof typeof AuthType];
38
190
  export interface CapabilityAction {
39
191
  name: string | undefined;
40
192
  ref?: string | undefined;
@@ -59,6 +211,83 @@ export interface CapabilityReport {
59
211
  nodeId?: string | undefined;
60
212
  endpoints: CapabilityReportEndpoint[] | undefined;
61
213
  }
214
+ export declare const SchemaVersionFormat: {
215
+ readonly AWS: "AWS";
216
+ readonly CONNECTOR: "CONNECTOR";
217
+ readonly ZCL: "ZCL";
218
+ };
219
+ export type SchemaVersionFormat =
220
+ (typeof SchemaVersionFormat)[keyof typeof SchemaVersionFormat];
221
+ export interface CapabilitySchemaItem {
222
+ Format: SchemaVersionFormat | undefined;
223
+ CapabilityId: string | undefined;
224
+ ExtrinsicId: string | undefined;
225
+ ExtrinsicVersion: number | undefined;
226
+ Schema: __DocumentType | undefined;
227
+ }
228
+ export interface LambdaConfig {
229
+ arn: string | undefined;
230
+ }
231
+ export interface EndpointConfig {
232
+ lambda?: LambdaConfig | undefined;
233
+ }
234
+ export declare const EndpointType: {
235
+ readonly LAMBDA: "LAMBDA";
236
+ };
237
+ export type EndpointType = (typeof EndpointType)[keyof typeof EndpointType];
238
+ export interface CreateCloudConnectorRequest {
239
+ Name: string | undefined;
240
+ EndpointConfig: EndpointConfig | undefined;
241
+ Description?: string | undefined;
242
+ EndpointType?: EndpointType | undefined;
243
+ ClientToken?: string | undefined;
244
+ }
245
+ export interface CreateCloudConnectorResponse {
246
+ Id?: string | undefined;
247
+ }
248
+ export interface DeleteCloudConnectorRequest {
249
+ Identifier: string | undefined;
250
+ }
251
+ export interface GetCloudConnectorRequest {
252
+ Identifier: string | undefined;
253
+ }
254
+ export declare const CloudConnectorType: {
255
+ readonly LISTED: "LISTED";
256
+ readonly UNLISTED: "UNLISTED";
257
+ };
258
+ export type CloudConnectorType =
259
+ (typeof CloudConnectorType)[keyof typeof CloudConnectorType];
260
+ export interface GetCloudConnectorResponse {
261
+ Name: string | undefined;
262
+ EndpointConfig: EndpointConfig | undefined;
263
+ Description?: string | undefined;
264
+ EndpointType?: EndpointType | undefined;
265
+ Id?: string | undefined;
266
+ Type?: CloudConnectorType | undefined;
267
+ }
268
+ export interface ListCloudConnectorsRequest {
269
+ Type?: CloudConnectorType | undefined;
270
+ LambdaArn?: string | undefined;
271
+ MaxResults?: number | undefined;
272
+ NextToken?: string | undefined;
273
+ }
274
+ export interface ConnectorItem {
275
+ Name: string | undefined;
276
+ EndpointConfig: EndpointConfig | undefined;
277
+ Description?: string | undefined;
278
+ EndpointType?: EndpointType | undefined;
279
+ Id?: string | undefined;
280
+ Type?: CloudConnectorType | undefined;
281
+ }
282
+ export interface ListCloudConnectorsResponse {
283
+ Items?: ConnectorItem[] | undefined;
284
+ NextToken?: string | undefined;
285
+ }
286
+ export interface UpdateCloudConnectorRequest {
287
+ Identifier: string | undefined;
288
+ Name?: string | undefined;
289
+ Description?: string | undefined;
290
+ }
62
291
  export interface CommandCapability {
63
292
  id: string | undefined;
64
293
  name: string | undefined;
@@ -84,12 +313,69 @@ export interface ConfigurationStatus {
84
313
  error?: ConfigurationError | undefined;
85
314
  state: ConfigurationState | undefined;
86
315
  }
87
- export declare class ConflictException extends __BaseException {
88
- readonly name: "ConflictException";
89
- readonly $fault: "client";
90
- Message?: string | undefined;
91
- constructor(opts: __ExceptionOptionType<ConflictException, __BaseException>);
316
+ export interface ConnectorDestinationSummary {
317
+ Name?: string | undefined;
318
+ Description?: string | undefined;
319
+ CloudConnectorId?: string | undefined;
320
+ Id?: string | undefined;
321
+ }
322
+ export interface SecretsManager {
323
+ arn: string | undefined;
324
+ versionId: string | undefined;
325
+ }
326
+ export interface CreateConnectorDestinationRequest {
327
+ Name?: string | undefined;
328
+ Description?: string | undefined;
329
+ CloudConnectorId: string | undefined;
330
+ AuthType: AuthType | undefined;
331
+ AuthConfig: AuthConfig | undefined;
332
+ SecretsManager: SecretsManager | undefined;
333
+ ClientToken?: string | undefined;
334
+ }
335
+ export interface CreateConnectorDestinationResponse {
336
+ Id?: string | undefined;
337
+ }
338
+ export interface DeleteConnectorDestinationRequest {
339
+ Identifier: string | undefined;
340
+ }
341
+ export interface GetConnectorDestinationRequest {
342
+ Identifier: string | undefined;
92
343
  }
344
+ export interface GetConnectorDestinationResponse {
345
+ Name?: string | undefined;
346
+ Description?: string | undefined;
347
+ CloudConnectorId?: string | undefined;
348
+ Id?: string | undefined;
349
+ AuthType?: AuthType | undefined;
350
+ AuthConfig?: AuthConfig | undefined;
351
+ SecretsManager?: SecretsManager | undefined;
352
+ OAuthCompleteRedirectUrl?: string | undefined;
353
+ }
354
+ export interface ListConnectorDestinationsRequest {
355
+ CloudConnectorId?: string | undefined;
356
+ NextToken?: string | undefined;
357
+ MaxResults?: number | undefined;
358
+ }
359
+ export interface ListConnectorDestinationsResponse {
360
+ ConnectorDestinationList?: ConnectorDestinationSummary[] | undefined;
361
+ NextToken?: string | undefined;
362
+ }
363
+ export interface UpdateConnectorDestinationRequest {
364
+ Identifier: string | undefined;
365
+ Description?: string | undefined;
366
+ Name?: string | undefined;
367
+ AuthType?: AuthType | undefined;
368
+ AuthConfig?: AuthConfigUpdate | undefined;
369
+ SecretsManager?: SecretsManager | undefined;
370
+ }
371
+ export declare const ConnectorEventOperation: {
372
+ readonly DEVICE_COMMAND_REQUEST: "DEVICE_COMMAND_REQUEST";
373
+ readonly DEVICE_COMMAND_RESPONSE: "DEVICE_COMMAND_RESPONSE";
374
+ readonly DEVICE_DISCOVERY: "DEVICE_DISCOVERY";
375
+ readonly DEVICE_EVENT: "DEVICE_EVENT";
376
+ };
377
+ export type ConnectorEventOperation =
378
+ (typeof ConnectorEventOperation)[keyof typeof ConnectorEventOperation];
93
379
  export interface CreateCredentialLockerRequest {
94
380
  Name?: string | undefined;
95
381
  ClientToken?: string | undefined;
@@ -100,14 +386,6 @@ export interface CreateCredentialLockerResponse {
100
386
  Arn?: string | undefined;
101
387
  CreatedAt?: Date | undefined;
102
388
  }
103
- export declare class InternalServerException extends __BaseException {
104
- readonly name: "InternalServerException";
105
- readonly $fault: "server";
106
- Message?: string | undefined;
107
- constructor(
108
- opts: __ExceptionOptionType<InternalServerException, __BaseException>
109
- );
110
- }
111
389
  export declare class ServiceQuotaExceededException extends __BaseException {
112
390
  readonly name: "ServiceQuotaExceededException";
113
391
  readonly $fault: "client";
@@ -116,30 +394,6 @@ export declare class ServiceQuotaExceededException extends __BaseException {
116
394
  opts: __ExceptionOptionType<ServiceQuotaExceededException, __BaseException>
117
395
  );
118
396
  }
119
- export declare class ServiceUnavailableException extends __BaseException {
120
- readonly name: "ServiceUnavailableException";
121
- readonly $fault: "server";
122
- Message?: string | undefined;
123
- constructor(
124
- opts: __ExceptionOptionType<ServiceUnavailableException, __BaseException>
125
- );
126
- }
127
- export declare class ThrottlingException extends __BaseException {
128
- readonly name: "ThrottlingException";
129
- readonly $fault: "client";
130
- Message?: string | undefined;
131
- constructor(
132
- opts: __ExceptionOptionType<ThrottlingException, __BaseException>
133
- );
134
- }
135
- export declare class ValidationException extends __BaseException {
136
- readonly name: "ValidationException";
137
- readonly $fault: "client";
138
- Message?: string | undefined;
139
- constructor(
140
- opts: __ExceptionOptionType<ValidationException, __BaseException>
141
- );
142
- }
143
397
  export declare const DeliveryDestinationType: {
144
398
  readonly KINESIS: "KINESIS";
145
399
  };
@@ -189,6 +443,7 @@ export interface CreateManagedThingRequest {
189
443
  Model?: string | undefined;
190
444
  Name?: string | undefined;
191
445
  CapabilityReport?: CapabilityReport | undefined;
446
+ CapabilitySchemas?: CapabilitySchemaItem[] | undefined;
192
447
  Capabilities?: string | undefined;
193
448
  ClientToken?: string | undefined;
194
449
  Classification?: string | undefined;
@@ -200,14 +455,6 @@ export interface CreateManagedThingResponse {
200
455
  Arn?: string | undefined;
201
456
  CreatedAt?: Date | undefined;
202
457
  }
203
- export declare class ResourceNotFoundException extends __BaseException {
204
- readonly name: "ResourceNotFoundException";
205
- readonly $fault: "client";
206
- Message?: string | undefined;
207
- constructor(
208
- opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>
209
- );
210
- }
211
458
  export declare class UnauthorizedException extends __BaseException {
212
459
  readonly name: "UnauthorizedException";
213
460
  readonly $fault: "client";
@@ -217,10 +464,12 @@ export declare class UnauthorizedException extends __BaseException {
217
464
  );
218
465
  }
219
466
  export declare const EventType: {
467
+ readonly ACCOUNT_ASSOCIATION: "ACCOUNT_ASSOCIATION";
220
468
  readonly CONNECTOR_ASSOCIATION: "CONNECTOR_ASSOCIATION";
221
469
  readonly CONNECTOR_ERROR_REPORT: "CONNECTOR_ERROR_REPORT";
222
470
  readonly DEVICE_COMMAND: "DEVICE_COMMAND";
223
471
  readonly DEVICE_COMMAND_REQUEST: "DEVICE_COMMAND_REQUEST";
472
+ readonly DEVICE_DISCOVERY_STATUS: "DEVICE_DISCOVERY_STATUS";
224
473
  readonly DEVICE_EVENT: "DEVICE_EVENT";
225
474
  readonly DEVICE_LIFE_CYCLE: "DEVICE_LIFE_CYCLE";
226
475
  readonly DEVICE_OTA: "DEVICE_OTA";
@@ -396,12 +645,24 @@ export interface DeleteNotificationConfigurationRequest {
396
645
  export interface DeleteOtaTaskRequest {
397
646
  Identifier: string | undefined;
398
647
  }
648
+ export declare class LimitExceededException extends __BaseException {
649
+ readonly name: "LimitExceededException";
650
+ readonly $fault: "client";
651
+ Message?: string | undefined;
652
+ constructor(
653
+ opts: __ExceptionOptionType<LimitExceededException, __BaseException>
654
+ );
655
+ }
399
656
  export interface DeleteOtaTaskConfigurationRequest {
400
657
  Identifier: string | undefined;
401
658
  }
402
659
  export interface DeleteProvisioningProfileRequest {
403
660
  Identifier: string | undefined;
404
661
  }
662
+ export interface DeregisterAccountAssociationRequest {
663
+ ManagedThingId: string | undefined;
664
+ AccountAssociationId: string | undefined;
665
+ }
405
666
  export interface DestinationSummary {
406
667
  Description?: string | undefined;
407
668
  DeliveryDestinationArn?: string | undefined;
@@ -437,11 +698,47 @@ export interface UpdateDestinationRequest {
437
698
  RoleArn?: string | undefined;
438
699
  Description?: string | undefined;
439
700
  }
440
- export interface GetDeviceDiscoveryRequest {
441
- Identifier: string | undefined;
701
+ export interface MatterCapabilityReportAttribute {
702
+ id?: string | undefined;
703
+ name?: string | undefined;
704
+ value?: __DocumentType | undefined;
705
+ }
706
+ export interface MatterCapabilityReportCluster {
707
+ id: string | undefined;
708
+ revision: number | undefined;
709
+ publicId?: string | undefined;
710
+ name?: string | undefined;
711
+ specVersion?: string | undefined;
712
+ attributes?: MatterCapabilityReportAttribute[] | undefined;
713
+ commands?: string[] | undefined;
714
+ events?: string[] | undefined;
715
+ featureMap?: number | undefined;
716
+ generatedCommands?: string[] | undefined;
717
+ fabricIndex?: number | undefined;
718
+ }
719
+ export interface MatterCapabilityReportEndpoint {
720
+ id: string | undefined;
721
+ deviceTypes: string[] | undefined;
722
+ clusters: MatterCapabilityReportCluster[] | undefined;
723
+ parts?: string[] | undefined;
724
+ semanticTags?: string[] | undefined;
725
+ clientClusters?: string[] | undefined;
726
+ }
727
+ export interface MatterCapabilityReport {
728
+ version: string | undefined;
729
+ nodeId?: string | undefined;
730
+ endpoints: MatterCapabilityReportEndpoint[] | undefined;
731
+ }
732
+ export interface Device {
733
+ ConnectorDeviceId: string | undefined;
734
+ ConnectorDeviceName?: string | undefined;
735
+ CapabilityReport: MatterCapabilityReport | undefined;
736
+ CapabilitySchemas?: CapabilitySchemaItem[] | undefined;
737
+ DeviceMetadata?: __DocumentType | undefined;
442
738
  }
443
739
  export declare const DiscoveryType: {
444
740
  readonly CLOUD: "CLOUD";
741
+ readonly CUSTOM: "CUSTOM";
445
742
  readonly ZIGBEE: "ZIGBEE";
446
743
  readonly ZWAVE: "ZWAVE";
447
744
  };
@@ -454,6 +751,14 @@ export declare const DeviceDiscoveryStatus: {
454
751
  };
455
752
  export type DeviceDiscoveryStatus =
456
753
  (typeof DeviceDiscoveryStatus)[keyof typeof DeviceDiscoveryStatus];
754
+ export interface DeviceDiscoverySummary {
755
+ Id?: string | undefined;
756
+ DiscoveryType?: DiscoveryType | undefined;
757
+ Status?: DeviceDiscoveryStatus | undefined;
758
+ }
759
+ export interface GetDeviceDiscoveryRequest {
760
+ Identifier: string | undefined;
761
+ }
457
762
  export interface GetDeviceDiscoveryResponse {
458
763
  Id: string | undefined;
459
764
  Arn: string | undefined;
@@ -462,9 +767,47 @@ export interface GetDeviceDiscoveryResponse {
462
767
  StartedAt: Date | undefined;
463
768
  ControllerId?: string | undefined;
464
769
  ConnectorAssociationId?: string | undefined;
770
+ AccountAssociationId?: string | undefined;
465
771
  FinishedAt?: Date | undefined;
466
772
  Tags?: Record<string, string> | undefined;
467
773
  }
774
+ export interface ListDeviceDiscoveriesRequest {
775
+ NextToken?: string | undefined;
776
+ MaxResults?: number | undefined;
777
+ TypeFilter?: DiscoveryType | undefined;
778
+ StatusFilter?: DeviceDiscoveryStatus | undefined;
779
+ }
780
+ export interface ListDeviceDiscoveriesResponse {
781
+ Items?: DeviceDiscoverySummary[] | undefined;
782
+ NextToken?: string | undefined;
783
+ }
784
+ export interface ListDiscoveredDevicesRequest {
785
+ Identifier: string | undefined;
786
+ NextToken?: string | undefined;
787
+ MaxResults?: number | undefined;
788
+ }
789
+ export declare const DiscoveryModification: {
790
+ readonly DISCOVERED: "DISCOVERED";
791
+ readonly NO_CHANGE: "NO_CHANGE";
792
+ readonly UPDATED: "UPDATED";
793
+ };
794
+ export type DiscoveryModification =
795
+ (typeof DiscoveryModification)[keyof typeof DiscoveryModification];
796
+ export interface DiscoveredDeviceSummary {
797
+ ConnectorDeviceId?: string | undefined;
798
+ ConnectorDeviceName?: string | undefined;
799
+ DeviceTypes?: string[] | undefined;
800
+ ManagedThingId?: string | undefined;
801
+ Modification?: DiscoveryModification | undefined;
802
+ DiscoveredAt?: Date | undefined;
803
+ Brand?: string | undefined;
804
+ Model?: string | undefined;
805
+ AuthenticationMaterial?: string | undefined;
806
+ }
807
+ export interface ListDiscoveredDevicesResponse {
808
+ Items?: DiscoveredDeviceSummary[] | undefined;
809
+ NextToken?: string | undefined;
810
+ }
468
811
  export declare const DiscoveryAuthMaterialType: {
469
812
  readonly ZWAVE_INSTALL_CODE: "ZWAVE_INSTALL_CODE";
470
813
  };
@@ -472,8 +815,10 @@ export type DiscoveryAuthMaterialType =
472
815
  (typeof DiscoveryAuthMaterialType)[keyof typeof DiscoveryAuthMaterialType];
473
816
  export interface StartDeviceDiscoveryRequest {
474
817
  DiscoveryType: DiscoveryType | undefined;
818
+ CustomProtocolDetail?: Record<string, string> | undefined;
475
819
  ControllerIdentifier?: string | undefined;
476
820
  ConnectorAssociationIdentifier?: string | undefined;
821
+ AccountAssociationId?: string | undefined;
477
822
  AuthenticationMaterial?: string | undefined;
478
823
  AuthenticationMaterialType?: DiscoveryAuthMaterialType | undefined;
479
824
  ClientToken?: string | undefined;
@@ -593,6 +938,7 @@ export interface GetManagedThingResponse {
593
938
  UniversalProductCode?: string | undefined;
594
939
  InternationalArticleNumber?: string | undefined;
595
940
  ConnectorPolicyId?: string | undefined;
941
+ ConnectorDestinationId?: string | undefined;
596
942
  ConnectorDeviceId?: string | undefined;
597
943
  DeviceSpecificKey?: string | undefined;
598
944
  MacAddress?: string | undefined;
@@ -694,6 +1040,7 @@ export interface GetOtaTaskResponse {
694
1040
  OtaSchedulingConfig?: OtaTaskSchedulingConfig | undefined;
695
1041
  OtaTaskExecutionRetryConfig?: OtaTaskExecutionRetryConfig | undefined;
696
1042
  Status?: OtaStatus | undefined;
1043
+ Tags?: Record<string, string> | undefined;
697
1044
  }
698
1045
  export interface GetOtaTaskConfigurationRequest {
699
1046
  Identifier: string | undefined;
@@ -733,13 +1080,6 @@ export interface GetRuntimeLogConfigurationResponse {
733
1080
  ManagedThingId?: string | undefined;
734
1081
  RuntimeLogConfigurations?: RuntimeLogConfigurations | undefined;
735
1082
  }
736
- export declare const SchemaVersionFormat: {
737
- readonly AWS: "AWS";
738
- readonly CONNECTOR: "CONNECTOR";
739
- readonly ZCL: "ZCL";
740
- };
741
- export type SchemaVersionFormat =
742
- (typeof SchemaVersionFormat)[keyof typeof SchemaVersionFormat];
743
1083
  export declare const SchemaVersionType: {
744
1084
  readonly CAPABILITY: "capability";
745
1085
  readonly DEFINITION: "definition";
@@ -772,6 +1112,14 @@ export interface PutHubConfigurationRequest {
772
1112
  export interface PutHubConfigurationResponse {
773
1113
  HubTokenTimerExpirySettingInSeconds?: number | undefined;
774
1114
  }
1115
+ export declare class InvalidRequestException extends __BaseException {
1116
+ readonly name: "InvalidRequestException";
1117
+ readonly $fault: "client";
1118
+ Message?: string | undefined;
1119
+ constructor(
1120
+ opts: __ExceptionOptionType<InvalidRequestException, __BaseException>
1121
+ );
1122
+ }
775
1123
  export interface PutDefaultEncryptionConfigurationRequest {
776
1124
  encryptionType: EncryptionType | undefined;
777
1125
  kmsKeyArn?: string | undefined;
@@ -781,10 +1129,41 @@ export interface PutDefaultEncryptionConfigurationResponse {
781
1129
  encryptionType: EncryptionType | undefined;
782
1130
  kmsKeyArn?: string | undefined;
783
1131
  }
1132
+ export interface ListTagsForResourceRequest {
1133
+ ResourceArn: string | undefined;
1134
+ }
1135
+ export interface ListTagsForResourceResponse {
1136
+ tags?: Record<string, string> | undefined;
1137
+ }
1138
+ export interface ListManagedThingAccountAssociationsRequest {
1139
+ ManagedThingId?: string | undefined;
1140
+ AccountAssociationId?: string | undefined;
1141
+ MaxResults?: number | undefined;
1142
+ NextToken?: string | undefined;
1143
+ }
1144
+ export interface ManagedThingAssociation {
1145
+ ManagedThingId?: string | undefined;
1146
+ AccountAssociationId?: string | undefined;
1147
+ }
1148
+ export interface ListManagedThingAccountAssociationsResponse {
1149
+ Items?: ManagedThingAssociation[] | undefined;
1150
+ NextToken?: string | undefined;
1151
+ }
1152
+ export interface RegisterAccountAssociationRequest {
1153
+ ManagedThingId: string | undefined;
1154
+ AccountAssociationId: string | undefined;
1155
+ DeviceDiscoveryId: string | undefined;
1156
+ }
1157
+ export interface RegisterAccountAssociationResponse {
1158
+ AccountAssociationId?: string | undefined;
1159
+ DeviceDiscoveryId?: string | undefined;
1160
+ ManagedThingId?: string | undefined;
1161
+ }
784
1162
  export interface SendManagedThingCommandRequest {
785
1163
  ManagedThingId: string | undefined;
786
1164
  Endpoints: CommandEndpoint[] | undefined;
787
1165
  ConnectorAssociationId?: string | undefined;
1166
+ AccountAssociationId?: string | undefined;
788
1167
  }
789
1168
  export interface SendManagedThingCommandResponse {
790
1169
  TraceId?: string | undefined;
@@ -795,6 +1174,8 @@ export interface ListManagedThingsRequest {
795
1174
  RoleFilter?: Role | undefined;
796
1175
  ParentControllerIdentifierFilter?: string | undefined;
797
1176
  ConnectorPolicyIdFilter?: string | undefined;
1177
+ ConnectorDestinationIdFilter?: string | undefined;
1178
+ ConnectorDeviceIdFilter?: string | undefined;
798
1179
  SerialNumberFilter?: string | undefined;
799
1180
  ProvisioningStatusFilter?: ProvisioningStatus | undefined;
800
1181
  NextToken?: string | undefined;
@@ -808,6 +1189,7 @@ export interface ManagedThingSummary {
808
1189
  Classification?: string | undefined;
809
1190
  ConnectorDeviceId?: string | undefined;
810
1191
  ConnectorPolicyId?: string | undefined;
1192
+ ConnectorDestinationId?: string | undefined;
811
1193
  Model?: string | undefined;
812
1194
  Name?: string | undefined;
813
1195
  Owner?: string | undefined;
@@ -849,6 +1231,7 @@ export interface UpdateManagedThingRequest {
849
1231
  Model?: string | undefined;
850
1232
  Name?: string | undefined;
851
1233
  CapabilityReport?: CapabilityReport | undefined;
1234
+ CapabilitySchemas?: CapabilitySchemaItem[] | undefined;
852
1235
  Capabilities?: string | undefined;
853
1236
  Classification?: string | undefined;
854
1237
  HubNetworkMode?: HubNetworkMode | undefined;
@@ -985,6 +1368,54 @@ export interface ListSchemaVersionsResponse {
985
1368
  Items?: SchemaVersionListItem[] | undefined;
986
1369
  NextToken?: string | undefined;
987
1370
  }
1371
+ export interface MatterCluster {
1372
+ id?: string | undefined;
1373
+ attributes?: __DocumentType | undefined;
1374
+ commands?: Record<string, __DocumentType> | undefined;
1375
+ events?: Record<string, __DocumentType> | undefined;
1376
+ }
1377
+ export interface MatterEndpoint {
1378
+ id?: string | undefined;
1379
+ clusters?: MatterCluster[] | undefined;
1380
+ }
1381
+ export interface SendConnectorEventRequest {
1382
+ ConnectorId: string | undefined;
1383
+ UserId?: string | undefined;
1384
+ Operation: ConnectorEventOperation | undefined;
1385
+ OperationVersion?: string | undefined;
1386
+ StatusCode?: number | undefined;
1387
+ Message?: string | undefined;
1388
+ DeviceDiscoveryId?: string | undefined;
1389
+ ConnectorDeviceId?: string | undefined;
1390
+ TraceId?: string | undefined;
1391
+ Devices?: Device[] | undefined;
1392
+ MatterEndpoint?: MatterEndpoint | undefined;
1393
+ }
1394
+ export interface SendConnectorEventResponse {
1395
+ ConnectorId: string | undefined;
1396
+ }
1397
+ export interface TagResourceRequest {
1398
+ ResourceArn: string | undefined;
1399
+ Tags: Record<string, string> | undefined;
1400
+ }
1401
+ export interface TagResourceResponse {}
1402
+ export interface UntagResourceRequest {
1403
+ ResourceArn: string | undefined;
1404
+ TagKeys: string[] | undefined;
1405
+ }
1406
+ export interface UntagResourceResponse {}
1407
+ export declare const CreateAccountAssociationRequestFilterSensitiveLog: (
1408
+ obj: CreateAccountAssociationRequest
1409
+ ) => any;
1410
+ export declare const CreateAccountAssociationResponseFilterSensitiveLog: (
1411
+ obj: CreateAccountAssociationResponse
1412
+ ) => any;
1413
+ export declare const GetAccountAssociationResponseFilterSensitiveLog: (
1414
+ obj: GetAccountAssociationResponse
1415
+ ) => any;
1416
+ export declare const StartAccountAssociationRefreshResponseFilterSensitiveLog: (
1417
+ obj: StartAccountAssociationRefreshResponse
1418
+ ) => any;
988
1419
  export declare const CapabilityActionFilterSensitiveLog: (
989
1420
  obj: CapabilityAction
990
1421
  ) => any;
@@ -1030,9 +1461,16 @@ export declare const ListCredentialLockersResponseFilterSensitiveLog: (
1030
1461
  export declare const GetDestinationResponseFilterSensitiveLog: (
1031
1462
  obj: GetDestinationResponse
1032
1463
  ) => any;
1464
+ export declare const DeviceFilterSensitiveLog: (obj: Device) => any;
1033
1465
  export declare const GetDeviceDiscoveryResponseFilterSensitiveLog: (
1034
1466
  obj: GetDeviceDiscoveryResponse
1035
1467
  ) => any;
1468
+ export declare const DiscoveredDeviceSummaryFilterSensitiveLog: (
1469
+ obj: DiscoveredDeviceSummary
1470
+ ) => any;
1471
+ export declare const ListDiscoveredDevicesResponseFilterSensitiveLog: (
1472
+ obj: ListDiscoveredDevicesResponse
1473
+ ) => any;
1036
1474
  export declare const StartDeviceDiscoveryRequestFilterSensitiveLog: (
1037
1475
  obj: StartDeviceDiscoveryRequest
1038
1476
  ) => any;
@@ -1051,12 +1489,18 @@ export declare const GetManagedThingStateResponseFilterSensitiveLog: (
1051
1489
  export declare const GetNotificationConfigurationResponseFilterSensitiveLog: (
1052
1490
  obj: GetNotificationConfigurationResponse
1053
1491
  ) => any;
1492
+ export declare const GetOtaTaskResponseFilterSensitiveLog: (
1493
+ obj: GetOtaTaskResponse
1494
+ ) => any;
1054
1495
  export declare const GetOtaTaskConfigurationResponseFilterSensitiveLog: (
1055
1496
  obj: GetOtaTaskConfigurationResponse
1056
1497
  ) => any;
1057
1498
  export declare const GetProvisioningProfileResponseFilterSensitiveLog: (
1058
1499
  obj: GetProvisioningProfileResponse
1059
1500
  ) => any;
1501
+ export declare const ListTagsForResourceResponseFilterSensitiveLog: (
1502
+ obj: ListTagsForResourceResponse
1503
+ ) => any;
1060
1504
  export declare const SendManagedThingCommandRequestFilterSensitiveLog: (
1061
1505
  obj: SendManagedThingCommandRequest
1062
1506
  ) => any;
@@ -1078,3 +1522,15 @@ export declare const OtaTaskConfigurationSummaryFilterSensitiveLog: (
1078
1522
  export declare const ListOtaTaskConfigurationsResponseFilterSensitiveLog: (
1079
1523
  obj: ListOtaTaskConfigurationsResponse
1080
1524
  ) => any;
1525
+ export declare const MatterClusterFilterSensitiveLog: (
1526
+ obj: MatterCluster
1527
+ ) => any;
1528
+ export declare const MatterEndpointFilterSensitiveLog: (
1529
+ obj: MatterEndpoint
1530
+ ) => any;
1531
+ export declare const SendConnectorEventRequestFilterSensitiveLog: (
1532
+ obj: SendConnectorEventRequest
1533
+ ) => any;
1534
+ export declare const TagResourceRequestFilterSensitiveLog: (
1535
+ obj: TagResourceRequest
1536
+ ) => any;