How can I change the access policies of a cloudsearch domain via boto? Is it possible at all?
Using boto 2.6.0 I see a get_access_policies()
method in the domain instance, but nothing for modifying the policies.
How can I change the access policies of a cloudsearch domain via boto? Is it possible at all?
Using boto 2.6.0 I see a get_access_policies()
method in the domain instance, but nothing for modifying the policies.
That method returns an OptionStatus
object. It looks like you can change the object's attributes and then call its save()
method to modify policies.