cdk-docker-image-deployment 0.0.198 → 0.0.200

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 (31) hide show
  1. package/.jsii +3 -3
  2. package/lib/destination.js +1 -1
  3. package/lib/docker-image-deployment.js +1 -1
  4. package/lib/source.js +1 -1
  5. package/node_modules/aws-sdk/CHANGELOG.md +14 -1
  6. package/node_modules/aws-sdk/README.md +1 -1
  7. package/node_modules/aws-sdk/apis/chime-sdk-messaging-2021-05-15.min.json +141 -50
  8. package/node_modules/aws-sdk/apis/cleanrooms-2022-02-17.min.json +160 -57
  9. package/node_modules/aws-sdk/apis/ec2-2016-11-15.min.json +1032 -794
  10. package/node_modules/aws-sdk/apis/iotsitewise-2019-12-02.min.json +8 -4
  11. package/node_modules/aws-sdk/apis/iottwinmaker-2021-11-29.min.json +49 -30
  12. package/node_modules/aws-sdk/apis/mgn-2020-02-26.min.json +389 -45
  13. package/node_modules/aws-sdk/apis/mgn-2020-02-26.paginators.json +24 -0
  14. package/node_modules/aws-sdk/apis/resiliencehub-2020-04-30.min.json +88 -42
  15. package/node_modules/aws-sdk/clients/chimesdkmessaging.d.ts +70 -0
  16. package/node_modules/aws-sdk/clients/cleanrooms.d.ts +82 -1
  17. package/node_modules/aws-sdk/clients/ec2.d.ts +257 -24
  18. package/node_modules/aws-sdk/clients/iam.d.ts +4 -4
  19. package/node_modules/aws-sdk/clients/iotsitewise.d.ts +9 -1
  20. package/node_modules/aws-sdk/clients/iottwinmaker.d.ts +38 -19
  21. package/node_modules/aws-sdk/clients/mgn.d.ts +472 -1
  22. package/node_modules/aws-sdk/clients/networkmanager.d.ts +1 -1
  23. package/node_modules/aws-sdk/clients/resiliencehub.d.ts +171 -104
  24. package/node_modules/aws-sdk/clients/ssm.d.ts +4 -4
  25. package/node_modules/aws-sdk/dist/aws-sdk-core-react-native.js +1 -1
  26. package/node_modules/aws-sdk/dist/aws-sdk-react-native.js +9 -9
  27. package/node_modules/aws-sdk/dist/aws-sdk.js +1035 -797
  28. package/node_modules/aws-sdk/dist/aws-sdk.min.js +72 -72
  29. package/node_modules/aws-sdk/lib/core.js +1 -1
  30. package/node_modules/aws-sdk/package.json +1 -1
  31. package/package.json +7 -7
@@ -617,6 +617,10 @@ declare namespace IoTTwinMaker {
617
617
  * Metadata that you can use to manage the scene.
618
618
  */
619
619
  tags?: TagMap;
620
+ /**
621
+ * The request metadata.
622
+ */
623
+ sceneMetadata?: SceneMetadataMap;
620
624
  }
621
625
  export interface CreateSceneResponse {
622
626
  /**
@@ -630,15 +634,15 @@ declare namespace IoTTwinMaker {
630
634
  }
631
635
  export interface CreateSyncJobRequest {
632
636
  /**
633
- * The workspace Id.
637
+ * The workspace ID.
634
638
  */
635
639
  workspaceId: Id;
636
640
  /**
637
- * The sync source. Currently the only supported syncSoucre is SITEWISE .
641
+ * The sync source. Currently the only supported syncSoource is SITEWISE .
638
642
  */
639
643
  syncSource: SyncSource;
640
644
  /**
641
- * The SyncJob IAM role. This IAM role is used by the sync job to read from the syncSource, and create, update or delete the corresponding resources.
645
+ * The SyncJob IAM role. This IAM role is used by the SyncJob to read from the syncSource, and create, update, or delete the corresponding resources.
642
646
  */
643
647
  syncRole: RoleArn;
644
648
  /**
@@ -814,11 +818,11 @@ declare namespace IoTTwinMaker {
814
818
  }
815
819
  export interface DeleteSyncJobRequest {
816
820
  /**
817
- * The workspace Id.
821
+ * The workspace ID.
818
822
  */
819
823
  workspaceId: Id;
820
824
  /**
821
- * The sync source. Currently the only supported syncSoucre is SITEWISE .
825
+ * The sync source. Currently the only supported syncSource is SITEWISE .
822
826
  */
823
827
  syncSource: SyncSource;
824
828
  }
@@ -981,6 +985,7 @@ declare namespace IoTTwinMaker {
981
985
  }
982
986
  export type FunctionsRequest = {[key: string]: FunctionRequest};
983
987
  export type FunctionsResponse = {[key: string]: FunctionResponse};
988
+ export type GeneratedSceneMetadataMap = {[key: string]: SceneMetadataValue};
984
989
  export interface GetComponentTypeRequest {
985
990
  /**
986
991
  * The ID of the workspace that contains the component type.
@@ -1049,7 +1054,7 @@ declare namespace IoTTwinMaker {
1049
1054
  */
1050
1055
  propertyGroups?: PropertyGroupsResponse;
1051
1056
  /**
1052
- * The syncSource of the sync job, if this entity was created by a sync job.
1057
+ * The syncSource of the SyncJob, if this entity was created by a SyncJob.
1053
1058
  */
1054
1059
  syncSource?: SyncSource;
1055
1060
  /**
@@ -1292,14 +1297,22 @@ declare namespace IoTTwinMaker {
1292
1297
  * A list of capabilities that the scene uses to render.
1293
1298
  */
1294
1299
  capabilities?: SceneCapabilities;
1300
+ /**
1301
+ * The response metadata.
1302
+ */
1303
+ sceneMetadata?: SceneMetadataMap;
1304
+ /**
1305
+ * The generated scene metadata.
1306
+ */
1307
+ generatedSceneMetadata?: GeneratedSceneMetadataMap;
1295
1308
  }
1296
1309
  export interface GetSyncJobRequest {
1297
1310
  /**
1298
- * The sync soucre. Currently the only supported syncSoucre is SITEWISE .
1311
+ * The sync source. Currently the only supported syncSource is SITEWISE .
1299
1312
  */
1300
1313
  syncSource: SyncSource;
1301
1314
  /**
1302
- * The workspace Id.
1315
+ * The workspace ID.
1303
1316
  */
1304
1317
  workspaceId?: Id;
1305
1318
  }
@@ -1313,7 +1326,7 @@ declare namespace IoTTwinMaker {
1313
1326
  */
1314
1327
  workspaceId: Id;
1315
1328
  /**
1316
- * The sync soucre. Currently the only supported syncSoucre is SITEWISE .
1329
+ * The sync soucre. Currently the only supported syncSource is SITEWISE .
1317
1330
  */
1318
1331
  syncSource: SyncSource;
1319
1332
  /**
@@ -1540,11 +1553,11 @@ declare namespace IoTTwinMaker {
1540
1553
  */
1541
1554
  workspaceId: Id;
1542
1555
  /**
1543
- * The sync soucre. Currently the only supported syncSoucre is SITEWISE .
1556
+ * The sync source. Currently the only supported syncSource is SITEWISE .
1544
1557
  */
1545
1558
  syncSource: SyncSource;
1546
1559
  /**
1547
- * A list of objects that filter the request.
1560
+ * A list of objects that filter the request. The following filter combinations are supported: Filter with state Filter with ResourceType and ResourceId Filter with ResourceType and ExternalId
1548
1561
  */
1549
1562
  filters?: SyncResourceFilters;
1550
1563
  /**
@@ -1663,7 +1676,7 @@ declare namespace IoTTwinMaker {
1663
1676
  */
1664
1677
  updateDateTime: Timestamp;
1665
1678
  /**
1666
- * The update reason, for changing a pricing plan.
1679
+ * The update reason for changing a pricing plan.
1667
1680
  */
1668
1681
  updateReason: UpdateReason;
1669
1682
  }
@@ -1795,7 +1808,7 @@ declare namespace IoTTwinMaker {
1795
1808
  export type PropertyGroupsResponse = {[key: string]: PropertyGroupResponse};
1796
1809
  export interface PropertyLatestValue {
1797
1810
  /**
1798
- * An object that specifies information about a property.>
1811
+ * An object that specifies information about a property.
1799
1812
  */
1800
1813
  propertyReference: EntityPropertyReference;
1801
1814
  /**
@@ -1907,6 +1920,8 @@ declare namespace IoTTwinMaker {
1907
1920
  export type S3Url = string;
1908
1921
  export type SceneCapabilities = SceneCapability[];
1909
1922
  export type SceneCapability = string;
1923
+ export type SceneMetadataMap = {[key: string]: SceneMetadataValue};
1924
+ export type SceneMetadataValue = string;
1910
1925
  export type SceneSummaries = SceneSummary[];
1911
1926
  export interface SceneSummary {
1912
1927
  /**
@@ -1992,15 +2007,15 @@ declare namespace IoTTwinMaker {
1992
2007
  */
1993
2008
  state?: SyncResourceState;
1994
2009
  /**
1995
- * The sync resource filter resoucre type
2010
+ * The sync resource filter resource type
1996
2011
  */
1997
2012
  resourceType?: SyncResourceType;
1998
2013
  /**
1999
- * The sync resource filter resource Id.
2014
+ * The sync resource filter resource ID.
2000
2015
  */
2001
2016
  resourceId?: Id;
2002
2017
  /**
2003
- * The external Id.
2018
+ * The external ID.
2004
2019
  */
2005
2020
  externalId?: Id;
2006
2021
  }
@@ -2023,11 +2038,11 @@ declare namespace IoTTwinMaker {
2023
2038
  */
2024
2039
  resourceType?: SyncResourceType;
2025
2040
  /**
2026
- * The external Id.
2041
+ * The external ID.
2027
2042
  */
2028
2043
  externalId?: Id;
2029
2044
  /**
2030
- * The resource Id.
2045
+ * The resource ID.
2031
2046
  */
2032
2047
  resourceId?: Id;
2033
2048
  /**
@@ -2115,7 +2130,7 @@ declare namespace IoTTwinMaker {
2115
2130
  */
2116
2131
  functions?: FunctionsRequest;
2117
2132
  /**
2118
- * The property groups
2133
+ * The property groups.
2119
2134
  */
2120
2135
  propertyGroups?: PropertyGroupsRequest;
2121
2136
  /**
@@ -2219,6 +2234,10 @@ declare namespace IoTTwinMaker {
2219
2234
  * A list of capabilities that the scene uses to render.
2220
2235
  */
2221
2236
  capabilities?: SceneCapabilities;
2237
+ /**
2238
+ * The scene metadata.
2239
+ */
2240
+ sceneMetadata?: SceneMetadataMap;
2222
2241
  }
2223
2242
  export interface UpdateSceneResponse {
2224
2243
  /**