Module Values.AWSSessionCredentialsSource

Represents an Amazon Web Services session credentials object. These credentials are temporary credentials that are issued by Amazon Web Services Secure Token Service (STS). They can be used to access input and output artifacts in the S3 bucket used to store artifact for the pipeline in CodePipeline.

Sourcetype nonrec t = {
  1. accessKeyId : AccessKeyId.t option;
    (*

    The access key for the session.

    *)
  2. secretAccessKey : SecretAccessKey.t option;
    (*

    The secret access key for the session.

    *)
  3. sessionToken : SessionToken.t option;
    (*

    The token for the session.

    *)
}
Sourceval make : ?accessKeyId:??? -> ?secretAccessKey:??? -> ?sessionToken:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of AccessKeyId.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