/** * ELEMENTS API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ /** * * @export * @interface TestAWSCredentialsRequest */ export interface TestAWSCredentialsRequest { /** * * @type {string} * @memberof TestAWSCredentialsRequest */ accessKeyId: string; /** * * @type {string} * @memberof TestAWSCredentialsRequest */ secretAccessKey: string; } export declare function TestAWSCredentialsRequestFromJSON(json: any): TestAWSCredentialsRequest; export declare function TestAWSCredentialsRequestFromJSONTyped(json: any, ignoreDiscriminator: boolean): TestAWSCredentialsRequest; export declare function TestAWSCredentialsRequestToJSON(value?: TestAWSCredentialsRequest | null): any;