@awboost/cfn-resource-types 0.1.499 → 0.1.500

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.
@@ -103,7 +103,7 @@ export type ArcRoutingControlState = {
103
103
  */
104
104
  export type Asg = {
105
105
  /**
106
- * @pattern `^arn:aws:autoscaling:[a-z0-9-]+:\d{12}:autoScalingGroup:[0-9a-f]{8}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{12}:autoScalingGroupName/[\S\s]{1,255}$`
106
+ * @pattern `^arn:aws[a-zA-Z-]*:autoscaling:[a-z0-9-]+:\d{12}:autoScalingGroup:[0-9a-f]{8}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{12}:autoScalingGroupName/[\S\s]{1,255}$`
107
107
  */
108
108
  Arn?: string;
109
109
  /**
@@ -475,7 +475,7 @@ export type RoutingControlStateChange = "On" | "Off";
475
475
  */
476
476
  export type Service = {
477
477
  /**
478
- * @pattern `^arn:aws:ecs:[a-z0-9-]+:\d{12}:cluster/[a-zA-Z0-9_-]{1,255}$`
478
+ * @pattern `^arn:aws[a-zA-Z-]*:ecs:[a-z0-9-]+:\d{12}:cluster/[a-zA-Z0-9_-]{1,255}$`
479
479
  */
480
480
  ClusterArn?: string;
481
481
  /**
@@ -484,7 +484,7 @@ export type Service = {
484
484
  CrossAccountRole?: string;
485
485
  ExternalId?: string;
486
486
  /**
487
- * @pattern `^arn:aws:ecs:[a-z0-9-]+:\d{12}:service/[a-zA-Z0-9_-]+/[a-zA-Z0-9_-]{1,255}$`
487
+ * @pattern `^arn:aws[a-zA-Z-]*:ecs:[a-z0-9-]+:\d{12}:service/[a-zA-Z0-9_-]+/[a-zA-Z0-9_-]{1,255}$`
488
488
  */
489
489
  ServiceArn?: string;
490
490
  };
@@ -35,6 +35,10 @@ export type Route53ProfilesProfileAttributes = {
35
35
  * The ID of the profile.
36
36
  */
37
37
  Id: string;
38
+ /**
39
+ * The sharing status of the profile.
40
+ */
41
+ ShareStatus: "NOT_SHARED" | "SHARED_WITH_ME" | "SHARED_BY_ME";
38
42
  };
39
43
  /**
40
44
  * Type definition for `AWS::Route53Profiles::Profile.Tag`.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@awboost/cfn-resource-types",
3
- "version": "0.1.499",
3
+ "version": "0.1.500",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },