@pulumi/aws 7.38.0-alpha.1784617465 → 7.38.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.
@@ -9,7 +9,7 @@ import * as pulumi from "@pulumi/pulumi";
9
9
  * ```typescript
10
10
  * import * as pulumi from "@pulumi/pulumi";
11
11
  * import * as aws from "@pulumi/aws";
12
- * import * as time from "@pulumi/time";
12
+ * import * as time from "@pulumiverse/time";
13
13
  *
14
14
  * const example = aws.organizations.getOrganization({});
15
15
  * const exampleNotificationConfiguration = new aws.notifications.NotificationConfiguration("example", {
@@ -21,7 +21,7 @@ import * as pulumi from "@pulumi/pulumi";
21
21
  * parentId: example.then(example => example.roots?.[0]?.id),
22
22
  * });
23
23
  * // Allow time for organizational unit creation to propagate
24
- * const wait = new time.index.Sleep("wait", {createDuration: "5s"}, {
24
+ * const wait = new time.Sleep("wait", {createDuration: "5s"}, {
25
25
  * dependsOn: [
26
26
  * exampleOrganizationalUnit,
27
27
  * exampleNotificationConfiguration,
@@ -38,7 +38,7 @@ const utilities = __importStar(require("../utilities"));
38
38
  * ```typescript
39
39
  * import * as pulumi from "@pulumi/pulumi";
40
40
  * import * as aws from "@pulumi/aws";
41
- * import * as time from "@pulumi/time";
41
+ * import * as time from "@pulumiverse/time";
42
42
  *
43
43
  * const example = aws.organizations.getOrganization({});
44
44
  * const exampleNotificationConfiguration = new aws.notifications.NotificationConfiguration("example", {
@@ -50,7 +50,7 @@ const utilities = __importStar(require("../utilities"));
50
50
  * parentId: example.then(example => example.roots?.[0]?.id),
51
51
  * });
52
52
  * // Allow time for organizational unit creation to propagate
53
- * const wait = new time.index.Sleep("wait", {createDuration: "5s"}, {
53
+ * const wait = new time.Sleep("wait", {createDuration: "5s"}, {
54
54
  * dependsOn: [
55
55
  * exampleOrganizationalUnit,
56
56
  * exampleNotificationConfiguration,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pulumi/aws",
3
- "version": "7.38.0-alpha.1784617465",
3
+ "version": "7.38.0",
4
4
  "description": "A Pulumi package for creating and managing Amazon Web Services (AWS) cloud resources.",
5
5
  "keywords": [
6
6
  "pulumi",
@@ -24,6 +24,6 @@
24
24
  "pulumi": {
25
25
  "resource": true,
26
26
  "name": "aws",
27
- "version": "7.38.0-alpha.1784617465"
27
+ "version": "7.38.0"
28
28
  }
29
29
  }