startDomainExport

Initiates the export of a SimpleDB domain to an S3 bucket.

Samples


fun main() { 
   //sampleStart 
   // Start a domain export
val resp = simpleDbV2Client.startDomainExport {
    domainName = "my-domain"
    s3Bucket = "my-export-bucket"
} 
   //sampleEnd
}