Show / Hide Table of Contents

Interface CfnMaintenanceWindowTask.INotificationConfigProperty

The NotificationConfig property type specifies configurations for sending notifications for a maintenance window task in AWS Systems Manager .

Namespace: Amazon.CDK.AWS.SSM
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public interface CfnMaintenanceWindowTask.INotificationConfigProperty
Syntax (vb)
Public Interface CfnMaintenanceWindowTask.INotificationConfigProperty
Remarks

NotificationConfig is a property of the MaintenanceWindowRunCommandParameters property type.

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ssm-maintenancewindowtask-notificationconfig.html

ExampleMetadata: fixture=_generated

Examples
// The code below shows an example of how to instantiate this type.
             // The values are placeholders you should change.
             using Amazon.CDK.AWS.SSM;

             var notificationConfigProperty = new NotificationConfigProperty {
                 NotificationArn = "notificationArn",

                 // the properties below are optional
                 NotificationEvents = new [] { "notificationEvents" },
                 NotificationType = "notificationType"
             };

Synopsis

Properties

NotificationArn

An Amazon Resource Name (ARN) for an Amazon Simple Notification Service (Amazon SNS) topic.

NotificationEvents

The different events that you can receive notifications for.

NotificationType

The notification type.

Properties

NotificationArn

An Amazon Resource Name (ARN) for an Amazon Simple Notification Service (Amazon SNS) topic.

string NotificationArn { get; }
Property Value

string

Remarks

Run Command pushes notifications about command status changes to this topic.

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ssm-maintenancewindowtask-notificationconfig.html#cfn-ssm-maintenancewindowtask-notificationconfig-notificationarn

NotificationEvents

The different events that you can receive notifications for.

string[]? NotificationEvents { get; }
Property Value

string[]

Remarks

These events include the following: All (events), InProgress , Success , TimedOut , Cancelled , Failed . To learn more about these events, see Configuring Amazon SNS Notifications for AWS Systems Manager in the AWS Systems Manager User Guide .

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ssm-maintenancewindowtask-notificationconfig.html#cfn-ssm-maintenancewindowtask-notificationconfig-notificationevents

NotificationType

The notification type.

string? NotificationType { get; }
Property Value

string

Remarks

    See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ssm-maintenancewindowtask-notificationconfig.html#cfn-ssm-maintenancewindowtask-notificationconfig-notificationtype

    Back to top Generated by DocFX