upgradeAccountPlan
inline suspend fun FreeTierClient.upgradeAccountPlan(crossinline block: UpgradeAccountPlanRequest.Builder.() -> Unit): UpgradeAccountPlanResponse
The account plan type for the Amazon Web Services account.
Samples
import aws.sdk.kotlin.services.freetier.model.AccountPlanType
fun main() {
//sampleStart
// Upgrading an account plan to PAID
val resp = freeTierClient.upgradeAccountPlan {
accountPlanType = AccountPlanType.fromValue("PAID")
}
//sampleEnd
}