updateIngressPoint

Update attributes of a provisioned ingress endpoint resource.

Samples

// Update Open Auth IngressPoint with new Name
val resp = mailManagerClient.updateIngressPoint {
    ingressPointId = "inp-12345"
    ingressPointName = "ingressPointNewName"
}
// Update Open Auth IngressPoint with new RuleSetId TrafficPolicyId
val resp = mailManagerClient.updateIngressPoint {
    ingressPointId = "inp-12345"
    ruleSetId = "rs-12345"
    trafficPolicyId = "tp-12345"
}
// Update Auth IngressPoint with new SmtpPassword
val resp = mailManagerClient.updateIngressPoint {
    ingressPointId = "inp-12345"
    ingressPointConfiguration = IngressPointConfiguration.SmtpPassword("newSmtpPassword")
}
// Update Auth IngressPoint with new SecretArn
val resp = mailManagerClient.updateIngressPoint {
    ingressPointId = "inp-12345"
    ingressPointConfiguration = IngressPointConfiguration.SecretArn("arn:aws:secretsmanager:us-west-2:123456789012:secret:abcde")
}