Add support for redirect actions on ELBv2 listeners (#2029)
This commit is contained in:
parent
868d0107bf
commit
1b91534165
4 changed files with 223 additions and 19 deletions
|
|
@ -131,7 +131,7 @@ class InvalidActionTypeError(ELBClientError):
|
|||
def __init__(self, invalid_name, index):
|
||||
super(InvalidActionTypeError, self).__init__(
|
||||
"ValidationError",
|
||||
"1 validation error detected: Value '%s' at 'actions.%s.member.type' failed to satisfy constraint: Member must satisfy enum value set: [forward]" % (invalid_name, index)
|
||||
"1 validation error detected: Value '%s' at 'actions.%s.member.type' failed to satisfy constraint: Member must satisfy enum value set: [forward, redirect]" % (invalid_name, index)
|
||||
)
|
||||
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue