CloudMap

Resources

--- Scratch

ns_resp = CLIENT.create_private_dns_namespace(
    Name=namespace_name,
    Description=desc,
    Vpc=vpc_id,
)
op_id = ns_resp.get('OperationId')

# query
CLIENT.get_operation(OperationId=op_id)

Last updated

Was this helpful?