@awboost/cfn-resource-types 0.1.109 → 0.1.111

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,18 +9,11 @@ export type CognitoUserPoolUICustomizationAttachmentProperties = {
9
9
  ClientId: string;
10
10
  UserPoolId: string;
11
11
  };
12
- /**
13
- * Attribute type definition for `AWS::Cognito::UserPoolUICustomizationAttachment`.
14
- * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpooluicustomizationattachment.html#aws-resource-cognito-userpooluicustomizationattachment-return-values}
15
- */
16
- export type CognitoUserPoolUICustomizationAttachmentAttributes = {
17
- Id: string;
18
- };
19
12
  /**
20
13
  * Resource Type definition for AWS::Cognito::UserPoolUICustomizationAttachment
21
14
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpooluicustomizationattachment.html}
22
15
  */
23
- export declare class CognitoUserPoolUICustomizationAttachment extends $Resource<"AWS::Cognito::UserPoolUICustomizationAttachment", CognitoUserPoolUICustomizationAttachmentProperties, CognitoUserPoolUICustomizationAttachmentAttributes> {
16
+ export declare class CognitoUserPoolUICustomizationAttachment extends $Resource<"AWS::Cognito::UserPoolUICustomizationAttachment", CognitoUserPoolUICustomizationAttachmentProperties, Record<string, never>> {
24
17
  static readonly Type = "AWS::Cognito::UserPoolUICustomizationAttachment";
25
18
  constructor(logicalId: string, properties: CognitoUserPoolUICustomizationAttachmentProperties, options?: $ResourceOptions);
26
19
  }
@@ -47,14 +47,14 @@ export type EFSFileSystemProperties = {
47
47
  /**
48
48
  * An array of ``LifecyclePolicy`` objects that define the file system's ``LifecycleConfiguration`` object. A ``LifecycleConfiguration`` object informs Lifecycle management of the following:
49
49
  + When to move files in the file system from primary storage to IA storage.
50
- + When to move files in the file system from primary storage or IA storage to Archive storage.
51
- + When to move files that are in IA or Archive storage to primary storage.
50
+ + When to move files in the file system from primary storage or IA storage to Archive storage.
51
+ + When to move files that are in IA or Archive storage to primary storage.
52
52
 
53
- EFS requires that each ``LifecyclePolicy`` object have only a single transition. This means that in a request body, ``LifecyclePolicies`` needs to be structured as an array of ``LifecyclePolicy`` objects, one object for each transition, ``TransitionToIA``, ``TransitionToArchive`` ``TransitionToPrimaryStorageClass``. See the example requests in the following section for more information.
53
+ EFS requires that each ``LifecyclePolicy`` object have only a single transition. This means that in a request body, ``LifecyclePolicies`` needs to be structured as an array of ``LifecyclePolicy`` objects, one object for each transition, ``TransitionToIA``, ``TransitionToArchive`` ``TransitionToPrimaryStorageClass``. See the example requests in the following section for more information.
54
54
  */
55
55
  LifecyclePolicies?: LifecyclePolicy[];
56
56
  /**
57
- * The Performance mode of the file system. We recommend ``generalPurpose`` performance mode for all file systems. File systems using the ``maxIO`` performance mode can scale to higher levels of aggregate throughput and operations per second with a tradeoff of slightly higher latencies for most file operations. The performance mode can't be changed after the file system has been created. The ``maxIO`` mode is not supported on One Zone file systems.
57
+ * The performance mode of the file system. We recommend ``generalPurpose`` performance mode for all file systems. File systems using the ``maxIO`` performance mode can scale to higher levels of aggregate throughput and operations per second with a tradeoff of slightly higher latencies for most file operations. The performance mode can't be changed after the file system has been created. The ``maxIO`` mode is not supported on One Zone file systems.
58
58
  Due to the higher per-operation latencies with Max I/O, we recommend using General Purpose performance mode for all file systems.
59
59
  Default is ``generalPurpose``.
60
60
  */
@@ -128,8 +128,8 @@ export type FileSystemProtection = {
128
128
  /**
129
129
  * Type definition for `AWS::EFS::FileSystem.LifecyclePolicy`.
130
130
  * Describes a policy used by Lifecycle management that specifies when to transition files into and out of the EFS storage classes. For more information, see [Managing file system storage](https://docs.aws.amazon.com/efs/latest/ug/lifecycle-management-efs.html).
131
- + Each ``LifecyclePolicy`` object can have only a single transition. This means that in a request body, ``LifecyclePolicies`` must be structured as an array of ``LifecyclePolicy`` objects, one object for each transition, ``TransitionToIA``, ``TransitionToArchive``, ``TransitionToPrimaryStorageClass``.
132
- + See the AWS::EFS::FileSystem examples for the correct ``LifecyclePolicy`` structure. Do not use the syntax shown on this page.
131
+ + Each ``LifecyclePolicy`` object can have only a single transition. This means that in a request body, ``LifecyclePolicies`` must be structured as an array of ``LifecyclePolicy`` objects, one object for each transition, ``TransitionToIA``, ``TransitionToArchive``, ``TransitionToPrimaryStorageClass``.
132
+ + See the AWS::EFS::FileSystem examples for the correct ``LifecyclePolicy`` structure. Do not use the syntax shown on this page.
133
133
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-efs-filesystem-lifecyclepolicy.html}
134
134
  */
135
135
  export type LifecyclePolicy = {
@@ -166,7 +166,7 @@ export type ReplicationConfiguration = {
166
166
  */
167
167
  export type ReplicationDestination = {
168
168
  /**
169
- * The AWS For One Zone file systems, the replication configuration must specify the Availability Zone in which the destination file system is located.
169
+ * For One Zone file systems, the replication configuration must specify the Availability Zone in which the destination file system is located.
170
170
  Use the format ``us-east-1a`` to specify the Availability Zone. For more information about One Zone file systems, see [EFS file system types](https://docs.aws.amazon.com/efs/latest/ug/storage-classes.html) in the *Amazon EFS User Guide*.
171
171
  One Zone file system type is not available in all Availability Zones in AWS-Regions where Amazon EFS is available.
172
172
  */
@@ -10,7 +10,7 @@ export type IAMOIDCProviderProperties = {
10
10
  /**
11
11
  * @maxLength `5`
12
12
  */
13
- ThumbprintList: string[];
13
+ ThumbprintList?: string[];
14
14
  /**
15
15
  * @minLength `1`
16
16
  * @maxLength `255`
@@ -104,6 +104,11 @@ export type SageMakerDomainAttributes = {
104
104
  */
105
105
  Url: string;
106
106
  };
107
+ /**
108
+ * Type definition for `AWS::SageMaker::Domain.AppType`.
109
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sagemaker-domain-apptype.html}
110
+ */
111
+ export type AppType = "JupyterServer" | "TensorBoard" | "RStudioServerPro" | "JupyterLab" | "CodeEditor" | "DetailedProfiler" | "Canvas";
107
112
  /**
108
113
  * Type definition for `AWS::SageMaker::Domain.CodeEditorAppSettings`.
109
114
  * The CodeEditor app settings.
@@ -371,6 +376,11 @@ export type KernelGatewayAppSettings = {
371
376
  */
372
377
  DefaultResourceSpec?: ResourceSpec;
373
378
  };
379
+ /**
380
+ * Type definition for `AWS::SageMaker::Domain.MlTools`.
381
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sagemaker-domain-mltools.html}
382
+ */
383
+ export type MlTools = "DataWrangler" | "FeatureStore" | "EmrClusters" | "AutoML" | "Experiments" | "Training" | "ModelEvaluation" | "Pipelines" | "Models" | "JumpStart" | "InferenceRecommender" | "Endpoints" | "Projects";
374
384
  /**
375
385
  * Type definition for `AWS::SageMaker::Domain.ResourceSpec`.
376
386
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sagemaker-domain-resourcespec.html}
@@ -476,6 +486,23 @@ export type SharingSettings = {
476
486
  */
477
487
  S3OutputPath?: string;
478
488
  };
489
+ /**
490
+ * Type definition for `AWS::SageMaker::Domain.StudioWebPortalSettings`.
491
+ * Studio settings. If these settings are applied on a user level, they take priority over the settings applied on a domain level.
492
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sagemaker-domain-studiowebportalsettings.html}
493
+ */
494
+ export type StudioWebPortalSettings = {
495
+ /**
496
+ * Applications supported in Studio that are hidden from the Studio left navigation pane.
497
+ * @minLength `0`
498
+ */
499
+ HiddenAppTypes?: AppType[];
500
+ /**
501
+ * The machine learning tools that are hidden from the Studio left navigation pane.
502
+ * @minLength `0`
503
+ */
504
+ HiddenMlTools?: MlTools[];
505
+ };
479
506
  /**
480
507
  * Type definition for `AWS::SageMaker::Domain.Tag`.
481
508
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sagemaker-domain-tag.html}
@@ -558,6 +585,10 @@ export type UserSettings = {
558
585
  * Indicates whether the Studio experience is available to users. If not, users cannot access Studio.
559
586
  */
560
587
  StudioWebPortal?: "ENABLED" | "DISABLED";
588
+ /**
589
+ * Studio settings. If these settings are applied on a user level, they take priority over the settings applied on a domain level.
590
+ */
591
+ StudioWebPortalSettings?: StudioWebPortalSettings;
561
592
  };
562
593
  /**
563
594
  * Resource Type definition for AWS::SageMaker::Domain
@@ -51,6 +51,11 @@ export type SageMakerUserProfileAttributes = {
51
51
  */
52
52
  UserProfileArn: string;
53
53
  };
54
+ /**
55
+ * Type definition for `AWS::SageMaker::UserProfile.AppType`.
56
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sagemaker-userprofile-apptype.html}
57
+ */
58
+ export type AppType = "JupyterServer" | "TensorBoard" | "RStudioServerPro" | "JupyterLab" | "CodeEditor" | "DetailedProfiler" | "Canvas";
54
59
  /**
55
60
  * Type definition for `AWS::SageMaker::UserProfile.CodeEditorAppSettings`.
56
61
  * The CodeEditor app settings.
@@ -235,6 +240,11 @@ export type KernelGatewayAppSettings = {
235
240
  */
236
241
  DefaultResourceSpec?: ResourceSpec;
237
242
  };
243
+ /**
244
+ * Type definition for `AWS::SageMaker::UserProfile.MlTools`.
245
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sagemaker-userprofile-mltools.html}
246
+ */
247
+ export type MlTools = "DataWrangler" | "FeatureStore" | "EmrClusters" | "AutoML" | "Experiments" | "Training" | "ModelEvaluation" | "Pipelines" | "Models" | "JumpStart" | "InferenceRecommender" | "Endpoints" | "Projects";
238
248
  /**
239
249
  * Type definition for `AWS::SageMaker::UserProfile.ResourceSpec`.
240
250
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sagemaker-userprofile-resourcespec.html}
@@ -295,6 +305,23 @@ export type SharingSettings = {
295
305
  */
296
306
  S3OutputPath?: string;
297
307
  };
308
+ /**
309
+ * Type definition for `AWS::SageMaker::UserProfile.StudioWebPortalSettings`.
310
+ * Studio settings. If these settings are applied on a user level, they take priority over the settings applied on a domain level.
311
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sagemaker-userprofile-studiowebportalsettings.html}
312
+ */
313
+ export type StudioWebPortalSettings = {
314
+ /**
315
+ * Applications supported in Studio that are hidden from the Studio left navigation pane.
316
+ * @minLength `0`
317
+ */
318
+ HiddenAppTypes?: AppType[];
319
+ /**
320
+ * The machine learning tools that are hidden from the Studio left navigation pane.
321
+ * @minLength `0`
322
+ */
323
+ HiddenMlTools?: MlTools[];
324
+ };
298
325
  /**
299
326
  * Type definition for `AWS::SageMaker::UserProfile.Tag`.
300
327
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sagemaker-userprofile-tag.html}
@@ -373,6 +400,10 @@ export type UserSettings = {
373
400
  * Indicates whether the Studio experience is available to users. If not, users cannot access Studio.
374
401
  */
375
402
  StudioWebPortal?: "ENABLED" | "DISABLED";
403
+ /**
404
+ * Studio settings. If these settings are applied on a user level, they take priority over the settings applied on a domain level.
405
+ */
406
+ StudioWebPortalSettings?: StudioWebPortalSettings;
376
407
  };
377
408
  /**
378
409
  * Resource Type definition for AWS::SageMaker::UserProfile
@@ -6,6 +6,7 @@ import type { ResourceOptions as $ResourceOptions } from "@awboost/cfn-template-
6
6
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-stepfunctions-activity.html}
7
7
  */
8
8
  export type StepFunctionsActivityProperties = {
9
+ EncryptionConfiguration?: EncryptionConfiguration;
9
10
  /**
10
11
  * @minLength `1`
11
12
  * @maxLength `80`
@@ -24,6 +25,23 @@ export type StepFunctionsActivityAttributes = {
24
25
  */
25
26
  Arn: string;
26
27
  };
28
+ /**
29
+ * Type definition for `AWS::StepFunctions::Activity.EncryptionConfiguration`.
30
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-stepfunctions-activity-encryptionconfiguration.html}
31
+ */
32
+ export type EncryptionConfiguration = {
33
+ /**
34
+ * @min `60`
35
+ * @max `900`
36
+ */
37
+ KmsDataKeyReusePeriodSeconds?: number;
38
+ /**
39
+ * @minLength `1`
40
+ * @maxLength `2048`
41
+ */
42
+ KmsKeyId?: string;
43
+ Type: "CUSTOMER_MANAGED_KMS_KEY" | "AWS_OWNED_KEY";
44
+ };
27
45
  /**
28
46
  * Type definition for `AWS::StepFunctions::Activity.TagsEntry`.
29
47
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-stepfunctions-activity-tagsentry.html}
@@ -14,6 +14,7 @@ export type StepFunctionsStateMachineProperties = {
14
14
  */
15
15
  DefinitionString?: string;
16
16
  DefinitionSubstitutions?: DefinitionSubstitutions;
17
+ EncryptionConfiguration?: EncryptionConfiguration;
17
18
  LoggingConfiguration?: LoggingConfiguration;
18
19
  /**
19
20
  * @minLength `1`
@@ -71,6 +72,23 @@ export type Definition = Record<string, any>;
71
72
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-stepfunctions-statemachine-definitionsubstitutions.html}
72
73
  */
73
74
  export type DefinitionSubstitutions = Record<string, string | number | boolean>;
75
+ /**
76
+ * Type definition for `AWS::StepFunctions::StateMachine.EncryptionConfiguration`.
77
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-stepfunctions-statemachine-encryptionconfiguration.html}
78
+ */
79
+ export type EncryptionConfiguration = {
80
+ /**
81
+ * @min `60`
82
+ * @max `900`
83
+ */
84
+ KmsDataKeyReusePeriodSeconds?: number;
85
+ /**
86
+ * @minLength `1`
87
+ * @maxLength `2048`
88
+ */
89
+ KmsKeyId?: string;
90
+ Type: "CUSTOMER_MANAGED_KMS_KEY" | "AWS_OWNED_KEY";
91
+ };
74
92
  /**
75
93
  * Type definition for `AWS::StepFunctions::StateMachine.LogDestination`.
76
94
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-stepfunctions-statemachine-logdestination.html}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@awboost/cfn-resource-types",
3
- "version": "0.1.109",
3
+ "version": "0.1.111",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },