CreateNotificationRequest

public struct CreateNotificationRequest : AWSShape

Undocumented

  • Declaration

    Swift

    public static var _members: [AWSShapeMember]
  • The accountId that is associated with the budget that you want to create a notification for.

    Declaration

    Swift

    public let accountId: String
  • The name of the budget that you want AWS to notify you about. Budget names must be unique within an account.

    Declaration

    Swift

    public let budgetName: String
  • The notification that you want to create.

    Declaration

    Swift

    public let notification: Notification
  • A list of subscribers that you want to associate with the notification. Each notification can have one SNS subscriber and up to 10 email subscribers.

    Declaration

    Swift

    public let subscribers: [Subscriber]
  • Undocumented

    Declaration

    Swift

    public init(accountId: String, budgetName: String, notification: Notification, subscribers: [Subscriber])
  • Declaration

    Swift

    public func validate(name: String) throws