@awboost/cfn-resource-types 0.1.477 → 0.1.478

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.
@@ -75,6 +75,27 @@ export type ImageBuilderContainerRecipeAttributes = {
75
75
  * The Amazon Resource Name (ARN) of the container recipe.
76
76
  */
77
77
  Arn: string;
78
+ /**
79
+ * The latest version references of the container recipe.
80
+ */
81
+ LatestVersion: {
82
+ /**
83
+ * The latest version ARN of the created container recipe.
84
+ */
85
+ Arn: string;
86
+ /**
87
+ * The latest version ARN of the created container recipe, with the same major version.
88
+ */
89
+ Major: string;
90
+ /**
91
+ * The latest version ARN of the created container recipe, with the same minor version.
92
+ */
93
+ Minor: string;
94
+ /**
95
+ * The latest version ARN of the created container recipe, with the same patch version.
96
+ */
97
+ Patch: string;
98
+ };
78
99
  };
79
100
  /**
80
101
  * Type definition for `AWS::ImageBuilder::ContainerRecipe.ComponentConfiguration`.
@@ -55,6 +55,27 @@ export type ImageBuilderImageRecipeAttributes = {
55
55
  * The Amazon Resource Name (ARN) of the image recipe.
56
56
  */
57
57
  Arn: string;
58
+ /**
59
+ * The latest version references of the image recipe.
60
+ */
61
+ LatestVersion: {
62
+ /**
63
+ * The latest version ARN of the created image recipe.
64
+ */
65
+ Arn: string;
66
+ /**
67
+ * The latest version ARN of the created image recipe, with the same major version.
68
+ */
69
+ Major: string;
70
+ /**
71
+ * The latest version ARN of the created image recipe, with the same minor version.
72
+ */
73
+ Minor: string;
74
+ /**
75
+ * The latest version ARN of the created image recipe, with the same patch version.
76
+ */
77
+ Patch: string;
78
+ };
58
79
  };
59
80
  /**
60
81
  * Type definition for `AWS::ImageBuilder::ImageRecipe.AdditionalInstanceConfiguration`.
@@ -32,9 +32,9 @@ export type OrganizationsPolicyProperties = {
32
32
  */
33
33
  TargetIds?: string[];
34
34
  /**
35
- * The type of policy to create. You can specify one of the following values: AISERVICES_OPT_OUT_POLICY, BACKUP_POLICY, SERVICE_CONTROL_POLICY, TAG_POLICY, CHATBOT_POLICY, RESOURCE_CONTROL_POLICY,DECLARATIVE_POLICY_EC2, SECURITYHUB_POLICY
35
+ * The type of policy to create. You can specify one of the following values: AISERVICES_OPT_OUT_POLICY, BACKUP_POLICY, SERVICE_CONTROL_POLICY, TAG_POLICY, CHATBOT_POLICY, RESOURCE_CONTROL_POLICY,DECLARATIVE_POLICY_EC2, SECURITYHUB_POLICY, S3_POLICY, INSPECTOR_POLICY, BEDROCK_POLICY, NETWORK_SECURITY_DIRECTOR_POLICY, UPGRADE_ROLLOUT_POLICY
36
36
  */
37
- Type: "SERVICE_CONTROL_POLICY" | "AISERVICES_OPT_OUT_POLICY" | "BACKUP_POLICY" | "TAG_POLICY" | "CHATBOT_POLICY" | "RESOURCE_CONTROL_POLICY" | "DECLARATIVE_POLICY_EC2" | "SECURITYHUB_POLICY";
37
+ Type: "SERVICE_CONTROL_POLICY" | "AISERVICES_OPT_OUT_POLICY" | "BACKUP_POLICY" | "TAG_POLICY" | "CHATBOT_POLICY" | "RESOURCE_CONTROL_POLICY" | "DECLARATIVE_POLICY_EC2" | "SECURITYHUB_POLICY" | "S3_POLICY" | "INSPECTOR_POLICY" | "BEDROCK_POLICY" | "NETWORK_SECURITY_DIRECTOR_POLICY" | "UPGRADE_ROLLOUT_POLICY";
38
38
  };
39
39
  /**
40
40
  * Attribute type definition for `AWS::Organizations::Policy`.
@@ -347,7 +347,7 @@ export type DefaultRetention = {
347
347
  */
348
348
  export type DeleteMarkerReplication = {
349
349
  /**
350
- * Indicates whether to replicate delete markers. Disabled by default.
350
+ * Indicates whether to replicate delete markers.
351
351
  */
352
352
  Status?: "Disabled" | "Enabled";
353
353
  };
@@ -1427,7 +1427,10 @@ export type Transition = {
1427
1427
  /**
1428
1428
  * Type definition for `AWS::S3::Bucket.VersioningConfiguration`.
1429
1429
  * Describes the versioning state of an Amazon S3 bucket. For more information, see [PUT Bucket versioning](https://docs.aws.amazon.com/AmazonS3/latest/API/RESTBucketPUTVersioningStatus.html) in the *Amazon S3 API Reference*.
1430
- When you enable versioning on a bucket for the first time, it might take a short amount of time for the change to be fully propagated. We recommend that you wait for 15 minutes after enabling versioning before issuing write operations (``PUT`` or ``DELETE``) on objects in the bucket.
1430
+ Keep the following timing in mind when enabling, suspending, or transitioning between versioning states:
1431
+ + *Enabling versioning* - Changes may take up to 15 minutes to propagate across all AWS regions for full consistency.
1432
+ + *Suspending versioning* - Takes effect immediately with no propagation delay.
1433
+ + *Transitioning between states* - Any change from Suspended to Enabled has a 15-minute delay.
1431
1434
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-bucket-versioningconfiguration.html}
1432
1435
  */
1433
1436
  export type VersioningConfiguration = {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@awboost/cfn-resource-types",
3
- "version": "0.1.477",
3
+ "version": "0.1.478",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },