@aws-sdk/client-iottwinmaker 3.300.0 → 3.301.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.
- package/dist-types/commands/BatchPutPropertyValuesCommand.d.ts +26 -56
- package/dist-types/commands/CreateComponentTypeCommand.d.ts +55 -95
- package/dist-types/commands/CreateEntityCommand.d.ts +53 -103
- package/dist-types/commands/CreateSceneCommand.d.ts +4 -4
- package/dist-types/commands/CreateSyncJobCommand.d.ts +2 -2
- package/dist-types/commands/CreateWorkspaceCommand.d.ts +2 -2
- package/dist-types/commands/DeleteComponentTypeCommand.d.ts +1 -1
- package/dist-types/commands/DeleteEntityCommand.d.ts +1 -1
- package/dist-types/commands/DeleteSceneCommand.d.ts +1 -1
- package/dist-types/commands/DeleteSyncJobCommand.d.ts +1 -1
- package/dist-types/commands/DeleteWorkspaceCommand.d.ts +1 -1
- package/dist-types/commands/ExecuteQueryCommand.d.ts +1 -1
- package/dist-types/commands/GetComponentTypeCommand.d.ts +1 -1
- package/dist-types/commands/GetEntityCommand.d.ts +1 -1
- package/dist-types/commands/GetPropertyValueCommand.d.ts +26 -56
- package/dist-types/commands/GetPropertyValueHistoryCommand.d.ts +24 -54
- package/dist-types/commands/GetSceneCommand.d.ts +1 -1
- package/dist-types/commands/GetSyncJobCommand.d.ts +1 -1
- package/dist-types/commands/GetWorkspaceCommand.d.ts +1 -1
- package/dist-types/commands/ListComponentTypesCommand.d.ts +3 -3
- package/dist-types/commands/ListEntitiesCommand.d.ts +3 -3
- package/dist-types/commands/ListScenesCommand.d.ts +1 -1
- package/dist-types/commands/ListSyncJobsCommand.d.ts +1 -1
- package/dist-types/commands/ListSyncResourcesCommand.d.ts +3 -3
- package/dist-types/commands/ListTagsForResourceCommand.d.ts +1 -1
- package/dist-types/commands/ListWorkspacesCommand.d.ts +1 -1
- package/dist-types/commands/TagResourceCommand.d.ts +2 -2
- package/dist-types/commands/UntagResourceCommand.d.ts +2 -2
- package/dist-types/commands/UpdateComponentTypeCommand.d.ts +54 -94
- package/dist-types/commands/UpdateEntityCommand.d.ts +53 -103
- package/dist-types/commands/UpdatePricingPlanCommand.d.ts +2 -2
- package/dist-types/commands/UpdateSceneCommand.d.ts +3 -3
- package/dist-types/commands/UpdateWorkspaceCommand.d.ts +1 -1
- package/package.json +3 -3
|
@@ -26,28 +26,28 @@ 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 = {
|
|
29
|
+
* const input = { // BatchPutPropertyValuesRequest
|
|
30
30
|
* workspaceId: "STRING_VALUE", // required
|
|
31
|
-
* entries: [ // required
|
|
32
|
-
* {
|
|
33
|
-
* entityPropertyReference: {
|
|
31
|
+
* entries: [ // Entries // required
|
|
32
|
+
* { // PropertyValueEntry
|
|
33
|
+
* entityPropertyReference: { // EntityPropertyReference
|
|
34
34
|
* componentName: "STRING_VALUE",
|
|
35
|
-
* externalIdProperty: {
|
|
35
|
+
* externalIdProperty: { // ExternalIdProperty
|
|
36
36
|
* "<keys>": "STRING_VALUE",
|
|
37
37
|
* },
|
|
38
38
|
* entityId: "STRING_VALUE",
|
|
39
39
|
* propertyName: "STRING_VALUE", // required
|
|
40
40
|
* },
|
|
41
|
-
* propertyValues: [
|
|
42
|
-
* {
|
|
41
|
+
* propertyValues: [ // PropertyValues
|
|
42
|
+
* { // PropertyValue
|
|
43
43
|
* timestamp: new Date("TIMESTAMP"),
|
|
44
|
-
* value: {
|
|
44
|
+
* value: { // DataValue
|
|
45
45
|
* booleanValue: true || false,
|
|
46
46
|
* doubleValue: Number("double"),
|
|
47
47
|
* integerValue: Number("int"),
|
|
48
48
|
* longValue: Number("long"),
|
|
49
49
|
* stringValue: "STRING_VALUE",
|
|
50
|
-
* listValue: [
|
|
50
|
+
* listValue: [ // DataValueList
|
|
51
51
|
* {
|
|
52
52
|
* booleanValue: true || false,
|
|
53
53
|
* doubleValue: Number("double"),
|
|
@@ -55,56 +55,26 @@ export interface BatchPutPropertyValuesCommandOutput extends BatchPutPropertyVal
|
|
|
55
55
|
* longValue: Number("long"),
|
|
56
56
|
* stringValue: "STRING_VALUE",
|
|
57
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
|
-
* },
|
|
58
|
+
* "<DataValue>",
|
|
99
59
|
* ],
|
|
100
|
-
* mapValue:
|
|
101
|
-
*
|
|
102
|
-
*
|
|
60
|
+
* mapValue: { // DataValueMap
|
|
61
|
+
* "<keys>": "<DataValue>",
|
|
62
|
+
* },
|
|
63
|
+
* relationshipValue: { // RelationshipValue
|
|
64
|
+
* targetEntityId: "STRING_VALUE",
|
|
65
|
+
* targetComponentName: "STRING_VALUE",
|
|
66
|
+
* },
|
|
67
|
+
* expression: "STRING_VALUE",
|
|
103
68
|
* },
|
|
104
69
|
* ],
|
|
105
|
-
* mapValue:
|
|
106
|
-
*
|
|
107
|
-
*
|
|
70
|
+
* mapValue: {
|
|
71
|
+
* "<keys>": "<DataValue>",
|
|
72
|
+
* },
|
|
73
|
+
* relationshipValue: {
|
|
74
|
+
* targetEntityId: "STRING_VALUE",
|
|
75
|
+
* targetComponentName: "STRING_VALUE",
|
|
76
|
+
* },
|
|
77
|
+
* expression: "STRING_VALUE",
|
|
108
78
|
* },
|
|
109
79
|
* time: "STRING_VALUE",
|
|
110
80
|
* },
|
|
@@ -26,141 +26,101 @@ 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 = {
|
|
29
|
+
* const input = { // CreateComponentTypeRequest
|
|
30
30
|
* workspaceId: "STRING_VALUE", // required
|
|
31
31
|
* isSingleton: true || false,
|
|
32
32
|
* componentTypeId: "STRING_VALUE", // required
|
|
33
33
|
* description: "STRING_VALUE",
|
|
34
|
-
* propertyDefinitions: {
|
|
35
|
-
* "<keys>": {
|
|
36
|
-
* dataType: {
|
|
34
|
+
* propertyDefinitions: { // PropertyDefinitionsRequest
|
|
35
|
+
* "<keys>": { // PropertyDefinitionRequest
|
|
36
|
+
* dataType: { // DataType
|
|
37
37
|
* type: "STRING_VALUE", // required
|
|
38
38
|
* nestedType: {
|
|
39
39
|
* type: "STRING_VALUE", // required
|
|
40
|
-
* nestedType:
|
|
41
|
-
*
|
|
42
|
-
*
|
|
43
|
-
*
|
|
44
|
-
*
|
|
45
|
-
*
|
|
46
|
-
*
|
|
47
|
-
*
|
|
48
|
-
*
|
|
49
|
-
*
|
|
50
|
-
*
|
|
51
|
-
*
|
|
52
|
-
*
|
|
53
|
-
*
|
|
54
|
-
*
|
|
55
|
-
*
|
|
56
|
-
*
|
|
57
|
-
*
|
|
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>",
|
|
40
|
+
* nestedType: "<DataType>",
|
|
41
|
+
* allowedValues: [ // DataValueList
|
|
42
|
+
* { // DataValue
|
|
43
|
+
* booleanValue: true || false,
|
|
44
|
+
* doubleValue: Number("double"),
|
|
45
|
+
* integerValue: Number("int"),
|
|
46
|
+
* longValue: Number("long"),
|
|
47
|
+
* stringValue: "STRING_VALUE",
|
|
48
|
+
* listValue: [
|
|
49
|
+
* {
|
|
50
|
+
* booleanValue: true || false,
|
|
51
|
+
* doubleValue: Number("double"),
|
|
52
|
+
* integerValue: Number("int"),
|
|
53
|
+
* longValue: Number("long"),
|
|
54
|
+
* stringValue: "STRING_VALUE",
|
|
55
|
+
* listValue: "<DataValueList>",
|
|
56
|
+
* mapValue: { // DataValueMap
|
|
57
|
+
* "<keys>": "<DataValue>",
|
|
93
58
|
* },
|
|
94
|
-
*
|
|
95
|
-
*
|
|
96
|
-
*
|
|
97
|
-
*
|
|
59
|
+
* relationshipValue: { // RelationshipValue
|
|
60
|
+
* targetEntityId: "STRING_VALUE",
|
|
61
|
+
* targetComponentName: "STRING_VALUE",
|
|
62
|
+
* },
|
|
63
|
+
* expression: "STRING_VALUE",
|
|
64
|
+
* },
|
|
65
|
+
* ],
|
|
66
|
+
* mapValue: {
|
|
67
|
+
* "<keys>": "<DataValue>",
|
|
68
|
+
* },
|
|
69
|
+
* relationshipValue: {
|
|
70
|
+
* targetEntityId: "STRING_VALUE",
|
|
71
|
+
* targetComponentName: "STRING_VALUE",
|
|
98
72
|
* },
|
|
99
|
-
*
|
|
100
|
-
* unitOfMeasure: "STRING_VALUE",
|
|
101
|
-
* relationship: {
|
|
102
|
-
* targetComponentTypeId: "STRING_VALUE",
|
|
103
|
-
* relationshipType: "STRING_VALUE",
|
|
73
|
+
* expression: "STRING_VALUE",
|
|
104
74
|
* },
|
|
105
|
-
* },
|
|
106
|
-
* allowedValues: [
|
|
107
|
-
* "<DataValueList>",
|
|
108
75
|
* ],
|
|
109
76
|
* unitOfMeasure: "STRING_VALUE",
|
|
110
|
-
* relationship: {
|
|
77
|
+
* relationship: { // Relationship
|
|
111
78
|
* targetComponentTypeId: "STRING_VALUE",
|
|
112
79
|
* relationshipType: "STRING_VALUE",
|
|
113
80
|
* },
|
|
114
81
|
* },
|
|
115
|
-
* allowedValues: "<
|
|
116
|
-
* unitOfMeasure: "
|
|
117
|
-
* relationship:
|
|
82
|
+
* allowedValues: "<DataValueList>",
|
|
83
|
+
* unitOfMeasure: "STRING_VALUE",
|
|
84
|
+
* relationship: {
|
|
85
|
+
* targetComponentTypeId: "STRING_VALUE",
|
|
86
|
+
* relationshipType: "STRING_VALUE",
|
|
87
|
+
* },
|
|
118
88
|
* },
|
|
119
89
|
* isRequiredInEntity: true || false,
|
|
120
90
|
* isExternalId: true || false,
|
|
121
91
|
* isStoredExternally: true || false,
|
|
122
92
|
* isTimeSeries: true || false,
|
|
123
|
-
* defaultValue:
|
|
124
|
-
*
|
|
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: {
|
|
93
|
+
* defaultValue: "<DataValue>",
|
|
94
|
+
* configuration: { // Configuration
|
|
135
95
|
* "<keys>": "STRING_VALUE",
|
|
136
96
|
* },
|
|
137
97
|
* displayName: "STRING_VALUE",
|
|
138
98
|
* },
|
|
139
99
|
* },
|
|
140
|
-
* extendsFrom: [
|
|
100
|
+
* extendsFrom: [ // ExtendsFrom
|
|
141
101
|
* "STRING_VALUE",
|
|
142
102
|
* ],
|
|
143
|
-
* functions: {
|
|
144
|
-
* "<keys>": {
|
|
145
|
-
* requiredProperties: [
|
|
103
|
+
* functions: { // FunctionsRequest
|
|
104
|
+
* "<keys>": { // FunctionRequest
|
|
105
|
+
* requiredProperties: [ // RequiredProperties
|
|
146
106
|
* "STRING_VALUE",
|
|
147
107
|
* ],
|
|
148
108
|
* scope: "STRING_VALUE",
|
|
149
|
-
* implementedBy: {
|
|
150
|
-
* lambda: {
|
|
109
|
+
* implementedBy: { // DataConnector
|
|
110
|
+
* lambda: { // LambdaFunction
|
|
151
111
|
* arn: "STRING_VALUE", // required
|
|
152
112
|
* },
|
|
153
113
|
* isNative: true || false,
|
|
154
114
|
* },
|
|
155
115
|
* },
|
|
156
116
|
* },
|
|
157
|
-
* tags: {
|
|
117
|
+
* tags: { // TagMap
|
|
158
118
|
* "<keys>": "STRING_VALUE",
|
|
159
119
|
* },
|
|
160
|
-
* propertyGroups: {
|
|
161
|
-
* "<keys>": {
|
|
120
|
+
* propertyGroups: { // PropertyGroupsRequest
|
|
121
|
+
* "<keys>": { // PropertyGroupRequest
|
|
162
122
|
* groupType: "STRING_VALUE",
|
|
163
|
-
* propertyNames: [
|
|
123
|
+
* propertyNames: [ // PropertyNames
|
|
164
124
|
* "STRING_VALUE",
|
|
165
125
|
* ],
|
|
166
126
|
* },
|
|
@@ -26,139 +26,89 @@ 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 = {
|
|
29
|
+
* const input = { // CreateEntityRequest
|
|
30
30
|
* workspaceId: "STRING_VALUE", // required
|
|
31
31
|
* entityId: "STRING_VALUE",
|
|
32
32
|
* entityName: "STRING_VALUE", // required
|
|
33
33
|
* description: "STRING_VALUE",
|
|
34
|
-
* components: {
|
|
35
|
-
* "<keys>": {
|
|
34
|
+
* components: { // ComponentsMapRequest
|
|
35
|
+
* "<keys>": { // ComponentRequest
|
|
36
36
|
* description: "STRING_VALUE",
|
|
37
37
|
* componentTypeId: "STRING_VALUE",
|
|
38
|
-
* properties: {
|
|
39
|
-
* "<keys>": {
|
|
40
|
-
* definition: {
|
|
41
|
-
* dataType: {
|
|
38
|
+
* properties: { // PropertyRequests
|
|
39
|
+
* "<keys>": { // PropertyRequest
|
|
40
|
+
* definition: { // PropertyDefinitionRequest
|
|
41
|
+
* dataType: { // DataType
|
|
42
42
|
* type: "STRING_VALUE", // required
|
|
43
43
|
* nestedType: {
|
|
44
44
|
* type: "STRING_VALUE", // required
|
|
45
|
-
* nestedType:
|
|
46
|
-
*
|
|
47
|
-
*
|
|
48
|
-
*
|
|
49
|
-
*
|
|
50
|
-
*
|
|
51
|
-
*
|
|
52
|
-
*
|
|
53
|
-
*
|
|
54
|
-
*
|
|
55
|
-
*
|
|
56
|
-
*
|
|
57
|
-
*
|
|
58
|
-
*
|
|
59
|
-
*
|
|
60
|
-
*
|
|
61
|
-
*
|
|
62
|
-
*
|
|
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>",
|
|
45
|
+
* nestedType: "<DataType>",
|
|
46
|
+
* allowedValues: [ // DataValueList
|
|
47
|
+
* { // DataValue
|
|
48
|
+
* booleanValue: true || false,
|
|
49
|
+
* doubleValue: Number("double"),
|
|
50
|
+
* integerValue: Number("int"),
|
|
51
|
+
* longValue: Number("long"),
|
|
52
|
+
* stringValue: "STRING_VALUE",
|
|
53
|
+
* listValue: [
|
|
54
|
+
* {
|
|
55
|
+
* booleanValue: true || false,
|
|
56
|
+
* doubleValue: Number("double"),
|
|
57
|
+
* integerValue: Number("int"),
|
|
58
|
+
* longValue: Number("long"),
|
|
59
|
+
* stringValue: "STRING_VALUE",
|
|
60
|
+
* listValue: "<DataValueList>",
|
|
61
|
+
* mapValue: { // DataValueMap
|
|
62
|
+
* "<keys>": "<DataValue>",
|
|
98
63
|
* },
|
|
99
|
-
*
|
|
100
|
-
*
|
|
101
|
-
*
|
|
102
|
-
*
|
|
64
|
+
* relationshipValue: { // RelationshipValue
|
|
65
|
+
* targetEntityId: "STRING_VALUE",
|
|
66
|
+
* targetComponentName: "STRING_VALUE",
|
|
67
|
+
* },
|
|
68
|
+
* expression: "STRING_VALUE",
|
|
69
|
+
* },
|
|
70
|
+
* ],
|
|
71
|
+
* mapValue: {
|
|
72
|
+
* "<keys>": "<DataValue>",
|
|
73
|
+
* },
|
|
74
|
+
* relationshipValue: {
|
|
75
|
+
* targetEntityId: "STRING_VALUE",
|
|
76
|
+
* targetComponentName: "STRING_VALUE",
|
|
103
77
|
* },
|
|
104
|
-
*
|
|
105
|
-
* unitOfMeasure: "STRING_VALUE",
|
|
106
|
-
* relationship: {
|
|
107
|
-
* targetComponentTypeId: "STRING_VALUE",
|
|
108
|
-
* relationshipType: "STRING_VALUE",
|
|
78
|
+
* expression: "STRING_VALUE",
|
|
109
79
|
* },
|
|
110
|
-
* },
|
|
111
|
-
* allowedValues: [
|
|
112
|
-
* "<DataValueList>",
|
|
113
80
|
* ],
|
|
114
81
|
* unitOfMeasure: "STRING_VALUE",
|
|
115
|
-
* relationship: {
|
|
82
|
+
* relationship: { // Relationship
|
|
116
83
|
* targetComponentTypeId: "STRING_VALUE",
|
|
117
84
|
* relationshipType: "STRING_VALUE",
|
|
118
85
|
* },
|
|
119
86
|
* },
|
|
120
|
-
* allowedValues: "<
|
|
121
|
-
* unitOfMeasure: "
|
|
122
|
-
* relationship:
|
|
87
|
+
* allowedValues: "<DataValueList>",
|
|
88
|
+
* unitOfMeasure: "STRING_VALUE",
|
|
89
|
+
* relationship: {
|
|
90
|
+
* targetComponentTypeId: "STRING_VALUE",
|
|
91
|
+
* relationshipType: "STRING_VALUE",
|
|
92
|
+
* },
|
|
123
93
|
* },
|
|
124
94
|
* isRequiredInEntity: true || false,
|
|
125
95
|
* isExternalId: true || false,
|
|
126
96
|
* isStoredExternally: true || false,
|
|
127
97
|
* isTimeSeries: true || false,
|
|
128
|
-
* defaultValue:
|
|
129
|
-
*
|
|
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: {
|
|
98
|
+
* defaultValue: "<DataValue>",
|
|
99
|
+
* configuration: { // Configuration
|
|
140
100
|
* "<keys>": "STRING_VALUE",
|
|
141
101
|
* },
|
|
142
102
|
* displayName: "STRING_VALUE",
|
|
143
103
|
* },
|
|
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
|
-
* },
|
|
104
|
+
* value: "<DataValue>",
|
|
155
105
|
* updateType: "STRING_VALUE",
|
|
156
106
|
* },
|
|
157
107
|
* },
|
|
158
|
-
* propertyGroups: {
|
|
159
|
-
* "<keys>": {
|
|
108
|
+
* propertyGroups: { // ComponentPropertyGroupRequests
|
|
109
|
+
* "<keys>": { // ComponentPropertyGroupRequest
|
|
160
110
|
* groupType: "STRING_VALUE",
|
|
161
|
-
* propertyNames: [
|
|
111
|
+
* propertyNames: [ // PropertyNames
|
|
162
112
|
* "STRING_VALUE",
|
|
163
113
|
* ],
|
|
164
114
|
* updateType: "STRING_VALUE",
|
|
@@ -167,7 +117,7 @@ export interface CreateEntityCommandOutput extends CreateEntityResponse, __Metad
|
|
|
167
117
|
* },
|
|
168
118
|
* },
|
|
169
119
|
* parentEntityId: "STRING_VALUE",
|
|
170
|
-
* tags: {
|
|
120
|
+
* tags: { // TagMap
|
|
171
121
|
* "<keys>": "STRING_VALUE",
|
|
172
122
|
* },
|
|
173
123
|
* };
|
|
@@ -26,18 +26,18 @@ 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 = {
|
|
29
|
+
* const input = { // CreateSceneRequest
|
|
30
30
|
* workspaceId: "STRING_VALUE", // required
|
|
31
31
|
* sceneId: "STRING_VALUE", // required
|
|
32
32
|
* contentLocation: "STRING_VALUE", // required
|
|
33
33
|
* description: "STRING_VALUE",
|
|
34
|
-
* capabilities: [
|
|
34
|
+
* capabilities: [ // SceneCapabilities
|
|
35
35
|
* "STRING_VALUE",
|
|
36
36
|
* ],
|
|
37
|
-
* tags: {
|
|
37
|
+
* tags: { // TagMap
|
|
38
38
|
* "<keys>": "STRING_VALUE",
|
|
39
39
|
* },
|
|
40
|
-
* sceneMetadata: {
|
|
40
|
+
* sceneMetadata: { // SceneMetadataMap
|
|
41
41
|
* "<keys>": "STRING_VALUE",
|
|
42
42
|
* },
|
|
43
43
|
* };
|
|
@@ -26,11 +26,11 @@ 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 = {
|
|
29
|
+
* const input = { // CreateSyncJobRequest
|
|
30
30
|
* workspaceId: "STRING_VALUE", // required
|
|
31
31
|
* syncSource: "STRING_VALUE", // required
|
|
32
32
|
* syncRole: "STRING_VALUE", // required
|
|
33
|
-
* tags: {
|
|
33
|
+
* tags: { // TagMap
|
|
34
34
|
* "<keys>": "STRING_VALUE",
|
|
35
35
|
* },
|
|
36
36
|
* };
|
|
@@ -26,12 +26,12 @@ 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 = {
|
|
29
|
+
* const input = { // CreateWorkspaceRequest
|
|
30
30
|
* workspaceId: "STRING_VALUE", // required
|
|
31
31
|
* description: "STRING_VALUE",
|
|
32
32
|
* s3Location: "STRING_VALUE", // required
|
|
33
33
|
* role: "STRING_VALUE", // required
|
|
34
|
-
* tags: {
|
|
34
|
+
* tags: { // TagMap
|
|
35
35
|
* "<keys>": "STRING_VALUE",
|
|
36
36
|
* },
|
|
37
37
|
* };
|
|
@@ -26,7 +26,7 @@ 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 = {
|
|
29
|
+
* const input = { // DeleteComponentTypeRequest
|
|
30
30
|
* workspaceId: "STRING_VALUE", // required
|
|
31
31
|
* componentTypeId: "STRING_VALUE", // required
|
|
32
32
|
* };
|
|
@@ -26,7 +26,7 @@ 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 = {
|
|
29
|
+
* const input = { // DeleteEntityRequest
|
|
30
30
|
* workspaceId: "STRING_VALUE", // required
|
|
31
31
|
* entityId: "STRING_VALUE", // required
|
|
32
32
|
* isRecursive: true || false,
|
|
@@ -26,7 +26,7 @@ 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 = {
|
|
29
|
+
* const input = { // DeleteSceneRequest
|
|
30
30
|
* workspaceId: "STRING_VALUE", // required
|
|
31
31
|
* sceneId: "STRING_VALUE", // required
|
|
32
32
|
* };
|
|
@@ -26,7 +26,7 @@ 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 = {
|
|
29
|
+
* const input = { // DeleteSyncJobRequest
|
|
30
30
|
* workspaceId: "STRING_VALUE", // required
|
|
31
31
|
* syncSource: "STRING_VALUE", // required
|
|
32
32
|
* };
|
|
@@ -26,7 +26,7 @@ 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 = {
|
|
29
|
+
* const input = { // DeleteWorkspaceRequest
|
|
30
30
|
* workspaceId: "STRING_VALUE", // required
|
|
31
31
|
* };
|
|
32
32
|
* const command = new DeleteWorkspaceCommand(input);
|
|
@@ -27,7 +27,7 @@ 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 = {
|
|
30
|
+
* const input = { // ExecuteQueryRequest
|
|
31
31
|
* workspaceId: "STRING_VALUE", // required
|
|
32
32
|
* queryStatement: "STRING_VALUE", // required
|
|
33
33
|
* maxResults: Number("int"),
|
|
@@ -26,7 +26,7 @@ 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 = {
|
|
29
|
+
* const input = { // GetComponentTypeRequest
|
|
30
30
|
* workspaceId: "STRING_VALUE", // required
|
|
31
31
|
* componentTypeId: "STRING_VALUE", // required
|
|
32
32
|
* };
|
|
@@ -26,7 +26,7 @@ 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 = {
|
|
29
|
+
* const input = { // GetEntityRequest
|
|
30
30
|
* workspaceId: "STRING_VALUE", // required
|
|
31
31
|
* entityId: "STRING_VALUE", // required
|
|
32
32
|
* };
|