@aws-sdk/client-iottwinmaker 3.298.0 → 3.300.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 (35) hide show
  1. package/dist-types/commands/BatchPutPropertyValuesCommand.d.ts +86 -0
  2. package/dist-types/commands/CreateComponentTypeCommand.d.ts +141 -0
  3. package/dist-types/commands/CreateEntityCommand.d.ts +145 -0
  4. package/dist-types/commands/CreateSceneCommand.d.ts +15 -0
  5. package/dist-types/commands/CreateSyncJobCommand.d.ts +8 -0
  6. package/dist-types/commands/CreateWorkspaceCommand.d.ts +9 -0
  7. package/dist-types/commands/DeleteComponentTypeCommand.d.ts +4 -0
  8. package/dist-types/commands/DeleteEntityCommand.d.ts +5 -0
  9. package/dist-types/commands/DeleteSceneCommand.d.ts +4 -0
  10. package/dist-types/commands/DeleteSyncJobCommand.d.ts +4 -0
  11. package/dist-types/commands/DeleteWorkspaceCommand.d.ts +3 -0
  12. package/dist-types/commands/ExecuteQueryCommand.d.ts +6 -0
  13. package/dist-types/commands/GetComponentTypeCommand.d.ts +4 -0
  14. package/dist-types/commands/GetEntityCommand.d.ts +4 -0
  15. package/dist-types/commands/GetPricingPlanCommand.d.ts +1 -0
  16. package/dist-types/commands/GetPropertyValueCommand.d.ts +91 -0
  17. package/dist-types/commands/GetPropertyValueHistoryCommand.d.ts +91 -0
  18. package/dist-types/commands/GetSceneCommand.d.ts +4 -0
  19. package/dist-types/commands/GetSyncJobCommand.d.ts +4 -0
  20. package/dist-types/commands/GetWorkspaceCommand.d.ts +3 -0
  21. package/dist-types/commands/ListComponentTypesCommand.d.ts +12 -0
  22. package/dist-types/commands/ListEntitiesCommand.d.ts +12 -0
  23. package/dist-types/commands/ListScenesCommand.d.ts +5 -0
  24. package/dist-types/commands/ListSyncJobsCommand.d.ts +5 -0
  25. package/dist-types/commands/ListSyncResourcesCommand.d.ts +14 -0
  26. package/dist-types/commands/ListTagsForResourceCommand.d.ts +5 -0
  27. package/dist-types/commands/ListWorkspacesCommand.d.ts +4 -0
  28. package/dist-types/commands/TagResourceCommand.d.ts +6 -0
  29. package/dist-types/commands/UntagResourceCommand.d.ts +6 -0
  30. package/dist-types/commands/UpdateComponentTypeCommand.d.ts +138 -0
  31. package/dist-types/commands/UpdateEntityCommand.d.ts +146 -0
  32. package/dist-types/commands/UpdatePricingPlanCommand.d.ts +6 -0
  33. package/dist-types/commands/UpdateSceneCommand.d.ts +12 -0
  34. package/dist-types/commands/UpdateWorkspaceCommand.d.ts +5 -0
  35. package/package.json +12 -12
@@ -26,6 +26,92 @@ export interface BatchPutPropertyValuesCommandOutput extends BatchPutPropertyVal
26
26
  * import { IoTTwinMakerClient, BatchPutPropertyValuesCommand } from "@aws-sdk/client-iottwinmaker"; // ES Modules import
27
27
  * // const { IoTTwinMakerClient, BatchPutPropertyValuesCommand } = require("@aws-sdk/client-iottwinmaker"); // CommonJS import
28
28
  * const client = new IoTTwinMakerClient(config);
29
+ * const input = {
30
+ * workspaceId: "STRING_VALUE", // required
31
+ * entries: [ // required
32
+ * {
33
+ * entityPropertyReference: {
34
+ * componentName: "STRING_VALUE",
35
+ * externalIdProperty: {
36
+ * "<keys>": "STRING_VALUE",
37
+ * },
38
+ * entityId: "STRING_VALUE",
39
+ * propertyName: "STRING_VALUE", // required
40
+ * },
41
+ * propertyValues: [
42
+ * {
43
+ * timestamp: new Date("TIMESTAMP"),
44
+ * value: {
45
+ * booleanValue: true || false,
46
+ * doubleValue: Number("double"),
47
+ * integerValue: Number("int"),
48
+ * longValue: Number("long"),
49
+ * stringValue: "STRING_VALUE",
50
+ * listValue: [
51
+ * {
52
+ * booleanValue: true || false,
53
+ * doubleValue: Number("double"),
54
+ * integerValue: Number("int"),
55
+ * longValue: Number("long"),
56
+ * stringValue: "STRING_VALUE",
57
+ * listValue: [
58
+ * {
59
+ * booleanValue: "<DataValue>",
60
+ * doubleValue: "<DataValue>",
61
+ * integerValue: "<DataValue>",
62
+ * longValue: "<DataValue>",
63
+ * stringValue: "<DataValue>",
64
+ * listValue: "<DataValue>",
65
+ * mapValue: {
66
+ * "<keys>": {
67
+ * booleanValue: "<DataValue>",
68
+ * doubleValue: "<DataValue>",
69
+ * integerValue: "<DataValue>",
70
+ * longValue: "<DataValue>",
71
+ * stringValue: "<DataValue>",
72
+ * listValue: "<DataValue>",
73
+ * mapValue: {
74
+ * "<keys>": {
75
+ * booleanValue: "<DataValue>",
76
+ * doubleValue: "<DataValue>",
77
+ * integerValue: "<DataValue>",
78
+ * longValue: "<DataValue>",
79
+ * stringValue: "<DataValue>",
80
+ * listValue: "<DataValue>",
81
+ * mapValue: "<DataValue>",
82
+ * relationshipValue: {
83
+ * targetEntityId: "STRING_VALUE",
84
+ * targetComponentName: "STRING_VALUE",
85
+ * },
86
+ * expression: "STRING_VALUE",
87
+ * },
88
+ * },
89
+ * relationshipValue: {
90
+ * targetEntityId: "STRING_VALUE",
91
+ * targetComponentName: "STRING_VALUE",
92
+ * },
93
+ * expression: "STRING_VALUE",
94
+ * },
95
+ * },
96
+ * relationshipValue: "<DataValue>",
97
+ * expression: "<DataValue>",
98
+ * },
99
+ * ],
100
+ * mapValue: "<DataValue>",
101
+ * relationshipValue: "<DataValue>",
102
+ * expression: "<DataValue>",
103
+ * },
104
+ * ],
105
+ * mapValue: "<DataValue>",
106
+ * relationshipValue: "<DataValue>",
107
+ * expression: "<DataValue>",
108
+ * },
109
+ * time: "STRING_VALUE",
110
+ * },
111
+ * ],
112
+ * },
113
+ * ],
114
+ * };
29
115
  * const command = new BatchPutPropertyValuesCommand(input);
30
116
  * const response = await client.send(command);
31
117
  * ```
@@ -26,6 +26,147 @@ export interface CreateComponentTypeCommandOutput extends CreateComponentTypeRes
26
26
  * import { IoTTwinMakerClient, CreateComponentTypeCommand } from "@aws-sdk/client-iottwinmaker"; // ES Modules import
27
27
  * // const { IoTTwinMakerClient, CreateComponentTypeCommand } = require("@aws-sdk/client-iottwinmaker"); // CommonJS import
28
28
  * const client = new IoTTwinMakerClient(config);
29
+ * const input = {
30
+ * workspaceId: "STRING_VALUE", // required
31
+ * isSingleton: true || false,
32
+ * componentTypeId: "STRING_VALUE", // required
33
+ * description: "STRING_VALUE",
34
+ * propertyDefinitions: {
35
+ * "<keys>": {
36
+ * dataType: {
37
+ * type: "STRING_VALUE", // required
38
+ * nestedType: {
39
+ * type: "STRING_VALUE", // required
40
+ * nestedType: {
41
+ * type: "<DataType>",
42
+ * nestedType: "<DataType>",
43
+ * allowedValues: [
44
+ * {
45
+ * booleanValue: true || false,
46
+ * doubleValue: Number("double"),
47
+ * integerValue: Number("int"),
48
+ * longValue: Number("long"),
49
+ * stringValue: "STRING_VALUE",
50
+ * listValue: [
51
+ * {
52
+ * booleanValue: true || false,
53
+ * doubleValue: Number("double"),
54
+ * integerValue: Number("int"),
55
+ * longValue: Number("long"),
56
+ * stringValue: "STRING_VALUE",
57
+ * listValue: [
58
+ * "<DataValueList>",
59
+ * ],
60
+ * mapValue: {
61
+ * "<keys>": {
62
+ * booleanValue: "<DataValue>",
63
+ * doubleValue: "<DataValue>",
64
+ * integerValue: "<DataValue>",
65
+ * longValue: "<DataValue>",
66
+ * stringValue: "<DataValue>",
67
+ * listValue: "<DataValue>",
68
+ * mapValue: {
69
+ * "<keys>": {
70
+ * booleanValue: "<DataValue>",
71
+ * doubleValue: "<DataValue>",
72
+ * integerValue: "<DataValue>",
73
+ * longValue: "<DataValue>",
74
+ * stringValue: "<DataValue>",
75
+ * listValue: "<DataValue>",
76
+ * mapValue: "<DataValue>",
77
+ * relationshipValue: {
78
+ * targetEntityId: "STRING_VALUE",
79
+ * targetComponentName: "STRING_VALUE",
80
+ * },
81
+ * expression: "STRING_VALUE",
82
+ * },
83
+ * },
84
+ * relationshipValue: {
85
+ * targetEntityId: "STRING_VALUE",
86
+ * targetComponentName: "STRING_VALUE",
87
+ * },
88
+ * expression: "STRING_VALUE",
89
+ * },
90
+ * },
91
+ * relationshipValue: "<DataValue>",
92
+ * expression: "<DataValue>",
93
+ * },
94
+ * ],
95
+ * mapValue: "<DataValue>",
96
+ * relationshipValue: "<DataValue>",
97
+ * expression: "<DataValue>",
98
+ * },
99
+ * ],
100
+ * unitOfMeasure: "STRING_VALUE",
101
+ * relationship: {
102
+ * targetComponentTypeId: "STRING_VALUE",
103
+ * relationshipType: "STRING_VALUE",
104
+ * },
105
+ * },
106
+ * allowedValues: [
107
+ * "<DataValueList>",
108
+ * ],
109
+ * unitOfMeasure: "STRING_VALUE",
110
+ * relationship: {
111
+ * targetComponentTypeId: "STRING_VALUE",
112
+ * relationshipType: "STRING_VALUE",
113
+ * },
114
+ * },
115
+ * allowedValues: "<DataType>",
116
+ * unitOfMeasure: "<DataType>",
117
+ * relationship: "<DataType>",
118
+ * },
119
+ * isRequiredInEntity: true || false,
120
+ * isExternalId: true || false,
121
+ * isStoredExternally: true || false,
122
+ * isTimeSeries: true || false,
123
+ * defaultValue: {
124
+ * booleanValue: "<DataValue>",
125
+ * doubleValue: "<DataValue>",
126
+ * integerValue: "<DataValue>",
127
+ * longValue: "<DataValue>",
128
+ * stringValue: "<DataValue>",
129
+ * listValue: "<DataValue>",
130
+ * mapValue: "<DataValue>",
131
+ * relationshipValue: "<DataValue>",
132
+ * expression: "<DataValue>",
133
+ * },
134
+ * configuration: {
135
+ * "<keys>": "STRING_VALUE",
136
+ * },
137
+ * displayName: "STRING_VALUE",
138
+ * },
139
+ * },
140
+ * extendsFrom: [
141
+ * "STRING_VALUE",
142
+ * ],
143
+ * functions: {
144
+ * "<keys>": {
145
+ * requiredProperties: [
146
+ * "STRING_VALUE",
147
+ * ],
148
+ * scope: "STRING_VALUE",
149
+ * implementedBy: {
150
+ * lambda: {
151
+ * arn: "STRING_VALUE", // required
152
+ * },
153
+ * isNative: true || false,
154
+ * },
155
+ * },
156
+ * },
157
+ * tags: {
158
+ * "<keys>": "STRING_VALUE",
159
+ * },
160
+ * propertyGroups: {
161
+ * "<keys>": {
162
+ * groupType: "STRING_VALUE",
163
+ * propertyNames: [
164
+ * "STRING_VALUE",
165
+ * ],
166
+ * },
167
+ * },
168
+ * componentTypeName: "STRING_VALUE",
169
+ * };
29
170
  * const command = new CreateComponentTypeCommand(input);
30
171
  * const response = await client.send(command);
31
172
  * ```
@@ -26,6 +26,151 @@ export interface CreateEntityCommandOutput extends CreateEntityResponse, __Metad
26
26
  * import { IoTTwinMakerClient, CreateEntityCommand } from "@aws-sdk/client-iottwinmaker"; // ES Modules import
27
27
  * // const { IoTTwinMakerClient, CreateEntityCommand } = require("@aws-sdk/client-iottwinmaker"); // CommonJS import
28
28
  * const client = new IoTTwinMakerClient(config);
29
+ * const input = {
30
+ * workspaceId: "STRING_VALUE", // required
31
+ * entityId: "STRING_VALUE",
32
+ * entityName: "STRING_VALUE", // required
33
+ * description: "STRING_VALUE",
34
+ * components: {
35
+ * "<keys>": {
36
+ * description: "STRING_VALUE",
37
+ * componentTypeId: "STRING_VALUE",
38
+ * properties: {
39
+ * "<keys>": {
40
+ * definition: {
41
+ * dataType: {
42
+ * type: "STRING_VALUE", // required
43
+ * nestedType: {
44
+ * type: "STRING_VALUE", // required
45
+ * nestedType: {
46
+ * type: "<DataType>",
47
+ * nestedType: "<DataType>",
48
+ * allowedValues: [
49
+ * {
50
+ * booleanValue: true || false,
51
+ * doubleValue: Number("double"),
52
+ * integerValue: Number("int"),
53
+ * longValue: Number("long"),
54
+ * stringValue: "STRING_VALUE",
55
+ * listValue: [
56
+ * {
57
+ * booleanValue: true || false,
58
+ * doubleValue: Number("double"),
59
+ * integerValue: Number("int"),
60
+ * longValue: Number("long"),
61
+ * stringValue: "STRING_VALUE",
62
+ * listValue: [
63
+ * "<DataValueList>",
64
+ * ],
65
+ * mapValue: {
66
+ * "<keys>": {
67
+ * booleanValue: "<DataValue>",
68
+ * doubleValue: "<DataValue>",
69
+ * integerValue: "<DataValue>",
70
+ * longValue: "<DataValue>",
71
+ * stringValue: "<DataValue>",
72
+ * listValue: "<DataValue>",
73
+ * mapValue: {
74
+ * "<keys>": {
75
+ * booleanValue: "<DataValue>",
76
+ * doubleValue: "<DataValue>",
77
+ * integerValue: "<DataValue>",
78
+ * longValue: "<DataValue>",
79
+ * stringValue: "<DataValue>",
80
+ * listValue: "<DataValue>",
81
+ * mapValue: "<DataValue>",
82
+ * relationshipValue: {
83
+ * targetEntityId: "STRING_VALUE",
84
+ * targetComponentName: "STRING_VALUE",
85
+ * },
86
+ * expression: "STRING_VALUE",
87
+ * },
88
+ * },
89
+ * relationshipValue: {
90
+ * targetEntityId: "STRING_VALUE",
91
+ * targetComponentName: "STRING_VALUE",
92
+ * },
93
+ * expression: "STRING_VALUE",
94
+ * },
95
+ * },
96
+ * relationshipValue: "<DataValue>",
97
+ * expression: "<DataValue>",
98
+ * },
99
+ * ],
100
+ * mapValue: "<DataValue>",
101
+ * relationshipValue: "<DataValue>",
102
+ * expression: "<DataValue>",
103
+ * },
104
+ * ],
105
+ * unitOfMeasure: "STRING_VALUE",
106
+ * relationship: {
107
+ * targetComponentTypeId: "STRING_VALUE",
108
+ * relationshipType: "STRING_VALUE",
109
+ * },
110
+ * },
111
+ * allowedValues: [
112
+ * "<DataValueList>",
113
+ * ],
114
+ * unitOfMeasure: "STRING_VALUE",
115
+ * relationship: {
116
+ * targetComponentTypeId: "STRING_VALUE",
117
+ * relationshipType: "STRING_VALUE",
118
+ * },
119
+ * },
120
+ * allowedValues: "<DataType>",
121
+ * unitOfMeasure: "<DataType>",
122
+ * relationship: "<DataType>",
123
+ * },
124
+ * isRequiredInEntity: true || false,
125
+ * isExternalId: true || false,
126
+ * isStoredExternally: true || false,
127
+ * isTimeSeries: true || false,
128
+ * defaultValue: {
129
+ * booleanValue: "<DataValue>",
130
+ * doubleValue: "<DataValue>",
131
+ * integerValue: "<DataValue>",
132
+ * longValue: "<DataValue>",
133
+ * stringValue: "<DataValue>",
134
+ * listValue: "<DataValue>",
135
+ * mapValue: "<DataValue>",
136
+ * relationshipValue: "<DataValue>",
137
+ * expression: "<DataValue>",
138
+ * },
139
+ * configuration: {
140
+ * "<keys>": "STRING_VALUE",
141
+ * },
142
+ * displayName: "STRING_VALUE",
143
+ * },
144
+ * value: {
145
+ * booleanValue: "<DataValue>",
146
+ * doubleValue: "<DataValue>",
147
+ * integerValue: "<DataValue>",
148
+ * longValue: "<DataValue>",
149
+ * stringValue: "<DataValue>",
150
+ * listValue: "<DataValue>",
151
+ * mapValue: "<DataValue>",
152
+ * relationshipValue: "<DataValue>",
153
+ * expression: "<DataValue>",
154
+ * },
155
+ * updateType: "STRING_VALUE",
156
+ * },
157
+ * },
158
+ * propertyGroups: {
159
+ * "<keys>": {
160
+ * groupType: "STRING_VALUE",
161
+ * propertyNames: [
162
+ * "STRING_VALUE",
163
+ * ],
164
+ * updateType: "STRING_VALUE",
165
+ * },
166
+ * },
167
+ * },
168
+ * },
169
+ * parentEntityId: "STRING_VALUE",
170
+ * tags: {
171
+ * "<keys>": "STRING_VALUE",
172
+ * },
173
+ * };
29
174
  * const command = new CreateEntityCommand(input);
30
175
  * const response = await client.send(command);
31
176
  * ```
@@ -26,6 +26,21 @@ export interface CreateSceneCommandOutput extends CreateSceneResponse, __Metadat
26
26
  * import { IoTTwinMakerClient, CreateSceneCommand } from "@aws-sdk/client-iottwinmaker"; // ES Modules import
27
27
  * // const { IoTTwinMakerClient, CreateSceneCommand } = require("@aws-sdk/client-iottwinmaker"); // CommonJS import
28
28
  * const client = new IoTTwinMakerClient(config);
29
+ * const input = {
30
+ * workspaceId: "STRING_VALUE", // required
31
+ * sceneId: "STRING_VALUE", // required
32
+ * contentLocation: "STRING_VALUE", // required
33
+ * description: "STRING_VALUE",
34
+ * capabilities: [
35
+ * "STRING_VALUE",
36
+ * ],
37
+ * tags: {
38
+ * "<keys>": "STRING_VALUE",
39
+ * },
40
+ * sceneMetadata: {
41
+ * "<keys>": "STRING_VALUE",
42
+ * },
43
+ * };
29
44
  * const command = new CreateSceneCommand(input);
30
45
  * const response = await client.send(command);
31
46
  * ```
@@ -26,6 +26,14 @@ export interface CreateSyncJobCommandOutput extends CreateSyncJobResponse, __Met
26
26
  * import { IoTTwinMakerClient, CreateSyncJobCommand } from "@aws-sdk/client-iottwinmaker"; // ES Modules import
27
27
  * // const { IoTTwinMakerClient, CreateSyncJobCommand } = require("@aws-sdk/client-iottwinmaker"); // CommonJS import
28
28
  * const client = new IoTTwinMakerClient(config);
29
+ * const input = {
30
+ * workspaceId: "STRING_VALUE", // required
31
+ * syncSource: "STRING_VALUE", // required
32
+ * syncRole: "STRING_VALUE", // required
33
+ * tags: {
34
+ * "<keys>": "STRING_VALUE",
35
+ * },
36
+ * };
29
37
  * const command = new CreateSyncJobCommand(input);
30
38
  * const response = await client.send(command);
31
39
  * ```
@@ -26,6 +26,15 @@ export interface CreateWorkspaceCommandOutput extends CreateWorkspaceResponse, _
26
26
  * import { IoTTwinMakerClient, CreateWorkspaceCommand } from "@aws-sdk/client-iottwinmaker"; // ES Modules import
27
27
  * // const { IoTTwinMakerClient, CreateWorkspaceCommand } = require("@aws-sdk/client-iottwinmaker"); // CommonJS import
28
28
  * const client = new IoTTwinMakerClient(config);
29
+ * const input = {
30
+ * workspaceId: "STRING_VALUE", // required
31
+ * description: "STRING_VALUE",
32
+ * s3Location: "STRING_VALUE", // required
33
+ * role: "STRING_VALUE", // required
34
+ * tags: {
35
+ * "<keys>": "STRING_VALUE",
36
+ * },
37
+ * };
29
38
  * const command = new CreateWorkspaceCommand(input);
30
39
  * const response = await client.send(command);
31
40
  * ```
@@ -26,6 +26,10 @@ export interface DeleteComponentTypeCommandOutput extends DeleteComponentTypeRes
26
26
  * import { IoTTwinMakerClient, DeleteComponentTypeCommand } from "@aws-sdk/client-iottwinmaker"; // ES Modules import
27
27
  * // const { IoTTwinMakerClient, DeleteComponentTypeCommand } = require("@aws-sdk/client-iottwinmaker"); // CommonJS import
28
28
  * const client = new IoTTwinMakerClient(config);
29
+ * const input = {
30
+ * workspaceId: "STRING_VALUE", // required
31
+ * componentTypeId: "STRING_VALUE", // required
32
+ * };
29
33
  * const command = new DeleteComponentTypeCommand(input);
30
34
  * const response = await client.send(command);
31
35
  * ```
@@ -26,6 +26,11 @@ export interface DeleteEntityCommandOutput extends DeleteEntityResponse, __Metad
26
26
  * import { IoTTwinMakerClient, DeleteEntityCommand } from "@aws-sdk/client-iottwinmaker"; // ES Modules import
27
27
  * // const { IoTTwinMakerClient, DeleteEntityCommand } = require("@aws-sdk/client-iottwinmaker"); // CommonJS import
28
28
  * const client = new IoTTwinMakerClient(config);
29
+ * const input = {
30
+ * workspaceId: "STRING_VALUE", // required
31
+ * entityId: "STRING_VALUE", // required
32
+ * isRecursive: true || false,
33
+ * };
29
34
  * const command = new DeleteEntityCommand(input);
30
35
  * const response = await client.send(command);
31
36
  * ```
@@ -26,6 +26,10 @@ export interface DeleteSceneCommandOutput extends DeleteSceneResponse, __Metadat
26
26
  * import { IoTTwinMakerClient, DeleteSceneCommand } from "@aws-sdk/client-iottwinmaker"; // ES Modules import
27
27
  * // const { IoTTwinMakerClient, DeleteSceneCommand } = require("@aws-sdk/client-iottwinmaker"); // CommonJS import
28
28
  * const client = new IoTTwinMakerClient(config);
29
+ * const input = {
30
+ * workspaceId: "STRING_VALUE", // required
31
+ * sceneId: "STRING_VALUE", // required
32
+ * };
29
33
  * const command = new DeleteSceneCommand(input);
30
34
  * const response = await client.send(command);
31
35
  * ```
@@ -26,6 +26,10 @@ export interface DeleteSyncJobCommandOutput extends DeleteSyncJobResponse, __Met
26
26
  * import { IoTTwinMakerClient, DeleteSyncJobCommand } from "@aws-sdk/client-iottwinmaker"; // ES Modules import
27
27
  * // const { IoTTwinMakerClient, DeleteSyncJobCommand } = require("@aws-sdk/client-iottwinmaker"); // CommonJS import
28
28
  * const client = new IoTTwinMakerClient(config);
29
+ * const input = {
30
+ * workspaceId: "STRING_VALUE", // required
31
+ * syncSource: "STRING_VALUE", // required
32
+ * };
29
33
  * const command = new DeleteSyncJobCommand(input);
30
34
  * const response = await client.send(command);
31
35
  * ```
@@ -26,6 +26,9 @@ export interface DeleteWorkspaceCommandOutput extends DeleteWorkspaceResponse, _
26
26
  * import { IoTTwinMakerClient, DeleteWorkspaceCommand } from "@aws-sdk/client-iottwinmaker"; // ES Modules import
27
27
  * // const { IoTTwinMakerClient, DeleteWorkspaceCommand } = require("@aws-sdk/client-iottwinmaker"); // CommonJS import
28
28
  * const client = new IoTTwinMakerClient(config);
29
+ * const input = {
30
+ * workspaceId: "STRING_VALUE", // required
31
+ * };
29
32
  * const command = new DeleteWorkspaceCommand(input);
30
33
  * const response = await client.send(command);
31
34
  * ```
@@ -27,6 +27,12 @@ export interface ExecuteQueryCommandOutput extends ExecuteQueryResponse, __Metad
27
27
  * import { IoTTwinMakerClient, ExecuteQueryCommand } from "@aws-sdk/client-iottwinmaker"; // ES Modules import
28
28
  * // const { IoTTwinMakerClient, ExecuteQueryCommand } = require("@aws-sdk/client-iottwinmaker"); // CommonJS import
29
29
  * const client = new IoTTwinMakerClient(config);
30
+ * const input = {
31
+ * workspaceId: "STRING_VALUE", // required
32
+ * queryStatement: "STRING_VALUE", // required
33
+ * maxResults: Number("int"),
34
+ * nextToken: "STRING_VALUE",
35
+ * };
30
36
  * const command = new ExecuteQueryCommand(input);
31
37
  * const response = await client.send(command);
32
38
  * ```
@@ -26,6 +26,10 @@ export interface GetComponentTypeCommandOutput extends GetComponentTypeResponse,
26
26
  * import { IoTTwinMakerClient, GetComponentTypeCommand } from "@aws-sdk/client-iottwinmaker"; // ES Modules import
27
27
  * // const { IoTTwinMakerClient, GetComponentTypeCommand } = require("@aws-sdk/client-iottwinmaker"); // CommonJS import
28
28
  * const client = new IoTTwinMakerClient(config);
29
+ * const input = {
30
+ * workspaceId: "STRING_VALUE", // required
31
+ * componentTypeId: "STRING_VALUE", // required
32
+ * };
29
33
  * const command = new GetComponentTypeCommand(input);
30
34
  * const response = await client.send(command);
31
35
  * ```
@@ -26,6 +26,10 @@ export interface GetEntityCommandOutput extends GetEntityResponse, __MetadataBea
26
26
  * import { IoTTwinMakerClient, GetEntityCommand } from "@aws-sdk/client-iottwinmaker"; // ES Modules import
27
27
  * // const { IoTTwinMakerClient, GetEntityCommand } = require("@aws-sdk/client-iottwinmaker"); // CommonJS import
28
28
  * const client = new IoTTwinMakerClient(config);
29
+ * const input = {
30
+ * workspaceId: "STRING_VALUE", // required
31
+ * entityId: "STRING_VALUE", // required
32
+ * };
29
33
  * const command = new GetEntityCommand(input);
30
34
  * const response = await client.send(command);
31
35
  * ```
@@ -26,6 +26,7 @@ export interface GetPricingPlanCommandOutput extends GetPricingPlanResponse, __M
26
26
  * import { IoTTwinMakerClient, GetPricingPlanCommand } from "@aws-sdk/client-iottwinmaker"; // ES Modules import
27
27
  * // const { IoTTwinMakerClient, GetPricingPlanCommand } = require("@aws-sdk/client-iottwinmaker"); // CommonJS import
28
28
  * const client = new IoTTwinMakerClient(config);
29
+ * const input = {};
29
30
  * const command = new GetPricingPlanCommand(input);
30
31
  * const response = await client.send(command);
31
32
  * ```
@@ -28,6 +28,97 @@ export interface GetPropertyValueCommandOutput extends GetPropertyValueResponse,
28
28
  * import { IoTTwinMakerClient, GetPropertyValueCommand } from "@aws-sdk/client-iottwinmaker"; // ES Modules import
29
29
  * // const { IoTTwinMakerClient, GetPropertyValueCommand } = require("@aws-sdk/client-iottwinmaker"); // CommonJS import
30
30
  * const client = new IoTTwinMakerClient(config);
31
+ * const input = {
32
+ * componentName: "STRING_VALUE",
33
+ * componentTypeId: "STRING_VALUE",
34
+ * entityId: "STRING_VALUE",
35
+ * selectedProperties: [ // required
36
+ * "STRING_VALUE",
37
+ * ],
38
+ * workspaceId: "STRING_VALUE", // required
39
+ * maxResults: Number("int"),
40
+ * nextToken: "STRING_VALUE",
41
+ * propertyGroupName: "STRING_VALUE",
42
+ * tabularConditions: {
43
+ * orderBy: [
44
+ * {
45
+ * order: "STRING_VALUE",
46
+ * propertyName: "STRING_VALUE", // required
47
+ * },
48
+ * ],
49
+ * propertyFilters: [
50
+ * {
51
+ * propertyName: "STRING_VALUE",
52
+ * operator: "STRING_VALUE",
53
+ * value: {
54
+ * booleanValue: true || false,
55
+ * doubleValue: Number("double"),
56
+ * integerValue: Number("int"),
57
+ * longValue: Number("long"),
58
+ * stringValue: "STRING_VALUE",
59
+ * listValue: [
60
+ * {
61
+ * booleanValue: true || false,
62
+ * doubleValue: Number("double"),
63
+ * integerValue: Number("int"),
64
+ * longValue: Number("long"),
65
+ * stringValue: "STRING_VALUE",
66
+ * listValue: [
67
+ * {
68
+ * booleanValue: "<DataValue>",
69
+ * doubleValue: "<DataValue>",
70
+ * integerValue: "<DataValue>",
71
+ * longValue: "<DataValue>",
72
+ * stringValue: "<DataValue>",
73
+ * listValue: "<DataValue>",
74
+ * mapValue: {
75
+ * "<keys>": {
76
+ * booleanValue: "<DataValue>",
77
+ * doubleValue: "<DataValue>",
78
+ * integerValue: "<DataValue>",
79
+ * longValue: "<DataValue>",
80
+ * stringValue: "<DataValue>",
81
+ * listValue: "<DataValue>",
82
+ * mapValue: {
83
+ * "<keys>": {
84
+ * booleanValue: "<DataValue>",
85
+ * doubleValue: "<DataValue>",
86
+ * integerValue: "<DataValue>",
87
+ * longValue: "<DataValue>",
88
+ * stringValue: "<DataValue>",
89
+ * listValue: "<DataValue>",
90
+ * mapValue: "<DataValue>",
91
+ * relationshipValue: {
92
+ * targetEntityId: "STRING_VALUE",
93
+ * targetComponentName: "STRING_VALUE",
94
+ * },
95
+ * expression: "STRING_VALUE",
96
+ * },
97
+ * },
98
+ * relationshipValue: {
99
+ * targetEntityId: "STRING_VALUE",
100
+ * targetComponentName: "STRING_VALUE",
101
+ * },
102
+ * expression: "STRING_VALUE",
103
+ * },
104
+ * },
105
+ * relationshipValue: "<DataValue>",
106
+ * expression: "<DataValue>",
107
+ * },
108
+ * ],
109
+ * mapValue: "<DataValue>",
110
+ * relationshipValue: "<DataValue>",
111
+ * expression: "<DataValue>",
112
+ * },
113
+ * ],
114
+ * mapValue: "<DataValue>",
115
+ * relationshipValue: "<DataValue>",
116
+ * expression: "<DataValue>",
117
+ * },
118
+ * },
119
+ * ],
120
+ * },
121
+ * };
31
122
  * const command = new GetPropertyValueCommand(input);
32
123
  * const response = await client.send(command);
33
124
  * ```