Module Values_0.S3ActionSource

Describes an action to write data to an Amazon S3 bucket.

Sourcetype nonrec t = {
  1. roleArn : AwsArn.t;
    (*

    The ARN of the IAM role that grants access.

    *)
  2. bucketName : BucketName.t;
    (*

    The Amazon S3 bucket.

    *)
  3. key : Key.t;
    (*

    The object key. For more information, see Actions, resources, and condition keys for Amazon S3.

    *)
  4. cannedAcl : CannedAccessControlList.t option;
    (*

    The Amazon S3 canned ACL that controls access to the object identified by the object key. For more information, see S3 canned ACLs.

    *)
}
Sourceval context_ : string
Sourceval make : ?cannedAcl:??? -> roleArn:AwsArn.t -> bucketName:BucketName.t -> key:Key.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of AwsArn.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