upgradeAccountPlan
abstract suspend fun upgradeAccountPlan(input: UpgradeAccountPlanRequest): 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
}