Module Values.AuthorizeSnapshotAccessMessageSource

Sourcetype nonrec t = {
  1. snapshotIdentifier : String_.t option;
    (*

    The identifier of the snapshot the account is authorized to restore.

    *)
  2. snapshotArn : String_.t option;
    (*

    The Amazon Resource Name (ARN) of the snapshot to authorize access to.

    *)
  3. snapshotClusterIdentifier : String_.t option;
    (*

    The identifier of the cluster the snapshot was created from. If the snapshot to access doesn't exist and the associated IAM policy doesn't allow access to all (*) snapshots - This parameter is required. Otherwise, permissions aren't available to check if the snapshot exists. If the snapshot to access exists - This parameter isn't required. Redshift can retrieve the cluster identifier and use it to validate snapshot authorization.

    *)
  4. accountWithRestoreAccess : String_.t;
    (*

    The identifier of the Amazon Web Services account authorized to restore the specified snapshot. To share a snapshot with Amazon Web Services Support, specify amazon-redshift-support.

    *)
}
Sourceval context_ : string
Sourceval make : ?snapshotIdentifier:??? -> ?snapshotArn:??? -> ?snapshotClusterIdentifier:??? -> accountWithRestoreAccess:String_.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of String_.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