Module Values.DeleteBucketAccessKeyRequestSource

Deletes an access key for the specified Amazon Lightsail bucket. We recommend that you delete an access key if the secret access key is compromised. For more information about access keys, see Creating access keys for a bucket in Amazon Lightsail in the Amazon Lightsail Developer Guide.

Sourcetype nonrec t = {
  1. bucketName : BucketName.t;
    (*

    The name of the bucket that the access key belongs to.

    *)
  2. accessKeyId : NonEmptyString.t;
    (*

    The ID of the access key to delete. Use the GetBucketAccessKeys action to get a list of access key IDs that you can specify.

    *)
}
Sourceval context_ : string
Sourceval make : bucketName:BucketName.t -> accessKeyId:NonEmptyString.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of BucketName.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