@awboost/cfn-resource-types 0.1.459 → 0.1.460

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.
@@ -0,0 +1,66 @@
1
+ import { Resource as $Resource } from "@awboost/cfn-template-builder/template/resource";
2
+ import type { ResourceOptions as $ResourceOptions } from "@awboost/cfn-template-builder/template";
3
+ /**
4
+ * Resource Type definition for AWS::EC2::CapacityManagerDataExport
5
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-capacitymanagerdataexport.html}
6
+ */
7
+ export type EC2CapacityManagerDataExportProperties = {
8
+ /**
9
+ * The format of the exported capacity manager data. Choose 'csv' for comma-separated values or 'parquet' for optimized columnar storage format.
10
+ */
11
+ OutputFormat: "csv" | "parquet";
12
+ /**
13
+ * The name of the Amazon S3 bucket where the capacity manager data export will be stored. The bucket must exist and be accessible by EC2 Capacity Manager service.
14
+ */
15
+ S3BucketName: string;
16
+ /**
17
+ * The prefix for the S3 bucket location where exported files will be placed. If not specified, files will be placed in the root of the bucket.
18
+ */
19
+ S3BucketPrefix?: string;
20
+ /**
21
+ * The schedule for the capacity manager data export. Currently supports hourly exports that provide periodic snapshots of capacity manager data.
22
+ */
23
+ Schedule: "hourly";
24
+ /**
25
+ * An array of key-value pairs to apply to the capacity manager data export.
26
+ */
27
+ Tags?: Tag[];
28
+ };
29
+ /**
30
+ * Attribute type definition for `AWS::EC2::CapacityManagerDataExport`.
31
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-capacitymanagerdataexport.html#aws-resource-ec2-capacitymanagerdataexport-return-values}
32
+ */
33
+ export type EC2CapacityManagerDataExportAttributes = {
34
+ /**
35
+ * The unique identifier of the capacity manager data export.
36
+ */
37
+ CapacityManagerDataExportId: string;
38
+ };
39
+ /**
40
+ * Type definition for `AWS::EC2::CapacityManagerDataExport.Tag`.
41
+ * A key-value pair to associate with a resource.
42
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-capacitymanagerdataexport-tag.html}
43
+ */
44
+ export type Tag = {
45
+ /**
46
+ * The key name of the tag. You can specify a value that is 1 to 128 Unicode characters in length and cannot be prefixed with aws:. You can use any of the following characters: the set of Unicode letters, digits, whitespace, _, ., /, =, +, and -.
47
+ * @minLength `1`
48
+ * @maxLength `128`
49
+ */
50
+ Key: string;
51
+ /**
52
+ * The value for the tag. You can specify a value that is 0 to 256 Unicode characters in length and cannot be prefixed with aws:. You can use any of the following characters: the set of Unicode letters, digits, whitespace, _, ., /, =, +, and -.
53
+ * @minLength `0`
54
+ * @maxLength `256`
55
+ */
56
+ Value: string;
57
+ };
58
+ /**
59
+ * Resource Type definition for AWS::EC2::CapacityManagerDataExport
60
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-capacitymanagerdataexport.html}
61
+ */
62
+ export declare class EC2CapacityManagerDataExport extends $Resource<"AWS::EC2::CapacityManagerDataExport", EC2CapacityManagerDataExportProperties, EC2CapacityManagerDataExportAttributes> {
63
+ static readonly Type = "AWS::EC2::CapacityManagerDataExport";
64
+ constructor(logicalId: string, properties: EC2CapacityManagerDataExportProperties, options?: $ResourceOptions);
65
+ }
66
+ //# sourceMappingURL=AWS-EC2-CapacityManagerDataExport.d.ts.map
@@ -0,0 +1,12 @@
1
+ import { Resource as $Resource } from "@awboost/cfn-template-builder/template/resource";
2
+ /**
3
+ * Resource Type definition for AWS::EC2::CapacityManagerDataExport
4
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-capacitymanagerdataexport.html}
5
+ */
6
+ export class EC2CapacityManagerDataExport extends $Resource {
7
+ static Type = "AWS::EC2::CapacityManagerDataExport";
8
+ constructor(logicalId, properties, options) {
9
+ super(logicalId, EC2CapacityManagerDataExport.Type, properties, options);
10
+ }
11
+ }
12
+ //# sourceMappingURL=AWS-EC2-CapacityManagerDataExport.js.map
@@ -63,10 +63,6 @@ export type NetworkManagerConnectAttachmentAttributes = {
63
63
  * Creation time of the attachment.
64
64
  */
65
65
  CreatedAt: string;
66
- /**
67
- * Errors from the last modification of the attachment.
68
- */
69
- LastModificationErrors: string[];
70
66
  /**
71
67
  * The ID of the attachment account owner.
72
68
  */
@@ -55,10 +55,6 @@ export type NetworkManagerDirectConnectGatewayAttachmentAttributes = {
55
55
  * Creation time of the attachment.
56
56
  */
57
57
  CreatedAt: string;
58
- /**
59
- * Errors from the last modification of the attachment.
60
- */
61
- LastModificationErrors: string[];
62
58
  /**
63
59
  * The name of the network function group attachment.
64
60
  */
@@ -59,10 +59,6 @@ export type NetworkManagerSiteToSiteVpnAttachmentAttributes = {
59
59
  * The Region where the edge is located.
60
60
  */
61
61
  EdgeLocation: string;
62
- /**
63
- * Errors from the last modification of the attachment.
64
- */
65
- LastModificationErrors: string[];
66
62
  /**
67
63
  * Owner account of the attachment.
68
64
  */
@@ -35,10 +35,6 @@ export type NetworkManagerTransitGatewayPeeringAttributes = {
35
35
  * The location of the transit gateway peering
36
36
  */
37
37
  EdgeLocation: string;
38
- /**
39
- * Errors from the last modification of the transit gateway peering.
40
- */
41
- LastModificationErrors: string[];
42
38
  /**
43
39
  * Peering owner account Id
44
40
  */
@@ -63,10 +63,6 @@ export type NetworkManagerVpcAttachmentAttributes = {
63
63
  * The Region where the edge is located.
64
64
  */
65
65
  EdgeLocation: string;
66
- /**
67
- * Errors from the last modification of the attachment.
68
- */
69
- LastModificationErrors: string[];
70
66
  /**
71
67
  * The name of the network function group attachment.
72
68
  */
@@ -59,6 +59,10 @@ export type OrganizationsAccountAttributes = {
59
59
  * The date the account became a part of the organization.
60
60
  */
61
61
  JoinedTimestamp: string;
62
+ /**
63
+ * The state of the account in the organization.
64
+ */
65
+ State: "PENDING_ACTIVATION" | "ACTIVE" | "SUSPENDED" | "PENDING_CLOSURE" | "CLOSED";
62
66
  /**
63
67
  * The status of the account in the organization.
64
68
  */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@awboost/cfn-resource-types",
3
- "version": "0.1.459",
3
+ "version": "0.1.460",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },