@awboost/cfn-resource-types 0.1.207 → 0.1.208

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.
@@ -67,6 +67,7 @@ export type LustreConfiguration = {
67
67
  DataCompressionType?: string;
68
68
  DeploymentType?: string;
69
69
  DriveCacheType?: string;
70
+ EfaEnabled?: boolean;
70
71
  ExportPath?: string;
71
72
  ImportPath?: string;
72
73
  ImportedFileChunkSize?: number;
@@ -121,11 +122,20 @@ export type OpenZFSConfiguration = {
121
122
  EndpointIpAddressRange?: string;
122
123
  Options?: string[];
123
124
  PreferredSubnetId?: string;
125
+ ReadCacheConfiguration?: ReadCacheConfiguration;
124
126
  RootVolumeConfiguration?: RootVolumeConfiguration;
125
127
  RouteTableIds?: string[];
126
128
  ThroughputCapacity?: number;
127
129
  WeeklyMaintenanceStartTime?: string;
128
130
  };
131
+ /**
132
+ * Type definition for `AWS::FSx::FileSystem.ReadCacheConfiguration`.
133
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-fsx-filesystem-readcacheconfiguration.html}
134
+ */
135
+ export type ReadCacheConfiguration = {
136
+ SizeGiB?: number;
137
+ SizingMode?: string;
138
+ };
129
139
  /**
130
140
  * Type definition for `AWS::FSx::FileSystem.RootVolumeConfiguration`.
131
141
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-fsx-filesystem-rootvolumeconfiguration.html}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@awboost/cfn-resource-types",
3
- "version": "0.1.207",
3
+ "version": "0.1.208",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },