@pulumi/aws-native
Version:
The Pulumi AWS Cloud Control Provider enables you to build, deploy, and manage [any AWS resource that's supported by the AWS Cloud Control API](https://github.com/pulumi/pulumi-aws-native/blob/master/provider/cmd/pulumi-gen-aws-native/supported-types.txt)
17 lines (16 loc) • 963 B
TypeScript
export declare const NotificationRuleDetailType: {
readonly Basic: "BASIC";
readonly Full: "FULL";
};
/**
* The level of detail to include in the notifications for this resource. `BASIC` will include only the contents of the event as it would appear in Amazon CloudWatch. `FULL` will include any supplemental information provided by AWS CodeStar Notifications and/or the service for the resource for which the notification is created.
*/
export type NotificationRuleDetailType = (typeof NotificationRuleDetailType)[keyof typeof NotificationRuleDetailType];
export declare const NotificationRuleStatus: {
readonly Enabled: "ENABLED";
readonly Disabled: "DISABLED";
};
/**
* The status of the notification rule. The default value is `ENABLED` . If the status is set to `DISABLED` , notifications aren't sent for the notification rule.
*/
export type NotificationRuleStatus = (typeof NotificationRuleStatus)[keyof typeof NotificationRuleStatus];