Interface IotCredentials

interface IotCredentials {
    credentials: {
        accessKey: string;
        region: string;
        secretKey: string;
        sessionToken: string;
    };
    endpoints: { edocu: string; iot: string };
}

Properties

credentials: {
    accessKey: string;
    region: string;
    secretKey: string;
    sessionToken: string;
}
endpoints: { edocu: string; iot: string }