@awboost/cfn-resource-types 0.1.434 → 0.1.436

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.
@@ -38,7 +38,7 @@ export type BedrockAgentCoreBrowserCustomProperties = {
38
38
  export type BedrockAgentCoreBrowserCustomAttributes = {
39
39
  /**
40
40
  * The ARN of a Browser resource.
41
- * @pattern `^arn:(-[^:]+)?:bedrock-agentcore:[a-z0-9-]+:(aws|[0-9]{12}):browser(-custom)?/(aws\.browser\.v1|[a-zA-Z][a-zA-Z0-9_]{0,47}-[a-zA-Z0-9]{10})$`
41
+ * @pattern `^arn:aws(-[^:]+)?:bedrock-agentcore:[a-z0-9-]+:(aws|[0-9]{12}):browser(-custom)?\/(aws\.browser\.v1|[a-zA-Z][a-zA-Z0-9_]{0,47}-[a-zA-Z0-9]{10})$`
42
42
  */
43
43
  BrowserArn: string;
44
44
  /**
@@ -34,7 +34,7 @@ export type BedrockAgentCoreCodeInterpreterCustomProperties = {
34
34
  export type BedrockAgentCoreCodeInterpreterCustomAttributes = {
35
35
  /**
36
36
  * The ARN of a CodeInterpreter resource.
37
- * @pattern `^arn:(-[^:]+)?:bedrock-agentcore:[a-z0-9-]+:(aws|[0-9]{12}):code-interpreter(-custom)?/(aws\.codeinterpreter\.v1|[a-zA-Z][a-zA-Z0-9_]{0,47}-[a-zA-Z0-9]{10})$`
37
+ * @pattern `^arn:aws(-[^:]+)?:bedrock-agentcore:[a-z0-9-]+:(aws|[0-9]{12}):code-interpreter(-custom)?\/(aws\.codeinterpreter\.v1|[a-zA-Z][a-zA-Z0-9_]{0,47}-[a-zA-Z0-9]{10})$`
38
38
  */
39
39
  CodeInterpreterArn: string;
40
40
  /**
@@ -26,7 +26,7 @@ export type LambdaFunctionProperties = {
26
26
  Code: Code;
27
27
  /**
28
28
  * To enable code signing for this function, specify the ARN of a code-signing configuration. A code-signing configuration includes a set of signing profiles, which define the trusted publishers for this function.
29
- * @pattern `arn:(aws[a-zA-Z-]*)?:lambda:[a-z]{2}((-gov)|(-iso([a-z]?)))?-[a-z]+-\d{1}:\d{12}:code-signing-config:csc-[a-z0-9]{17}`
29
+ * @pattern `arn:(aws[a-zA-Z-]*)?:lambda:(eusc-)?[a-z]{2}((-gov)|(-iso([a-z]?)))?-[a-z]+-\d{1}:\d{12}:code-signing-config:csc-[a-z0-9]{17}`
30
30
  */
31
31
  CodeSigningConfigArn?: string;
32
32
  /**
@@ -254,7 +254,7 @@ export type FileSystemConfig = {
254
254
  /**
255
255
  * The Amazon Resource Name (ARN) of the Amazon EFS access point that provides access to the file system.
256
256
  * @maxLength `200`
257
- * @pattern `^arn:aws[a-zA-Z-]*:elasticfilesystem:[a-z]{2}((-gov)|(-iso([a-z]?)))?-[a-z]+-\d{1}:\d{12}:access-point/fsap-[a-f0-9]{17}$`
257
+ * @pattern `^arn:aws[a-zA-Z-]*:elasticfilesystem:(eusc-)?[a-z]{2}((-gov)|(-iso([a-z]?)))?-[a-z]+-\d{1}:\d{12}:access-point/fsap-[a-f0-9]{17}$`
258
258
  */
259
259
  Arn: string;
260
260
  /**
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@awboost/cfn-resource-types",
3
- "version": "0.1.434",
3
+ "version": "0.1.436",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },