Export to Amazon Web Services - IoT Core.
Configuration
This integration can be configured on the Export Configs tab on each Service Provider in the LoRaWAN Portal.
For AWS IoT these fields can be configured:

This can then be selected on the sensor:

Keystore
AWS IoT Core will provide you with a bundle containing a client certificate and private key. These need to be converted into a keystore before uploading into the configuration.
One way to do this is to use the following commands.
openssl pkcs12 -export -in <certificate-file> -inkey <private-key-file> -out tmp.pkcs -name alias
# type in the export password
keytool -importkeystore -srckeystore tmp.pkcs -srcstoretype PKCS12 -srcstorepass <export-password> -alias alias -deststorepass <keystore-password> -destkeystore my.keystore