Get started
To get started, you will need to create a role in your AWS account.
Before we can generate your sitemap, you must give us permission to your Amazon Web Services account.
Select Another AWS account as the trusted entity. Require external ID, Sitemap Solutions AWS account ID is 419087727852
Example Permission Policy Document
{
"Version": "2012-10-17",
"Statement": [
{
"Effect": "Allow",
"Action": "s3:PutObject",
"Resource": "*"
}
]
}
Example Trust Policy Document
{
"Version": "2012-10-17",
"Statement": [
{
"Effect": "Allow",
"Principal": {
"AWS": "arn:aws:iam::419087727852:root"
},
"Action": "sts:AssumeRole",
"Condition": {
"StringEquals": {
"sts:ExternalId": "xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx"
}
}
}
]
}