@awboost/cfn-resource-types 0.1.240 → 0.1.241
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-Notifications-ManagedNotificationAccountContactAssociation.d.ts +34 -0
- package/lib/AWS-Notifications-ManagedNotificationAccountContactAssociation.js +13 -0
- package/lib/AWS-Notifications-ManagedNotificationAdditionalChannelAssociation.d.ts +29 -0
- package/lib/AWS-Notifications-ManagedNotificationAdditionalChannelAssociation.js +12 -0
- package/package.json +1 -1
|
@@ -0,0 +1,34 @@
|
|
|
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::Notifications::ManagedNotificationAccountContactAssociation`.
|
|
5
|
+
* This resource schema represents the ManagedNotificationAccountContactAssociation resource in the AWS User Notifications.
|
|
6
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-notifications-managednotificationaccountcontactassociation.html}
|
|
7
|
+
*/
|
|
8
|
+
export type NotificationsManagedNotificationAccountContactAssociationProperties = {
|
|
9
|
+
/**
|
|
10
|
+
* This unique identifier for Contact
|
|
11
|
+
*/
|
|
12
|
+
ContactIdentifier: ContactIdentifier;
|
|
13
|
+
/**
|
|
14
|
+
* The managed notification configuration ARN, against which the account contact association will be created
|
|
15
|
+
* @pattern `^arn:[-.a-z0-9]{1,63}:notifications::[0-9]{12}:managed-notification-configuration/category/[a-zA-Z0-9-]{3,64}/sub-category/[a-zA-Z0-9-]{3,64}$`
|
|
16
|
+
*/
|
|
17
|
+
ManagedNotificationConfigurationArn: string;
|
|
18
|
+
};
|
|
19
|
+
/**
|
|
20
|
+
* Type definition for `AWS::Notifications::ManagedNotificationAccountContactAssociation.ContactIdentifier`.
|
|
21
|
+
* This unique identifier for Contact
|
|
22
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-notifications-managednotificationaccountcontactassociation-contactidentifier.html}
|
|
23
|
+
*/
|
|
24
|
+
export type ContactIdentifier = "ACCOUNT_PRIMARY" | "ACCOUNT_ALTERNATE_SECURITY" | "ACCOUNT_ALTERNATE_OPERATIONS" | "ACCOUNT_ALTERNATE_BILLING";
|
|
25
|
+
/**
|
|
26
|
+
* Resource type definition for `AWS::Notifications::ManagedNotificationAccountContactAssociation`.
|
|
27
|
+
* This resource schema represents the ManagedNotificationAccountContactAssociation resource in the AWS User Notifications.
|
|
28
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-notifications-managednotificationaccountcontactassociation.html}
|
|
29
|
+
*/
|
|
30
|
+
export declare class NotificationsManagedNotificationAccountContactAssociation extends $Resource<"AWS::Notifications::ManagedNotificationAccountContactAssociation", NotificationsManagedNotificationAccountContactAssociationProperties, Record<string, never>> {
|
|
31
|
+
static readonly Type = "AWS::Notifications::ManagedNotificationAccountContactAssociation";
|
|
32
|
+
constructor(logicalId: string, properties: NotificationsManagedNotificationAccountContactAssociationProperties, options?: $ResourceOptions);
|
|
33
|
+
}
|
|
34
|
+
//# sourceMappingURL=AWS-Notifications-ManagedNotificationAccountContactAssociation.d.ts.map
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import { Resource as $Resource } from "@awboost/cfn-template-builder/template/resource";
|
|
2
|
+
/**
|
|
3
|
+
* Resource type definition for `AWS::Notifications::ManagedNotificationAccountContactAssociation`.
|
|
4
|
+
* This resource schema represents the ManagedNotificationAccountContactAssociation resource in the AWS User Notifications.
|
|
5
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-notifications-managednotificationaccountcontactassociation.html}
|
|
6
|
+
*/
|
|
7
|
+
export class NotificationsManagedNotificationAccountContactAssociation extends $Resource {
|
|
8
|
+
static Type = "AWS::Notifications::ManagedNotificationAccountContactAssociation";
|
|
9
|
+
constructor(logicalId, properties, options) {
|
|
10
|
+
super(logicalId, NotificationsManagedNotificationAccountContactAssociation.Type, properties, options);
|
|
11
|
+
}
|
|
12
|
+
}
|
|
13
|
+
//# sourceMappingURL=AWS-Notifications-ManagedNotificationAccountContactAssociation.js.map
|
|
@@ -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
|
+
* Definition of AWS::Notifications::ManagedNotificationAdditionalChannelAssociation Resource Type
|
|
5
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-notifications-managednotificationadditionalchannelassociation.html}
|
|
6
|
+
*/
|
|
7
|
+
export type NotificationsManagedNotificationAdditionalChannelAssociationProperties = {
|
|
8
|
+
/**
|
|
9
|
+
* ARN identifier of the channel.
|
|
10
|
+
Example: arn:aws:chatbot::123456789012:chat-configuration/slack-channel/security-ops
|
|
11
|
+
* @pattern `^arn:aws:(chatbot|consoleapp|notifications-contacts):[a-zA-Z0-9-]*:[0-9]{12}:[a-zA-Z0-9-_.@]+/[a-zA-Z0-9/_.@:-]+$`
|
|
12
|
+
*/
|
|
13
|
+
ChannelArn: string;
|
|
14
|
+
/**
|
|
15
|
+
* ARN identifier of the Managed Notification.
|
|
16
|
+
Example: arn:aws:notifications::381491923782:managed-notification-configuration/category/AWS-Health/sub-category/Billing
|
|
17
|
+
* @pattern `^arn:[-.a-z0-9]{1,63}:notifications::[0-9]{12}:managed-notification-configuration/category/[a-zA-Z0-9-]{3,64}/sub-category/[a-zA-Z0-9-]{3,64}$`
|
|
18
|
+
*/
|
|
19
|
+
ManagedNotificationConfigurationArn: string;
|
|
20
|
+
};
|
|
21
|
+
/**
|
|
22
|
+
* Definition of AWS::Notifications::ManagedNotificationAdditionalChannelAssociation Resource Type
|
|
23
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-notifications-managednotificationadditionalchannelassociation.html}
|
|
24
|
+
*/
|
|
25
|
+
export declare class NotificationsManagedNotificationAdditionalChannelAssociation extends $Resource<"AWS::Notifications::ManagedNotificationAdditionalChannelAssociation", NotificationsManagedNotificationAdditionalChannelAssociationProperties, Record<string, never>> {
|
|
26
|
+
static readonly Type = "AWS::Notifications::ManagedNotificationAdditionalChannelAssociation";
|
|
27
|
+
constructor(logicalId: string, properties: NotificationsManagedNotificationAdditionalChannelAssociationProperties, options?: $ResourceOptions);
|
|
28
|
+
}
|
|
29
|
+
//# sourceMappingURL=AWS-Notifications-ManagedNotificationAdditionalChannelAssociation.d.ts.map
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import { Resource as $Resource } from "@awboost/cfn-template-builder/template/resource";
|
|
2
|
+
/**
|
|
3
|
+
* Definition of AWS::Notifications::ManagedNotificationAdditionalChannelAssociation Resource Type
|
|
4
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-notifications-managednotificationadditionalchannelassociation.html}
|
|
5
|
+
*/
|
|
6
|
+
export class NotificationsManagedNotificationAdditionalChannelAssociation extends $Resource {
|
|
7
|
+
static Type = "AWS::Notifications::ManagedNotificationAdditionalChannelAssociation";
|
|
8
|
+
constructor(logicalId, properties, options) {
|
|
9
|
+
super(logicalId, NotificationsManagedNotificationAdditionalChannelAssociation.Type, properties, options);
|
|
10
|
+
}
|
|
11
|
+
}
|
|
12
|
+
//# sourceMappingURL=AWS-Notifications-ManagedNotificationAdditionalChannelAssociation.js.map
|