@awboost/cfn-resource-types 0.1.293 → 0.1.294

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.
@@ -161,7 +161,6 @@ export type AwsVpcConfiguration = {
161
161
  Consider the following when you set this value:
162
162
  + When you use ``create-service`` or ``update-service``, the default is ``DISABLED``.
163
163
  + When the service ``deploymentController`` is ``ECS``, the value must be ``DISABLED``.
164
- + When you use ``create-service`` or ``update-service``, the default is ``ENABLED``.
165
164
  */
166
165
  AssignPublicIp?: "DISABLED" | "ENABLED";
167
166
  /**
@@ -19,6 +19,10 @@ export type EKSClusterProperties = {
19
19
  */
20
20
  ComputeConfig?: ComputeConfig;
21
21
  EncryptionConfig?: EncryptionConfig[];
22
+ /**
23
+ * Force cluster version update
24
+ */
25
+ Force?: boolean;
22
26
  /**
23
27
  * The Kubernetes network configuration for the cluster.
24
28
  */
@@ -11,6 +11,10 @@ export type NetworkFirewallFirewallProperties = {
11
11
  * @pattern `^.*$`
12
12
  */
13
13
  Description?: string;
14
+ /**
15
+ * The types of analysis to enable for the firewall. Can be TLS_SNI, HTTP_HOST, or both.
16
+ */
17
+ EnabledAnalysisTypes?: EnabledAnalysisType[];
14
18
  /**
15
19
  * @minLength `1`
16
20
  * @maxLength `128`
@@ -58,6 +62,12 @@ export type NetworkFirewallFirewallAttributes = {
58
62
  */
59
63
  FirewallId: string;
60
64
  };
65
+ /**
66
+ * Type definition for `AWS::NetworkFirewall::Firewall.EnabledAnalysisType`.
67
+ * An analysis type.
68
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-networkfirewall-firewall-enabledanalysistype.html}
69
+ */
70
+ export type EnabledAnalysisType = "TLS_SNI" | "HTTP_HOST";
61
71
  /**
62
72
  * Type definition for `AWS::NetworkFirewall::Firewall.SubnetMapping`.
63
73
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-networkfirewall-firewall-subnetmapping.html}
@@ -1,10 +1,15 @@
1
1
  import { Resource as $Resource } from "@awboost/cfn-template-builder/template/resource";
2
2
  import type { ResourceOptions as $ResourceOptions } from "@awboost/cfn-template-builder/template";
3
3
  /**
4
- * Definition of AWS::Omics::SequenceStore Resource Type
4
+ * Resource Type definition for AWS::Omics::SequenceStore
5
5
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-omics-sequencestore.html}
6
6
  */
7
7
  export type OmicsSequenceStoreProperties = {
8
+ /**
9
+ * Location of the access logs.
10
+ * @pattern `^$|^s3://([a-z0-9][a-z0-9-.]{1,61}[a-z0-9])/?((.{1,800})/)?$`
11
+ */
12
+ AccessLogLocation?: string;
8
13
  /**
9
14
  * A description for the store.
10
15
  * @minLength `1`
@@ -12,10 +17,11 @@ export type OmicsSequenceStoreProperties = {
12
17
  * @pattern `^[\p{L}||\p{M}||\p{Z}||\p{S}||\p{N}||\p{P}]+$`
13
18
  */
14
19
  Description?: string;
20
+ ETagAlgorithmFamily?: ETagAlgorithmFamily;
15
21
  /**
16
- * An S3 URI representing the bucket and folder to store failed read set uploads.
17
- * @minLength `1`
18
- * @pattern `^s3:\/\/([a-z0-9][a-z0-9-.]{1,61}[a-z0-9])\/?((.{1,1024})\/)?$`
22
+ * An S3 location that is used to store files that have failed a direct upload.
23
+ * @minLength `0`
24
+ * @pattern `^$|^s3://([a-z0-9][a-z0-9-.]{1,61}[a-z0-9])/?((.{1,1024})/)?$`
19
25
  */
20
26
  FallbackLocation?: string;
21
27
  /**
@@ -25,6 +31,16 @@ export type OmicsSequenceStoreProperties = {
25
31
  * @pattern `^[\p{L}||\p{M}||\p{Z}||\p{S}||\p{N}||\p{P}]+$`
26
32
  */
27
33
  Name: string;
34
+ /**
35
+ * The tags keys to propagate to the S3 objects associated with read sets in the sequence store.
36
+ * @minLength `0`
37
+ * @maxLength `50`
38
+ */
39
+ PropagatedSetLevelTags?: string[];
40
+ /**
41
+ * The resource policy that controls S3 access on the store
42
+ */
43
+ S3AccessPolicy?: Record<string, any>;
28
44
  /**
29
45
  * Server-side encryption (SSE) settings for a store.
30
46
  */
@@ -47,18 +63,52 @@ export type OmicsSequenceStoreAttributes = {
47
63
  * When the store was created.
48
64
  */
49
65
  CreationTime: string;
66
+ /**
67
+ * This is ARN of the access point associated with the S3 bucket storing read sets.
68
+ * @minLength `1`
69
+ * @maxLength `1024`
70
+ * @pattern `^arn:[^:]*:s3:[^:]*:[^:]*:accesspoint/.*$`
71
+ */
72
+ S3AccessPointArn: string;
73
+ /**
74
+ * The S3 URI of the sequence store.
75
+ * @pattern `^s3://([a-z0-9][a-z0-9-.]{1,61}[a-z0-9])/(.{1,1024})$`
76
+ */
77
+ S3Uri: string;
50
78
  /**
51
79
  * @minLength `10`
52
80
  * @maxLength `36`
53
81
  * @pattern `^[0-9]+$`
54
82
  */
55
83
  SequenceStoreId: string;
84
+ Status: SequenceStoreStatus;
85
+ /**
86
+ * The status message of the sequence store.
87
+ * @minLength `1`
88
+ * @maxLength `127`
89
+ * @pattern `^[\p{L}||\p{M}||\p{Z}||\p{S}||\p{N}||\p{P}]+$`
90
+ */
91
+ StatusMessage: string;
92
+ /**
93
+ * The last-updated time of the sequence store.
94
+ */
95
+ UpdateTime: string;
56
96
  };
57
97
  /**
58
98
  * Type definition for `AWS::Omics::SequenceStore.EncryptionType`.
59
99
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-omics-sequencestore-encryptiontype.html}
60
100
  */
61
101
  export type EncryptionType = "KMS";
102
+ /**
103
+ * Type definition for `AWS::Omics::SequenceStore.ETagAlgorithmFamily`.
104
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-omics-sequencestore-etagalgorithmfamily.html}
105
+ */
106
+ export type ETagAlgorithmFamily = "MD5up" | "SHA256up" | "SHA512up";
107
+ /**
108
+ * Type definition for `AWS::Omics::SequenceStore.SequenceStoreStatus`.
109
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-omics-sequencestore-sequencestorestatus.html}
110
+ */
111
+ export type SequenceStoreStatus = "CREATING" | "ACTIVE" | "UPDATING" | "DELETING" | "FAILED";
62
112
  /**
63
113
  * Type definition for `AWS::Omics::SequenceStore.SseConfig`.
64
114
  * Server-side encryption (SSE) settings for a store.
@@ -84,7 +134,7 @@ export type SseConfig = {
84
134
  */
85
135
  export type TagMap = Record<string, string>;
86
136
  /**
87
- * Definition of AWS::Omics::SequenceStore Resource Type
137
+ * Resource Type definition for AWS::Omics::SequenceStore
88
138
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-omics-sequencestore.html}
89
139
  */
90
140
  export declare class OmicsSequenceStore extends $Resource<"AWS::Omics::SequenceStore", OmicsSequenceStoreProperties, OmicsSequenceStoreAttributes> {
@@ -1,6 +1,6 @@
1
1
  import { Resource as $Resource } from "@awboost/cfn-template-builder/template/resource";
2
2
  /**
3
- * Definition of AWS::Omics::SequenceStore Resource Type
3
+ * Resource Type definition for AWS::Omics::SequenceStore
4
4
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-omics-sequencestore.html}
5
5
  */
6
6
  export class OmicsSequenceStore extends $Resource {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@awboost/cfn-resource-types",
3
- "version": "0.1.293",
3
+ "version": "0.1.294",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },