@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.
- package/lib/AWS-Budgets-Budget.d.ts +9 -0
- package/lib/AWS-Events-EventBus.d.ts +14 -0
- package/lib/AWS-Neptune-EventSubscription.d.ts +29 -0
- package/lib/AWS-Neptune-EventSubscription.js +12 -0
- package/lib/AWS-VpcLattice-Listener.d.ts +1 -1
- package/lib/AWS-VpcLattice-TargetGroup.d.ts +1 -1
- package/package.json +1 -1
|
@@ -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
|