@awboost/cfn-resource-types 0.1.79 → 0.1.80

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.
@@ -74,6 +74,10 @@ export type LightsailInstanceAttributes = {
74
74
  RamSizeInGb: number;
75
75
  };
76
76
  InstanceArn: string;
77
+ /**
78
+ * IPv6 addresses of the instance
79
+ */
80
+ Ipv6Addresses: string[];
77
81
  /**
78
82
  * Is the IP Address of the Instance is the static IP
79
83
  */
@@ -211,6 +211,15 @@ export type DefaultEbsStorageSettings = {
211
211
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sagemaker-domain-defaultspacesettings.html}
212
212
  */
213
213
  export type DefaultSpaceSettings = {
214
+ /**
215
+ * @minLength `0`
216
+ * @maxLength `2`
217
+ */
218
+ CustomFileSystemConfigs?: CustomFileSystemConfig[];
219
+ /**
220
+ * The Jupyter lab's custom posix user configurations.
221
+ */
222
+ CustomPosixUserConfig?: CustomPosixUserConfig;
214
223
  /**
215
224
  * The execution role for the space.
216
225
  * @minLength `20`
@@ -218,6 +227,10 @@ export type DefaultSpaceSettings = {
218
227
  * @pattern `^arn:aws[a-z\-]*:iam::\d{12}:role/?[a-zA-Z_0-9+=,.@\-_/]+$`
219
228
  */
220
229
  ExecutionRole: string;
230
+ /**
231
+ * The Jupyter lab's app settings.
232
+ */
233
+ JupyterLabAppSettings?: JupyterLabAppSettings;
221
234
  /**
222
235
  * The Jupyter server's app settings.
223
236
  */
@@ -232,6 +245,10 @@ export type DefaultSpaceSettings = {
232
245
  * @maxLength `5`
233
246
  */
234
247
  SecurityGroups?: string[];
248
+ /**
249
+ * The Jupyter lab's space storage settings.
250
+ */
251
+ SpaceStorageSettings?: DefaultSpaceStorageSettings;
235
252
  };
236
253
  /**
237
254
  * Type definition for `AWS::SageMaker::Domain.DefaultSpaceStorageSettings`.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@awboost/cfn-resource-types",
3
- "version": "0.1.79",
3
+ "version": "0.1.80",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },