@awboost/cfn-resource-types 0.1.380 → 0.1.381

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.
@@ -27,7 +27,7 @@ export type ECRRepositoryCreationTemplateProperties = {
27
27
  */
28
28
  EncryptionConfiguration?: EncryptionConfiguration;
29
29
  /**
30
- * The tag mutability setting for the repository. If this parameter is omitted, the default setting of MUTABLE will be used which will allow image tags to be overwritten. If IMMUTABLE is specified, all image tags within the repository will be immutable which will prevent them from being overwritten.
30
+ * The tag mutability setting for the repository. If this parameter is omitted, the default setting of ``MUTABLE`` will be used which will allow image tags to be overwritten. If ``IMMUTABLE`` is specified, all image tags within the repository will be immutable which will prevent them from being overwritten.
31
31
  */
32
32
  ImageTagMutability?: "MUTABLE" | "IMMUTABLE";
33
33
  /**
@@ -185,6 +185,12 @@ export type OwnershipSettings = {
185
185
  */
186
186
  OwnerUserProfileName: string;
187
187
  };
188
+ /**
189
+ * Type definition for `AWS::SageMaker::Space.RemoteAccess`.
190
+ * The flag to enable/disable remote access for a space.
191
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sagemaker-space-remoteaccess.html}
192
+ */
193
+ export type RemoteAccess = "ENABLED" | "DISABLED";
188
194
  /**
189
195
  * Type definition for `AWS::SageMaker::Space.ResourceSpec`.
190
196
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sagemaker-space-resourcespec.html}
@@ -256,6 +262,12 @@ export type SpaceJupyterLabAppSettings = {
256
262
  CodeRepositories?: CodeRepository[];
257
263
  DefaultResourceSpec?: ResourceSpec;
258
264
  };
265
+ /**
266
+ * Type definition for `AWS::SageMaker::Space.SpaceManagedResources`.
267
+ * The flag to enable/disable creation of space managed resources.
268
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sagemaker-space-spacemanagedresources.html}
269
+ */
270
+ export type SpaceManagedResources = "ENABLED" | "DISABLED";
259
271
  /**
260
272
  * Type definition for `AWS::SageMaker::Space.SpaceSettings`.
261
273
  * A collection of settings that apply to spaces of Amazon SageMaker Studio. These settings are specified when the CreateSpace API is called.
@@ -284,6 +296,14 @@ export type SpaceSettings = {
284
296
  * The kernel gateway app settings.
285
297
  */
286
298
  KernelGatewayAppSettings?: KernelGatewayAppSettings;
299
+ /**
300
+ * This is a flag used to indicate if remote access is enabled.
301
+ */
302
+ RemoteAccess?: RemoteAccess;
303
+ /**
304
+ * This is a flag used to indicate if space managed resources needs to be created.
305
+ */
306
+ SpaceManagedResources?: SpaceManagedResources;
287
307
  /**
288
308
  * Default storage settings for a space.
289
309
  */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@awboost/cfn-resource-types",
3
- "version": "0.1.380",
3
+ "version": "0.1.381",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },