updateResolverType
inline suspend fun SecurityIrClient.updateResolverType(crossinline block: UpdateResolverTypeRequest.Builder.() -> Unit): UpdateResolverTypeResponse
Grants permission to update the resolver type for a case.
This is a one-way action and cannot be reversed.
Options include self-supported AWS-supported.
Samples
import aws.sdk.kotlin.services.securityir.model.ResolverType
fun main() {
//sampleStart
// Invoke UpdateResolverType
val resp = securityIrClient.updateResolverType {
caseId = "8403556009"
resolverType = ResolverType.fromValue("AWS")
}
//sampleEnd
}