AWSV4SignatureArgs

data class AWSV4SignatureArgs(val accessKey: Output<String>? = null, val accessKeyId: Output<String>? = null, val accessKeyVersion: Output<String>? = null, val originRegion: Output<String>? = null) : ConvertibleToJava<AWSV4SignatureArgs>

Contains the configurations necessary to generate a signature for access to private storage buckets that support Signature Version 4 for authentication. The service name for generating the authentication header will always default to 's3'.

Constructors

Link copied to clipboard
fun AWSV4SignatureArgs(accessKey: Output<String>? = null, accessKeyId: Output<String>? = null, accessKeyVersion: Output<String>? = null, originRegion: Output<String>? = null)

Functions

Link copied to clipboard
open override fun toJava(): AWSV4SignatureArgs

Properties

Link copied to clipboard
val accessKey: Output<String>? = null

The access key used for s3 bucket authentication. Required for updating or creating a backend that uses AWS v4 signature authentication, but will not be returned as part of the configuration when queried with a REST API GET request. @InputOnly

Link copied to clipboard
val accessKeyId: Output<String>? = null

The identifier of an access key used for s3 bucket authentication.

Link copied to clipboard
val accessKeyVersion: Output<String>? = null

The optional version identifier for the access key. You can use this to keep track of different iterations of your access key.

Link copied to clipboard
val originRegion: Output<String>? = null

The name of the cloud region of your origin. This is a free-form field with the name of the region your cloud uses to host your origin. For example, "us-east-1" for AWS or "us-ashburn-1" for OCI.