UpdateNotificationRuleRequest

public struct UpdateNotificationRuleRequest : AWSShape

Undocumented

  • Declaration

    Swift

    public static var _members: [AWSShapeMember]
  • arn

    The Amazon Resource Name (ARN) of the notification rule.

    Declaration

    Swift

    public let arn: String
  • 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 AWS 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.

    Declaration

    Swift

    public let detailType: DetailType?
  • A list of event types associated with this notification rule.

    Declaration

    Swift

    public let eventTypeIds: [String]?
  • The name of the notification rule.

    Declaration

    Swift

    public let name: String?
  • The status of the notification rule. Valid statuses include enabled (sending notifications) or disabled (not sending notifications).

    Declaration

    Swift

    public let status: NotificationRuleStatus?
  • The address and type of the targets to receive notifications from this notification rule.

    Declaration

    Swift

    public let targets: [Target]?
  • Undocumented

    Declaration

    Swift

    public init(arn: String, detailType: DetailType? = nil, eventTypeIds: [String]? = nil, name: String? = nil, status: NotificationRuleStatus? = nil, targets: [Target]? = nil)
  • Declaration

    Swift

    public func validate(name: String) throws