MEDIACONNECT: allow not passing entitlements param in create_flow payload (#6373)

Co-authored-by: nick brown <nick.brown@m2amedia.tv>
This commit is contained in:
nickphbrown 2023-06-07 15:51:27 +01:00 committed by GitHub
parent 491f26f37a
commit 710391eb9a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -16,7 +16,7 @@ class MediaConnectResponse(BaseResponse):
def create_flow(self) -> str:
availability_zone = self._get_param("availabilityZone")
entitlements = self._get_param("entitlements")
entitlements = self._get_param("entitlements", [])
name = self._get_param("name")
outputs = self._get_param("outputs")
source = self._get_param("source")