@aws-sdk/client-cloud9 3.465.0 → 3.466.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.
@@ -37,7 +37,7 @@ export interface CreateEnvironmentEC2CommandOutput extends CreateEnvironmentEC2R
37
37
  * clientRequestToken: "STRING_VALUE",
38
38
  * instanceType: "STRING_VALUE", // required
39
39
  * subnetId: "STRING_VALUE",
40
- * imageId: "STRING_VALUE",
40
+ * imageId: "STRING_VALUE", // required
41
41
  * automaticStopTimeMinutes: Number("int"),
42
42
  * ownerArn: "STRING_VALUE",
43
43
  * tags: [ // TagList
@@ -94,6 +94,7 @@ export interface CreateEnvironmentEC2CommandOutput extends CreateEnvironmentEC2R
94
94
  * "name": "my-demo-environment",
95
95
  * "automaticStopTimeMinutes": 60,
96
96
  * "description": "This is my demonstration environment.",
97
+ * "imageId": "amazonlinux-2-x86_64",
97
98
  * "instanceType": "t2.micro",
98
99
  * "ownerArn": "arn:aws:iam::123456789012:user/MyDemoUser",
99
100
  * "subnetId": "subnet-6300cd1b"
@@ -116,7 +116,8 @@ export interface CreateEnvironmentEC2Request {
116
116
  * </p>
117
117
  * <ul>
118
118
  * <li>
119
- * <p>Amazon Linux (default): <code>amazonlinux-1-x86_64</code>
119
+ * <p>Amazon Linux:
120
+ * <code>amazonlinux-1-x86_64</code>
120
121
  * </p>
121
122
  * </li>
122
123
  * <li>
@@ -137,8 +138,8 @@ export interface CreateEnvironmentEC2Request {
137
138
  * </p>
138
139
  * <ul>
139
140
  * <li>
140
- * <p>Amazon Linux (default):
141
- * <code>resolve:ssm:/aws/service/cloud9/amis/amazonlinux-1-x86_64</code>
141
+ * <p>Amazon Linux:
142
+ * <code>resolve:ssm:/aws/service/cloud9/amis/amazonlinux-1-x86_64</code>
142
143
  * </p>
143
144
  * </li>
144
145
  * <li>
@@ -158,7 +159,7 @@ export interface CreateEnvironmentEC2Request {
158
159
  * </li>
159
160
  * </ul>
160
161
  */
161
- imageId?: string;
162
+ imageId: string | undefined;
162
163
  /**
163
164
  * @public
164
165
  * <p>The number of minutes until the running instance is shut down after the environment has
@@ -32,7 +32,7 @@ export interface CreateEnvironmentEC2Request {
32
32
  clientRequestToken?: string;
33
33
  instanceType: string | undefined;
34
34
  subnetId?: string;
35
- imageId?: string;
35
+ imageId: string | undefined;
36
36
  automaticStopTimeMinutes?: number;
37
37
  ownerArn?: string;
38
38
  tags?: Tag[];
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@aws-sdk/client-cloud9",
3
3
  "description": "AWS SDK for JavaScript Cloud9 Client for Node.js, Browser and React Native",
4
- "version": "3.465.0",
4
+ "version": "3.466.0",
5
5
  "scripts": {
6
6
  "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
7
7
  "build:cjs": "tsc -p tsconfig.cjs.json",