@awboost/cfn-resource-types 0.1.110 → 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.
|
@@ -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
|
-
+
|
|
51
|
-
|
|
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
|
-
|
|
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
|
|
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
|
-
|
|
132
|
-
|
|
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
|
-
*
|
|
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
|
*/
|
|
@@ -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}
|