@aws-sdk/client-iotthingsgraph 3.300.0 → 3.303.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 (38) hide show
  1. package/dist-cjs/models/models_0.js +84 -97
  2. package/dist-es/models/models_0.js +84 -97
  3. package/dist-types/commands/AssociateEntityToThingCommand.d.ts +1 -1
  4. package/dist-types/commands/CreateFlowTemplateCommand.d.ts +2 -2
  5. package/dist-types/commands/CreateSystemInstanceCommand.d.ts +5 -5
  6. package/dist-types/commands/CreateSystemTemplateCommand.d.ts +2 -2
  7. package/dist-types/commands/DeleteFlowTemplateCommand.d.ts +1 -1
  8. package/dist-types/commands/DeleteSystemInstanceCommand.d.ts +1 -1
  9. package/dist-types/commands/DeleteSystemTemplateCommand.d.ts +1 -1
  10. package/dist-types/commands/DeploySystemInstanceCommand.d.ts +1 -1
  11. package/dist-types/commands/DeprecateFlowTemplateCommand.d.ts +1 -1
  12. package/dist-types/commands/DeprecateSystemTemplateCommand.d.ts +1 -1
  13. package/dist-types/commands/DescribeNamespaceCommand.d.ts +1 -1
  14. package/dist-types/commands/DissociateEntityFromThingCommand.d.ts +1 -1
  15. package/dist-types/commands/GetEntitiesCommand.d.ts +2 -2
  16. package/dist-types/commands/GetFlowTemplateCommand.d.ts +1 -1
  17. package/dist-types/commands/GetFlowTemplateRevisionsCommand.d.ts +1 -1
  18. package/dist-types/commands/GetSystemInstanceCommand.d.ts +1 -1
  19. package/dist-types/commands/GetSystemTemplateCommand.d.ts +1 -1
  20. package/dist-types/commands/GetSystemTemplateRevisionsCommand.d.ts +1 -1
  21. package/dist-types/commands/GetUploadStatusCommand.d.ts +1 -1
  22. package/dist-types/commands/ListFlowExecutionMessagesCommand.d.ts +1 -1
  23. package/dist-types/commands/ListTagsForResourceCommand.d.ts +1 -1
  24. package/dist-types/commands/SearchEntitiesCommand.d.ts +5 -5
  25. package/dist-types/commands/SearchFlowExecutionsCommand.d.ts +1 -1
  26. package/dist-types/commands/SearchFlowTemplatesCommand.d.ts +4 -4
  27. package/dist-types/commands/SearchSystemInstancesCommand.d.ts +4 -4
  28. package/dist-types/commands/SearchSystemTemplatesCommand.d.ts +4 -4
  29. package/dist-types/commands/SearchThingsCommand.d.ts +1 -1
  30. package/dist-types/commands/TagResourceCommand.d.ts +3 -3
  31. package/dist-types/commands/UndeploySystemInstanceCommand.d.ts +1 -1
  32. package/dist-types/commands/UntagResourceCommand.d.ts +2 -2
  33. package/dist-types/commands/UpdateFlowTemplateCommand.d.ts +2 -2
  34. package/dist-types/commands/UpdateSystemTemplateCommand.d.ts +2 -2
  35. package/dist-types/commands/UploadEntityDefinitionsCommand.d.ts +2 -2
  36. package/dist-types/models/models_0.d.ts +149 -84
  37. package/dist-types/ts3.4/models/models_0.d.ts +108 -84
  38. package/package.json +34 -34
@@ -28,7 +28,7 @@ export interface GetUploadStatusCommandOutput extends GetUploadStatusResponse, _
28
28
  * import { IoTThingsGraphClient, GetUploadStatusCommand } from "@aws-sdk/client-iotthingsgraph"; // ES Modules import
29
29
  * // const { IoTThingsGraphClient, GetUploadStatusCommand } = require("@aws-sdk/client-iotthingsgraph"); // CommonJS import
30
30
  * const client = new IoTThingsGraphClient(config);
31
- * const input = {
31
+ * const input = { // GetUploadStatusRequest
32
32
  * uploadId: "STRING_VALUE", // required
33
33
  * };
34
34
  * const command = new GetUploadStatusCommand(input);
@@ -28,7 +28,7 @@ export interface ListFlowExecutionMessagesCommandOutput extends ListFlowExecutio
28
28
  * import { IoTThingsGraphClient, ListFlowExecutionMessagesCommand } from "@aws-sdk/client-iotthingsgraph"; // ES Modules import
29
29
  * // const { IoTThingsGraphClient, ListFlowExecutionMessagesCommand } = require("@aws-sdk/client-iotthingsgraph"); // CommonJS import
30
30
  * const client = new IoTThingsGraphClient(config);
31
- * const input = {
31
+ * const input = { // ListFlowExecutionMessagesRequest
32
32
  * flowExecutionId: "STRING_VALUE", // required
33
33
  * nextToken: "STRING_VALUE",
34
34
  * maxResults: Number("int"),
@@ -28,7 +28,7 @@ export interface ListTagsForResourceCommandOutput extends ListTagsForResourceRes
28
28
  * import { IoTThingsGraphClient, ListTagsForResourceCommand } from "@aws-sdk/client-iotthingsgraph"; // ES Modules import
29
29
  * // const { IoTThingsGraphClient, ListTagsForResourceCommand } = require("@aws-sdk/client-iotthingsgraph"); // CommonJS import
30
30
  * const client = new IoTThingsGraphClient(config);
31
- * const input = {
31
+ * const input = { // ListTagsForResourceRequest
32
32
  * maxResults: Number("int"),
33
33
  * resourceArn: "STRING_VALUE", // required
34
34
  * nextToken: "STRING_VALUE",
@@ -28,14 +28,14 @@ export interface SearchEntitiesCommandOutput extends SearchEntitiesResponse, __M
28
28
  * import { IoTThingsGraphClient, SearchEntitiesCommand } from "@aws-sdk/client-iotthingsgraph"; // ES Modules import
29
29
  * // const { IoTThingsGraphClient, SearchEntitiesCommand } = require("@aws-sdk/client-iotthingsgraph"); // CommonJS import
30
30
  * const client = new IoTThingsGraphClient(config);
31
- * const input = {
32
- * entityTypes: [ // required
31
+ * const input = { // SearchEntitiesRequest
32
+ * entityTypes: [ // EntityTypes // required
33
33
  * "STRING_VALUE",
34
34
  * ],
35
- * filters: [
36
- * {
35
+ * filters: [ // EntityFilters
36
+ * { // EntityFilter
37
37
  * name: "STRING_VALUE",
38
- * value: [
38
+ * value: [ // EntityFilterValues
39
39
  * "STRING_VALUE",
40
40
  * ],
41
41
  * },
@@ -28,7 +28,7 @@ export interface SearchFlowExecutionsCommandOutput extends SearchFlowExecutionsR
28
28
  * import { IoTThingsGraphClient, SearchFlowExecutionsCommand } from "@aws-sdk/client-iotthingsgraph"; // ES Modules import
29
29
  * // const { IoTThingsGraphClient, SearchFlowExecutionsCommand } = require("@aws-sdk/client-iotthingsgraph"); // CommonJS import
30
30
  * const client = new IoTThingsGraphClient(config);
31
- * const input = {
31
+ * const input = { // SearchFlowExecutionsRequest
32
32
  * systemInstanceId: "STRING_VALUE", // required
33
33
  * flowExecutionId: "STRING_VALUE",
34
34
  * startTime: new Date("TIMESTAMP"),
@@ -28,11 +28,11 @@ export interface SearchFlowTemplatesCommandOutput extends SearchFlowTemplatesRes
28
28
  * import { IoTThingsGraphClient, SearchFlowTemplatesCommand } from "@aws-sdk/client-iotthingsgraph"; // ES Modules import
29
29
  * // const { IoTThingsGraphClient, SearchFlowTemplatesCommand } = require("@aws-sdk/client-iotthingsgraph"); // CommonJS import
30
30
  * const client = new IoTThingsGraphClient(config);
31
- * const input = {
32
- * filters: [
33
- * {
31
+ * const input = { // SearchFlowTemplatesRequest
32
+ * filters: [ // FlowTemplateFilters
33
+ * { // FlowTemplateFilter
34
34
  * name: "STRING_VALUE", // required
35
- * value: [ // required
35
+ * value: [ // FlowTemplateFilterValues // required
36
36
  * "STRING_VALUE",
37
37
  * ],
38
38
  * },
@@ -28,11 +28,11 @@ export interface SearchSystemInstancesCommandOutput extends SearchSystemInstance
28
28
  * import { IoTThingsGraphClient, SearchSystemInstancesCommand } from "@aws-sdk/client-iotthingsgraph"; // ES Modules import
29
29
  * // const { IoTThingsGraphClient, SearchSystemInstancesCommand } = require("@aws-sdk/client-iotthingsgraph"); // CommonJS import
30
30
  * const client = new IoTThingsGraphClient(config);
31
- * const input = {
32
- * filters: [
33
- * {
31
+ * const input = { // SearchSystemInstancesRequest
32
+ * filters: [ // SystemInstanceFilters
33
+ * { // SystemInstanceFilter
34
34
  * name: "STRING_VALUE",
35
- * value: [
35
+ * value: [ // SystemInstanceFilterValues
36
36
  * "STRING_VALUE",
37
37
  * ],
38
38
  * },
@@ -28,11 +28,11 @@ export interface SearchSystemTemplatesCommandOutput extends SearchSystemTemplate
28
28
  * import { IoTThingsGraphClient, SearchSystemTemplatesCommand } from "@aws-sdk/client-iotthingsgraph"; // ES Modules import
29
29
  * // const { IoTThingsGraphClient, SearchSystemTemplatesCommand } = require("@aws-sdk/client-iotthingsgraph"); // CommonJS import
30
30
  * const client = new IoTThingsGraphClient(config);
31
- * const input = {
32
- * filters: [
33
- * {
31
+ * const input = { // SearchSystemTemplatesRequest
32
+ * filters: [ // SystemTemplateFilters
33
+ * { // SystemTemplateFilter
34
34
  * name: "STRING_VALUE", // required
35
- * value: [ // required
35
+ * value: [ // SystemTemplateFilterValues // required
36
36
  * "STRING_VALUE",
37
37
  * ],
38
38
  * },
@@ -31,7 +31,7 @@ export interface SearchThingsCommandOutput extends SearchThingsResponse, __Metad
31
31
  * import { IoTThingsGraphClient, SearchThingsCommand } from "@aws-sdk/client-iotthingsgraph"; // ES Modules import
32
32
  * // const { IoTThingsGraphClient, SearchThingsCommand } = require("@aws-sdk/client-iotthingsgraph"); // CommonJS import
33
33
  * const client = new IoTThingsGraphClient(config);
34
- * const input = {
34
+ * const input = { // SearchThingsRequest
35
35
  * entityId: "STRING_VALUE", // required
36
36
  * nextToken: "STRING_VALUE",
37
37
  * maxResults: Number("int"),
@@ -28,10 +28,10 @@ export interface TagResourceCommandOutput extends TagResourceResponse, __Metadat
28
28
  * import { IoTThingsGraphClient, TagResourceCommand } from "@aws-sdk/client-iotthingsgraph"; // ES Modules import
29
29
  * // const { IoTThingsGraphClient, TagResourceCommand } = require("@aws-sdk/client-iotthingsgraph"); // CommonJS import
30
30
  * const client = new IoTThingsGraphClient(config);
31
- * const input = {
31
+ * const input = { // TagResourceRequest
32
32
  * resourceArn: "STRING_VALUE", // required
33
- * tags: [ // required
34
- * {
33
+ * tags: [ // TagList // required
34
+ * { // Tag
35
35
  * key: "STRING_VALUE", // required
36
36
  * value: "STRING_VALUE", // required
37
37
  * },
@@ -28,7 +28,7 @@ export interface UndeploySystemInstanceCommandOutput extends UndeploySystemInsta
28
28
  * import { IoTThingsGraphClient, UndeploySystemInstanceCommand } from "@aws-sdk/client-iotthingsgraph"; // ES Modules import
29
29
  * // const { IoTThingsGraphClient, UndeploySystemInstanceCommand } = require("@aws-sdk/client-iotthingsgraph"); // CommonJS import
30
30
  * const client = new IoTThingsGraphClient(config);
31
- * const input = {
31
+ * const input = { // UndeploySystemInstanceRequest
32
32
  * id: "STRING_VALUE",
33
33
  * };
34
34
  * const command = new UndeploySystemInstanceCommand(input);
@@ -28,9 +28,9 @@ export interface UntagResourceCommandOutput extends UntagResourceResponse, __Met
28
28
  * import { IoTThingsGraphClient, UntagResourceCommand } from "@aws-sdk/client-iotthingsgraph"; // ES Modules import
29
29
  * // const { IoTThingsGraphClient, UntagResourceCommand } = require("@aws-sdk/client-iotthingsgraph"); // CommonJS import
30
30
  * const client = new IoTThingsGraphClient(config);
31
- * const input = {
31
+ * const input = { // UntagResourceRequest
32
32
  * resourceArn: "STRING_VALUE", // required
33
- * tagKeys: [ // required
33
+ * tagKeys: [ // TagKeyList // required
34
34
  * "STRING_VALUE",
35
35
  * ],
36
36
  * };
@@ -29,9 +29,9 @@ export interface UpdateFlowTemplateCommandOutput extends UpdateFlowTemplateRespo
29
29
  * import { IoTThingsGraphClient, UpdateFlowTemplateCommand } from "@aws-sdk/client-iotthingsgraph"; // ES Modules import
30
30
  * // const { IoTThingsGraphClient, UpdateFlowTemplateCommand } = require("@aws-sdk/client-iotthingsgraph"); // CommonJS import
31
31
  * const client = new IoTThingsGraphClient(config);
32
- * const input = {
32
+ * const input = { // UpdateFlowTemplateRequest
33
33
  * id: "STRING_VALUE", // required
34
- * definition: {
34
+ * definition: { // DefinitionDocument
35
35
  * language: "STRING_VALUE", // required
36
36
  * text: "STRING_VALUE", // required
37
37
  * },
@@ -28,9 +28,9 @@ export interface UpdateSystemTemplateCommandOutput extends UpdateSystemTemplateR
28
28
  * import { IoTThingsGraphClient, UpdateSystemTemplateCommand } from "@aws-sdk/client-iotthingsgraph"; // ES Modules import
29
29
  * // const { IoTThingsGraphClient, UpdateSystemTemplateCommand } = require("@aws-sdk/client-iotthingsgraph"); // CommonJS import
30
30
  * const client = new IoTThingsGraphClient(config);
31
- * const input = {
31
+ * const input = { // UpdateSystemTemplateRequest
32
32
  * id: "STRING_VALUE", // required
33
- * definition: {
33
+ * definition: { // DefinitionDocument
34
34
  * language: "STRING_VALUE", // required
35
35
  * text: "STRING_VALUE", // required
36
36
  * },
@@ -38,8 +38,8 @@ export interface UploadEntityDefinitionsCommandOutput extends UploadEntityDefini
38
38
  * import { IoTThingsGraphClient, UploadEntityDefinitionsCommand } from "@aws-sdk/client-iotthingsgraph"; // ES Modules import
39
39
  * // const { IoTThingsGraphClient, UploadEntityDefinitionsCommand } = require("@aws-sdk/client-iotthingsgraph"); // CommonJS import
40
40
  * const client = new IoTThingsGraphClient(config);
41
- * const input = {
42
- * document: {
41
+ * const input = { // UploadEntityDefinitionsRequest
42
+ * document: { // DefinitionDocument
43
43
  * language: "STRING_VALUE", // required
44
44
  * text: "STRING_VALUE", // required
45
45
  * },
@@ -76,10 +76,15 @@ export declare class ThrottlingException extends __BaseException {
76
76
  }
77
77
  /**
78
78
  * @public
79
+ * @enum
79
80
  */
80
- export declare enum DefinitionLanguage {
81
- GRAPHQL = "GRAPHQL"
82
- }
81
+ export declare const DefinitionLanguage: {
82
+ readonly GRAPHQL: "GRAPHQL";
83
+ };
84
+ /**
85
+ * @public
86
+ */
87
+ export type DefinitionLanguage = (typeof DefinitionLanguage)[keyof typeof DefinitionLanguage];
83
88
  /**
84
89
  * @public
85
90
  * <p>A document that defines an entity. </p>
@@ -193,11 +198,16 @@ export interface Tag {
193
198
  }
194
199
  /**
195
200
  * @public
201
+ * @enum
196
202
  */
197
- export declare enum DeploymentTarget {
198
- CLOUD = "CLOUD",
199
- GREENGRASS = "GREENGRASS"
200
- }
203
+ export declare const DeploymentTarget: {
204
+ readonly CLOUD: "CLOUD";
205
+ readonly GREENGRASS: "GREENGRASS";
206
+ };
207
+ /**
208
+ * @public
209
+ */
210
+ export type DeploymentTarget = (typeof DeploymentTarget)[keyof typeof DeploymentTarget];
201
211
  /**
202
212
  * @public
203
213
  */
@@ -237,17 +247,22 @@ export interface CreateSystemInstanceRequest {
237
247
  }
238
248
  /**
239
249
  * @public
250
+ * @enum
240
251
  */
241
- export declare enum SystemInstanceDeploymentStatus {
242
- BOOTSTRAP = "BOOTSTRAP",
243
- DELETED_IN_TARGET = "DELETED_IN_TARGET",
244
- DEPLOYED_IN_TARGET = "DEPLOYED_IN_TARGET",
245
- DEPLOY_IN_PROGRESS = "DEPLOY_IN_PROGRESS",
246
- FAILED = "FAILED",
247
- NOT_DEPLOYED = "NOT_DEPLOYED",
248
- PENDING_DELETE = "PENDING_DELETE",
249
- UNDEPLOY_IN_PROGRESS = "UNDEPLOY_IN_PROGRESS"
250
- }
252
+ export declare const SystemInstanceDeploymentStatus: {
253
+ readonly BOOTSTRAP: "BOOTSTRAP";
254
+ readonly DELETED_IN_TARGET: "DELETED_IN_TARGET";
255
+ readonly DEPLOYED_IN_TARGET: "DEPLOYED_IN_TARGET";
256
+ readonly DEPLOY_IN_PROGRESS: "DEPLOY_IN_PROGRESS";
257
+ readonly FAILED: "FAILED";
258
+ readonly NOT_DEPLOYED: "NOT_DEPLOYED";
259
+ readonly PENDING_DELETE: "PENDING_DELETE";
260
+ readonly UNDEPLOY_IN_PROGRESS: "UNDEPLOY_IN_PROGRESS";
261
+ };
262
+ /**
263
+ * @public
264
+ */
265
+ export type SystemInstanceDeploymentStatus = (typeof SystemInstanceDeploymentStatus)[keyof typeof SystemInstanceDeploymentStatus];
251
266
  /**
252
267
  * @public
253
268
  * <p>An object that contains summary information about a system instance.</p>
@@ -538,19 +553,24 @@ export interface DescribeNamespaceResponse {
538
553
  }
539
554
  /**
540
555
  * @public
556
+ * @enum
541
557
  */
542
- export declare enum EntityType {
543
- ACTION = "ACTION",
544
- CAPABILITY = "CAPABILITY",
545
- DEVICE = "DEVICE",
546
- DEVICE_MODEL = "DEVICE_MODEL",
547
- ENUM = "ENUM",
548
- EVENT = "EVENT",
549
- MAPPING = "MAPPING",
550
- PROPERTY = "PROPERTY",
551
- SERVICE = "SERVICE",
552
- STATE = "STATE"
553
- }
558
+ export declare const EntityType: {
559
+ readonly ACTION: "ACTION";
560
+ readonly CAPABILITY: "CAPABILITY";
561
+ readonly DEVICE: "DEVICE";
562
+ readonly DEVICE_MODEL: "DEVICE_MODEL";
563
+ readonly ENUM: "ENUM";
564
+ readonly EVENT: "EVENT";
565
+ readonly MAPPING: "MAPPING";
566
+ readonly PROPERTY: "PROPERTY";
567
+ readonly SERVICE: "SERVICE";
568
+ readonly STATE: "STATE";
569
+ };
570
+ /**
571
+ * @public
572
+ */
573
+ export type EntityType = (typeof EntityType)[keyof typeof EntityType];
554
574
  /**
555
575
  * @public
556
576
  */
@@ -597,13 +617,18 @@ export interface EntityDescription {
597
617
  }
598
618
  /**
599
619
  * @public
620
+ * @enum
600
621
  */
601
- export declare enum EntityFilterName {
602
- NAME = "NAME",
603
- NAMESPACE = "NAMESPACE",
604
- REFERENCED_ENTITY_ID = "REFERENCED_ENTITY_ID",
605
- SEMANTIC_TYPE_PATH = "SEMANTIC_TYPE_PATH"
606
- }
622
+ export declare const EntityFilterName: {
623
+ readonly NAME: "NAME";
624
+ readonly NAMESPACE: "NAMESPACE";
625
+ readonly REFERENCED_ENTITY_ID: "REFERENCED_ENTITY_ID";
626
+ readonly SEMANTIC_TYPE_PATH: "SEMANTIC_TYPE_PATH";
627
+ };
628
+ /**
629
+ * @public
630
+ */
631
+ export type EntityFilterName = (typeof EntityFilterName)[keyof typeof EntityFilterName];
607
632
  /**
608
633
  * @public
609
634
  * <p>An object that filters an entity search. Multiple filters function as OR criteria in the search. For example a search that includes
@@ -623,26 +648,31 @@ export interface EntityFilter {
623
648
  }
624
649
  /**
625
650
  * @public
651
+ * @enum
626
652
  */
627
- export declare enum FlowExecutionEventType {
628
- ACKNOWLEDGE_TASK_MESSAGE = "ACKNOWLEDGE_TASK_MESSAGE",
629
- ACTIVITY_FAILED = "ACTIVITY_FAILED",
630
- ACTIVITY_SCHEDULED = "ACTIVITY_SCHEDULED",
631
- ACTIVITY_STARTED = "ACTIVITY_STARTED",
632
- ACTIVITY_SUCCEEDED = "ACTIVITY_SUCCEEDED",
633
- EXECUTION_ABORTED = "EXECUTION_ABORTED",
634
- EXECUTION_FAILED = "EXECUTION_FAILED",
635
- EXECUTION_STARTED = "EXECUTION_STARTED",
636
- EXECUTION_SUCCEEDED = "EXECUTION_SUCCEEDED",
637
- SCHEDULE_NEXT_READY_STEPS_TASK = "SCHEDULE_NEXT_READY_STEPS_TASK",
638
- START_FLOW_EXECUTION_TASK = "START_FLOW_EXECUTION_TASK",
639
- STEP_FAILED = "STEP_FAILED",
640
- STEP_STARTED = "STEP_STARTED",
641
- STEP_SUCCEEDED = "STEP_SUCCEEDED",
642
- THING_ACTION_TASK = "THING_ACTION_TASK",
643
- THING_ACTION_TASK_FAILED = "THING_ACTION_TASK_FAILED",
644
- THING_ACTION_TASK_SUCCEEDED = "THING_ACTION_TASK_SUCCEEDED"
645
- }
653
+ export declare const FlowExecutionEventType: {
654
+ readonly ACKNOWLEDGE_TASK_MESSAGE: "ACKNOWLEDGE_TASK_MESSAGE";
655
+ readonly ACTIVITY_FAILED: "ACTIVITY_FAILED";
656
+ readonly ACTIVITY_SCHEDULED: "ACTIVITY_SCHEDULED";
657
+ readonly ACTIVITY_STARTED: "ACTIVITY_STARTED";
658
+ readonly ACTIVITY_SUCCEEDED: "ACTIVITY_SUCCEEDED";
659
+ readonly EXECUTION_ABORTED: "EXECUTION_ABORTED";
660
+ readonly EXECUTION_FAILED: "EXECUTION_FAILED";
661
+ readonly EXECUTION_STARTED: "EXECUTION_STARTED";
662
+ readonly EXECUTION_SUCCEEDED: "EXECUTION_SUCCEEDED";
663
+ readonly SCHEDULE_NEXT_READY_STEPS_TASK: "SCHEDULE_NEXT_READY_STEPS_TASK";
664
+ readonly START_FLOW_EXECUTION_TASK: "START_FLOW_EXECUTION_TASK";
665
+ readonly STEP_FAILED: "STEP_FAILED";
666
+ readonly STEP_STARTED: "STEP_STARTED";
667
+ readonly STEP_SUCCEEDED: "STEP_SUCCEEDED";
668
+ readonly THING_ACTION_TASK: "THING_ACTION_TASK";
669
+ readonly THING_ACTION_TASK_FAILED: "THING_ACTION_TASK_FAILED";
670
+ readonly THING_ACTION_TASK_SUCCEEDED: "THING_ACTION_TASK_SUCCEEDED";
671
+ };
672
+ /**
673
+ * @public
674
+ */
675
+ export type FlowExecutionEventType = (typeof FlowExecutionEventType)[keyof typeof FlowExecutionEventType];
646
676
  /**
647
677
  * @public
648
678
  * <p>An object that contains information about a flow event.</p>
@@ -667,13 +697,18 @@ export interface FlowExecutionMessage {
667
697
  }
668
698
  /**
669
699
  * @public
700
+ * @enum
670
701
  */
671
- export declare enum FlowExecutionStatus {
672
- ABORTED = "ABORTED",
673
- FAILED = "FAILED",
674
- RUNNING = "RUNNING",
675
- SUCCEEDED = "SUCCEEDED"
676
- }
702
+ export declare const FlowExecutionStatus: {
703
+ readonly ABORTED: "ABORTED";
704
+ readonly FAILED: "FAILED";
705
+ readonly RUNNING: "RUNNING";
706
+ readonly SUCCEEDED: "SUCCEEDED";
707
+ };
708
+ /**
709
+ * @public
710
+ */
711
+ export type FlowExecutionStatus = (typeof FlowExecutionStatus)[keyof typeof FlowExecutionStatus];
677
712
  /**
678
713
  * @public
679
714
  * <p>An object that contains summary information about a flow execution.</p>
@@ -724,10 +759,15 @@ export interface FlowTemplateDescription {
724
759
  }
725
760
  /**
726
761
  * @public
762
+ * @enum
727
763
  */
728
- export declare enum FlowTemplateFilterName {
729
- DEVICE_MODEL_ID = "DEVICE_MODEL_ID"
730
- }
764
+ export declare const FlowTemplateFilterName: {
765
+ readonly DEVICE_MODEL_ID: "DEVICE_MODEL_ID";
766
+ };
767
+ /**
768
+ * @public
769
+ */
770
+ export type FlowTemplateFilterName = (typeof FlowTemplateFilterName)[keyof typeof FlowTemplateFilterName];
731
771
  /**
732
772
  * @public
733
773
  * <p>An object that filters a workflow search.</p>
@@ -835,18 +875,28 @@ export interface GetNamespaceDeletionStatusRequest {
835
875
  }
836
876
  /**
837
877
  * @public
878
+ * @enum
838
879
  */
839
- export declare enum NamespaceDeletionStatusErrorCodes {
840
- VALIDATION_FAILED = "VALIDATION_FAILED"
841
- }
880
+ export declare const NamespaceDeletionStatusErrorCodes: {
881
+ readonly VALIDATION_FAILED: "VALIDATION_FAILED";
882
+ };
842
883
  /**
843
884
  * @public
844
885
  */
845
- export declare enum NamespaceDeletionStatus {
846
- FAILED = "FAILED",
847
- IN_PROGRESS = "IN_PROGRESS",
848
- SUCCEEDED = "SUCCEEDED"
849
- }
886
+ export type NamespaceDeletionStatusErrorCodes = (typeof NamespaceDeletionStatusErrorCodes)[keyof typeof NamespaceDeletionStatusErrorCodes];
887
+ /**
888
+ * @public
889
+ * @enum
890
+ */
891
+ export declare const NamespaceDeletionStatus: {
892
+ readonly FAILED: "FAILED";
893
+ readonly IN_PROGRESS: "IN_PROGRESS";
894
+ readonly SUCCEEDED: "SUCCEEDED";
895
+ };
896
+ /**
897
+ * @public
898
+ */
899
+ export type NamespaceDeletionStatus = (typeof NamespaceDeletionStatus)[keyof typeof NamespaceDeletionStatus];
850
900
  /**
851
901
  * @public
852
902
  */
@@ -1019,12 +1069,17 @@ export interface GetUploadStatusRequest {
1019
1069
  }
1020
1070
  /**
1021
1071
  * @public
1072
+ * @enum
1022
1073
  */
1023
- export declare enum UploadStatus {
1024
- FAILED = "FAILED",
1025
- IN_PROGRESS = "IN_PROGRESS",
1026
- SUCCEEDED = "SUCCEEDED"
1027
- }
1074
+ export declare const UploadStatus: {
1075
+ readonly FAILED: "FAILED";
1076
+ readonly IN_PROGRESS: "IN_PROGRESS";
1077
+ readonly SUCCEEDED: "SUCCEEDED";
1078
+ };
1079
+ /**
1080
+ * @public
1081
+ */
1082
+ export type UploadStatus = (typeof UploadStatus)[keyof typeof UploadStatus];
1028
1083
  /**
1029
1084
  * @public
1030
1085
  */
@@ -1234,12 +1289,17 @@ export interface SearchFlowTemplatesResponse {
1234
1289
  }
1235
1290
  /**
1236
1291
  * @public
1292
+ * @enum
1237
1293
  */
1238
- export declare enum SystemInstanceFilterName {
1239
- GREENGRASS_GROUP_NAME = "GREENGRASS_GROUP_NAME",
1240
- STATUS = "STATUS",
1241
- SYSTEM_TEMPLATE_ID = "SYSTEM_TEMPLATE_ID"
1242
- }
1294
+ export declare const SystemInstanceFilterName: {
1295
+ readonly GREENGRASS_GROUP_NAME: "GREENGRASS_GROUP_NAME";
1296
+ readonly STATUS: "STATUS";
1297
+ readonly SYSTEM_TEMPLATE_ID: "SYSTEM_TEMPLATE_ID";
1298
+ };
1299
+ /**
1300
+ * @public
1301
+ */
1302
+ export type SystemInstanceFilterName = (typeof SystemInstanceFilterName)[keyof typeof SystemInstanceFilterName];
1243
1303
  /**
1244
1304
  * @public
1245
1305
  * <p>An object that filters a system instance search.
@@ -1290,10 +1350,15 @@ export interface SearchSystemInstancesResponse {
1290
1350
  }
1291
1351
  /**
1292
1352
  * @public
1353
+ * @enum
1293
1354
  */
1294
- export declare enum SystemTemplateFilterName {
1295
- FLOW_TEMPLATE_ID = "FLOW_TEMPLATE_ID"
1296
- }
1355
+ export declare const SystemTemplateFilterName: {
1356
+ readonly FLOW_TEMPLATE_ID: "FLOW_TEMPLATE_ID";
1357
+ };
1358
+ /**
1359
+ * @public
1360
+ */
1361
+ export type SystemTemplateFilterName = (typeof SystemTemplateFilterName)[keyof typeof SystemTemplateFilterName];
1297
1362
  /**
1298
1363
  * @public
1299
1364
  * <p>An object that filters a system search.</p>