All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.http4k.connect.amazon.sts.model.kt Maven / Gradle / Ivy

There is a newer version: 5.25.0.0
Show newest version
package org.http4k.connect.amazon.sts

import org.http4k.template.ViewModel

data class AssumeRoleResponse(
    val arn: String,
    val roleId: String,
    val accessKeyId: String,
    val secretAccessKey: String,
    val sessionToken: String,
    val expiration: String,
) : ViewModel

data class AssumeRoleWithWebIdentityResponse(
    val arn: String,
    val roleId: String,
    val accessKeyId: String,
    val secretAccessKey: String,
    val sessionToken: String,
    val expiration: String,
) : ViewModel




© 2015 - 2024 Weber Informatics LLC | Privacy Policy