@awboost/cfn-resource-types 0.1.75 → 0.1.77

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.
@@ -7,6 +7,7 @@ import type { ResourceOptions as $ResourceOptions } from "@awboost/cfn-template-
7
7
  export type BudgetsBudgetProperties = {
8
8
  Budget: BudgetData;
9
9
  NotificationsWithSubscribers?: NotificationWithSubscribers[];
10
+ ResourceTags?: ResourceTag[];
10
11
  };
11
12
  /**
12
13
  * Attribute type definition for `AWS::Budgets::Budget`.
@@ -80,6 +81,14 @@ export type NotificationWithSubscribers = {
80
81
  Notification: Notification;
81
82
  Subscribers: Subscriber[];
82
83
  };
84
+ /**
85
+ * Type definition for `AWS::Budgets::Budget.ResourceTag`.
86
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-budgets-budget-resourcetag.html}
87
+ */
88
+ export type ResourceTag = {
89
+ Key: string;
90
+ Value?: string;
91
+ };
83
92
  /**
84
93
  * Type definition for `AWS::Budgets::Budget.Spend`.
85
94
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-budgets-budget-spend.html}
@@ -5,10 +5,24 @@ import type { ResourceOptions as $ResourceOptions } from "@awboost/cfn-template-
5
5
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-events-eventbus.html}
6
6
  */
7
7
  export type EventsEventBusProperties = {
8
+ /**
9
+ * Dead Letter Queue for the event bus.
10
+ */
11
+ DeadLetterConfig?: {
12
+ Arn?: string;
13
+ };
14
+ /**
15
+ * The description of the event bus.
16
+ */
17
+ Description?: string;
8
18
  /**
9
19
  * If you are creating a partner event bus, this specifies the partner event source that the new event bus will be matched with.
10
20
  */
11
21
  EventSourceName?: string;
22
+ /**
23
+ * Kms Key Identifier used to encrypt events at rest in the event bus.
24
+ */
25
+ KmsKeyIdentifier?: string;
12
26
  /**
13
27
  * The name of the event bus.
14
28
  */
@@ -0,0 +1,29 @@
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::Neptune::EventSubscription
5
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-neptune-eventsubscription.html}
6
+ */
7
+ export type NeptuneEventSubscriptionProperties = {
8
+ Enabled?: boolean;
9
+ EventCategories?: string[];
10
+ SnsTopicArn?: string;
11
+ SourceIds?: string[];
12
+ SourceType?: string;
13
+ };
14
+ /**
15
+ * Attribute type definition for `AWS::Neptune::EventSubscription`.
16
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-neptune-eventsubscription.html#aws-resource-neptune-eventsubscription-return-values}
17
+ */
18
+ export type NeptuneEventSubscriptionAttributes = {
19
+ Id: string;
20
+ };
21
+ /**
22
+ * Resource Type definition for AWS::Neptune::EventSubscription
23
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-neptune-eventsubscription.html}
24
+ */
25
+ export declare class NeptuneEventSubscription extends $Resource<"AWS::Neptune::EventSubscription", NeptuneEventSubscriptionProperties, NeptuneEventSubscriptionAttributes> {
26
+ static readonly Type = "AWS::Neptune::EventSubscription";
27
+ constructor(logicalId: string, properties: NeptuneEventSubscriptionProperties, options?: $ResourceOptions);
28
+ }
29
+ //# sourceMappingURL=AWS-Neptune-EventSubscription.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::Neptune::EventSubscription
4
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-neptune-eventsubscription.html}
5
+ */
6
+ export class NeptuneEventSubscription extends $Resource {
7
+ static Type = "AWS::Neptune::EventSubscription";
8
+ constructor(logicalId, properties, options) {
9
+ super(logicalId, NeptuneEventSubscription.Type, properties, options);
10
+ }
11
+ }
12
+ //# sourceMappingURL=AWS-Neptune-EventSubscription.js.map
@@ -18,7 +18,7 @@ export type VpcLatticeListenerProperties = {
18
18
  * @max `65535`
19
19
  */
20
20
  Port?: number;
21
- Protocol: "HTTP" | "HTTPS";
21
+ Protocol: "HTTP" | "HTTPS" | "TLS_PASSTHROUGH";
22
22
  /**
23
23
  * @minLength `21`
24
24
  * @maxLength `2048`
@@ -140,7 +140,7 @@ export type TargetGroupConfig = {
140
140
  * @max `65535`
141
141
  */
142
142
  Port?: number;
143
- Protocol?: "HTTP" | "HTTPS";
143
+ Protocol?: "HTTP" | "HTTPS" | "TCP";
144
144
  ProtocolVersion?: "HTTP1" | "HTTP2" | "GRPC";
145
145
  /**
146
146
  * @minLength `5`
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@awboost/cfn-resource-types",
3
- "version": "0.1.75",
3
+ "version": "0.1.77",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },