deleteAttributeMapping

Delete an entry from the attribute mapping rules enforced by a given profile.

Samples

import aws.sdk.kotlin.services.rolesanywhere.model.CertificateField

fun main() { 
   //sampleStart 
   // DeleteAttributeMapping Deletes a custom attribute mapping rule
val resp = rolesAnywhereClient.deleteAttributeMapping {
    profileId = "00000000-0000-0000-0000-000000000000"
    specifiers = listOf<String>(
        "OU"
    )
    certificateField = CertificateField.fromValue("x509Subject")
} 
   //sampleEnd
}