|
NAMEPaws::Credential::Explicit SYNOPSIS use Paws::Credential::Explicit;
my $paws = Paws->new(config => {
credentials => Paws::Credential::Explicit->new(
access_key => $ak,
secret_key => $sk,
session_token => $st,
)
});
DESCRIPTIONThe Explicit provider is used to specify credentials inside your code. It's bad practice to hard-code credentials inside your code. Please do not hard-code credentials inside your code, and instead use other credential providers, or roll out you own. access_key: StrA string with an AWS access_key secret_key: StrA string with an AWS secret_key session_token: Str (optional)A string with an AWS session_token (if applies)
|