Module Values.PutBackupVaultNotificationsInputSource

Turns on notifications on a backup vault for the specified topic and events.

Sourcetype nonrec t = {
  1. backupVaultName : BackupVaultName.t;
    (*

    The name of a logical container where backups are stored. Backup vaults are identified by names that are unique to the account used to create them and the Amazon Web Services Region where they are created.

    *)
  2. sNSTopicArn : ARN.t;
    (*

    The Amazon Resource Name (ARN) that specifies the topic for a backup vault’s events; for example, arn:aws:sns:us-west-2:111122223333:MyVaultTopic.

    *)
  3. backupVaultEvents : BackupVaultEvents.t;
    (*

    An array of events that indicate the status of jobs to back up resources to the backup vault. For the list of supported events, common use cases, and code samples, see Notification options with Backup.

    *)
}
Sourceval context_ : string
Sourceval make : backupVaultName:BackupVaultName.t -> sNSTopicArn:ARN.t -> backupVaultEvents:BackupVaultEvents.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `List of [> `Enum of string ] list | `String of BackupVaultName.t ]) list ]
Sourceval to_query : t -> Awso.Client.Query.t
Sourceval of_xml : Awso.Xml.t -> t
Sourceval of_string : string -> t
Sourceval of_json : Yojson.Safe.t -> t
Sourceval to_json : t -> Yojson.Safe.t