Sample code for 30+ languages & platforms
PowerShell

S3 List Buckets using an STS Session Token

See more AWS Security Token Service Examples

This is an example showing how to use an STS session token in an Amazon AWS request. This example will list S3 buckets using a previously obtained session token.

Chilkat PowerShell Downloads

PowerShell
Add-Type -Path "C:\chilkat\ChilkatDotNet47-x64\ChilkatDotNet47.dll"

$success = $false

# This example requires the Chilkat API to have been previously unlocked.
# See Global Unlock Sample for sample code.

# See Get AWS STS Session Token for sample code to get the session token XML.
$xmlToken = New-Object Chilkat.Xml
$success = $xmlToken.LoadXmlFile("qa_data/tokens/aws_session_token.xml")
if ($success -eq $false) {
    $($xmlToken.LastErrorText)
    exit
}

$rest = New-Object Chilkat.Rest

# Connect to the Amazon AWS REST server.
$bTls = $true
$port = 443
$bAutoReconnect = $true
$success = $rest.Connect("s3.amazonaws.com",$port,$bTls,$bAutoReconnect)

# Provide AWS credentials for the REST call.
$authAws = New-Object Chilkat.AuthAws

# The purpose of this example is to show how to use the temporary AccessKeyId, SecretAccessKey, and SessionToken.
$authAws.AccessKey = $xmlToken.GetChildContent("GetSessionTokenResult|Credentials|AccessKeyId")
$authAws.SecretKey = $xmlToken.GetChildContent("GetSessionTokenResult|Credentials|SecretAccessKey")
$authAws.ServiceName = "s3"
$success = $rest.SetAuthAws($authAws)

$rest.AddQueryParam("X-Amz-Security-Token",$xmlToken.GetChildContent("GetSessionTokenResult|Credentials|SessionToken"))

$sbResponse = New-Object Chilkat.StringBuilder
$success = $rest.FullRequestNoBodySb("GET","/",$sbResponse)
if ($success -ne $true) {
    $($rest.LastErrorText)
    exit
}

$statusCode = $rest.ResponseStatusCode
$("Response status code = " + $statusCode)

$xml = New-Object Chilkat.Xml
$xml.LoadSb($sbResponse,$true)
$($xml.GetXml())

if ($statusCode -ne 200) {
    $("Failed.  See error information in the XML.")
    exit
}